← back to Novasuede Onboard
Novasuede lexicon onboarding: pull + classifier + planner scaffold
5c3b06d0de32814b15d122cd4d84b0e3471e8afb · 2026-06-24 15:06:33 -0700 · Steve
Files touched
A .gitignoreA classify.pyA data/_sample.ndjsonA data/_sample_out.ndjsonA data/active_index.ndjsonA data/enriched.ndjsonA data/novasuede_raw.ndjsonA plan_writes.pyA pull_catalog.py
Diff
commit 5c3b06d0de32814b15d122cd4d84b0e3471e8afb
Author: Steve <steve@designerwallcoverings.com>
Date: Wed Jun 24 15:06:33 2026 -0700
Novasuede lexicon onboarding: pull + classifier + planner scaffold
---
.gitignore | 9 +++
classify.py | 165 ++++++++++++++++++++++++++++++++++++++++++
data/_sample.ndjson | 6 ++
data/_sample_out.ndjson | 6 ++
data/active_index.ndjson | 159 +++++++++++++++++++++++++++++++++++++++++
data/enriched.ndjson | 2 +
data/novasuede_raw.ndjson | 178 ++++++++++++++++++++++++++++++++++++++++++++++
plan_writes.py | 122 +++++++++++++++++++++++++++++++
pull_catalog.py | 45 ++++++++++++
9 files changed, 692 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7144eb9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+node_modules/
+.env*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+data/*.img
diff --git a/classify.py b/classify.py
new file mode 100644
index 0000000..a2b1b56
--- /dev/null
+++ b/classify.py
@@ -0,0 +1,165 @@
+#!/usr/bin/env python3
+"""
+Lexicon-grounded enrichment for Novasuede solid suedes.
+Pipeline per product:
+ 1. fetch image -> Pillow ground-truth dominant hex (enrich-palette.py)
+ 2. qwen2.5vl (LOCAL, $0) maps hex -> a NAMED colorway from the interior-designer
+ lexicon, picks undertone, 2-3 interior styles, and writes a 1-sentence description.
+ 3. emit clean structured record for review / staging.
+
+These are SOLID microfiber suedes: no motif. Color is the protagonist; the vendor
+name (Acorn / Adobe / African Violet) is decorative and NOT descriptive, so we
+classify from real pixels + image, never from the vendor name.
+
+Usage: classify.py <active_index.ndjson> <out.ndjson> [limit]
+Env: NS_OLLAMA_URL (default http://localhost:11434) NS_VL_MODEL (default qwen2.5vl:7b)
+"""
+import sys, os, json, io, base64, time, urllib.request, subprocess, pathlib, colorsys
+
+ROOT = pathlib.Path(__file__).resolve().parent
+PALETTE_PY = pathlib.Path.home() / "Projects/enrich-local-hybrid/enrich-palette.py"
+OLLAMA = os.environ.get("NS_OLLAMA_URL", "http://localhost:11434")
+MODEL = os.environ.get("NS_VL_MODEL", "qwen2.5vl:7b")
+
+# --- controlled vocabulary (subset of interior-designer SKILL.md lexicon) ---
+COLORWAYS = (
+ "Chalk Alabaster Cotton Marshmallow Swiss-Coffee Ivory Eggshell Bone Cream Linen Porcelain Antique-White "
+ "Oatmeal Flax String Greige Mushroom Putty Stone Fawn Wheat Sand Biscuit Almond Taupe Pebble "
+ "Buff Chamois Honey Tan Camel Khaki Caramel Pecan Cognac Chestnut Tobacco Walnut Mocha Espresso "
+ "Dove Silver Ash Fog Smoke Pewter Nickel Flannel Slate Zinc Graphite Gunmetal Charcoal "
+ "Ink Noir Onyx Ebony Jet Obsidian Coal "
+ "Celadon Pistachio Sage Eucalyptus Sea-Glass Moss Fern Olive Loden Juniper Hunter Forest Emerald Verdigris Bottle-Green "
+ "Powder Sky Wedgwood Cornflower French-Blue Cerulean Denim Slate-Blue Teal Peacock Prussian Indigo Navy Midnight "
+ "Buttercream Champagne Maize Citrine Saffron Amber Ochre Mustard Gold Brass "
+ "Apricot Peach Clay Terracotta Persimmon Pumpkin Marmalade Copper Rust Sienna "
+ "Blush Rose Dusty-Rose Coral Cinnabar Brick Oxblood Claret Garnet Burgundy Crimson "
+ "Lavender Lilac Wisteria Orchid Heather Mauve Amethyst Plum Aubergine"
+)
+# Interior styles a SOLID suede realistically suits (mood/application driven)
+STYLES = ("Mid-Century Modern, Organic Modern, Transitional, Minimalist, Contemporary, Scandinavian, "
+ "Japandi, Hollywood Regency, Art Deco, Glam, Industrial, Coastal, Traditional, Wabi-Sabi, "
+ "Bohemian, Maximalist, Mediterranean, Desert Modern")
+
+# ---- deterministic designer logic from the measured dominant hex (HSL) ----
+def hsl_of(hexstr):
+ h = hexstr.lstrip("#")
+ r, g, b = (int(h[i:i+2], 16) / 255 for i in (0, 2, 4))
+ H, L, S = colorsys.rgb_to_hls(r, g, b)
+ return H * 360, S, L # hue 0-360, sat 0-1, light 0-1
+
+def depth_of(L):
+ return ("pale" if L >= .80 else "light" if L >= .62 else
+ "medium" if L >= .42 else "deep" if L >= .25 else "dark")
+
+def hue_family(H, S, L):
+ if S < 0.12: # near-neutral: split by lightness
+ return "neutral_light" if L >= .62 else "neutral_mid" if L >= .30 else "neutral_dark"
+ if H < 18 or H >= 345: return "red"
+ if H < 45: return "orange" # earths / terracotta / caramel
+ if H < 70: return "yellow"
+ if H < 170: return "green"
+ if H < 255: return "blue"
+ if H < 290: return "purple"
+ return "pink" # 290-345 magenta/pink
+
+def undertone_of(H, S, L):
+ if S < 0.10: return "neutral"
+ return "warm" if (H < 75 or H >= 330) else "cool"
+
+# designer hue-family + depth -> 2-3 interior styles (controlled lexicon)
+def styles_for(fam, depth):
+ deep = depth in ("deep", "dark")
+ table = {
+ "red": (["Hollywood Regency","Art Deco","Maximalist"] if deep else ["Transitional","Bohemian","Eclectic"]),
+ "orange": (["Mediterranean","Organic Modern","Mid-Century Modern"] if deep else ["Desert Modern","Organic Modern","Bohemian"]),
+ "yellow": ["Mid-Century Modern","Organic Modern","Transitional"],
+ "green": (["Art Deco","Maximalist","Traditional"] if deep else ["Organic Modern","Biophilic","Transitional"]),
+ "blue": (["Hollywood Regency","Art Deco","Traditional"] if deep else ["Coastal","Transitional","Contemporary"]),
+ "purple": ["Hollywood Regency","Art Deco","Glam"],
+ "pink": ["Glam","Transitional","Contemporary"],
+ "neutral_light":["Scandinavian","Minimalist","Japandi"],
+ "neutral_mid": ["Contemporary","Industrial","Minimalist"],
+ "neutral_dark": ["Industrial","Contemporary","Minimalist"],
+ }
+ return table.get(fam, ["Contemporary","Transitional","Minimalist"])
+
+def fetch(url, tries=4):
+ req = urllib.request.Request(url, headers={"User-Agent": "Mozilla/5.0"})
+ for i in range(tries):
+ try:
+ with urllib.request.urlopen(req, timeout=30) as r:
+ return r.read()
+ except Exception:
+ time.sleep(1.5)
+ raise RuntimeError(f"fetch failed: {url}")
+
+def palette(img_bytes):
+ tmp = ROOT / f"/tmp/ns-{os.getpid()}.img"
+ pathlib.Path(tmp).write_bytes(img_bytes)
+ r = subprocess.run(["python3", str(PALETTE_PY), str(tmp), "6"],
+ capture_output=True, text=True, timeout=40)
+ pathlib.Path(tmp).unlink(missing_ok=True)
+ if r.returncode != 0:
+ raise RuntimeError("palette: " + r.stderr)
+ return json.loads(r.stdout) # {palette:[{hex,percentage}], image_b64}
+
+def vl(image_b64, pal, vendor_name, depth, undertone, styles):
+ dom = pal[0]["hex"] if pal else ""
+ prompt = (
+ "You are a senior interior designer cataloguing a SOLID microfiber-suede "
+ "wallcovering/upholstery swatch. It has NO printed motif — it is one solid suede color.\n"
+ f"The vendor's decorative name is \"{vendor_name}\" — NOT a reliable color descriptor; "
+ "classify ONLY from the image + pixel colors.\n"
+ f"Exact pixel colors (hex + area%): {json.dumps(pal)}\n"
+ f"MEASURED facts you must stay faithful to: dominant hex {dom}, depth=\"{depth}\", "
+ f"undertone=\"{undertone}\". Do NOT call a medium/deep color a pale/white name, and do "
+ "NOT flip a warm color to a cool name.\n\n"
+ "Return JSON:\n"
+ "- primary_colorway: the SINGLE best-fit named colorway for the dominant suede color, "
+ f"matching the measured depth & undertone, chosen ONLY from: [{COLORWAYS}]\n"
+ "- secondary_colorway: a second named colorway from the SAME list ONLY if a clear second hue "
+ "exists, else \"\"\n"
+ f"- description: ONE editorial showroom sentence. Lead with the color & mood, note it is a "
+ f"microfiber suede, and that it suits {styles[0]} / {styles[1]} interiors. Do NOT name the "
+ "vendor's decorative name.\n"
+ )
+ schema = {"type":"object","properties":{
+ "primary_colorway":{"type":"string"},
+ "secondary_colorway":{"type":"string"},
+ "description":{"type":"string"}},
+ "required":["primary_colorway","description"]}
+ body = json.dumps({"model":MODEL,"prompt":prompt,"images":[image_b64],"stream":False,
+ "format":schema,"keep_alive":"15m","options":{"temperature":0.1}}).encode()
+ req = urllib.request.Request(OLLAMA+"/api/generate", data=body,
+ headers={"Content-Type":"application/json"})
+ with urllib.request.urlopen(req, timeout=300) as r:
+ return json.loads(json.loads(r.read())["response"])
+
+def main():
+ src = pathlib.Path(sys.argv[1]); out = pathlib.Path(sys.argv[2])
+ limit = int(sys.argv[3]) if len(sys.argv) > 3 else 10_000
+ rows = [json.loads(l) for l in src.read_text().splitlines()][:limit]
+ f = out.open("w")
+ for i, r in enumerate(rows, 1):
+ try:
+ img = fetch(r["img"])
+ pal = palette(img)
+ dom = pal["palette"][0]["hex"]
+ H, S, L = hsl_of(dom)
+ depth = depth_of(L); undertone = undertone_of(H, S, L)
+ fam = hue_family(H, S, L); styles = styles_for(fam, depth)
+ res = vl(pal["image_b64"], pal["palette"], r["vendor_name"], depth, undertone, styles)
+ rec = {**r, "palette": pal["palette"], "dominant_hex": dom,
+ "depth": depth, "undertone": undertone, "hue_family": fam,
+ "styles": styles, **res, "_ok": True}
+ print(f"[{i}/{len(rows)}] {r['vendor_name']:>18} -> "
+ f"{res['primary_colorway']:>14} ({undertone}/{depth}) styles={styles}")
+ except Exception as e:
+ rec = {**r, "_ok": False, "_err": str(e)}
+ print(f"[{i}/{len(rows)}] {r['vendor_name']:>18} -> ERROR {e}")
+ f.write(json.dumps(rec) + "\n"); f.flush()
+ f.close()
+ print(f"\nwrote {out}")
+
+if __name__ == "__main__":
+ main()
diff --git a/data/_sample.ndjson b/data/_sample.ndjson
new file mode 100644
index 0000000..b896205
--- /dev/null
+++ b/data/_sample.ndjson
@@ -0,0 +1,6 @@
+{"id": 7692849971251, "title": "Novasuede\u2122 - Acorn Luxury Suede", "vendor_name": "Acorn", "handle": "novasuede\u2122-acorn", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816"}
+{"id": 7692850004019, "title": "Novasuede\u2122 - Adobe Luxury Suede", "vendor_name": "Adobe", "handle": "novasuede\u2122-adobe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819"}
+{"id": 7692850036787, "title": "Novasuede\u2122 - African Violet Luxury Suede", "vendor_name": "African Violet", "handle": "novasuede\u2122-african-violet", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-african-violet.jpg?v=1761251822"}
+{"id": 7692850069555, "title": "Novasuede\u2122 - Apricot Luxury Suede", "vendor_name": "Apricot", "handle": "novasuede\u2122-apricot", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-apricot.jpg?v=1761251825"}
+{"id": 7692850200627, "title": "Novasuede\u2122 - Baltic Luxury Suede", "vendor_name": "Baltic", "handle": "novasuede\u2122-baltic", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-baltic.jpg?v=1761251833"}
+{"id": 7692850364467, "title": "Novasuede\u2122 - Blush Pink Luxury Suede", "vendor_name": "Blush Pink", "handle": "novasuede\u2122-blush-pink", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-pink.jpg?v=1761251847"}
diff --git a/data/_sample_out.ndjson b/data/_sample_out.ndjson
new file mode 100644
index 0000000..9b31e8a
--- /dev/null
+++ b/data/_sample_out.ndjson
@@ -0,0 +1,6 @@
+{"id": 7692849971251, "title": "Novasuede\u2122 - Acorn Luxury Suede", "vendor_name": "Acorn", "handle": "novasuede\u2122-acorn", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816", "palette": [{"hex": "#7F3B0F", "percentage": 96}, {"hex": "#5D2805", "percentage": 4}], "dominant_hex": "#7F3B0F", "depth": "deep", "undertone": "warm", "hue_family": "orange", "styles": ["Mediterranean", "Organic Modern", "Mid-Century Modern"], "primary_colorway": "Caramel", "description": "A rich, deep Caramel microfiber suede exudes warmth and sophistication, perfect for creating an organic modern ambiance in Mediterranean-inspired spaces.", "_ok": true}
+{"id": 7692850004019, "title": "Novasuede\u2122 - Adobe Luxury Suede", "vendor_name": "Adobe", "handle": "novasuede\u2122-adobe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819", "palette": [{"hex": "#EDDBC4", "percentage": 95}, {"hex": "#E0C9AE", "percentage": 5}], "dominant_hex": "#EDDBC4", "depth": "pale", "undertone": "warm", "hue_family": "orange", "styles": ["Desert Modern", "Organic Modern", "Bohemian"], "primary_colorway": "Bone", "description": "A pale Bone suede exudes warmth and simplicity, perfect for creating serene and organic modern spaces in desert-inspired settings.", "_ok": true}
+{"id": 7692850036787, "title": "Novasuede\u2122 - African Violet Luxury Suede", "vendor_name": "African Violet", "handle": "novasuede\u2122-african-violet", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-african-violet.jpg?v=1761251822", "palette": [{"hex": "#30213F", "percentage": 76}, {"hex": "#423056", "percentage": 24}], "dominant_hex": "#30213F", "depth": "dark", "undertone": "cool", "hue_family": "purple", "styles": ["Hollywood Regency", "Art Deco", "Glam"], "primary_colorway": "Mauve", "description": "A rich, deep Mauve microfiber suede exudes elegance and sophistication, perfect for creating a luxurious ambiance in Hollywood Regency or Art Deco-inspired spaces.", "_ok": true}
+{"id": 7692850069555, "title": "Novasuede\u2122 - Apricot Luxury Suede", "vendor_name": "Apricot", "handle": "novasuede\u2122-apricot", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-apricot.jpg?v=1761251825", "palette": [{"hex": "#D56B41", "percentage": 90}, {"hex": "#C34F28", "percentage": 6}, {"hex": "#A54523", "percentage": 4}], "dominant_hex": "#D56B41", "depth": "medium", "undertone": "warm", "hue_family": "red", "styles": ["Transitional", "Bohemian", "Eclectic"], "primary_colorway": "Terracotta", "description": "A rich Terracotta microfiber suede exudes warmth and depth, perfect for creating cozy and inviting spaces in both Transitional and Bohemian interior designs.", "_ok": true}
+{"id": 7692850200627, "title": "Novasuede\u2122 - Baltic Luxury Suede", "vendor_name": "Baltic", "handle": "novasuede\u2122-baltic", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-baltic.jpg?v=1761251833", "palette": [{"hex": "#BFC2C0", "percentage": 97}, {"hex": "#9B9E9B", "percentage": 3}], "dominant_hex": "#BFC2C0", "depth": "light", "undertone": "neutral", "hue_family": "neutral_light", "styles": ["Scandinavian", "Minimalist", "Japandi"], "primary_colorway": "Chalk", "description": "A soft Chalk Alabaster microfiber suede exudes lightness and neutrality, perfect for minimalist and Scandinavian-inspired spaces.", "_ok": true}
+{"id": 7692850364467, "title": "Novasuede\u2122 - Blush Pink Luxury Suede", "vendor_name": "Blush Pink", "handle": "novasuede\u2122-blush-pink", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-pink.jpg?v=1761251847", "palette": [{"hex": "#E67880", "percentage": 55}, {"hex": "#CD5C65", "percentage": 29}, {"hex": "#B1434C", "percentage": 6}, {"hex": "#F79EA2", "percentage": 5}, {"hex": "#932D36", "percentage": 5}], "dominant_hex": "#E67880", "depth": "light", "undertone": "warm", "hue_family": "red", "styles": ["Transitional", "Bohemian", "Eclectic"], "primary_colorway": "Blush", "description": "A soft blush pink microfiber suede exudes warmth and elegance, perfect for creating a serene yet sophisticated ambiance in transitional or bohemian interior spaces.", "_ok": true}
diff --git a/data/active_index.ndjson b/data/active_index.ndjson
new file mode 100644
index 0000000..abe9a3d
--- /dev/null
+++ b/data/active_index.ndjson
@@ -0,0 +1,159 @@
+{"id": 7692849971251, "title": "Novasuede\u2122 - Acorn Luxury Suede", "vendor_name": "Acorn", "handle": "novasuede\u2122-acorn", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816"}
+{"id": 7692850004019, "title": "Novasuede\u2122 - Adobe Luxury Suede", "vendor_name": "Adobe", "handle": "novasuede\u2122-adobe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819"}
+{"id": 7692850036787, "title": "Novasuede\u2122 - African Violet Luxury Suede", "vendor_name": "African Violet", "handle": "novasuede\u2122-african-violet", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-african-violet.jpg?v=1761251822"}
+{"id": 7692850069555, "title": "Novasuede\u2122 - Apricot Luxury Suede", "vendor_name": "Apricot", "handle": "novasuede\u2122-apricot", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-apricot.jpg?v=1761251825"}
+{"id": 7692850135091, "title": "Novasuede\u2122 - Arrow Wood Luxury Suede", "vendor_name": "Arrow Wood", "handle": "novasuede\u2122-arrow-wood", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-arrow-wood.jpg?v=1761251827"}
+{"id": 7692850167859, "title": "Novasuede\u2122 - Aubergine Luxury Suede", "vendor_name": "Aubergine", "handle": "novasuede\u2122-aubergine", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-aubergine.jpg?v=1761251830"}
+{"id": 7692850200627, "title": "Novasuede\u2122 - Baltic Luxury Suede", "vendor_name": "Baltic", "handle": "novasuede\u2122-baltic", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-baltic.jpg?v=1761251833"}
+{"id": 7692850233395, "title": "Novasuede\u2122 - Beige Luxury Suede", "vendor_name": "Beige", "handle": "novasuede\u2122-beige", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-beige.jpg?v=1761251836"}
+{"id": 7692850266163, "title": "Novasuede\u2122 - Biscuit Luxury Suede", "vendor_name": "Biscuit", "handle": "novasuede\u2122-biscuit", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-biscuit.jpg?v=1761251839"}
+{"id": 7692850331699, "title": "Novasuede\u2122 - Bluestone Luxury Suede", "vendor_name": "Bluestone", "handle": "novasuede\u2122-bluestone", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bluestone.jpg?v=1761251844"}
+{"id": 7692850364467, "title": "Novasuede\u2122 - Blush Pink Luxury Suede", "vendor_name": "Blush Pink", "handle": "novasuede\u2122-blush-pink", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-pink.jpg?v=1761251847"}
+{"id": 7692850397235, "title": "Novasuede\u2122 - Bone Luxury Suede", "vendor_name": "Bone", "handle": "novasuede\u2122-bone", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bone.jpg?v=1761251850"}
+{"id": 7692850430003, "title": "Novasuede\u2122 - Brown Luxury Suede", "vendor_name": "Brown", "handle": "novasuede\u2122-brown", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-brown.jpg?v=1776304980"}
+{"id": 7692850462771, "title": "Novasuede\u2122 - Buff Luxury Suede", "vendor_name": "Buff", "handle": "novasuede\u2122-buff", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buff.jpg?v=1761251856"}
+{"id": 7692850495539, "title": "Novasuede\u2122 - Buttercup Luxury Suede", "vendor_name": "Buttercup", "handle": "novasuede\u2122-buttercup", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buttercup.jpg?v=1761251858"}
+{"id": 7692850528307, "title": "Novasuede\u2122 - Cane Luxury Suede", "vendor_name": "Cane", "handle": "novasuede\u2122-cane", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cane.jpg?v=1761251861"}
+{"id": 7692850561075, "title": "Novasuede\u2122 - Carbon Luxury Suede", "vendor_name": "Carbon", "handle": "novasuede\u2122-carbon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2026-03-30_at_2.47.49_PM.png?v=1774907294"}
+{"id": 7692850593843, "title": "Novasuede\u2122 - Cashew Luxury Suede", "vendor_name": "Cashew", "handle": "novasuede\u2122-cashew", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashew.jpg?v=1761251867"}
+{"id": 7692850626611, "title": "Novasuede\u2122 - Cashmere Luxury Suede", "vendor_name": "Cashmere", "handle": "novasuede\u2122-cashmere", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashmere.jpg?v=1761251870"}
+{"id": 7692850659379, "title": "Novasuede\u2122 - Celadon Luxury Suede", "vendor_name": "Celadon", "handle": "novasuede\u2122-celadon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celadon.jpg?v=1761251873"}
+{"id": 7692850692147, "title": "Novasuede\u2122 - Celery Luxury Suede", "vendor_name": "Celery", "handle": "novasuede\u2122-celery", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celery.jpg?v=1761251876"}
+{"id": 7692850724915, "title": "Novasuede\u2122 - Champagne Luxury Suede", "vendor_name": "Champagne", "handle": "novasuede\u2122-champagne", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-champagne.jpg?v=1761251879"}
+{"id": 7692850757683, "title": "Novasuede\u2122 - China Blue Luxury Suede", "vendor_name": "China Blue", "handle": "novasuede\u2122-china-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-china-blue.jpg?v=1761251881"}
+{"id": 7692850790451, "title": "Novasuede\u2122 - Chrome Grey Luxury Suede", "vendor_name": "Chrome Grey", "handle": "novasuede\u2122-chrome-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-chrome-grey.jpg?v=1761251884"}
+{"id": 7692850823219, "title": "Novasuede\u2122 - Cinder Luxury Suede", "vendor_name": "Cinder", "handle": "novasuede\u2122-cinder", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cinder.jpg?v=1761251888"}
+{"id": 7692850855987, "title": "Novasuede\u2122 - Cloud Luxury Suede", "vendor_name": "Cloud", "handle": "novasuede\u2122-cloud", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cloud.jpg?v=1761251891"}
+{"id": 7692850888755, "title": "Novasuede\u2122 - Cocoa Luxury Suede", "vendor_name": "Cocoa", "handle": "novasuede\u2122-cocoa", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cocoa.jpg?v=1761251894"}
+{"id": 7692850921523, "title": "Novasuede\u2122 - Coral Luxury Suede", "vendor_name": "Coral", "handle": "novasuede\u2122-coral", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-coral.jpg?v=1761251897"}
+{"id": 7692850954291, "title": "Novasuede\u2122 - Cottage Grey Luxury Suede", "vendor_name": "Cottage Grey", "handle": "novasuede\u2122-cottage-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cottage-grey.jpg?v=1761251900"}
+{"id": 7692850987059, "title": "Novasuede\u2122 - Cream Luxury Suede", "vendor_name": "Cream", "handle": "novasuede\u2122-cream", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cream.jpg?v=1761251902"}
+{"id": 7692851019827, "title": "Novasuede\u2122 - Cypress Luxury Suede", "vendor_name": "Cypress", "handle": "novasuede\u2122-cypress", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cypress.jpg?v=1776305007"}
+{"id": 7692851052595, "title": "Novasuede\u2122 - Dark Sand Luxury Suede", "vendor_name": "Dark Sand", "handle": "novasuede\u2122-dark-sand", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dark-sand.jpg?v=1761251909"}
+{"id": 7692851118131, "title": "Novasuede\u2122 - Dew Luxury Suede", "vendor_name": "Dew", "handle": "novasuede\u2122-dew", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dew.jpg?v=1761251912"}
+{"id": 7692851150899, "title": "Novasuede\u2122 - Dove Luxury Suede", "vendor_name": "Dove", "handle": "novasuede\u2122-dove", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dove.jpg?v=1761251914"}
+{"id": 7692851183667, "title": "Novasuede\u2122 - Dune Luxury Suede", "vendor_name": "Dune", "handle": "novasuede\u2122-dune", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dune.jpg?v=1761251917"}
+{"id": 7692851216435, "title": "Novasuede\u2122 - Dusty Rose Luxury Suede", "vendor_name": "Dusty Rose", "handle": "novasuede\u2122-dusty-rose", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-rose.jpg?v=1761251920"}
+{"id": 7692851249203, "title": "Novasuede\u2122 - Ecru Luxury Suede", "vendor_name": "Ecru", "handle": "novasuede\u2122-ecru", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ecru.jpg?v=1761251923"}
+{"id": 7692851281971, "title": "Novasuede\u2122 - Fawn Luxury Suede", "vendor_name": "Fawn", "handle": "novasuede\u2122-fawn", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fawn.jpg?v=1761251926"}
+{"id": 7692851314739, "title": "Novasuede\u2122 - French Blue Luxury Suede", "vendor_name": "French Blue", "handle": "novasuede\u2122-french-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-french-blue.jpg?v=1761251929"}
+{"id": 7692851347507, "title": "Novasuede\u2122 - Gainsborough Luxury Suede", "vendor_name": "Gainsborough", "handle": "novasuede\u2122-gainsborough", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gainsborough.jpg?v=1761251931"}
+{"id": 7692851380275, "title": "Novasuede\u2122 - Garnet Luxury Suede", "vendor_name": "Garnet", "handle": "novasuede\u2122-garnet", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-garnet.jpg?v=1761251934"}
+{"id": 7692851413043, "title": "Novasuede\u2122 - Gelato Luxury Suede", "vendor_name": "Gelato", "handle": "novasuede\u2122-gelato", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gelato.jpg?v=1761251937"}
+{"id": 7692851478579, "title": "Novasuede\u2122 - Goldstone Luxury Suede", "vendor_name": "Goldstone", "handle": "novasuede\u2122-goldstone", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-goldstone.jpg?v=1761251943"}
+{"id": 7692851511347, "title": "Novasuede\u2122 - Granite Luxury Suede", "vendor_name": "Granite", "handle": "novasuede\u2122-granite", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-granite.jpg?v=1761251946"}
+{"id": 7692851544115, "title": "Novasuede\u2122 - Grape Luxury Suede", "vendor_name": "Grape", "handle": "novasuede\u2122-grape", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-grape.jpg?v=1761251949"}
+{"id": 7692851642419, "title": "Novasuede\u2122 - Green Marble Luxury Suede", "vendor_name": "Green Marble", "handle": "novasuede\u2122-green-marble", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-green-marble.jpg?v=1761251957"}
+{"id": 7692851675187, "title": "Novasuede\u2122 - Greystone Luxury Suede", "vendor_name": "Greystone", "handle": "novasuede\u2122-greystone", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-greystone.jpg?v=1761251960"}
+{"id": 7692851707955, "title": "Novasuede\u2122 Fabric & Wallcovering - Harvest", "vendor_name": "Harvest", "handle": "novasuede\u2122-harvest", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-harvest.jpg?v=1761251963"}
+{"id": 7692851740723, "title": "Novasuede\u2122 - Honey Luxury Suede", "vendor_name": "Honey", "handle": "novasuede\u2122-honey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-honey.jpg?v=1761251966"}
+{"id": 7692851773491, "title": "Novasuede\u2122 - Hyacinth Luxury Suede", "vendor_name": "Hyacinth", "handle": "novasuede\u2122-hyacinth", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-hyacinth.jpg?v=1761251969"}
+{"id": 7692851806259, "title": "Novasuede\u2122 - Iceberg Luxury Suede", "vendor_name": "Iceberg", "handle": "novasuede\u2122-iceberg", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-iceberg.jpg?v=1761251972"}
+{"id": 7692851871795, "title": "Novasuede\u2122 - Ivory Luxury Suede", "vendor_name": "Ivory", "handle": "novasuede\u2122-ivory", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ivory.jpg?v=1761251978"}
+{"id": 7692851937331, "title": "Novasuede\u2122 Fabric & Wallcovering - Java", "vendor_name": "Java", "handle": "novasuede\u2122-java", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-java.jpg?v=1761251983"}
+{"id": 7692852002867, "title": "Novasuede\u2122 - Lavender Luxury Suede", "vendor_name": "Lavender", "handle": "novasuede\u2122-lavender", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lavender.jpg?v=1761251989"}
+{"id": 7692852035635, "title": "Novasuede\u2122 - Light Amethyst Luxury Suede", "vendor_name": "Light Amethyst", "handle": "novasuede\u2122-light-amethyst", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-amethyst.jpg?v=1761251992"}
+{"id": 7692852101171, "title": "Novasuede\u2122 - Light Grey Luxury Suede", "vendor_name": "Light Grey", "handle": "novasuede\u2122-light-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-grey.jpg?v=1761251998"}
+{"id": 7692852232243, "title": "Novasuede\u2122 - Linen Luxury Suede", "vendor_name": "Linen", "handle": "novasuede\u2122-linen", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-linen.jpg?v=1761252006"}
+{"id": 7692852265011, "title": "Novasuede\u2122 - Madison Grey Luxury Suede", "vendor_name": "Madison Grey", "handle": "novasuede\u2122-madison-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-madison-grey.jpg?v=1761252010"}
+{"id": 7692852297779, "title": "Novasuede\u2122 - Maize Luxury Suede", "vendor_name": "Maize", "handle": "novasuede\u2122-maize", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maize.jpg?v=1761252012"}
+{"id": 7692852363315, "title": "Novasuede\u2122 - Maroon Luxury Suede", "vendor_name": "Maroon", "handle": "novasuede\u2122-maroon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maroon.jpg?v=1761252018"}
+{"id": 7692852396083, "title": "Novasuede\u2122 - Royal Purple Luxury Suede", "vendor_name": "Royal Purple", "handle": "novasuede\u2122-mauve", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.56.27PM.png?v=1774990600"}
+{"id": 7692852428851, "title": "Novasuede\u2122 - Meadow Luxury Suede", "vendor_name": "Meadow", "handle": "novasuede\u2122-meadow", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-meadow.jpg?v=1761252024"}
+{"id": 7692852461619, "title": "Novasuede\u2122 - Melon Luxury Suede", "vendor_name": "Melon", "handle": "novasuede\u2122-melon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-melon.jpg?v=1761252027"}
+{"id": 7692852494387, "title": "Novasuede\u2122 - Milk Luxury Suede", "vendor_name": "Milk", "handle": "novasuede\u2122-milk", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-milk.jpg?v=1761252030"}
+{"id": 7692852559923, "title": "Novasuede\u2122 - Mint Julip Luxury Suede", "vendor_name": "Mint Julip", "handle": "novasuede\u2122-mint-julip", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mint-julip.jpg?v=1761252036"}
+{"id": 7692852625459, "title": "Novasuede\u2122 - Misty Dew Luxury Suede", "vendor_name": "Misty Dew", "handle": "novasuede\u2122-misty-dew", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-misty-dew.jpg?v=1761252042"}
+{"id": 7692852658227, "title": "Novasuede\u2122 Fabric & Wallcovering - Mocha", "vendor_name": "Mocha", "handle": "novasuede\u2122-mocha", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mocha.jpg?v=1761252045"}
+{"id": 7692852690995, "title": "Novasuede\u2122 - Moss Luxury Suede", "vendor_name": "Moss", "handle": "novasuede\u2122-moss", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-moss.jpg?v=1761252048"}
+{"id": 7692852723763, "title": "Novasuede\u2122 - Mushroom Luxury Suede", "vendor_name": "Mushroom", "handle": "novasuede\u2122-mushroom", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mushroom.jpg?v=1761252051"}
+{"id": 7692852822067, "title": "Novasuede\u2122 Fabric & Wallcovering - Nutmeg", "vendor_name": "Nutmeg", "handle": "novasuede\u2122-nutmeg", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-nutmeg.jpg?v=1761252060"}
+{"id": 7692852854835, "title": "Novasuede\u2122 Fabric & Wallcovering - Ocean", "vendor_name": "Ocean", "handle": "novasuede\u2122-ocean", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ocean.jpg?v=1761252062"}
+{"id": 7692852887603, "title": "Novasuede\u2122 - Olive Luxury Suede", "vendor_name": "Olive", "handle": "novasuede\u2122-olive", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-olive.jpg?v=1761252065"}
+{"id": 7692852953139, "title": "Novasuede\u2122 - Oyster Luxury Suede", "vendor_name": "Oyster", "handle": "novasuede\u2122-oyster", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-oyster.jpg?v=1761252071"}
+{"id": 7692852985907, "title": "Novasuede\u2122 - Pale Green Luxury Suede", "vendor_name": "Pale Green", "handle": "novasuede\u2122-pale-green", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pale-green.jpg?v=1761252074"}
+{"id": 7692853018675, "title": "Novasuede\u2122 - Passion Blue Luxury Suede", "vendor_name": "Passion Blue", "handle": "novasuede\u2122-passion-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue.jpg?v=1761252076"}
+{"id": 7692853051443, "title": "Novasuede\u2122 - Peach Luxury Suede", "vendor_name": "Peach", "handle": "novasuede\u2122-peach", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peach.jpg?v=1761252079"}
+{"id": 7692853084211, "title": "Novasuede\u2122 - Pebble Luxury Suede", "vendor_name": "Pebble", "handle": "novasuede\u2122-pebble", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pebble.jpg?v=1761252082"}
+{"id": 7692853116979, "title": "Novasuede\u2122 - Peppermint Luxury Suede", "vendor_name": "Peppermint", "handle": "novasuede\u2122-peppermint", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peppermint.jpg?v=1761252085"}
+{"id": 7692853149747, "title": "Novasuede\u2122 - Peridot Luxury Suede", "vendor_name": "Peridot", "handle": "novasuede\u2122-peridot", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peridot.jpg?v=1761252088"}
+{"id": 7692853182515, "title": "Novasuede\u2122 Fabric & Wallcovering - Periwinkle", "vendor_name": "Periwinkle", "handle": "novasuede\u2122-periwinkle", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-periwinkle.jpg?v=1761252091"}
+{"id": 7692853248051, "title": "Novasuede\u2122 - Plum Pleasure Luxury Suede", "vendor_name": "Plum Pleasure", "handle": "novasuede\u2122-plum-pleasure", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-plum-pleasure.jpg?v=1761252095"}
+{"id": 7692853313587, "title": "Novasuede\u2122 - Powder Grey Luxury Suede", "vendor_name": "Powder Grey", "handle": "novasuede\u2122-powder-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-powder-grey.jpg?v=1761252099"}
+{"id": 7692853346355, "title": "Novasuede\u2122 - Prairie Luxury Suede", "vendor_name": "Prairie", "handle": "novasuede\u2122-prairie", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-prairie.jpg?v=1761252102"}
+{"id": 7692853444659, "title": "Novasuede\u2122 - Sandalwood Luxury Suede", "vendor_name": "Sandalwood", "handle": "novasuede\u2122-red", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-red.jpg?v=1761252111"}
+{"id": 7692853575731, "title": "Novasuede\u2122 - Ruby Luxury Suede", "vendor_name": "Ruby", "handle": "novasuede\u2122-ruby", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ruby.jpg?v=1761252121"}
+{"id": 7692853608499, "title": "Novasuede\u2122 - Sable Luxury Suede", "vendor_name": "Sable", "handle": "novasuede\u2122-sable", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sable.jpg?v=1761252123"}
+{"id": 7692853674035, "title": "Novasuede\u2122 - Saffron Luxury Suede", "vendor_name": "Saffron", "handle": "novasuede\u2122-saffron", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-saffron.jpg?v=1761252130"}
+{"id": 7692853706803, "title": "Novasuede\u2122 - Sage Luxury Suede", "vendor_name": "Sage", "handle": "novasuede\u2122-sage", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sage.jpg?v=1761252133"}
+{"id": 7692853739571, "title": "Novasuede\u2122 - Salt Luxury Suede", "vendor_name": "Salt", "handle": "novasuede\u2122-salt", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-salt.jpg?v=1761252136"}
+{"id": 7692853772339, "title": "Novasuede\u2122 - Sand Luxury Suede", "vendor_name": "Sand", "handle": "novasuede\u2122-sand", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sand.jpg?v=1761252139"}
+{"id": 7692853837875, "title": "Novasuede\u2122 - Scarlet Wine Luxury Suede", "vendor_name": "Scarlet Wine", "handle": "novasuede\u2122-scarlet-wine", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-scarlet-wine.jpg?v=1761252145"}
+{"id": 7692853870643, "title": "Novasuede\u2122 - Sea Blue Luxury Suede", "vendor_name": "Sea Blue", "handle": "novasuede\u2122-sea-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-blue.jpg?v=1761252148"}
+{"id": 7692853903411, "title": "Novasuede\u2122 - Sea Grass Luxury Suede", "vendor_name": "Sea Grass", "handle": "novasuede\u2122-sea-grass", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-grass.jpg?v=1761252154"}
+{"id": 7692853936179, "title": "Novasuede\u2122 - Sea Breeze Luxury Suede", "vendor_name": "Sea Breeze", "handle": "novasuede\u2122-sea-breeze", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-breeze.jpg?v=1761252151"}
+{"id": 7692853968947, "title": "Novasuede\u2122 - Seafoam Luxury Suede", "vendor_name": "Seafoam", "handle": "novasuede\u2122-seafoam", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-seafoam.jpg?v=1761252157"}
+{"id": 7692854034483, "title": "Novasuede\u2122 - Sienna Luxury Suede", "vendor_name": "Sienna", "handle": "novasuede\u2122-sienna", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sienna.jpg?v=1761252160"}
+{"id": 7692854067251, "title": "Novasuede\u2122 Fabric & Wallcovering - Silver", "vendor_name": "Silver", "handle": "novasuede\u2122-silver", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-silver.jpg?v=1761252163"}
+{"id": 7692854100019, "title": "Novasuede\u2122 - Sky Blue Luxury Suede", "vendor_name": "Sky Blue", "handle": "novasuede\u2122-sky-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sky-blue.jpg?v=1761252166"}
+{"id": 7692854132787, "title": "Novasuede\u2122 - Smoke Luxury Suede", "vendor_name": "Smoke", "handle": "novasuede\u2122-smoke", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-smoke.jpg?v=1761252169"}
+{"id": 7692854165555, "title": "Novasuede\u2122 - Soft Clay Luxury Suede", "vendor_name": "Soft Clay", "handle": "novasuede\u2122-soft-clay", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-soft-clay.jpg?v=1761252172"}
+{"id": 7692854198323, "title": "Novasuede\u2122 - Solar Yellow Luxury Suede", "vendor_name": "Solar Yellow", "handle": "novasuede\u2122-solar-yellow", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-solar-yellow.jpg?v=1761252175"}
+{"id": 7692854263859, "title": "Novasuede\u2122 - Steel Luxury Suede", "vendor_name": "Steel", "handle": "novasuede\u2122-steel", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-steel.jpg?v=1761252180"}
+{"id": 7692854296627, "title": "Novasuede\u2122 - Stone Grey Luxury Suede", "vendor_name": "Stone Grey", "handle": "novasuede\u2122-stone-grey", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-grey.jpg?v=1761252183"}
+{"id": 7692854329395, "title": "Novasuede\u2122 - Stone Taupe Luxury Suede", "vendor_name": "Stone Taupe", "handle": "novasuede\u2122-stone-taupe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-taupe.jpg?v=1761252186"}
+{"id": 7692854394931, "title": "Novasuede\u2122 - Raffia Luxury Suede", "vendor_name": "Raffia", "handle": "novasuede\u2122-straw", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.51.27PM.png?v=1774990298"}
+{"id": 7692854427699, "title": "Novasuede\u2122 - Porcelain Luxury Suede", "vendor_name": "Porcelain", "handle": "novasuede\u2122-strong-white", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.43.35PM.png?v=1774989843"}
+{"id": 7692854460467, "title": "Novasuede\u2122 - Sugar Plum Luxury Suede", "vendor_name": "Sugar Plum", "handle": "novasuede\u2122-sugar-plum", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sugar-plum.jpg?v=1761252197"}
+{"id": 7692854493235, "title": "Novasuede\u2122 - Sweet Lilac Luxury Suede", "vendor_name": "Sweet Lilac", "handle": "novasuede\u2122-sweet-lilac", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sweet-lilac.jpg?v=1761252200"}
+{"id": 7692854526003, "title": "Novasuede\u2122 - Tan Luxury Suede", "vendor_name": "Tan", "handle": "novasuede\u2122-tan", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tan.jpg?v=1761252203"}
+{"id": 7692854558771, "title": "Novasuede\u2122 - Tarragon Luxury Suede", "vendor_name": "Tarragon", "handle": "novasuede\u2122-tarragon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tarragon.jpg?v=1761252206"}
+{"id": 7692854591539, "title": "Novasuede\u2122 - Taupe Luxury Suede", "vendor_name": "Taupe", "handle": "novasuede\u2122-taupe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-taupe.jpg?v=1761252209"}
+{"id": 7692854624307, "title": "Novasuede\u2122 - Thyme Luxury Suede", "vendor_name": "Thyme", "handle": "novasuede\u2122-thyme", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thyme.jpg?v=1761252211"}
+{"id": 7692854657075, "title": "Novasuede\u2122 - Trench Luxury Suede", "vendor_name": "Trench", "handle": "novasuede\u2122-trench", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-trench.jpg?v=1761252215"}
+{"id": 7692854689843, "title": "Novasuede\u2122 - Vanilla Luxury Suede", "vendor_name": "Vanilla", "handle": "novasuede\u2122-vanilla", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vanilla.jpg?v=1761252217"}
+{"id": 7692854722611, "title": "Novasuede\u2122 Fabric & Wallcovering - White", "vendor_name": "White", "handle": "novasuede\u2122-white", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-white.jpg?v=1761252220"}
+{"id": 7810413133875, "title": "Novasuede\u2122 - Putty Luxury Suede", "vendor_name": "Putty", "handle": "novasuede\u2122-fabric-wallcovering-white-copy", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.47.32PM.png?v=1774990085"}
+{"id": 7810424700979, "title": "Novasuede\u2122 - Straw Luxury Suede", "vendor_name": "Straw", "handle": "novasuede\u2122-fabric-wallcovering-iceberg-copy", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.41.15PM.png?v=1774993288"}
+{"id": 7810424864819, "title": "Novasuede\u2122 - Strong White Luxury Suede", "vendor_name": "Strong White", "handle": "novasuede\u2122-fabric-wallcovering-strong-white", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.43.05PM.png?v=1774993396"}
+{"id": 7811043164211, "title": "Novasuede\u2122 - Pistachio Luxury Suede", "vendor_name": "Pistachio", "handle": "novasuede\u2122-fabric-wallcovering-pistachio", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pistachio.jpg?v=1776305519"}
+{"id": 7811044311091, "title": "Novasuede\u2122 - Rosewater Luxury Suede", "vendor_name": "Rosewater", "handle": "novasuede\u2122-fabric-wallcovering-rosewater", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-rosewater.jpg?v=1776305521"}
+{"id": 7811046309939, "title": "Novasuede\u2122 - Safari Luxury Suede", "vendor_name": "Safari", "handle": "novasuede\u2122-fabric-wallcovering-safari", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-04-01at10.55.54AM.png?v=1775066164"}
+{"id": 7811047948339, "title": "Novasuede\u2122 - Storm Luxury Suede", "vendor_name": "Storm", "handle": "novasuede\u2122-fabric-wallcovering-storm", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-storm.jpg?v=1776305010"}
+{"id": 7821430095923, "title": "Novasuede\u2122 Fabric & Wallcovering - Wheat", "vendor_name": "Wheat", "handle": "novasuede\u2122-fabric-wallcovering-wheat", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-wheat.jpg?v=1776722555"}
+{"id": 7821430128691, "title": "Novasuede\u2122 Fabric & Wallcovering - Woodland", "vendor_name": "Woodland", "handle": "novasuede\u2122-fabric-wallcovering-woodland", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-woodland.jpg?v=1776722560"}
+{"id": 7821430161459, "title": "Novasuede\u2122 Fabric & Wallcovering - Snow", "vendor_name": "Snow", "handle": "novasuede\u2122-fabric-wallcovering-snow", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-snow.jpg?v=1776722562"}
+{"id": 7821430194227, "title": "Novasuede\u2122 Fabric & Wallcovering - Amber", "vendor_name": "Amber", "handle": "novasuede\u2122-fabric-wallcovering-amber", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-amber.jpg?v=1776722489"}
+{"id": 7821430226995, "title": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose", "vendor_name": "Blush Rose", "handle": "novasuede\u2122-fabric-wallcovering-blush-rose", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-rose.jpg?v=1776722491"}
+{"id": 7821430292531, "title": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal", "vendor_name": "Dusty Teal", "handle": "novasuede\u2122-fabric-wallcovering-dusty-teal", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-teal.jpg?v=1776722501"}
+{"id": 7821430325299, "title": "Novasuede\u2122 Fabric & Wallcovering - Verdigris", "vendor_name": "Verdigris", "handle": "novasuede\u2122-fabric-wallcovering-verdigris", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-verdigris.jpg?v=1776722551"}
+{"id": 7821430358067, "title": "Novasuede\u2122 Fabric & Wallcovering - Winter White", "vendor_name": "Winter White", "handle": "novasuede\u2122-fabric-wallcovering-winter-white", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-winter-white.jpg?v=1776722558"}
+{"id": 7821430390835, "title": "Novasuede\u2122 Fabric & Wallcovering - Bliss", "vendor_name": "Bliss", "handle": "novasuede\u2122-fabric-wallcovering-bliss", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bliss.jpg?v=1776722484"}
+{"id": 7821430423603, "title": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate", "vendor_name": "Blank Slate", "handle": "novasuede\u2122-fabric-wallcovering-blank-slate", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blank-slate.jpg?v=1776722487"}
+{"id": 7821430456371, "title": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue", "vendor_name": "Colonial Blue", "handle": "novasuede\u2122-fabric-wallcovering-colonial-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-colonial-blue.jpg?v=1776722496"}
+{"id": 7821430489139, "title": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch", "vendor_name": "Dusty Ranch", "handle": "novasuede\u2122-fabric-wallcovering-dusty-ranch", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-ranch.jpg?v=1776722498"}
+{"id": 7821430521907, "title": "Novasuede\u2122 Fabric & Wallcovering - Fire", "vendor_name": "Fire", "handle": "novasuede\u2122-fabric-wallcovering-fire", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fire-red.jpg?v=1776722503"}
+{"id": 7821430554675, "title": "Novasuede\u2122 Fabric & Wallcovering - Flagstone", "vendor_name": "Flagstone", "handle": "novasuede\u2122-fabric-wallcovering-flagstone", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-flagstone.jpg?v=1776722505"}
+{"id": 7821430587443, "title": "Novasuede\u2122 Fabric & Wallcovering - Henna", "vendor_name": "Henna", "handle": "novasuede\u2122-fabric-wallcovering-henna", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-henna.jpg?v=1776722508"}
+{"id": 7821430620211, "title": "Novasuede\u2122 Fabric & Wallcovering - Kiva", "vendor_name": "Kiva", "handle": "novasuede\u2122-fabric-wallcovering-kiva", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-kiva.jpg?v=1776722510"}
+{"id": 7821430652979, "title": "Novasuede\u2122 Fabric & Wallcovering - Lipstick", "vendor_name": "Lipstick", "handle": "novasuede\u2122-fabric-wallcovering-lipstick", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lipstick-red.jpg?v=1776722512"}
+{"id": 7821430718515, "title": "Novasuede\u2122 Fabric & Wallcovering - Noir", "vendor_name": "Noir", "handle": "novasuede\u2122-fabric-wallcovering-noir", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-noir-black.jpg?v=1776722514"}
+{"id": 7821430784051, "title": "Novasuede\u2122 Fabric & Wallcovering - Opal", "vendor_name": "Opal", "handle": "novasuede\u2122-fabric-wallcovering-opal", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-opal.jpg?v=1776722517"}
+{"id": 7821430816819, "title": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue", "vendor_name": "Pastel Blue", "handle": "novasuede\u2122-fabric-wallcovering-pastel-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-blue.jpg?v=1776722519"}
+{"id": 7821430849587, "title": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink", "vendor_name": "Pastel Pink", "handle": "novasuede\u2122-fabric-wallcovering-pastel-pink", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-pink.jpg?v=1776722521"}
+{"id": 7821430882355, "title": "Novasuede\u2122 Fabric & Wallcovering - Persimmon", "vendor_name": "Persimmon", "handle": "novasuede\u2122-fabric-wallcovering-persimmon", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-persimmon.jpg?v=1776722524"}
+{"id": 7821430915123, "title": "Novasuede\u2122 Fabric & Wallcovering - Port Blue", "vendor_name": "Port Blue", "handle": "novasuede\u2122-fabric-wallcovering-port-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-port-blue.jpg?v=1776722526"}
+{"id": 7821430947891, "title": "Novasuede\u2122 Fabric & Wallcovering - Raisin", "vendor_name": "Raisin", "handle": "novasuede\u2122-fabric-wallcovering-raisin", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-raisin.jpg?v=1776722532"}
+{"id": 7821430980659, "title": "Novasuede\u2122 Fabric & Wallcovering - Shale", "vendor_name": "Shale", "handle": "novasuede\u2122-fabric-wallcovering-shale", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-shale.jpg?v=1776722537"}
+{"id": 7821431013427, "title": "Novasuede\u2122 Fabric & Wallcovering - Spruce", "vendor_name": "Spruce", "handle": "novasuede\u2122-fabric-wallcovering-spruce", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-spruce.jpg?v=1776722539"}
+{"id": 7821431046195, "title": "Novasuede\u2122 Fabric & Wallcovering - Terracotta", "vendor_name": "Terracotta", "handle": "novasuede\u2122-fabric-wallcovering-terracotta", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-terracotta.jpg?v=1776722541"}
+{"id": 7821431078963, "title": "Novasuede\u2122 Fabric & Wallcovering - Sedona", "vendor_name": "Sedona", "handle": "novasuede\u2122-fabric-wallcovering-sedona", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sedona.jpg?v=1776722534"}
+{"id": 7821431111731, "title": "Novasuede\u2122 Fabric & Wallcovering - Thistle", "vendor_name": "Thistle", "handle": "novasuede\u2122-fabric-wallcovering-thistle", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thistle.jpg?v=1776722544"}
+{"id": 7821431144499, "title": "Novasuede\u2122 Fabric & Wallcovering - Tusk", "vendor_name": "Tusk", "handle": "novasuede\u2122-fabric-wallcovering-tusk", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tusk.jpg?v=1776722546"}
+{"id": 7821431177267, "title": "Novasuede\u2122 Fabric & Wallcovering - Umber", "vendor_name": "Umber", "handle": "novasuede\u2122-fabric-wallcovering-umber", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-umber.jpg?v=1776722548"}
+{"id": 7821431210035, "title": "Novasuede\u2122 Fabric & Wallcovering - Vermilion", "vendor_name": "Vermilion", "handle": "novasuede\u2122-fabric-wallcovering-vermilion", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vermillion-red.jpg?v=1776722553"}
+{"id": 7821432520755, "title": "Novasuede\u2122 Fabric & Wallcovering - Cement", "vendor_name": "Cement", "handle": "novasuede\u2122-fabric-wallcovering-cement", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cement.jpg?v=1776722493"}
+{"id": 7821432553523, "title": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace", "vendor_name": "Pink Lace", "handle": "novasuede\u2122-fabric-wallcovering-pink-lace", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pink-lace.jpg?v=1776722528"}
+{"id": 7821432586291, "title": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue", "vendor_name": "Royal Blue", "handle": "novasuede\u2122-fabric-wallcovering-royal-blue", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-royal-blue.jpg?v=1776722530"}
+{"id": 7867431649331, "title": "Novasuede\u2122 Fabric & Wallcovering - Satin", "vendor_name": "Satin", "handle": "novasuede\u2122-fabric-wallcovering-satin", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at11.01.42AM.png?v=1782324116"}
+{"id": 7867477229619, "title": "Novasuede\u2122 Fabric & Wallcovering - Abyss", "vendor_name": "Abyss", "handle": "novasuede\u2122-fabric-wallcovering-abyss", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at12.42.27PM.png?v=1782330159"}
diff --git a/data/enriched.ndjson b/data/enriched.ndjson
new file mode 100644
index 0000000..b539d1b
--- /dev/null
+++ b/data/enriched.ndjson
@@ -0,0 +1,2 @@
+{"id": 7692849971251, "title": "Novasuede\u2122 - Acorn Luxury Suede", "vendor_name": "Acorn", "handle": "novasuede\u2122-acorn", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816", "palette": [{"hex": "#7F3B0F", "percentage": 96}, {"hex": "#5D2805", "percentage": 4}], "dominant_hex": "#7F3B0F", "depth": "deep", "undertone": "warm", "hue_family": "orange", "styles": ["Mediterranean", "Organic Modern", "Mid-Century Modern"], "primary_colorway": "Caramel", "description": "A rich, deep Caramel microfiber suede exudes warmth and sophistication, ideal for creating inviting spaces in Mediterranean or Organic Modern decor.", "_ok": true}
+{"id": 7692850004019, "title": "Novasuede\u2122 - Adobe Luxury Suede", "vendor_name": "Adobe", "handle": "novasuede\u2122-adobe", "img": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819", "palette": [{"hex": "#EDDBC4", "percentage": 95}, {"hex": "#E0C9AE", "percentage": 5}], "dominant_hex": "#EDDBC4", "depth": "pale", "undertone": "warm", "hue_family": "orange", "styles": ["Desert Modern", "Organic Modern", "Bohemian"], "primary_colorway": "Bone", "description": "A pale Bone-colored microfiber suede exudes warmth and simplicity, perfect for creating serene and organic modern spaces in desert-inspired settings.", "_ok": true}
diff --git a/data/novasuede_raw.ndjson b/data/novasuede_raw.ndjson
new file mode 100644
index 0000000..e2ab687
--- /dev/null
+++ b/data/novasuede_raw.ndjson
@@ -0,0 +1,178 @@
+{"id": 7692849971251, "title": "Novasuede\u2122 - Acorn Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in varying shades of brown. The texture and color palette evoke a warm and natural mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-acorn", "tags": "100000 double rubs, 54 inch wide fabric, Acorn, aircraft fabric, Architectural, Bedroom, Burnt Sienna, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Brown, color:Brass, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-90000, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, Modern, NFPA 260, Novasuede, novasuede acorn, Office, Orange, Organic Modern, Russet, Solid, Suede, synthetic suede, T3H5W, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, Warm, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993037363, "product_id": 7692849971251, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:36:57-07:00", "updated_at": "2026-06-11T12:22:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235194419, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993037363", "image_id": null}, {"id": 44178677399603, "product_id": 7692849971251, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:06-07:00", "updated_at": "2026-04-03T13:07:08-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288535584819, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677399603", "image_id": null}, {"id": 44178677432371, "product_id": 7692849971251, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:07-07:00", "updated_at": "2026-04-03T13:07:14-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288535617587, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677432371", "image_id": null}], "images": [{"id": 36104221098035, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692849971251, "created_at": "2025-10-23T13:36:56-07:00", "updated_at": "2026-04-03T12:15:05-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763384883", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816", "variant_ids": []}], "image": {"id": 36104221098035, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692849971251, "created_at": "2025-10-23T13:36:56-07:00", "updated_at": "2026-04-03T12:15:05-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763384883", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816", "variant_ids": []}}
+{"id": 7692850004019, "title": "Novasuede\u2122 - Adobe Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a subtle, soft texture. It evokes a warm and inviting atmosphere, suitable for creating a cozy and sophisticated space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-adobe", "tags": "100000 double rubs, 54 inch wide fabric, Adobe, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Beige, by the yard, Cal 117, cal 117 fabric, Champagne, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, commercial grade fabric, Contemporary, contract fabric, Cream, designer fabric, display_variant, DWCC-90200, Fabric, faux suede fabric, Fire Rated, fire rated fabric, Hallway, hospitality fabric, Light Beige, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede adobe, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Beige, Paper, Serene, Solid, synthetic suede, T3K6W, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric, Yellow", "status": "active", "variants": [{"id": 43698993102899, "product_id": 7692850004019, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:36:59-07:00", "updated_at": "2026-06-11T12:22:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235259955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993102899", "image_id": null}, {"id": 44178677497907, "product_id": 7692850004019, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:20-07:00", "updated_at": "2026-04-03T13:07:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288535683123, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677497907", "image_id": null}, {"id": 44178677530675, "product_id": 7692850004019, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:21-07:00", "updated_at": "2026-04-03T13:07:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288535715891, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677530675", "image_id": null}], "images": [{"id": 36104221491251, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850004019, "created_at": "2025-10-23T13:36:59-07:00", "updated_at": "2026-04-03T12:15:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763679795", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819", "variant_ids": []}], "image": {"id": 36104221491251, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850004019, "created_at": "2025-10-23T13:36:59-07:00", "updated_at": "2026-04-03T12:15:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763679795", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-adobe.jpg?v=1761251819", "variant_ids": []}}
+{"id": 7692850036787, "title": "Novasuede\u2122 - African Violet Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a deep purple hue. The textured finish and rich color evoke a sophisticated and glamorous mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-african-violet", "tags": "100000 double rubs, 54 inch wide fabric, African Violet, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Purple, color:Eggplant, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-90400, Eggplant, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, Luxe, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede african violet, Novasuede\u2122 Fabric & Wallcovering, Office, Plum, Purple, Solid, Sophisticated, Suede, synthetic suede, T3SAW, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993135667, "product_id": 7692850036787, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:02-07:00", "updated_at": "2026-04-03T13:07:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235292723, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993135667", "image_id": null}, {"id": 44178677760051, "product_id": 7692850036787, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:34-07:00", "updated_at": "2026-04-03T13:07:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288535945267, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677760051", "image_id": null}, {"id": 44178677792819, "product_id": 7692850036787, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:36-07:00", "updated_at": "2026-04-03T13:07:15-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288535978035, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677792819", "image_id": null}], "images": [{"id": 36104221720627, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850036787, "created_at": "2025-10-23T13:37:02-07:00", "updated_at": "2026-04-03T12:15:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763974707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-african-violet.jpg?v=1761251822", "variant_ids": []}], "image": {"id": 36104221720627, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850036787, "created_at": "2025-10-23T13:37:02-07:00", "updated_at": "2026-04-03T12:15:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102763974707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-african-violet.jpg?v=1761251822", "variant_ids": []}}
+{"id": 7692850069555, "title": "Novasuede\u2122 - Apricot Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Apricot. The texture and color evoke a warm and inviting mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-apricot", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Burnt Orange, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Orange, color:Apricot, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-90600, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede apricot, Novasuede\u2122 Fabric & Wallcovering, Office, Orange, Organic Modern, Solid, Suede, synthetic suede, T3Q4W, Tangerine, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, Warm, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993168435, "product_id": 7692850069555, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:05-07:00", "updated_at": "2026-04-03T13:07:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235325491, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993168435", "image_id": null}, {"id": 44178678054963, "product_id": 7692850069555, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:03-07:00", "updated_at": "2026-04-03T13:07:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536240179, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678054963", "image_id": null}, {"id": 44178678087731, "product_id": 7692850069555, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:04-07:00", "updated_at": "2026-04-03T13:07:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536272947, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678087731", "image_id": null}], "images": [{"id": 36104221982771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850069555, "created_at": "2025-10-23T13:37:05-07:00", "updated_at": "2026-04-03T12:15:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764171315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-apricot.jpg?v=1761251825", "variant_ids": []}], "image": {"id": 36104221982771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850069555, "created_at": "2025-10-23T13:37:05-07:00", "updated_at": "2026-04-03T12:15:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764171315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-apricot.jpg?v=1761251825", "variant_ids": []}}
+{"id": 7692850135091, "title": "Novasuede\u2122 - Arrow Wood Luxury Suede", "body_html": "<p>This wallcovering features a realistic wood grain pattern with a suede-like texture. It evokes a warm and natural feeling, perfect for creating a cozy and inviting space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-arrow-wood", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Arrow Wood, Bedroom, Beige, Biophilic, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Brown, color:Tan, Commercial, commercial grade fabric, Contemporary, contract fabric, Dark Taupe, designer fabric, display_variant, DWCC-90800, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede arrow wood, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, synthetic suede, T3F8W, Tan, Taupe, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, Warm, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993201203, "product_id": 7692850135091, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:08-07:00", "updated_at": "2026-06-11T12:22:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235358259, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993201203", "image_id": null}, {"id": 44178678120499, "product_id": 7692850135091, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:17-07:00", "updated_at": "2026-04-03T13:07:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536305715, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678120499", "image_id": null}, {"id": 44178678153267, "product_id": 7692850135091, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:19-07:00", "updated_at": "2026-04-03T13:07:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-90800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536338483, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678153267", "image_id": null}], "images": [{"id": 36104222277683, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850135091, "created_at": "2025-10-23T13:37:07-07:00", "updated_at": "2026-04-03T12:15:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764433459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-arrow-wood.jpg?v=1761251827", "variant_ids": []}], "image": {"id": 36104222277683, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850135091, "created_at": "2025-10-23T13:37:07-07:00", "updated_at": "2026-04-03T12:15:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764433459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-arrow-wood.jpg?v=1761251827", "variant_ids": []}}
+{"id": 7692850167859, "title": "Novasuede\u2122 - Aubergine Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a deep aubergine color. It evokes a sophisticated and elegant mood with its soft texture and rich hue.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-aubergine", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Aubergine, Bedroom, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Purple, color:Charcoal, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-91000, Eggplant, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, Moody, NFPA 260, Novasuede, novasuede aubergine, Novasuede\u2122 Fabric & Wallcovering, Office, Plum, Purple, Solid, Sophisticated, Suede, synthetic suede, T3SCW, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993233971, "product_id": 7692850167859, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:11-07:00", "updated_at": "2026-04-03T13:07:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235391027, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993233971", "image_id": null}, {"id": 44178678186035, "product_id": 7692850167859, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:32-07:00", "updated_at": "2026-04-03T13:07:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536371251, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678186035", "image_id": null}, {"id": 44178678218803, "product_id": 7692850167859, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:33-07:00", "updated_at": "2026-04-03T13:07:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536404019, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678218803", "image_id": null}], "images": [{"id": 36104222507059, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850167859, "created_at": "2025-10-23T13:37:10-07:00", "updated_at": "2026-04-03T12:15:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764662835", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-aubergine.jpg?v=1761251830", "variant_ids": []}], "image": {"id": 36104222507059, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850167859, "created_at": "2025-10-23T13:37:10-07:00", "updated_at": "2026-04-03T12:15:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764662835", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-aubergine.jpg?v=1761251830", "variant_ids": []}}
+{"id": 7692850200627, "title": "Novasuede\u2122 - Baltic Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a subtle, textured appearance. Its neutral color palette and soft texture evoke a sense of calm and understated elegance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-baltic", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Baltic, Bedroom, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-91200, Fabric, faux suede fabric, Fire Rated, fire rated fabric, Grey, Hallway, hospitality fabric, Light Gray, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede baltic, Novasuede\u2122 Fabric & Wallcovering, Pale Gray, Serene, Solid, Suede, synthetic suede, T3L6W, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993397811, "product_id": 7692850200627, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:13-07:00", "updated_at": "2026-06-11T12:22:05-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235554867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993397811", "image_id": null}, {"id": 44178678349875, "product_id": 7692850200627, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:46-07:00", "updated_at": "2026-04-03T13:07:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536535091, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678349875", "image_id": null}, {"id": 44178678382643, "product_id": 7692850200627, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:06:48-07:00", "updated_at": "2026-04-03T13:07:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536567859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678382643", "image_id": null}], "images": [{"id": 36104222769203, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850200627, "created_at": "2025-10-23T13:37:13-07:00", "updated_at": "2026-04-03T12:15:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764859443", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-baltic.jpg?v=1761251833", "variant_ids": []}], "image": {"id": 36104222769203, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850200627, "created_at": "2025-10-23T13:37:13-07:00", "updated_at": "2026-04-03T12:15:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102764859443", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-baltic.jpg?v=1761251833", "variant_ids": []}}
+{"id": 7692850233395, "title": "Novasuede\u2122 - Beige Luxury Suede", "body_html": "<p>This wallcovering is a luxurious beige suede texture. It evokes a warm and sophisticated mood, perfect for creating a cozy and inviting space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-beige", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Beige, by the yard, Cal 117, cal 117 fabric, Champagne, Class A Fire Rated, Color: Beige, color:Tan, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-91400, Fabric, faux suede fabric, Fire Rated, fire rated fabric, Hallway, hospitality fabric, Light Brown, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede beige, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Beige, Serene, Solid, Suede, synthetic suede, T3E8W, Textured, Timeless, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric, Yellow", "status": "active", "variants": [{"id": 43698993430579, "product_id": 7692850233395, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:16-07:00", "updated_at": "2026-06-11T12:22:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235587635, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993430579", "image_id": null}, {"id": 44178678415411, "product_id": 7692850233395, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:00-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536600627, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678415411", "image_id": null}, {"id": 44178678448179, "product_id": 7692850233395, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:02-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536633395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678448179", "image_id": null}], "images": [{"id": 36104223031347, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850233395, "created_at": "2025-10-23T13:37:16-07:00", "updated_at": "2026-04-03T12:15:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765088819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-beige.jpg?v=1761251836", "variant_ids": []}], "image": {"id": 36104223031347, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850233395, "created_at": "2025-10-23T13:37:16-07:00", "updated_at": "2026-04-03T12:15:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765088819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-beige.jpg?v=1761251836", "variant_ids": []}}
+{"id": 7692850266163, "title": "Novasuede\u2122 - Biscuit Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a biscuit color. It evokes a warm and inviting mood with a touch of understated elegance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-biscuit", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Beige, Biscuit, by the yard, Cal 117, cal 117 fabric, Champagne, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, commercial grade fabric, Contemporary, contract fabric, Cream, designer fabric, display_variant, DWCC-91600, Fabric, Fabric-backed Vinyl, faux suede fabric, Fire Rated, fire rated fabric, Hallway, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede biscuit, Novasuede\u2122 Fabric & Wallcovering, Off-white, Organic Modern, Pale Beige, Serene, Solid, synthetic suede, T3DHW, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric, Yellow", "status": "active", "variants": [{"id": 43698993463347, "product_id": 7692850266163, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:19-07:00", "updated_at": "2026-06-11T12:22:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235620403, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993463347", "image_id": null}, {"id": 44178678480947, "product_id": 7692850266163, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:15-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536666163, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678480947", "image_id": null}, {"id": 44178678513715, "product_id": 7692850266163, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:16-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536698931, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678513715", "image_id": null}], "images": [{"id": 36104223260723, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850266163, "created_at": "2025-10-23T13:37:19-07:00", "updated_at": "2026-04-03T12:15:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765285427", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-biscuit.jpg?v=1761251839", "variant_ids": []}], "image": {"id": 36104223260723, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850266163, "created_at": "2025-10-23T13:37:19-07:00", "updated_at": "2026-04-03T12:15:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765285427", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-biscuit.jpg?v=1761251839", "variant_ids": []}}
+{"id": 7692850298931, "title": "Novasuede\u2122 Fabric & Wallcovering - Black", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<h2>Novasuede\u2122 Black</h2>\n<h3>Product Overview</h3>\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications.</p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-black", "tags": "100000 double rubs, 54 inch wide fabric, aircraft fabric, Black, by the yard, Cal 117, cal 117 fabric, commercial grade fabric, contract fabric, designer fabric, display_variant, DWCC-91800, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, NFPA 260, Novasuede, novasuede black, synthetic suede, T3BLW, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric", "status": "archived", "variants": [{"id": 43698993496115, "product_id": 7692850298931, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:22-07:00", "updated_at": "2026-04-15T10:48:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-91800", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235653171, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993496115", "image_id": null}], "images": [{"id": 36104223522867, "alt": "Novasuede\u2122 Black - Premium Microfiber Suede", "position": 1, "product_id": 7692850298931, "created_at": "2025-10-23T13:37:21-07:00", "updated_at": "2025-10-23T13:37:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765514803", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-black.jpg?v=1761251841", "variant_ids": []}], "image": {"id": 36104223522867, "alt": "Novasuede\u2122 Black - Premium Microfiber Suede", "position": 1, "product_id": 7692850298931, "created_at": "2025-10-23T13:37:21-07:00", "updated_at": "2025-10-23T13:37:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765514803", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-black.jpg?v=1761251841", "variant_ids": []}}
+{"id": 7692850331699, "title": "Novasuede\u2122 - Bluestone Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in various shades of gray. The texture creates a soft, modern, and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-bluestone", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Bluestone, by the yard, Cal 117, cal 117 fabric, Charcoal Gray, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, DWCC-92000, Fabric, faux suede fabric, Fire Rated, fire rated fabric, Gray, Grey, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, NFPA 260, Novasuede, novasuede bluestone, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Silver Gray, Solid, Suede, synthetic suede, T3N7W, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993528883, "product_id": 7692850331699, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:25-07:00", "updated_at": "2026-04-03T13:08:08-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235685939, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993528883", "image_id": null}, {"id": 44178678677555, "product_id": 7692850331699, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:57-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536862771, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678677555", "image_id": null}, {"id": 44178678710323, "product_id": 7692850331699, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:58-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536895539, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678710323", "image_id": null}], "images": [{"id": 36104223719475, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850331699, "created_at": "2025-10-23T13:37:24-07:00", "updated_at": "2026-04-03T12:15:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765776947", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bluestone.jpg?v=1761251844", "variant_ids": []}], "image": {"id": 36104223719475, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850331699, "created_at": "2025-10-23T13:37:24-07:00", "updated_at": "2026-04-03T12:15:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765776947", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bluestone.jpg?v=1761251844", "variant_ids": []}}
+{"id": 7692850364467, "title": "Novasuede\u2122 - Blush Pink Luxury Suede", "body_html": "<p>This is a close-up of a blush pink suede wallcovering. The texture and soft color create a luxurious and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-blush-pink", "tags": "100000 double rubs, 54 inch wide fabric, AI-Analyzed-v2, aircraft fabric, Architectural, Bedroom, Blush Pink, by the yard, Cal 117, cal 117 fabric, Class A Fire Rated, Color: Pink, color:Ecru, Commercial, commercial grade fabric, Contemporary, contract fabric, designer fabric, display_variant, Dusty Rose, DWCC-92200, Fabric, faux suede fabric, Fire Rated, fire rated fabric, hospitality fabric, Living Room, majilite novasuede, Microfiber Suede, microfiber suede fabric, microfiber wallcovering, microsuede fabric, Minimalist, Modern, NFPA 260, Novasuede, novasuede blush pink, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pink, Rose, Solid, Suede, synthetic suede, T3C7W, Textured, ufac class 1, UFAC Class I, Upholstery, upholstery fabric, Wallcovering, wallcovering fabric, Warm, wyzenbeek rated, yacht fabric", "status": "active", "variants": [{"id": 43698993561651, "product_id": 7692850364467, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:27-07:00", "updated_at": "2026-04-03T13:08:22-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235718707, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993561651", "image_id": null}, {"id": 44178678743091, "product_id": 7692850364467, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:11-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536928307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678743091", "image_id": null}, {"id": 44178678775859, "product_id": 7692850364467, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:12-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536961075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678775859", "image_id": null}], "images": [{"id": 36104223916083, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850364467, "created_at": "2025-10-23T13:37:27-07:00", "updated_at": "2026-04-03T12:15:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765940787", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-pink.jpg?v=1761251847", "variant_ids": []}], "image": {"id": 36104223916083, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850364467, "created_at": "2025-10-23T13:37:27-07:00", "updated_at": "2026-04-03T12:15:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102765940787", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-pink.jpg?v=1761251847", "variant_ids": []}}
+{"id": 7692850397235, "title": "Novasuede\u2122 - Bone Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a bone color. It evokes a sense of understated elegance and warmth, creating a calming and sophisticated atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-bone", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sand, Serene, Solid, Suede, T3DSW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993627187, "product_id": 7692850397235, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:30-07:00", "updated_at": "2026-06-11T12:21:54-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235784243, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993627187", "image_id": null}, {"id": 44178678808627, "product_id": 7692850397235, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:25-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536993843, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678808627", "image_id": null}, {"id": 44178678841395, "product_id": 7692850397235, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:26-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537026611, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678841395", "image_id": null}], "images": [{"id": 36104224178227, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850397235, "created_at": "2025-10-23T13:37:30-07:00", "updated_at": "2026-04-03T12:15:22-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766137395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bone.jpg?v=1761251850", "variant_ids": []}], "image": {"id": 36104224178227, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850397235, "created_at": "2025-10-23T13:37:30-07:00", "updated_at": "2026-04-03T12:15:22-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766137395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bone.jpg?v=1761251850", "variant_ids": []}}
+{"id": 7692850430003, "title": "Novasuede\u2122 - Brown Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-brown", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Espresso, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993659955, "product_id": 7692850430003, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:33-07:00", "updated_at": "2026-04-03T13:08:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490004-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235817011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993659955", "image_id": null}, {"id": 44178678939699, "product_id": 7692850430003, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:38-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490004-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537124915, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678939699", "image_id": null}, {"id": 44178678972467, "product_id": 7692850430003, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:40-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490004-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537157683, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678972467", "image_id": null}], "images": [{"id": 37189341478963, "alt": "Novasuede brown luxury suede wallcovering", "position": 1, "product_id": 7692850430003, "created_at": "2026-04-15T19:02:58-07:00", "updated_at": "2026-04-15T19:03:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053298806835", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-brown.jpg?v=1776304980", "variant_ids": []}], "image": {"id": 37189341478963, "alt": "Novasuede brown luxury suede wallcovering", "position": 1, "product_id": 7692850430003, "created_at": "2026-04-15T19:02:58-07:00", "updated_at": "2026-04-15T19:03:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053298806835", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-brown.jpg?v=1776304980", "variant_ids": []}}
+{"id": 7692850462771, "title": "Novasuede\u2122 - Buff Luxury Suede", "body_html": "<p>This is a wallcovering with a suede-like texture in a buff color. It evokes a warm and luxurious feel, suitable for creating a sophisticated and inviting atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-buff", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Serene, Solid, Suede, T3D1W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698993692723, "product_id": 7692850462771, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:36-07:00", "updated_at": "2026-04-03T13:09:04-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235849779, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993692723", "image_id": null}, {"id": 44178679038003, "product_id": 7692850462771, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:52-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537223219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679038003", "image_id": null}, {"id": 44178679070771, "product_id": 7692850462771, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:08:54-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-92800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537255987, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679070771", "image_id": null}], "images": [{"id": 36104224571443, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850462771, "created_at": "2025-10-23T13:37:36-07:00", "updated_at": "2026-04-03T12:15:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766596147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buff.jpg?v=1761251856", "variant_ids": []}], "image": {"id": 36104224571443, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850462771, "created_at": "2025-10-23T13:37:36-07:00", "updated_at": "2026-04-03T12:15:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766596147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buff.jpg?v=1761251856", "variant_ids": []}}
+{"id": 7692850495539, "title": "Novasuede\u2122 - Buttercup Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a buttercup yellow color. It evokes a warm and inviting atmosphere with a touch of understated elegance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-buttercup", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Buttercup, Cal 117, Class A Fire Rated, Color: Beige, color:Lemon, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3DEW, Tan, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993725491, "product_id": 7692850495539, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:39-07:00", "updated_at": "2026-04-03T13:09:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235882547, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993725491", "image_id": null}, {"id": 44178679234611, "product_id": 7692850495539, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:07-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537419827, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679234611", "image_id": null}, {"id": 44178679267379, "product_id": 7692850495539, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:08-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537452595, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679267379", "image_id": null}], "images": [{"id": 36104224899123, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850495539, "created_at": "2025-10-23T13:37:38-07:00", "updated_at": "2026-04-03T12:15:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766891059", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buttercup.jpg?v=1761251858", "variant_ids": []}], "image": {"id": 36104224899123, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850495539, "created_at": "2025-10-23T13:37:38-07:00", "updated_at": "2026-04-03T12:15:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102766891059", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-buttercup.jpg?v=1761251858", "variant_ids": []}}
+{"id": 7692850528307, "title": "Novasuede\u2122 - Cane Luxury Suede", "body_html": "<p>This is a textured wallcovering with a cane-like pattern. It evokes a natural and sophisticated mood with its subtle color variations and tactile surface.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cane", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Camel, Cane, Class A Fire Rated, Color: Brown, color:Sand, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Golden Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3D3W, Tan, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698993758259, "product_id": 7692850528307, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:42-07:00", "updated_at": "2026-04-03T13:09:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235915315, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993758259", "image_id": null}, {"id": 44178679332915, "product_id": 7692850528307, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:20-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537518131, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679332915", "image_id": null}, {"id": 44178679365683, "product_id": 7692850528307, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:22-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537550899, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679365683", "image_id": null}], "images": [{"id": 36104225161267, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850528307, "created_at": "2025-10-23T13:37:41-07:00", "updated_at": "2026-04-03T12:15:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767120435", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cane.jpg?v=1761251861", "variant_ids": []}], "image": {"id": 36104225161267, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850528307, "created_at": "2025-10-23T13:37:41-07:00", "updated_at": "2026-04-03T12:15:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767120435", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cane.jpg?v=1761251861", "variant_ids": []}}
+{"id": 7692850561075, "title": "Novasuede\u2122 - Carbon Luxury Suede", "body_html": "<p>This is a dark gray, suede-like wallcovering. Its textured appearance creates a modern and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-carbon", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Carbon, Class A Fire Rated, Color: Beige, color:Charcoal, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sand, Serene, Solid, Suede, T3C6W, Tan, Taupe, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993791027, "product_id": 7692850561075, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:45-07:00", "updated_at": "2026-06-11T12:22:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235948083, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993791027", "image_id": null}, {"id": 44178679431219, "product_id": 7692850561075, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:34-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537616435, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679431219", "image_id": null}, {"id": 44178679463987, "product_id": 7692850561075, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:36-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537649203, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679463987", "image_id": null}], "images": [{"id": 37092166762547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850561075, "created_at": "2026-03-30T14:48:13-07:00", "updated_at": "2026-04-03T12:15:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27961211748403", "width": 902, "height": 902, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2026-03-30_at_2.47.49_PM.png?v=1774907294", "variant_ids": []}], "image": {"id": 37092166762547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850561075, "created_at": "2026-03-30T14:48:13-07:00", "updated_at": "2026-04-03T12:15:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27961211748403", "width": 902, "height": 902, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2026-03-30_at_2.47.49_PM.png?v=1774907294", "variant_ids": []}}
+{"id": 7692850593843, "title": "Novasuede\u2122 - Cashew Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in a cashew color. The texture and subtle color variations create a warm and inviting, organic feel.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cashew", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Burlywood, Cal 117, Cashew, Class A Fire Rated, Color: Brown, color:Oatmeal, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Rustic, Solid, Suede, T3D2W, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698993823795, "product_id": 7692850593843, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:48-07:00", "updated_at": "2026-06-11T12:22:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804235980851, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993823795", "image_id": null}, {"id": 44178679496755, "product_id": 7692850593843, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:48-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537681971, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679496755", "image_id": null}, {"id": 44178679529523, "product_id": 7692850593843, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:09:49-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537714739, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679529523", "image_id": null}], "images": [{"id": 36104225620019, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850593843, "created_at": "2025-10-23T13:37:47-07:00", "updated_at": "2026-04-03T12:15:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767611955", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashew.jpg?v=1761251867", "variant_ids": []}], "image": {"id": 36104225620019, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850593843, "created_at": "2025-10-23T13:37:47-07:00", "updated_at": "2026-04-03T12:15:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767611955", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashew.jpg?v=1761251867", "variant_ids": []}}
+{"id": 7692850626611, "title": "Novasuede\u2122 - Cashmere Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering. The texture and neutral color palette create a soft and elegant mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cashmere", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Cashmere, Class A Fire Rated, Color: Brown, color:Beige, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3E6W, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698993856563, "product_id": 7692850626611, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:51-07:00", "updated_at": "2026-04-03T13:07:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236013619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993856563", "image_id": null}, {"id": 44178633687091, "product_id": 7692850626611, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T12:19:37-07:00", "updated_at": "2026-04-03T13:07:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288491872307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178633687091", "image_id": null}, {"id": 44178633719859, "product_id": 7692850626611, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T12:19:48-07:00", "updated_at": "2026-04-03T13:07:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-93800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288491905075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178633719859", "image_id": null}], "images": [{"id": 36104225882163, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850626611, "created_at": "2025-10-23T13:37:50-07:00", "updated_at": "2026-04-03T12:15:34-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767808563", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashmere.jpg?v=1761251870", "variant_ids": []}], "image": {"id": 36104225882163, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850626611, "created_at": "2025-10-23T13:37:50-07:00", "updated_at": "2026-04-03T12:15:34-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102767808563", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cashmere.jpg?v=1761251870", "variant_ids": []}}
+{"id": 7692850659379, "title": "Novasuede\u2122 - Celadon Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Celadon. The subtle texture and soft color create a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-celadon", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Celadon, Class A Fire Rated, Color: Beige, color:Mint, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sand, Serene, Solid, Suede, T3P1W, Tan, Taupe, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993889331, "product_id": 7692850659379, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:53-07:00", "updated_at": "2026-04-03T13:10:14-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236046387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993889331", "image_id": null}, {"id": 44178679562291, "product_id": 7692850659379, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:02-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537747507, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679562291", "image_id": null}, {"id": 44178679595059, "product_id": 7692850659379, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:03-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537780275, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679595059", "image_id": null}], "images": [{"id": 36104226078771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850659379, "created_at": "2025-10-23T13:37:53-07:00", "updated_at": "2026-04-03T12:15:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768037939", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celadon.jpg?v=1761251873", "variant_ids": []}], "image": {"id": 36104226078771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850659379, "created_at": "2025-10-23T13:37:53-07:00", "updated_at": "2026-04-03T12:15:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768037939", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celadon.jpg?v=1761251873", "variant_ids": []}}
+{"id": 7692850692147, "title": "Novasuede\u2122 - Celery Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in a celery green color. The textured suede finish evokes a soft, natural, and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-celery", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Cal 117, Celery, Class A Fire Rated, Color: Green, color:Sage, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Khaki, Light Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive, Organic Modern, Sage, Serene, Solid, Suede, T3PFW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993922099, "product_id": 7692850692147, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:56-07:00", "updated_at": "2026-04-03T13:10:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236079155, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993922099", "image_id": null}, {"id": 44178679627827, "product_id": 7692850692147, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:16-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537813043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679627827", "image_id": null}, {"id": 44178679660595, "product_id": 7692850692147, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:17-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537845811, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679660595", "image_id": null}], "images": [{"id": 36104226275379, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850692147, "created_at": "2025-10-23T13:37:56-07:00", "updated_at": "2026-04-03T12:15:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768234547", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celery.jpg?v=1761251876", "variant_ids": []}], "image": {"id": 36104226275379, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850692147, "created_at": "2025-10-23T13:37:56-07:00", "updated_at": "2026-04-03T12:15:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768234547", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-celery.jpg?v=1761251876", "variant_ids": []}}
+{"id": 7692850724915, "title": "Novasuede\u2122 - Champagne Luxury Suede", "body_html": "<p>This is a close-up of a champagne-colored suede wallcovering. The soft, neutral tones and subtle texture create a luxurious and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-champagne", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Peach, Peach, Serene, Solid, Suede, T3D4W, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698993954867, "product_id": 7692850724915, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:37:59-07:00", "updated_at": "2026-06-11T12:22:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236111923, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993954867", "image_id": null}, {"id": 44178679791667, "product_id": 7692850724915, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:45-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537976883, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679791667", "image_id": null}, {"id": 44178679824435, "product_id": 7692850724915, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:46-07:00", "updated_at": "2026-04-15T10:48:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538009651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679824435", "image_id": null}], "images": [{"id": 36104226439219, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850724915, "created_at": "2025-10-23T13:37:59-07:00", "updated_at": "2026-04-03T12:15:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768431155", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-champagne.jpg?v=1761251879", "variant_ids": []}], "image": {"id": 36104226439219, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850724915, "created_at": "2025-10-23T13:37:59-07:00", "updated_at": "2026-04-03T12:15:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768431155", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-champagne.jpg?v=1761251879", "variant_ids": []}}
+{"id": 7692850757683, "title": "Novasuede\u2122 - China Blue Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 in China Blue. The wallcovering has a luxurious, soft texture and a calming, sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-china-blue", "tags": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Cal 117, China Blue, Class A Fire Rated, Color: Blue, color:Peacock, Commercial, Contemporary, Deep Teal, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3NBW, Teal, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698993987635, "product_id": 7692850757683, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:02-07:00", "updated_at": "2026-04-03T13:11:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236144691, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698993987635", "image_id": null}, {"id": 44178679857203, "product_id": 7692850757683, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:59-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538042419, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679857203", "image_id": null}, {"id": 44178679889971, "product_id": 7692850757683, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:00-07:00", "updated_at": "2026-04-15T10:48:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538075187, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679889971", "image_id": null}], "images": [{"id": 36104226734131, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850757683, "created_at": "2025-10-23T13:38:01-07:00", "updated_at": "2026-04-03T12:15:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768693299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-china-blue.jpg?v=1761251881", "variant_ids": []}], "image": {"id": 36104226734131, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850757683, "created_at": "2025-10-23T13:38:01-07:00", "updated_at": "2026-04-03T12:15:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768693299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-china-blue.jpg?v=1761251881", "variant_ids": []}}
+{"id": 7692850790451, "title": "Novasuede\u2122 - Chrome Grey Luxury Suede", "body_html": "<p>This is a suede-like wallcovering in various shades of gray. The texture and color palette create a sophisticated and modern mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-chrome-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Charcoal, Chrome Grey, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Gray, Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Slate Grey, Solid, Suede, T3PJW, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994020403, "product_id": 7692850790451, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:05-07:00", "updated_at": "2026-04-03T13:11:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236177459, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994020403", "image_id": null}, {"id": 44178679922739, "product_id": 7692850790451, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:13-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538107955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679922739", "image_id": null}, {"id": 44178679955507, "product_id": 7692850790451, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:14-07:00", "updated_at": "2026-04-15T10:48:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-94800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538140723, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679955507", "image_id": null}], "images": [{"id": 36104226930739, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850790451, "created_at": "2025-10-23T13:38:04-07:00", "updated_at": "2026-04-03T12:15:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768922675", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-chrome-grey.jpg?v=1761251884", "variant_ids": []}], "image": {"id": 36104226930739, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850790451, "created_at": "2025-10-23T13:38:04-07:00", "updated_at": "2026-04-03T12:15:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102768922675", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-chrome-grey.jpg?v=1761251884", "variant_ids": []}}
+{"id": 7692850823219, "title": "Novasuede\u2122 - Cinder Luxury Suede", "body_html": "<p>This is a close-up of a gray suede wallcovering. The texture creates a soft, modern, and luxurious feel with a minimalist aesthetic.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cinder", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Brown, Cal 117, Chocolate Brown, Cinder, Class A Fire Rated, Color: Brown, color:Jet, Commercial, Contemporary, Dark Brown, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, Moody, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3LCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994053171, "product_id": 7692850823219, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:08-07:00", "updated_at": "2026-06-11T12:22:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236210227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994053171", "image_id": null}, {"id": 44178680053811, "product_id": 7692850823219, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:27-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538239027, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680053811", "image_id": null}, {"id": 44178680086579, "product_id": 7692850823219, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:28-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538271795, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680086579", "image_id": null}], "images": [{"id": 36104227192883, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850823219, "created_at": "2025-10-23T13:38:08-07:00", "updated_at": "2026-04-03T12:15:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769184819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cinder.jpg?v=1761251888", "variant_ids": []}], "image": {"id": 36104227192883, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850823219, "created_at": "2025-10-23T13:38:08-07:00", "updated_at": "2026-04-03T12:15:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769184819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cinder.jpg?v=1761251888", "variant_ids": []}}
+{"id": 7692850855987, "title": "Novasuede\u2122 - Cloud Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a light, cloudy gray. It evokes a sense of calm and understated elegance, perfect for creating a serene and sophisticated space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cloud", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Cloud, Color: Grey, color:Linen, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Grey, Light Gray, Light Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Grey, Serene, Solid, Suede, T3L4W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994085939, "product_id": 7692850855987, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:11-07:00", "updated_at": "2026-04-03T13:11:53-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236242995, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994085939", "image_id": null}, {"id": 44178680119347, "product_id": 7692850855987, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:41-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538304563, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680119347", "image_id": null}, {"id": 44178680152115, "product_id": 7692850855987, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:42-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538337331, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680152115", "image_id": null}], "images": [{"id": 36104227422259, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850855987, "created_at": "2025-10-23T13:38:11-07:00", "updated_at": "2026-04-03T12:15:47-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769381427", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cloud.jpg?v=1761251891", "variant_ids": []}], "image": {"id": 36104227422259, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850855987, "created_at": "2025-10-23T13:38:11-07:00", "updated_at": "2026-04-03T12:15:47-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769381427", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cloud.jpg?v=1761251891", "variant_ids": []}}
+{"id": 7692850888755, "title": "Novasuede\u2122 - Cocoa Luxury Suede", "body_html": "<p>This is a close-up of a cocoa-colored suede wallcovering. The texture creates a warm and inviting, almost luxurious, mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cocoa", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Biophilic, Cal 117, Camel, Class A Fire Rated, Color: Brown, color:Coffee, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3I5W, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994118707, "product_id": 7692850888755, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:14-07:00", "updated_at": "2026-04-03T13:12:07-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236275763, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994118707", "image_id": null}, {"id": 44178680184883, "product_id": 7692850888755, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:55-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538370099, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680184883", "image_id": null}, {"id": 44178680217651, "product_id": 7692850888755, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:11:56-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538402867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680217651", "image_id": null}], "images": [{"id": 36104227684403, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850888755, "created_at": "2025-10-23T13:38:14-07:00", "updated_at": "2026-04-03T12:15:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769643571", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cocoa.jpg?v=1761251894", "variant_ids": []}], "image": {"id": 36104227684403, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850888755, "created_at": "2025-10-23T13:38:14-07:00", "updated_at": "2026-04-03T12:15:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769643571", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cocoa.jpg?v=1761251894", "variant_ids": []}}
+{"id": 7692850921523, "title": "Novasuede\u2122 - Coral Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a coral hue. It evokes a warm and inviting atmosphere with a modern, sophisticated feel.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-coral", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Orange, color:Salmon, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Light Coral, Light Peach, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Peach, Rosybrown, Solid, Suede, T3Q3W, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994151475, "product_id": 7692850921523, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:17-07:00", "updated_at": "2026-04-03T13:12:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236308531, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994151475", "image_id": null}, {"id": 44178680283187, "product_id": 7692850921523, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:09-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538468403, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680283187", "image_id": null}, {"id": 44178680315955, "product_id": 7692850921523, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:10-07:00", "updated_at": "2026-04-15T10:48:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538501171, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680315955", "image_id": null}], "images": [{"id": 36104227881011, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850921523, "created_at": "2025-10-23T13:38:17-07:00", "updated_at": "2026-04-03T12:15:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769840179", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-coral.jpg?v=1761251897", "variant_ids": []}], "image": {"id": 36104227881011, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850921523, "created_at": "2025-10-23T13:38:17-07:00", "updated_at": "2026-04-03T12:15:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102769840179", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-coral.jpg?v=1761251897", "variant_ids": []}}
+{"id": 7692850954291, "title": "Novasuede\u2122 - Cottage Grey Luxury Suede", "body_html": "<p>This wallcovering is a suede-like material in varying shades of gray. It offers a soft, textured look that evokes a sense of calm and understated elegance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cottage-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Grey, color:Bone, Commercial, Contemporary, Cottage Grey, display_variant, Fabric, Fire Rated, Gray, Grey, Light Gray, Light Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Silver, Solid, Suede, T3LGW, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994184243, "product_id": 7692850954291, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:20-07:00", "updated_at": "2026-04-03T13:12:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236341299, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994184243", "image_id": null}, {"id": 44178680381491, "product_id": 7692850954291, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:23-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538566707, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680381491", "image_id": null}, {"id": 44178680414259, "product_id": 7692850954291, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:24-07:00", "updated_at": "2026-04-15T10:48:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-95800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538599475, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680414259", "image_id": null}], "images": [{"id": 36104228143155, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850954291, "created_at": "2025-10-23T13:38:20-07:00", "updated_at": "2026-04-03T12:15:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770069555", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cottage-grey.jpg?v=1761251900", "variant_ids": []}], "image": {"id": 36104228143155, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850954291, "created_at": "2025-10-23T13:38:20-07:00", "updated_at": "2026-04-03T12:15:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770069555", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cottage-grey.jpg?v=1761251900", "variant_ids": []}}
+{"id": 7692850987059, "title": "Novasuede\u2122 - Cream Luxury Suede", "body_html": "<p>This is a cream-colored wallcovering with a suede-like texture. It evokes a sense of understated luxury and warmth, lending itself to a minimalist or contemporary style.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cream", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Serene, Solid, Suede, T3D9W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698994217011, "product_id": 7692850987059, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:23-07:00", "updated_at": "2026-04-03T13:12:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236374067, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994217011", "image_id": null}, {"id": 44178680447027, "product_id": 7692850987059, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:37-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538632243, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680447027", "image_id": null}, {"id": 44178680479795, "product_id": 7692850987059, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:38-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538665011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680479795", "image_id": null}], "images": [{"id": 36104228306995, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850987059, "created_at": "2025-10-23T13:38:22-07:00", "updated_at": "2026-04-03T12:15:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770298931", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cream.jpg?v=1761251902", "variant_ids": []}], "image": {"id": 36104228306995, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692850987059, "created_at": "2025-10-23T13:38:22-07:00", "updated_at": "2026-04-03T12:15:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770298931", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cream.jpg?v=1761251902", "variant_ids": []}}
+{"id": 7692851019827, "title": "Novasuede\u2122 - Cypress Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cypress", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Bronze, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994249779, "product_id": 7692851019827, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:26-07:00", "updated_at": "2026-04-03T13:13:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490007-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236406835, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994249779", "image_id": null}, {"id": 44178680643635, "product_id": 7692851019827, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:51-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490007-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538828851, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680643635", "image_id": null}, {"id": 44178680676403, "product_id": 7692851019827, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:12:52-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490007-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538861619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680676403", "image_id": null}], "images": [{"id": 37189341773875, "alt": "Novasuede cypress luxury suede wallcovering", "position": 1, "product_id": 7692851019827, "created_at": "2026-04-15T19:03:25-07:00", "updated_at": "2026-04-15T19:03:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053299101747", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cypress.jpg?v=1776305007", "variant_ids": []}], "image": {"id": 37189341773875, "alt": "Novasuede cypress luxury suede wallcovering", "position": 1, "product_id": 7692851019827, "created_at": "2026-04-15T19:03:25-07:00", "updated_at": "2026-04-15T19:03:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053299101747", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cypress.jpg?v=1776305007", "variant_ids": []}}
+{"id": 7692851052595, "title": "Novasuede\u2122 - Dark Sand Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a dark sand color. It evokes a warm and inviting mood with a minimalist and organic style.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dark-sand", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Brown, color:Tan, Commercial, Contemporary, Dark Sand, display_variant, Fabric, Farmhouse, Fire Rated, Golden Brown, Khaki, Living Room, Microfiber Suede, Mustard, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive Drab, Organic Modern, Rustic, Solid, Suede, T3EAW, Textured, Timeless, Traditional, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994282547, "product_id": 7692851052595, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:29-07:00", "updated_at": "2026-04-03T13:13:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236439603, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994282547", "image_id": null}, {"id": 44178680709171, "product_id": 7692851052595, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:05-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538894387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680709171", "image_id": null}, {"id": 44178680741939, "product_id": 7692851052595, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:06-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538927155, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680741939", "image_id": null}], "images": [{"id": 36104228864051, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851052595, "created_at": "2025-10-23T13:38:29-07:00", "updated_at": "2026-04-03T12:15:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770823219", "width": 1800, "height": 1800, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dark-sand.jpg?v=1761251909", "variant_ids": []}], "image": {"id": 36104228864051, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851052595, "created_at": "2025-10-23T13:38:29-07:00", "updated_at": "2026-04-03T12:15:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102770823219", "width": 1800, "height": 1800, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dark-sand.jpg?v=1761251909", "variant_ids": []}}
+{"id": 7692851118131, "title": "Novasuede\u2122 - Dew Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in a light, neutral color palette. The texture and subtle color variations create a warm and inviting, yet sophisticated, mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dew", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, Color: Brown, color:Eggshell, Commercial, Contemporary, Dew, display_variant, Fabric, Fire Rated, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sand, Solid, Suede, T3F3W, Tan, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994315315, "product_id": 7692851118131, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:32-07:00", "updated_at": "2026-04-03T13:13:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236472371, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994315315", "image_id": null}, {"id": 44178680774707, "product_id": 7692851118131, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:18-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288538959923, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680774707", "image_id": null}, {"id": 44178680807475, "product_id": 7692851118131, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:20-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288538992691, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680807475", "image_id": null}], "images": [{"id": 36104229158963, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851118131, "created_at": "2025-10-23T13:38:32-07:00", "updated_at": "2026-04-03T12:15:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771085363", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dew.jpg?v=1761251912", "variant_ids": []}], "image": {"id": 36104229158963, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851118131, "created_at": "2025-10-23T13:38:32-07:00", "updated_at": "2026-04-03T12:15:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771085363", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dew.jpg?v=1761251912", "variant_ids": []}}
+{"id": 7692851150899, "title": "Novasuede\u2122 - Dove Luxury Suede", "body_html": "<p>This is a close-up of a dove-colored suede wallcovering. The texture creates a soft and subtle, minimalist aesthetic.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dove", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Grey, color:Bone, Commercial, Contemporary, display_variant, Dove, Fabric, Fire Rated, Grey, Light Gray, Light Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Grey, Serene, Solid, Suede, T3E2W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994348083, "product_id": 7692851150899, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:35-07:00", "updated_at": "2026-04-03T13:13:44-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236505139, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994348083", "image_id": null}, {"id": 44178680840243, "product_id": 7692851150899, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:32-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539025459, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680840243", "image_id": null}, {"id": 44178680873011, "product_id": 7692851150899, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:34-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-96800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539058227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680873011", "image_id": null}], "images": [{"id": 36104229322803, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851150899, "created_at": "2025-10-23T13:38:34-07:00", "updated_at": "2026-04-03T12:15:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771314739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dove.jpg?v=1761251914", "variant_ids": []}], "image": {"id": 36104229322803, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851150899, "created_at": "2025-10-23T13:38:34-07:00", "updated_at": "2026-04-03T12:15:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771314739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dove.jpg?v=1761251914", "variant_ids": []}}
+{"id": 7692851183667, "title": "Novasuede\u2122 - Dune Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 - Dune Luxury Suede wallcovering. The texture and neutral color palette evoke a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dune", "tags": "Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, Cream, display_variant, Dune, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Organic Modern, Pale Beige, Serene, Solid, Suede, T3F4W, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698994380851, "product_id": 7692851183667, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:38-07:00", "updated_at": "2026-04-03T13:13:58-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236537907, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994380851", "image_id": null}, {"id": 44178680905779, "product_id": 7692851183667, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:46-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539090995, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680905779", "image_id": null}, {"id": 44178680938547, "product_id": 7692851183667, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:13:47-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539123763, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680938547", "image_id": null}], "images": [{"id": 36104229814323, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851183667, "created_at": "2025-10-23T13:38:37-07:00", "updated_at": "2026-04-03T12:15:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771511347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dune.jpg?v=1761251917", "variant_ids": []}], "image": {"id": 36104229814323, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851183667, "created_at": "2025-10-23T13:38:37-07:00", "updated_at": "2026-04-03T12:15:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771511347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dune.jpg?v=1761251917", "variant_ids": []}}
+{"id": 7692851216435, "title": "Novasuede\u2122 - Dusty Rose Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Dusty Rose. The suede texture creates a soft and luxurious feel, lending a contemporary and elegant mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dusty-rose", "tags": "Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Pink, color:Ecru, Commercial, Contemporary, display_variant, Dusty Rose, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Organic Modern, Pale Rose, Pink, Primary Suite, Serene, Solid, Suede, T3R2W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994446387, "product_id": 7692851216435, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:40-07:00", "updated_at": "2026-06-11T12:22:45-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236603443, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994446387", "image_id": null}, {"id": 44178681036851, "product_id": 7692851216435, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:14-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539222067, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681036851", "image_id": null}, {"id": 44178681069619, "product_id": 7692851216435, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:15-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539254835, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681069619", "image_id": null}], "images": [{"id": 36104230305843, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851216435, "created_at": "2025-10-23T13:38:40-07:00", "updated_at": "2026-04-03T12:16:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771773491", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-rose.jpg?v=1761251920", "variant_ids": []}], "image": {"id": 36104230305843, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851216435, "created_at": "2025-10-23T13:38:40-07:00", "updated_at": "2026-04-03T12:16:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102771773491", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-rose.jpg?v=1761251920", "variant_ids": []}}
+{"id": 7692851249203, "title": "Novasuede\u2122 - Ecru Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Ecru. The texture creates a soft, luxurious, and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-ecru", "tags": "Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Ivory, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Organic Modern, Serene, Solid, Suede, T3K4W, Textured, UFAC Class I, Upholstery, Wallcovering, White, Yellow", "status": "active", "variants": [{"id": 43698994479155, "product_id": 7692851249203, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:43-07:00", "updated_at": "2026-04-03T13:14:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236636211, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994479155", "image_id": null}, {"id": 44178681135155, "product_id": 7692851249203, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:28-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539320371, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681135155", "image_id": null}, {"id": 44178681167923, "product_id": 7692851249203, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:29-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539353139, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681167923", "image_id": null}], "images": [{"id": 36104230731827, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851249203, "created_at": "2025-10-23T13:38:43-07:00", "updated_at": "2026-04-03T12:16:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102772068403", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ecru.jpg?v=1761251923", "variant_ids": []}], "image": {"id": 36104230731827, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851249203, "created_at": "2025-10-23T13:38:43-07:00", "updated_at": "2026-04-03T12:16:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102772068403", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ecru.jpg?v=1761251923", "variant_ids": []}}
+{"id": 7692851281971, "title": "Novasuede\u2122 - Fawn Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Fawn. The wallcovering has a soft, suede-like texture that evokes a warm and inviting organic mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fawn", "tags": "Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Organic Modern, Serene, Solid, Suede, T3E4W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698994544691, "product_id": 7692851281971, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:46-07:00", "updated_at": "2026-04-03T13:07:58-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236701747, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994544691", "image_id": null}, {"id": 44178681233459, "product_id": 7692851281971, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:42-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539418675, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681233459", "image_id": null}, {"id": 44178681266227, "product_id": 7692851281971, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:43-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539451443, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681266227", "image_id": null}], "images": [{"id": 36104230928435, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851281971, "created_at": "2025-10-23T13:38:46-07:00", "updated_at": "2026-04-03T12:16:03-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102772756531", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fawn.jpg?v=1761251926", "variant_ids": []}], "image": {"id": 36104230928435, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851281971, "created_at": "2025-10-23T13:38:46-07:00", "updated_at": "2026-04-03T12:16:03-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102772756531", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fawn.jpg?v=1761251926", "variant_ids": []}}
+{"id": 7692851314739, "title": "Novasuede\u2122 - French Blue Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a French Blue color. The textured finish adds depth and a modern, sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-french-blue", "tags": "Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, Color: Blue, color:Denim, Commercial, Contemporary, display_variant, Dusty Blue, Fabric, Fire Rated, French Blue, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Office, Organic Modern, Serene, Solid, Steel Blue, Suede, T3NCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994577459, "product_id": 7692851314739, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:49-07:00", "updated_at": "2026-06-11T12:22:08-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236734515, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994577459", "image_id": null}, {"id": 44178681659443, "product_id": 7692851314739, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:44-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539844659, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681659443", "image_id": null}, {"id": 44178681692211, "product_id": 7692851314739, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:45-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-97800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539877427, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681692211", "image_id": null}], "images": [{"id": 36104231157811, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851314739, "created_at": "2025-10-23T13:38:49-07:00", "updated_at": "2026-04-03T12:16:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773084211", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-french-blue.jpg?v=1761251929", "variant_ids": []}], "image": {"id": 36104231157811, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851314739, "created_at": "2025-10-23T13:38:49-07:00", "updated_at": "2026-04-03T12:16:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773084211", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-french-blue.jpg?v=1761251929", "variant_ids": []}}
+{"id": 7692851347507, "title": "Novasuede\u2122 - Gainsborough Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering. The subtle texture and neutral tones evoke a sophisticated and warm mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-gainsborough", "tags": "Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Gainsborough, Hallway, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Organic Modern, Pale Beige, Serene, Solid, Suede, T3LLW, Textured, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 43698994610227, "product_id": 7692851347507, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:52-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236767283, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994610227", "image_id": null}, {"id": 44178681724979, "product_id": 7692851347507, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:58-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539910195, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681724979", "image_id": null}, {"id": 44178681757747, "product_id": 7692851347507, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:59-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539942963, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681757747", "image_id": null}], "images": [{"id": 36104231387187, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851347507, "created_at": "2025-10-23T13:38:51-07:00", "updated_at": "2026-04-03T12:16:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773411891", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gainsborough.jpg?v=1761251931", "variant_ids": []}], "image": {"id": 36104231387187, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851347507, "created_at": "2025-10-23T13:38:51-07:00", "updated_at": "2026-04-03T12:16:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773411891", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gainsborough.jpg?v=1761251931", "variant_ids": []}}
+{"id": 7692851380275, "title": "Novasuede\u2122 - Garnet Luxury Suede", "body_html": "<p>This is a close-up of a garnet-colored suede wallcovering. The texture and deep color evoke a luxurious and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-garnet", "tags": "Architectural, Bedroom, Brick Red, Cal 117, Class A Fire Rated, Color: Red, color:Maroon, Commercial, Contemporary, Crimson, display_variant, Fabric, Fire Rated, Garnet, Hotel Lobby, Living Room, Luxe, Microfiber Suede, Minimalist, Modern, NFPA 260, Novasuede, Red, Solid, Suede, T3J6W, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994642995, "product_id": 7692851380275, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:55-07:00", "updated_at": "2026-04-03T13:16:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236800051, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994642995", "image_id": null}, {"id": 44178681921587, "product_id": 7692851380275, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:12-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540106803, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681921587", "image_id": null}, {"id": 44178681954355, "product_id": 7692851380275, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:13-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540139571, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681954355", "image_id": null}], "images": [{"id": 36104231616563, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851380275, "created_at": "2025-10-23T13:38:54-07:00", "updated_at": "2026-04-03T12:16:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773575731", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-garnet.jpg?v=1761251934", "variant_ids": []}], "image": {"id": 36104231616563, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851380275, "created_at": "2025-10-23T13:38:54-07:00", "updated_at": "2026-04-03T12:16:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773575731", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-garnet.jpg?v=1761251934", "variant_ids": []}}
+{"id": 7692851413043, "title": "Novasuede\u2122 - Gelato Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a soft, uniform texture. The neutral color palette and subtle variations create a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-gelato", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Gelato, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Peach, Primary Suite, Serene, Solid, Suede, T3D7W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698994708531, "product_id": 7692851413043, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:38:57-07:00", "updated_at": "2026-04-03T13:16:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236865587, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994708531", "image_id": null}, {"id": 44178682052659, "product_id": 7692851413043, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:26-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540237875, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682052659", "image_id": null}, {"id": 44178682085427, "product_id": 7692851413043, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:27-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540270643, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682085427", "image_id": null}], "images": [{"id": 36104231878707, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851413043, "created_at": "2025-10-23T13:38:57-07:00", "updated_at": "2026-04-03T12:16:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773772339", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gelato.jpg?v=1761251937", "variant_ids": []}], "image": {"id": 36104231878707, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851413043, "created_at": "2025-10-23T13:38:57-07:00", "updated_at": "2026-04-03T12:16:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102773772339", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-gelato.jpg?v=1761251937", "variant_ids": []}}
+{"id": 7692851478579, "title": "Novasuede\u2122 - Goldstone Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a goldstone color. It evokes a sophisticated and glamorous mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-goldstone", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Amber, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Gold, color:Camel, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Gold, Golden Yellow, Goldenrod, Goldstone, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Ochre, Office, Orange, Organic Modern, Solid, Suede, T3F1W, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698994774067, "product_id": 7692851478579, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:03-07:00", "updated_at": "2026-04-03T13:16:52-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236931123, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994774067", "image_id": null}, {"id": 44178682150963, "product_id": 7692851478579, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:40-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540336179, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682150963", "image_id": null}, {"id": 44178682183731, "product_id": 7692851478579, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:41-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-98800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540368947, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682183731", "image_id": null}], "images": [{"id": 36104232337459, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851478579, "created_at": "2025-10-23T13:39:03-07:00", "updated_at": "2026-04-03T12:16:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774296627", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-goldstone.jpg?v=1761251943", "variant_ids": []}], "image": {"id": 36104232337459, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851478579, "created_at": "2025-10-23T13:39:03-07:00", "updated_at": "2026-04-03T12:16:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774296627", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-goldstone.jpg?v=1761251943", "variant_ids": []}}
+{"id": 7692851511347, "title": "Novasuede\u2122 - Granite Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a granite color. It evokes a sophisticated and understated mood, perfect for adding depth and warmth to a space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-granite", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Sage, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Granite, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sand, Serene, Solid, Suede, T3LOW, Tan, Taupe, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994806835, "product_id": 7692851511347, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:06-07:00", "updated_at": "2026-04-03T13:17:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236963891, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994806835", "image_id": null}, {"id": 44178682216499, "product_id": 7692851511347, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:54-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540401715, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682216499", "image_id": null}, {"id": 44178682249267, "product_id": 7692851511347, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:16:55-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540434483, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682249267", "image_id": null}], "images": [{"id": 36104232566835, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851511347, "created_at": "2025-10-23T13:39:06-07:00", "updated_at": "2026-04-03T12:16:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774526003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-granite.jpg?v=1761251946", "variant_ids": []}], "image": {"id": 36104232566835, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851511347, "created_at": "2025-10-23T13:39:06-07:00", "updated_at": "2026-04-03T12:16:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774526003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-granite.jpg?v=1761251946", "variant_ids": []}}
+{"id": 7692851544115, "title": "Novasuede\u2122 - Grape Luxury Suede", "body_html": "<p>This is a close-up of a grape-colored suede wallcovering. The texture and deep color create a luxurious and modern mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-grape", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Graphite, Commercial, Contemporary, display_variant, Eggplant, Fabric, Fire Rated, Grape, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Plum, Purple, Solid, Sophisticated, Suede, T3S8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994839603, "product_id": 7692851544115, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:09-07:00", "updated_at": "2026-04-03T13:17:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804236996659, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994839603", "image_id": null}, {"id": 44178682380339, "product_id": 7692851544115, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:08-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540565555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682380339", "image_id": null}, {"id": 44178682413107, "product_id": 7692851544115, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:09-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540598323, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682413107", "image_id": null}], "images": [{"id": 36104232796211, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851544115, "created_at": "2025-10-23T13:39:09-07:00", "updated_at": "2026-04-03T12:16:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774820915", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-grape.jpg?v=1761251949", "variant_ids": []}], "image": {"id": 36104232796211, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851544115, "created_at": "2025-10-23T13:39:09-07:00", "updated_at": "2026-04-03T12:16:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102774820915", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-grape.jpg?v=1761251949", "variant_ids": []}}
+{"id": 7692851642419, "title": "Novasuede\u2122 - Green Marble Luxury Suede", "body_html": "<p>This wallcovering features a green marble pattern with a suede texture. It evokes a luxurious and sophisticated mood with a modern touch.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-green-marble", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Aquamarine, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, color:Ebony, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Green Marble, Light Seagreen, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Seafoam, Seafoam Green, Serene, Solid, Suede, T3P4W, Teal, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994937907, "product_id": 7692851642419, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:18-07:00", "updated_at": "2026-04-03T13:17:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237094963, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994937907", "image_id": null}, {"id": 44178682445875, "product_id": 7692851642419, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:22-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540631091, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682445875", "image_id": null}, {"id": 44178682478643, "product_id": 7692851642419, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:23-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540663859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682478643", "image_id": null}], "images": [{"id": 36104233517107, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851642419, "created_at": "2025-10-23T13:39:17-07:00", "updated_at": "2026-04-03T12:16:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775509043", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-green-marble.jpg?v=1761251957", "variant_ids": []}], "image": {"id": 36104233517107, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851642419, "created_at": "2025-10-23T13:39:17-07:00", "updated_at": "2026-04-03T12:16:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775509043", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-green-marble.jpg?v=1761251957", "variant_ids": []}}
+{"id": 7692851675187, "title": "Novasuede\u2122 - Greystone Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in varying shades of gray. It evokes a sophisticated and modern mood with a subtle, tactile appeal.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-greystone", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Charcoal, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, Contemporary, Dark Grey, display_variant, Fabric, Fire Rated, Gray, Grey, Greystone, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Slate Grey, Solid, Suede, T3LNW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698994970675, "product_id": 7692851675187, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:21-07:00", "updated_at": "2026-04-03T13:17:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237127731, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698994970675", "image_id": null}, {"id": 44178682544179, "product_id": 7692851675187, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:36-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540729395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682544179", "image_id": null}, {"id": 44178682576947, "product_id": 7692851675187, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:37-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540762163, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682576947", "image_id": null}], "images": [{"id": 36104233746483, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851675187, "created_at": "2025-10-23T13:39:20-07:00", "updated_at": "2026-04-03T12:16:16-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775672883", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-greystone.jpg?v=1761251960", "variant_ids": []}], "image": {"id": 36104233746483, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851675187, "created_at": "2025-10-23T13:39:20-07:00", "updated_at": "2026-04-03T12:16:16-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775672883", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-greystone.jpg?v=1761251960", "variant_ids": []}}
+{"id": 7692851707955, "title": "Novasuede\u2122 Fabric & Wallcovering - Harvest", "body_html": "<p>This is a close-up of Novasuede\u2122 Fabric & Wallcovering in the Harvest colorway. The wallcovering has a soft, textured appearance that evokes a warm and natural mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-harvest", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Harvest, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Showroom Line, Solid, Suede, T3E9W, Tan, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698995003443, "product_id": 7692851707955, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:24-07:00", "updated_at": "2026-04-03T13:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100200", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237160499, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995003443", "image_id": null}], "images": [{"id": 36104234008627, "alt": "Novasuede\u2122 Harvest - Premium Microfiber Suede", "position": 1, "product_id": 7692851707955, "created_at": "2025-10-23T13:39:23-07:00", "updated_at": "2025-10-23T13:39:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775935027", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-harvest.jpg?v=1761251963", "variant_ids": []}], "image": {"id": 36104234008627, "alt": "Novasuede\u2122 Harvest - Premium Microfiber Suede", "position": 1, "product_id": 7692851707955, "created_at": "2025-10-23T13:39:23-07:00", "updated_at": "2025-10-23T13:39:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102775935027", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-harvest.jpg?v=1761251963", "variant_ids": []}}
+{"id": 7692851740723, "title": "Novasuede\u2122 - Honey Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a warm honey tone. It evokes a sense of understated elegance and cozy sophistication, perfect for creating a calming and inviting atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-honey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, Color: Brown, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3DDW, Tan, Textured, UFAC Class I, Upholstery, Wabi-sabi, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698995068979, "product_id": 7692851740723, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:26-07:00", "updated_at": "2026-04-03T13:18:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237226035, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995068979", "image_id": null}, {"id": 44178682675251, "product_id": 7692851740723, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:04-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540860467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682675251", "image_id": null}, {"id": 44178682708019, "product_id": 7692851740723, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:06-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540893235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682708019", "image_id": null}], "images": [{"id": 36104234238003, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851740723, "created_at": "2025-10-23T13:39:26-07:00", "updated_at": "2026-04-03T12:16:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776164403", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-honey.jpg?v=1761251966", "variant_ids": []}], "image": {"id": 36104234238003, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851740723, "created_at": "2025-10-23T13:39:26-07:00", "updated_at": "2026-04-03T12:16:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776164403", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-honey.jpg?v=1761251966", "variant_ids": []}}
+{"id": 7692851773491, "title": "Novasuede\u2122 - Hyacinth Luxury Suede", "body_html": "<p>This is a suede-like wallcovering in shades of purple and gray. It evokes a luxurious and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-hyacinth", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Heather, Commercial, Contemporary, display_variant, Dusty Lavender, Fabric, Fire Rated, Hyacinth, Living Room, Mauve, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pink, Purple, Serene, Solid, Suede, T3S2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698995101747, "product_id": 7692851773491, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:30-07:00", "updated_at": "2026-04-03T13:18:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237258803, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995101747", "image_id": null}, {"id": 44178682740787, "product_id": 7692851773491, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:18-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540926003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682740787", "image_id": null}, {"id": 44178682773555, "product_id": 7692851773491, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:20-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540958771, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682773555", "image_id": null}], "images": [{"id": 36104234565683, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851773491, "created_at": "2025-10-23T13:39:29-07:00", "updated_at": "2026-04-03T12:16:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776721459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-hyacinth.jpg?v=1761251969", "variant_ids": []}], "image": {"id": 36104234565683, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851773491, "created_at": "2025-10-23T13:39:29-07:00", "updated_at": "2026-04-03T12:16:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776721459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-hyacinth.jpg?v=1761251969", "variant_ids": []}}
+{"id": 7692851806259, "title": "Novasuede\u2122 - Iceberg Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in the Iceberg colorway. The subtle texture and neutral tones evoke a clean and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-iceberg", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Iceberg, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3LHW, Tan, Taupe, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698995134515, "product_id": 7692851806259, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:32-07:00", "updated_at": "2026-04-03T13:18:44-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237291571, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995134515", "image_id": null}, {"id": 44178682806323, "product_id": 7692851806259, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:32-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540991539, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682806323", "image_id": null}, {"id": 44178682839091, "product_id": 7692851806259, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:34-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-100800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541024307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682839091", "image_id": null}], "images": [{"id": 36104234958899, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851806259, "created_at": "2025-10-23T13:39:32-07:00", "updated_at": "2026-04-03T12:16:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776885299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-iceberg.jpg?v=1761251972", "variant_ids": []}], "image": {"id": 36104234958899, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851806259, "created_at": "2025-10-23T13:39:32-07:00", "updated_at": "2026-04-03T12:16:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102776885299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-iceberg.jpg?v=1761251972", "variant_ids": []}}
+{"id": 7692851839027, "title": "Novasuede\u2122 Fabric & Wallcovering - Indigo", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<h2>Novasuede\u2122 Indigo</h2>\n<h3>Product Overview</h3>\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications.</p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-indigo", "tags": "Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, Color: Blue, Commercial, Contemporary, display_variant, Fabric, Fabric-backed Vinyl, Fire Rated, Living Room, Microfiber Suede, Midnight Blue, Minimalist, Modern, Navy, NFPA 260, Novasuede, Office, Serene, Solid, T3C3W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "archived", "variants": [{"id": 43698995167283, "product_id": 7692851839027, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:35-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101000", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237324339, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995167283", "image_id": null}], "images": [{"id": 36104235188275, "alt": "Novasuede\u2122 Indigo - Premium Microfiber Suede", "position": 1, "product_id": 7692851839027, "created_at": "2025-10-23T13:39:35-07:00", "updated_at": "2025-10-23T13:39:35-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777114675", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-indigo.jpg?v=1761251975", "variant_ids": []}], "image": {"id": 36104235188275, "alt": "Novasuede\u2122 Indigo - Premium Microfiber Suede", "position": 1, "product_id": 7692851839027, "created_at": "2025-10-23T13:39:35-07:00", "updated_at": "2025-10-23T13:39:35-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777114675", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-indigo.jpg?v=1761251975", "variant_ids": []}}
+{"id": 7692851871795, "title": "Novasuede\u2122 - Ivory Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in ivory. The subtle texture and neutral color create a soft and elegant mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-ivory", "tags": "Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Ivory, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Office, Organic Modern, Serene, Solid, Suede, T3E3W, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698995200051, "product_id": 7692851871795, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:38-07:00", "updated_at": "2026-04-03T13:19:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237357107, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995200051", "image_id": null}, {"id": 44178682871859, "product_id": 7692851871795, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:46-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541057075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682871859", "image_id": null}, {"id": 44178682904627, "product_id": 7692851871795, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:18:47-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541089843, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682904627", "image_id": null}], "images": [{"id": 36104235352115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851871795, "created_at": "2025-10-23T13:39:38-07:00", "updated_at": "2026-04-03T12:16:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777311283", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ivory.jpg?v=1761251978", "variant_ids": []}], "image": {"id": 36104235352115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692851871795, "created_at": "2025-10-23T13:39:38-07:00", "updated_at": "2026-04-03T12:16:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777311283", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ivory.jpg?v=1761251978", "variant_ids": []}}
+{"id": 7692851904563, "title": "Novasuede\u2122 Fabric & Wallcovering - Jade", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<h2>Novasuede\u2122 Jade</h2>\n<h3>Product Overview</h3>\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications.</p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-jade", "tags": "Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, Commercial, Contemporary, Dark Teal, display_variant, Fabric, Fabric-backed Vinyl, Fire Rated, Green, Jade, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Office, Organic Modern, Serene, Solid, T3P6W, Teal, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "archived", "variants": [{"id": 43698995232819, "product_id": 7692851904563, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:41-07:00", "updated_at": "2026-04-15T10:48:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101400", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237389875, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995232819", "image_id": null}], "images": [{"id": 36104235548723, "alt": "Novasuede\u2122 Jade - Premium Microfiber Suede", "position": 1, "product_id": 7692851904563, "created_at": "2025-10-23T13:39:40-07:00", "updated_at": "2025-10-23T13:39:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777475123", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-jade.jpg?v=1761251980", "variant_ids": []}], "image": {"id": 36104235548723, "alt": "Novasuede\u2122 Jade - Premium Microfiber Suede", "position": 1, "product_id": 7692851904563, "created_at": "2025-10-23T13:39:40-07:00", "updated_at": "2025-10-23T13:39:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777475123", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-jade.jpg?v=1761251980", "variant_ids": []}}
+{"id": 7692851937331, "title": "Novasuede\u2122 Fabric & Wallcovering - Java", "body_html": "<p>This is a close-up of Novasuede\u2122 Fabric & Wallcovering in Java. The wallcovering has a subtle, organic texture that evokes a warm and inviting mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-java", "tags": "Architectural, Bedroom, Beige, Biophilic, Cal 117, Camel, Class A Fire Rated, color:Sand, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Java, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Office, Organic Modern, Showroom Line, Solid, Suede, T3H4W, Tan, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698995298355, "product_id": 7692851937331, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:44-07:00", "updated_at": "2026-06-11T12:22:03-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-101600", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237455411, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995298355", "image_id": null}], "images": [{"id": 36104235778099, "alt": "Novasuede\u2122 Java - Premium Microfiber Suede", "position": 1, "product_id": 7692851937331, "created_at": "2025-10-23T13:39:43-07:00", "updated_at": "2025-10-23T13:39:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777671731", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-java.jpg?v=1761251983", "variant_ids": []}], "image": {"id": 36104235778099, "alt": "Novasuede\u2122 Java - Premium Microfiber Suede", "position": 1, "product_id": 7692851937331, "created_at": "2025-10-23T13:39:43-07:00", "updated_at": "2025-10-23T13:39:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102777671731", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-java.jpg?v=1761251983", "variant_ids": []}}
+{"id": 7692852002867, "title": "Novasuede\u2122 - Lavender Luxury Suede", "body_html": "<p>This is a close-up of a lavender-colored suede wallcovering. The soft texture and subtle color create a luxurious and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-lavender", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Lilac, Commercial, Contemporary, display_variant, Dusty Rose, Fabric, Fire Rated, Living Room, Mauve, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pink, Purple, Serene, Solid, Suede, T3S3W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698995462195, "product_id": 7692852002867, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:50-07:00", "updated_at": "2026-06-22T10:41:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237619251, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995462195", "image_id": null}, {"id": 44178683002931, "product_id": 7692852002867, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:17-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541188147, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683002931", "image_id": null}, {"id": 44178683035699, "product_id": 7692852002867, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:18-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541220915, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683035699", "image_id": null}], "images": [{"id": 36104236269619, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852002867, "created_at": "2025-10-23T13:39:49-07:00", "updated_at": "2026-04-03T12:16:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102778196019", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lavender.jpg?v=1761251989", "variant_ids": []}], "image": {"id": 36104236269619, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852002867, "created_at": "2025-10-23T13:39:49-07:00", "updated_at": "2026-04-03T12:16:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102778196019", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lavender.jpg?v=1761251989", "variant_ids": []}}
+{"id": 7692852035635, "title": "Novasuede\u2122 - Light Amethyst Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 in Light Amethyst, showcasing a soft, suede-like texture. The wallcovering evokes a sense of understated luxury and calm sophistication.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-light-amethyst", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Light Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Lavender, Light Amethyst, Light Gray, Light Lavender, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Lavender, Primary Suite, Purple, Serene, Solid, Suede, T3S6W, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698995560499, "product_id": 7692852035635, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:53-07:00", "updated_at": "2026-04-03T13:19:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237717555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995560499", "image_id": null}, {"id": 44178683101235, "product_id": 7692852035635, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:36-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541286451, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683101235", "image_id": null}, {"id": 44178683134003, "product_id": 7692852035635, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:38-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541319219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683134003", "image_id": null}], "images": [{"id": 36104236597299, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852035635, "created_at": "2025-10-23T13:39:52-07:00", "updated_at": "2026-04-03T12:16:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102778523699", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-amethyst.jpg?v=1761251992", "variant_ids": []}], "image": {"id": 36104236597299, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852035635, "created_at": "2025-10-23T13:39:52-07:00", "updated_at": "2026-04-03T12:16:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102778523699", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-amethyst.jpg?v=1761251992", "variant_ids": []}}
+{"id": 7692852101171, "title": "Novasuede\u2122 - Light Grey Luxury Suede", "body_html": "<p>This is a light gray, suede-like wallcovering. It offers a subtle, textured look with a minimalist and luxurious feel.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-light-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Light Gray, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Light Beige, Light Gray, Light Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Beige, Serene, Solid, Suede, T3L7W, Textured, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 43698995724339, "product_id": 7692852101171, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:39:58-07:00", "updated_at": "2026-04-03T13:20:04-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237881395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995724339", "image_id": null}, {"id": 44178683199539, "product_id": 7692852101171, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:53-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541384755, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683199539", "image_id": null}, {"id": 44178683232307, "product_id": 7692852101171, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:54-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-102600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541417523, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683232307", "image_id": null}], "images": [{"id": 36104237121587, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852101171, "created_at": "2025-10-23T13:39:58-07:00", "updated_at": "2026-04-03T12:16:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779047987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-grey.jpg?v=1761251998", "variant_ids": []}], "image": {"id": 36104237121587, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852101171, "created_at": "2025-10-23T13:39:58-07:00", "updated_at": "2026-04-03T12:16:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779047987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-light-grey.jpg?v=1761251998", "variant_ids": []}}
+{"id": 7692852232243, "title": "Novasuede\u2122 - Linen Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a light linen color. It evokes a sense of warmth and understated elegance, perfect for creating a serene and inviting space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-linen", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Color: Beige, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Ivory, Linen, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, T3D6W, Textured, UFAC Class I, Upholstery, Wallcovering, White, Yellow", "status": "active", "variants": [{"id": 43698995822643, "product_id": 7692852232243, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:07-07:00", "updated_at": "2026-04-03T13:20:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804237979699, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995822643", "image_id": null}, {"id": 44178683265075, "product_id": 7692852232243, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:06-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541450291, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683265075", "image_id": null}, {"id": 44178683297843, "product_id": 7692852232243, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:08-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541483059, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683297843", "image_id": null}], "images": [{"id": 36104237776947, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852232243, "created_at": "2025-10-23T13:40:06-07:00", "updated_at": "2026-04-03T12:16:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779703347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-linen.jpg?v=1761252006", "variant_ids": []}], "image": {"id": 36104237776947, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852232243, "created_at": "2025-10-23T13:40:06-07:00", "updated_at": "2026-04-03T12:16:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779703347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-linen.jpg?v=1761252006", "variant_ids": []}}
+{"id": 7692852265011, "title": "Novasuede\u2122 - Madison Grey Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 - Madison Grey Luxury Suede wallcovering. The subtle texture and neutral gray tones create a sophisticated and calming atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-madison-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Charcoal, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, Contemporary, Dark Charcoal, display_variant, Fabric, Fire Rated, Gray, Grey, Living Room, Madison Grey, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3L1W, Taupe, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698995888179, "product_id": 7692852265011, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:10-07:00", "updated_at": "2026-04-03T13:20:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238045235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995888179", "image_id": null}, {"id": 44178683461683, "product_id": 7692852265011, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:35-07:00", "updated_at": "2026-04-15T10:48:40-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103400-Per Yard", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541646899, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683461683", "image_id": null}, {"id": 44178683494451, "product_id": 7692852265011, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:36-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541679667, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683494451", "image_id": null}], "images": [{"id": 36104238039091, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852265011, "created_at": "2025-10-23T13:40:10-07:00", "updated_at": "2026-04-03T12:16:30-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779965491", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-madison-grey.jpg?v=1761252010", "variant_ids": []}], "image": {"id": 36104238039091, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852265011, "created_at": "2025-10-23T13:40:10-07:00", "updated_at": "2026-04-03T12:16:30-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102779965491", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-madison-grey.jpg?v=1761252010", "variant_ids": []}}
+{"id": 7692852297779, "title": "Novasuede\u2122 - Maize Luxury Suede", "body_html": "<p>This is a close-up of a maize-colored, suede-like wallcovering. The texture and warm tone create a soft and inviting, organic mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-maize", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Light Brown, Living Room, Maize, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Serene, Solid, Suede, T3O3W, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698995920947, "product_id": 7692852297779, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:13-07:00", "updated_at": "2026-04-03T13:21:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238078003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995920947", "image_id": null}, {"id": 44178683559987, "product_id": 7692852297779, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:49-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541745203, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683559987", "image_id": null}, {"id": 44178683592755, "product_id": 7692852297779, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:50-07:00", "updated_at": "2026-04-15T10:48:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541777971, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683592755", "image_id": null}], "images": [{"id": 36104238268467, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852297779, "created_at": "2025-10-23T13:40:12-07:00", "updated_at": "2026-04-03T12:16:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102780358707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maize.jpg?v=1761252012", "variant_ids": []}], "image": {"id": 36104238268467, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852297779, "created_at": "2025-10-23T13:40:12-07:00", "updated_at": "2026-04-03T12:16:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102780358707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maize.jpg?v=1761252012", "variant_ids": []}}
+{"id": 7692852330547, "title": "Novasuede\u2122 Fabric & Wallcovering - Marine Blue Teal", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<h2>Novasuede\u2122 Marine Blue</h2>\n<h3>Product Overview</h3>\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications.</p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-marine-blue", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Living Room, Marine Blue, Mediumseagreen, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sage, Seafoam Green, Serene, Solid, Suede, T3N1W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "archived", "variants": [{"id": 43698995953715, "product_id": 7692852330547, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:16-07:00", "updated_at": "2026-04-15T10:48:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-103800", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238110771, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995953715", "image_id": null}], "images": [{"id": 36104238628915, "alt": "Novasuede\u2122 Marine Blue - Premium Microfiber Suede", "position": 1, "product_id": 7692852330547, "created_at": "2025-10-23T13:40:15-07:00", "updated_at": "2025-10-23T13:40:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102780555315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-marine-blue.jpg?v=1761252015", "variant_ids": []}], "image": {"id": 36104238628915, "alt": "Novasuede\u2122 Marine Blue - Premium Microfiber Suede", "position": 1, "product_id": 7692852330547, "created_at": "2025-10-23T13:40:15-07:00", "updated_at": "2025-10-23T13:40:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102780555315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-marine-blue.jpg?v=1761252015", "variant_ids": []}}
+{"id": 7692852363315, "title": "Novasuede\u2122 - Maroon Luxury Suede", "body_html": "<p>This is a close-up of a maroon suede wallcovering. The texture and deep color evoke a luxurious and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-maroon", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Burgundy, Cal 117, Class A Fire Rated, Color: Red, color:Oxblood, Commercial, Contemporary, Dark Red, display_variant, Fabric, Fire Rated, Living Room, Maroon, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Red, Solid, Suede, T3JAW, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698995986483, "product_id": 7692852363315, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:19-07:00", "updated_at": "2026-04-03T13:21:15-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238143539, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698995986483", "image_id": null}, {"id": 44178683625523, "product_id": 7692852363315, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:03-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541810739, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683625523", "image_id": null}, {"id": 44178683658291, "product_id": 7692852363315, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:04-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541843507, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683658291", "image_id": null}], "images": [{"id": 36104240234547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852363315, "created_at": "2025-10-23T13:40:18-07:00", "updated_at": "2026-04-03T12:16:34-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782193715", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maroon.jpg?v=1761252018", "variant_ids": []}], "image": {"id": 36104240234547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852363315, "created_at": "2025-10-23T13:40:18-07:00", "updated_at": "2026-04-03T12:16:34-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782193715", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-maroon.jpg?v=1761252018", "variant_ids": []}}
+{"id": 7692852396083, "title": "Novasuede\u2122 - Royal Purple Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a deep purple hue. The textured surface adds depth and a glamorous feel to any space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-mauve", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Gunmetal, Commercial, Contemporary, Dark Plum, display_variant, Eggplant, Fabric, Fire Rated, Hallway, Living Room, Luxe, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Purple, Solid, Sophisticated, Suede, T3S1W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996019251, "product_id": 7692852396083, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:22-07:00", "updated_at": "2026-04-03T13:29:15-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238176307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996019251", "image_id": null}, {"id": 44178690408499, "product_id": 7692852396083, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:03-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548593715, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690408499", "image_id": null}, {"id": 44178690441267, "product_id": 7692852396083, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:05-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548626483, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690441267", "image_id": null}], "images": [{"id": 37098670030899, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852396083, "created_at": "2026-03-31T13:56:38-07:00", "updated_at": "2026-04-03T12:17:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967633358899", "width": 612, "height": 612, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.56.27PM.png?v=1774990600", "variant_ids": []}], "image": {"id": 37098670030899, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852396083, "created_at": "2026-03-31T13:56:38-07:00", "updated_at": "2026-04-03T12:17:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967633358899", "width": 612, "height": 612, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.56.27PM.png?v=1774990600", "variant_ids": []}}
+{"id": 7692852428851, "title": "Novasuede\u2122 - Meadow Luxury Suede", "body_html": "<p>This wallcovering is a suede-like material in varying shades of brown and beige. It evokes a warm and natural mood, with a subtle textured appearance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-meadow", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Cal 117, Class A Fire Rated, Color: Green, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Khaki, Light Khaki, Living Room, Meadow, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive, Organic Modern, Sage, Serene, Solid, Suede, T3PIW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996052019, "product_id": 7692852428851, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:25-07:00", "updated_at": "2026-04-03T13:21:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238209075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996052019", "image_id": null}, {"id": 44178683854899, "product_id": 7692852428851, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:17-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288542040115, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683854899", "image_id": null}, {"id": 44178683953203, "product_id": 7692852428851, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:18-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288542138419, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683953203", "image_id": null}], "images": [{"id": 36104240758835, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852428851, "created_at": "2025-10-23T13:40:24-07:00", "updated_at": "2026-04-03T12:16:37-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782718003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-meadow.jpg?v=1761252024", "variant_ids": []}], "image": {"id": 36104240758835, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852428851, "created_at": "2025-10-23T13:40:24-07:00", "updated_at": "2026-04-03T12:16:37-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782718003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-meadow.jpg?v=1761252024", "variant_ids": []}}
+{"id": 7692852461619, "title": "Novasuede\u2122 - Melon Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede in a soft melon hue. Its textured surface adds depth and warmth, creating a contemporary and inviting atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-melon", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Apricot, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Orange, color:Peach, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Orange, Living Room, Melon, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Orange, Organic Modern, Peach, Solid, Suede, T3Q6W, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698996084787, "product_id": 7692852461619, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:27-07:00", "updated_at": "2026-04-03T13:21:43-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238241843, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996084787", "image_id": null}, {"id": 44178684248115, "product_id": 7692852461619, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:31-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288542433331, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684248115", "image_id": null}, {"id": 44178684313651, "product_id": 7692852461619, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:32-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288542498867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684313651", "image_id": null}], "images": [{"id": 36104240988211, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852461619, "created_at": "2025-10-23T13:40:27-07:00", "updated_at": "2026-04-03T12:16:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782881843", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-melon.jpg?v=1761252027", "variant_ids": []}], "image": {"id": 36104240988211, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852461619, "created_at": "2025-10-23T13:40:27-07:00", "updated_at": "2026-04-03T12:16:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102782881843", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-melon.jpg?v=1761252027", "variant_ids": []}}
+{"id": 7692852494387, "title": "Novasuede\u2122 - Milk Luxury Suede", "body_html": "<p>This is a wallcovering with a suede-like texture in a light beige color. It evokes a sense of understated luxury and warmth, suitable for a minimalist or contemporary space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-milk", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Milk, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Pale Beige, Serene, Solid, Suede, T3DQW, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698996117555, "product_id": 7692852494387, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:31-07:00", "updated_at": "2026-04-03T13:21:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238274611, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996117555", "image_id": null}, {"id": 44178684575795, "product_id": 7692852494387, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:45-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288542761011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684575795", "image_id": null}, {"id": 44178684641331, "product_id": 7692852494387, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:46-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-104800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288542826547, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684641331", "image_id": null}], "images": [{"id": 36104241283123, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852494387, "created_at": "2025-10-23T13:40:30-07:00", "updated_at": "2026-04-03T12:16:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102783111219", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-milk.jpg?v=1761252030", "variant_ids": []}], "image": {"id": 36104241283123, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852494387, "created_at": "2025-10-23T13:40:30-07:00", "updated_at": "2026-04-03T12:16:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102783111219", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-milk.jpg?v=1761252030", "variant_ids": []}}
+{"id": 7692852559923, "title": "Novasuede\u2122 - Mint Julip Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Mint Julip. The subtle texture and soft color create a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-mint-julip", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, color:Light Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Light Seagreen, Living Room, Microfiber Suede, Minimalist, Mint, Mint Julip, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Mint, Seafoam Green, Serene, Solid, Suede, T3P5W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996183091, "product_id": 7692852559923, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:36-07:00", "updated_at": "2026-04-03T13:22:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238340147, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996183091", "image_id": null}, {"id": 44178684936243, "product_id": 7692852559923, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:21:59-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288543121459, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684936243", "image_id": null}, {"id": 44178684969011, "product_id": 7692852559923, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:00-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288543154227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178684969011", "image_id": null}], "images": [{"id": 36104241709107, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852559923, "created_at": "2025-10-23T13:40:36-07:00", "updated_at": "2026-04-03T12:16:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102783537203", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mint-julip.jpg?v=1761252036", "variant_ids": []}], "image": {"id": 36104241709107, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852559923, "created_at": "2025-10-23T13:40:36-07:00", "updated_at": "2026-04-03T12:16:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102783537203", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mint-julip.jpg?v=1761252036", "variant_ids": []}}
+{"id": 7692852625459, "title": "Novasuede\u2122 - Misty Dew Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in the Misty Dew colorway. The subtle texture and neutral tones evoke a soft, calming, and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-misty-dew", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Living Room, Microfiber Suede, Minimalist, Misty Dew, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3PLW, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698996248627, "product_id": 7692852625459, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:42-07:00", "updated_at": "2026-04-03T13:22:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238405683, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996248627", "image_id": null}, {"id": 44178685362227, "product_id": 7692852625459, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:13-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288543547443, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685362227", "image_id": null}, {"id": 44178685394995, "product_id": 7692852625459, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:15-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288543580211, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685394995", "image_id": null}], "images": [{"id": 36104242135091, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852625459, "created_at": "2025-10-23T13:40:42-07:00", "updated_at": "2026-04-03T12:16:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784028723", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-misty-dew.jpg?v=1761252042", "variant_ids": []}], "image": {"id": 36104242135091, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852625459, "created_at": "2025-10-23T13:40:42-07:00", "updated_at": "2026-04-03T12:16:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784028723", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-misty-dew.jpg?v=1761252042", "variant_ids": []}}
+{"id": 7692852658227, "title": "Novasuede\u2122 Fabric & Wallcovering - Mocha", "body_html": "<p>This is a close-up of Novasuede\u2122 Fabric & Wallcovering in Mocha. The wallcovering has a soft, textured appearance with subtle color variations, creating a warm and inviting mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-mocha", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Camel, Class A Fire Rated, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Showroom Line, Solid, Suede, T3H7W, Tan, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698996281395, "product_id": 7692852658227, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:45-07:00", "updated_at": "2026-04-03T13:08:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-105800", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238438451, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996281395", "image_id": null}], "images": [{"id": 36104242397235, "alt": "Novasuede\u2122 Mocha - Premium Microfiber Suede", "position": 1, "product_id": 7692852658227, "created_at": "2025-10-23T13:40:45-07:00", "updated_at": "2025-10-23T13:40:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784258099", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mocha.jpg?v=1761252045", "variant_ids": []}], "image": {"id": 36104242397235, "alt": "Novasuede\u2122 Mocha - Premium Microfiber Suede", "position": 1, "product_id": 7692852658227, "created_at": "2025-10-23T13:40:45-07:00", "updated_at": "2025-10-23T13:40:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784258099", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mocha.jpg?v=1761252045", "variant_ids": []}}
+{"id": 7692852690995, "title": "Novasuede\u2122 - Moss Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a deep moss green. Its soft texture and rich color evoke a sense of natural elegance and understated sophistication.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-moss", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Brown, color:Juniper, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Living Room, Microfiber Suede, Minimalist, Moss, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Stone, Suede, T3L3W, Taupe, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996314163, "product_id": 7692852690995, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:48-07:00", "updated_at": "2026-04-03T13:22:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238471219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996314163", "image_id": null}, {"id": 44178685427763, "product_id": 7692852690995, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:28-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288543612979, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685427763", "image_id": null}, {"id": 44178685460531, "product_id": 7692852690995, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:29-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288543645747, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685460531", "image_id": null}], "images": [{"id": 36104242561075, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852690995, "created_at": "2025-10-23T13:40:48-07:00", "updated_at": "2026-04-03T12:16:46-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784454707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-moss.jpg?v=1761252048", "variant_ids": []}], "image": {"id": 36104242561075, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852690995, "created_at": "2025-10-23T13:40:48-07:00", "updated_at": "2026-04-03T12:16:46-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784454707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-moss.jpg?v=1761252048", "variant_ids": []}}
+{"id": 7692852723763, "title": "Novasuede\u2122 - Mushroom Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a mushroom color. It evokes a warm and sophisticated mood with its subtle texture and neutral tones.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-mushroom", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Camel, Class A Fire Rated, Color: Brown, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, Mushroom, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3K1W, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698996346931, "product_id": 7692852723763, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:51-07:00", "updated_at": "2026-04-03T13:22:55-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238503987, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996346931", "image_id": null}, {"id": 44178685493299, "product_id": 7692852723763, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:43-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288543678515, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685493299", "image_id": null}, {"id": 44178685526067, "product_id": 7692852723763, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:22:44-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288543711283, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685526067", "image_id": null}], "images": [{"id": 36104242823219, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852723763, "created_at": "2025-10-23T13:40:51-07:00", "updated_at": "2026-04-03T12:16:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784651315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mushroom.jpg?v=1761252051", "variant_ids": []}], "image": {"id": 36104242823219, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852723763, "created_at": "2025-10-23T13:40:51-07:00", "updated_at": "2026-04-03T12:16:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102784651315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-mushroom.jpg?v=1761252051", "variant_ids": []}}
+{"id": 7692852789299, "title": "Novasuede\u2122 Fabric & Wallcovering - Newport", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<h2>Novasuede\u2122 Newport</h2>\n<h3>Product Overview</h3>\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications.</p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-newport", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, Color: Blue, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Midnight Blue, Midnightblue, Minimalist, Navy, Newport, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3C2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "archived", "variants": [{"id": 43698996412467, "product_id": 7692852789299, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:40:57-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106600", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238569523, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996412467", "image_id": null}], "images": [{"id": 36104243183667, "alt": "Novasuede\u2122 Newport - Premium Microfiber Suede", "position": 1, "product_id": 7692852789299, "created_at": "2025-10-23T13:40:57-07:00", "updated_at": "2025-10-23T13:40:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785077299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-newport.jpg?v=1761252057", "variant_ids": []}], "image": {"id": 36104243183667, "alt": "Novasuede\u2122 Newport - Premium Microfiber Suede", "position": 1, "product_id": 7692852789299, "created_at": "2025-10-23T13:40:57-07:00", "updated_at": "2025-10-23T13:40:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785077299", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-newport.jpg?v=1761252057", "variant_ids": []}}
+{"id": 7692852822067, "title": "Novasuede\u2122 Fabric & Wallcovering - Nutmeg", "body_html": "<p>This is a close-up of Novasuede\u2122 Fabric & Wallcovering in the Nutmeg color. The wallcovering has a soft, suede-like texture and a warm, inviting feel.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-nutmeg", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Nutmeg, Office, Organic Modern, Serene, Showroom Line, Solid, Suede, T3F9W, Tan, Texture, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996445235, "product_id": 7692852822067, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:00-07:00", "updated_at": "2026-04-03T13:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-106800", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238602291, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996445235", "image_id": null}], "images": [{"id": 36104243478579, "alt": "Novasuede\u2122 Nutmeg - Premium Microfiber Suede", "position": 1, "product_id": 7692852822067, "created_at": "2025-10-23T13:41:00-07:00", "updated_at": "2025-10-23T13:41:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785339443", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-nutmeg.jpg?v=1761252060", "variant_ids": []}], "image": {"id": 36104243478579, "alt": "Novasuede\u2122 Nutmeg - Premium Microfiber Suede", "position": 1, "product_id": 7692852822067, "created_at": "2025-10-23T13:41:00-07:00", "updated_at": "2025-10-23T13:41:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785339443", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-nutmeg.jpg?v=1761252060", "variant_ids": []}}
+{"id": 7692852854835, "title": "Novasuede\u2122 Fabric & Wallcovering - Ocean", "body_html": "<p>This is a textured wallcovering with a suede-like appearance. The varying shades of blue evoke a calming, coastal mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-ocean", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Powder Blue, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Living Room, Mediumseagreen, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Ocean, Office, Organic Modern, Sage, Seafoam Green, Serene, Showroom Line, Solid, Suede, T3P0W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996478003, "product_id": 7692852854835, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:03-07:00", "updated_at": "2026-04-03T13:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107000", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238635059, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996478003", "image_id": null}], "images": [{"id": 36104243642419, "alt": "Novasuede\u2122 Ocean - Premium Microfiber Suede", "position": 1, "product_id": 7692852854835, "created_at": "2025-10-23T13:41:02-07:00", "updated_at": "2025-10-23T13:41:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785536051", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ocean.jpg?v=1761252062", "variant_ids": []}], "image": {"id": 36104243642419, "alt": "Novasuede\u2122 Ocean - Premium Microfiber Suede", "position": 1, "product_id": 7692852854835, "created_at": "2025-10-23T13:41:02-07:00", "updated_at": "2025-10-23T13:41:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785536051", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ocean.jpg?v=1761252062", "variant_ids": []}}
+{"id": 7692852887603, "title": "Novasuede\u2122 - Olive Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 in Olive, a luxurious suede wallcovering. The texture and color evoke a natural, calming, and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-olive", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Brown, color:Coffee, Commercial, Contemporary, Dark Olive, Dark Olivegreen, display_variant, Fabric, Fire Rated, Green, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive, Olive Drab, Organic Modern, Serene, Solid, Suede, T3PEW, Textured, Traditional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996510771, "product_id": 7692852887603, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:06-07:00", "updated_at": "2026-04-03T13:23:51-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238667827, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996510771", "image_id": null}, {"id": 44178685788211, "product_id": 7692852887603, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:23:39-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288543973427, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685788211", "image_id": null}, {"id": 44178685820979, "product_id": 7692852887603, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:23:40-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544006195, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685820979", "image_id": null}], "images": [{"id": 36104243904563, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852887603, "created_at": "2025-10-23T13:41:05-07:00", "updated_at": "2026-04-03T12:16:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785732659", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-olive.jpg?v=1761252065", "variant_ids": []}], "image": {"id": 36104243904563, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852887603, "created_at": "2025-10-23T13:41:05-07:00", "updated_at": "2026-04-03T12:16:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102785732659", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-olive.jpg?v=1761252065", "variant_ids": []}}
+{"id": 7692852953139, "title": "Novasuede\u2122 - Oyster Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 - Oyster Luxury Suede wallcovering. The wallcovering has a soft, elegant, and minimalist style with a subtle texture. </p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-oyster", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Oyster, Sand, Serene, Solid, Suede, T3EBW, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996576307, "product_id": 7692852953139, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:11-07:00", "updated_at": "2026-04-03T13:24:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238733363, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996576307", "image_id": null}, {"id": 44178685919283, "product_id": 7692852953139, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:07-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288544104499, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685919283", "image_id": null}, {"id": 44178685952051, "product_id": 7692852953139, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:09-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544137267, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685952051", "image_id": null}], "images": [{"id": 36104244330547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852953139, "created_at": "2025-10-23T13:41:11-07:00", "updated_at": "2026-04-03T12:16:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786191411", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-oyster.jpg?v=1761252071", "variant_ids": []}], "image": {"id": 36104244330547, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852953139, "created_at": "2025-10-23T13:41:11-07:00", "updated_at": "2026-04-03T12:16:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786191411", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-oyster.jpg?v=1761252071", "variant_ids": []}}
+{"id": 7692852985907, "title": "Novasuede\u2122 - Pale Green Luxury Suede", "body_html": "<p>This is a pale green, suede-like wallcovering. It evokes a sense of calm and understated luxury with its soft texture and muted color palette.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-pale-green", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Cal 117, Class A Fire Rated, Color: Green, color:Dove Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Light Cyan, Microfiber Suede, Minimalist, Mint Green, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Nursery, Pale Green, Seafoam Green, Serene, Solid, Suede, T3P8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996609075, "product_id": 7692852985907, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:14-07:00", "updated_at": "2026-04-03T13:24:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238766131, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996609075", "image_id": null}, {"id": 44178685984819, "product_id": 7692852985907, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:22-07:00", "updated_at": "2026-04-15T10:48:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288544170035, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685984819", "image_id": null}, {"id": 44178686017587, "product_id": 7692852985907, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:23-07:00", "updated_at": "2026-04-15T10:48:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-107800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544202803, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178686017587", "image_id": null}], "images": [{"id": 36104244559923, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852985907, "created_at": "2025-10-23T13:41:14-07:00", "updated_at": "2026-04-03T12:16:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786420787", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pale-green.jpg?v=1761252074", "variant_ids": []}], "image": {"id": 36104244559923, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692852985907, "created_at": "2025-10-23T13:41:14-07:00", "updated_at": "2026-04-03T12:16:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786420787", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pale-green.jpg?v=1761252074", "variant_ids": []}}
+{"id": 7692853018675, "title": "Novasuede\u2122 - Passion Blue Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a deep blue hue. The textured surface creates a sophisticated and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-passion-blue", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, Cobalt Blue, Color: Blue, color:Navy, Commercial, Contemporary, Cool, display_variant, Fabric, Fabric-backed Vinyl, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Passion Blue, Royal Blue, Solid, T3NAW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996641843, "product_id": 7692853018675, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:17-07:00", "updated_at": "2026-04-03T13:24:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238798899, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996641843", "image_id": null}, {"id": 44178686443571, "product_id": 7692853018675, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:36-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288544628787, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178686443571", "image_id": null}, {"id": 44178686476339, "product_id": 7692853018675, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:37-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544661555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178686476339", "image_id": null}], "images": [{"id": 36104244756531, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853018675, "created_at": "2025-10-23T13:41:16-07:00", "updated_at": "2026-04-03T12:16:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786617395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue.jpg?v=1761252076", "variant_ids": []}, {"id": 37235336511539, "alt": null, "position": 2, "product_id": 7692853018675, "created_at": "2026-04-24T00:26:56-07:00", "updated_at": "2026-04-24T00:26:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28097669038131", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue-flowing-drape.jpg?v=1777015616", "variant_ids": []}, {"id": 37235336740915, "alt": null, "position": 3, "product_id": 7692853018675, "created_at": "2026-04-24T00:26:59-07:00", "updated_at": "2026-04-24T00:26:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28097669234739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue-cascading-drape.jpg?v=1777015619", "variant_ids": []}, {"id": 37235336970291, "alt": null, "position": 4, "product_id": 7692853018675, "created_at": "2026-04-24T00:27:02-07:00", "updated_at": "2026-04-24T00:27:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28097669431347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue-gathered-drape.jpg?v=1777015622", "variant_ids": []}, {"id": 37235337166899, "alt": null, "position": 5, "product_id": 7692853018675, "created_at": "2026-04-24T00:27:05-07:00", "updated_at": "2026-04-24T00:27:05-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28097669693491", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue-folded.jpg?v=1777015625", "variant_ids": []}], "image": {"id": 36104244756531, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853018675, "created_at": "2025-10-23T13:41:16-07:00", "updated_at": "2026-04-03T12:16:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786617395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-passion-blue.jpg?v=1761252076", "variant_ids": []}}
+{"id": 7692853051443, "title": "Novasuede\u2122 - Peach Luxury Suede", "body_html": "<p>This wallcovering is a luxurious peach-colored suede texture. It evokes a soft, warm, and sophisticated mood, suitable for modern interiors.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-peach", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Pink, color:Blush, Commercial, Contemporary, display_variant, Dusty Rose, Fabric, Fire Rated, Light Peach, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Nursery, Organic Modern, Pale Peach, Pink, Serene, Solid, Suede, T3Q2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996674611, "product_id": 7692853051443, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:20-07:00", "updated_at": "2026-06-11T12:22:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238831667, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996674611", "image_id": null}, {"id": 44178687852595, "product_id": 7692853051443, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:19-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288546037811, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687852595", "image_id": null}, {"id": 44178687885363, "product_id": 7692853051443, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:20-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546070579, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687885363", "image_id": null}], "images": [{"id": 36104244953139, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853051443, "created_at": "2025-10-23T13:41:19-07:00", "updated_at": "2026-04-03T12:16:58-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786814003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peach.jpg?v=1761252079", "variant_ids": []}], "image": {"id": 36104244953139, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853051443, "created_at": "2025-10-23T13:41:19-07:00", "updated_at": "2026-04-03T12:16:58-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102786814003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peach.jpg?v=1761252079", "variant_ids": []}}
+{"id": 7692853084211, "title": "Novasuede\u2122 - Pebble Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering with a subtle pebble texture. The neutral color palette and soft texture create a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-pebble", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Bisque, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Peach, Peachpuff, Pebble, Primary Suite, Serene, Solid, Suede, T3K2W, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698996707379, "product_id": 7692853084211, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:22-07:00", "updated_at": "2026-04-03T13:25:45-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238864435, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996707379", "image_id": null}, {"id": 44178687918131, "product_id": 7692853084211, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:33-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288546103347, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687918131", "image_id": null}, {"id": 44178687950899, "product_id": 7692853084211, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:35-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546136115, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687950899", "image_id": null}], "images": [{"id": 36104245182515, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853084211, "created_at": "2025-10-23T13:41:22-07:00", "updated_at": "2026-04-03T12:17:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787076147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pebble.jpg?v=1761252082", "variant_ids": []}], "image": {"id": 36104245182515, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853084211, "created_at": "2025-10-23T13:41:22-07:00", "updated_at": "2026-04-03T12:17:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787076147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pebble.jpg?v=1761252082", "variant_ids": []}}
+{"id": 7692853116979, "title": "Novasuede\u2122 - Peppermint Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Peppermint. The soft, suede-like texture evokes a calming and minimalist mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-peppermint", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Pink, color:Mint, Commercial, Contemporary, display_variant, Dusty Rose, Fabric, Fabric-backed Vinyl, Fire Rated, Light Pink, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Pink, Pale Rose, Peppermint, Pink, Primary Suite, Serene, Solid, T3R4W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996740147, "product_id": 7692853116979, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:25-07:00", "updated_at": "2026-04-03T13:25:59-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238897203, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996740147", "image_id": null}, {"id": 44178687983667, "product_id": 7692853116979, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:47-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288546168883, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687983667", "image_id": null}, {"id": 44178688016435, "product_id": 7692853116979, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:49-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546201651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178688016435", "image_id": null}], "images": [{"id": 36104245411891, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853116979, "created_at": "2025-10-23T13:41:25-07:00", "updated_at": "2026-04-03T12:17:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787305523", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peppermint.jpg?v=1761252085", "variant_ids": []}], "image": {"id": 36104245411891, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853116979, "created_at": "2025-10-23T13:41:25-07:00", "updated_at": "2026-04-03T12:17:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787305523", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peppermint.jpg?v=1761252085", "variant_ids": []}}
+{"id": 7692853149747, "title": "Novasuede\u2122 - Peridot Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 - Peridot Luxury Suede wallcovering. The textured surface and muted green tones evoke a natural and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-peridot", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, color:Moss, Commercial, Contemporary, Dark Olive, display_variant, Fabric, Fire Rated, Green, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive, Organic Modern, Peridot, Serene, Solid, Suede, T3P7W, Textured, Traditional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996772915, "product_id": 7692853149747, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:28-07:00", "updated_at": "2026-04-03T13:26:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238929971, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996772915", "image_id": null}, {"id": 44178688081971, "product_id": 7692853149747, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:01-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288546267187, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178688081971", "image_id": null}, {"id": 44178688114739, "product_id": 7692853149747, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:03-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-108800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546299955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178688114739", "image_id": null}], "images": [{"id": 36104245641267, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853149747, "created_at": "2025-10-23T13:41:28-07:00", "updated_at": "2026-04-03T12:17:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787469363", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peridot.jpg?v=1761252088", "variant_ids": []}], "image": {"id": 36104245641267, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853149747, "created_at": "2025-10-23T13:41:28-07:00", "updated_at": "2026-04-03T12:17:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787469363", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-peridot.jpg?v=1761252088", "variant_ids": []}}
+{"id": 7692853182515, "title": "Novasuede\u2122 Fabric & Wallcovering - Periwinkle", "body_html": "<p>This is a close-up of a periwinkle-colored Novasuede fabric wallcovering. The texture gives it a soft, modern, and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-periwinkle", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, color:Amethyst, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Blue, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Blue, Periwinkle, Serene, Showroom Line, Solid, Suede, T3N6W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996805683, "product_id": 7692853182515, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:31-07:00", "updated_at": "2026-04-03T13:08:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109000", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804238962739, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996805683", "image_id": null}], "images": [{"id": 36104245837875, "alt": "Novasuede\u2122 Periwinkle - Premium Microfiber Suede", "position": 1, "product_id": 7692853182515, "created_at": "2025-10-23T13:41:31-07:00", "updated_at": "2025-10-23T13:41:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787698739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-periwinkle.jpg?v=1761252091", "variant_ids": []}], "image": {"id": 36104245837875, "alt": "Novasuede\u2122 Periwinkle - Premium Microfiber Suede", "position": 1, "product_id": 7692853182515, "created_at": "2025-10-23T13:41:31-07:00", "updated_at": "2025-10-23T13:41:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787698739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-periwinkle.jpg?v=1761252091", "variant_ids": []}}
+{"id": 7692853248051, "title": "Novasuede\u2122 - Plum Pleasure Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a deep plum color. The textured surface adds depth and sophistication, creating a glam and elegant mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-plum-pleasure", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Burgundy, Cal 117, Class A Fire Rated, Color: Red, color:Graphite, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Maroon, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Plum Pleasure, Red, Solid, Sophisticated, Suede, T3S5W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996871219, "product_id": 7692853248051, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:35-07:00", "updated_at": "2026-04-03T13:27:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239028275, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996871219", "image_id": null}, {"id": 44178689425459, "product_id": 7692853248051, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:57-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288547610675, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689425459", "image_id": null}, {"id": 44178689458227, "product_id": 7692853248051, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:58-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288547643443, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689458227", "image_id": null}], "images": [{"id": 36104246132787, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853248051, "created_at": "2025-10-23T13:41:35-07:00", "updated_at": "2026-04-03T12:17:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787993651", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-plum-pleasure.jpg?v=1761252095", "variant_ids": []}], "image": {"id": 36104246132787, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853248051, "created_at": "2025-10-23T13:41:35-07:00", "updated_at": "2026-04-03T12:17:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102787993651", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-plum-pleasure.jpg?v=1761252095", "variant_ids": []}}
+{"id": 7692853313587, "title": "Novasuede\u2122 - Powder Grey Luxury Suede", "body_html": "<p>This is a suede-like wallcovering in a powder grey color. The subtle texture and neutral tone create a soft and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-powder-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Grey, color:Light Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Grey, Light Gray, Light Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Grey, Powder Grey, Serene, Solid, Suede, T3E5W, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698996969523, "product_id": 7692853313587, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:40-07:00", "updated_at": "2026-04-03T13:27:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239126579, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698996969523", "image_id": null}, {"id": 44178689622067, "product_id": 7692853313587, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:25-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288547807283, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689622067", "image_id": null}, {"id": 44178689654835, "product_id": 7692853313587, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:26-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288547840051, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689654835", "image_id": null}], "images": [{"id": 36104246526003, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853313587, "created_at": "2025-10-23T13:41:39-07:00", "updated_at": "2026-04-03T12:17:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102788321331", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-powder-grey.jpg?v=1761252099", "variant_ids": []}], "image": {"id": 36104246526003, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853313587, "created_at": "2025-10-23T13:41:39-07:00", "updated_at": "2026-04-03T12:17:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102788321331", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-powder-grey.jpg?v=1761252099", "variant_ids": []}}
+{"id": 7692853346355, "title": "Novasuede\u2122 - Prairie Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a subtle, natural texture. It evokes a warm and inviting mood with a touch of rustic elegance.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-prairie", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Prairie, Sand, Serene, Solid, Suede, T3KCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997002291, "product_id": 7692853346355, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:43-07:00", "updated_at": "2026-04-03T13:27:51-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239159347, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997002291", "image_id": null}, {"id": 44178689687603, "product_id": 7692853346355, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:39-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288547872819, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689687603", "image_id": null}, {"id": 44178689720371, "product_id": 7692853346355, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:40-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288547905587, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689720371", "image_id": null}], "images": [{"id": 36104246722611, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853346355, "created_at": "2025-10-23T13:41:42-07:00", "updated_at": "2026-04-03T12:17:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102788583475", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-prairie.jpg?v=1761252102", "variant_ids": []}], "image": {"id": 36104246722611, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853346355, "created_at": "2025-10-23T13:41:42-07:00", "updated_at": "2026-04-03T12:17:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102788583475", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-prairie.jpg?v=1761252102", "variant_ids": []}}
+{"id": 7692853444659, "title": "Novasuede\u2122 - Sandalwood Luxury Suede", "body_html": "<p>This is a close-up of a suede wallcovering. The deep, rich color and soft texture evoke a feeling of warmth and luxury.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-red", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Apricot, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Orange, color:Garnet, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Apricot, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Orange, Organic Modern, Solid, Suede, T3R8W, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997100595, "product_id": 7692853444659, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:41:52-07:00", "updated_at": "2026-04-03T13:30:53-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239257651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997100595", "image_id": null}, {"id": 44178690998323, "product_id": 7692853444659, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:41-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288549183539, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690998323", "image_id": null}, {"id": 44178691031091, "product_id": 7692853444659, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:42-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288549216307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691031091", "image_id": null}], "images": [{"id": 36104247476275, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853444659, "created_at": "2025-10-23T13:41:51-07:00", "updated_at": "2026-04-03T12:17:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102789304371", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-red.jpg?v=1761252111", "variant_ids": []}], "image": {"id": 36104247476275, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853444659, "created_at": "2025-10-23T13:41:51-07:00", "updated_at": "2026-04-03T12:17:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102789304371", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-red.jpg?v=1761252111", "variant_ids": []}}
+{"id": 7692853575731, "title": "Novasuede\u2122 - Ruby Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a deep ruby red. It evokes a sense of opulence and sophistication, perfect for adding a touch of glam to any space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-ruby", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Burnt Sienna, Cal 117, Class A Fire Rated, Color: Red, color:Garnet, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Orange, Organic Modern, Red, Russet, Solid, Suede, T3J9W, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997198899, "product_id": 7692853575731, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:01-07:00", "updated_at": "2026-04-03T13:29:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239355955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997198899", "image_id": null}, {"id": 44178690474035, "product_id": 7692853575731, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:17-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548659251, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690474035", "image_id": null}, {"id": 44178690506803, "product_id": 7692853575731, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:19-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548692019, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690506803", "image_id": null}], "images": [{"id": 36104248098867, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853575731, "created_at": "2025-10-23T13:42:01-07:00", "updated_at": "2026-04-03T12:17:22-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102789926963", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ruby.jpg?v=1761252121", "variant_ids": []}], "image": {"id": 36104248098867, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853575731, "created_at": "2025-10-23T13:42:01-07:00", "updated_at": "2026-04-03T12:17:22-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102789926963", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-ruby.jpg?v=1761252121", "variant_ids": []}}
+{"id": 7692853608499, "title": "Novasuede\u2122 - Sable Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in varying shades of brown. It evokes a warm and sophisticated mood, perfect for adding depth and dimension to a space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sable", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Brown, Cal 117, Chocolate Brown, Class A Fire Rated, Color: Brown, color:Ecru, Commercial, Contemporary, Dark Brown, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sable, Solid, Suede, T3I8W, Textured, Traditional, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997231667, "product_id": 7692853608499, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:04-07:00", "updated_at": "2026-04-03T13:29:43-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239388723, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997231667", "image_id": null}, {"id": 44178690539571, "product_id": 7692853608499, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:31-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548724787, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690539571", "image_id": null}, {"id": 44178690572339, "product_id": 7692853608499, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:32-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548757555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690572339", "image_id": null}], "images": [{"id": 36104248393779, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853608499, "created_at": "2025-10-23T13:42:03-07:00", "updated_at": "2026-04-03T12:17:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102790189107", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sable.jpg?v=1761252123", "variant_ids": []}], "image": {"id": 36104248393779, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853608499, "created_at": "2025-10-23T13:42:03-07:00", "updated_at": "2026-04-03T12:17:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102790189107", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sable.jpg?v=1761252123", "variant_ids": []}}
+{"id": 7692853674035, "title": "Novasuede\u2122 - Saffron Luxury Suede", "body_html": "<p>This is a close-up of a saffron-colored suede wallcovering. The texture and warm color create a luxurious and inviting mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-saffron", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, Color: Brown, color:Amber, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Solid, Suede, T3DGW, Tan, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997329971, "product_id": 7692853674035, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:10-07:00", "updated_at": "2026-04-03T13:29:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239487027, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997329971", "image_id": null}, {"id": 44178690670643, "product_id": 7692853674035, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:45-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548855859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690670643", "image_id": null}, {"id": 44178690703411, "product_id": 7692853674035, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:46-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548888627, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690703411", "image_id": null}], "images": [{"id": 36104248885299, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853674035, "created_at": "2025-10-23T13:42:10-07:00", "updated_at": "2026-04-03T12:17:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791172147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-saffron.jpg?v=1761252130", "variant_ids": []}], "image": {"id": 36104248885299, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853674035, "created_at": "2025-10-23T13:42:10-07:00", "updated_at": "2026-04-03T12:17:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791172147", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-saffron.jpg?v=1761252130", "variant_ids": []}}
+{"id": 7692853706803, "title": "Novasuede\u2122 - Sage Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a soft sage green. It evokes a calming and sophisticated mood with its subtle texture and natural color.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sage", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Charcoal Gray, Class A Fire Rated, Color: Grey, color:Sage, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Gray, Grey, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Serene, Solid, Suede, T3PGW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997362739, "product_id": 7692853706803, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:13-07:00", "updated_at": "2026-04-03T13:30:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239519795, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997362739", "image_id": null}, {"id": 44178690768947, "product_id": 7692853706803, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:29:59-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548954163, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690768947", "image_id": null}, {"id": 44178690801715, "product_id": 7692853706803, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:00-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548986931, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690801715", "image_id": null}], "images": [{"id": 36104249507891, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853706803, "created_at": "2025-10-23T13:42:13-07:00", "updated_at": "2026-04-03T12:17:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791335987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sage.jpg?v=1761252133", "variant_ids": []}], "image": {"id": 36104249507891, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853706803, "created_at": "2025-10-23T13:42:13-07:00", "updated_at": "2026-04-03T12:17:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791335987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sage.jpg?v=1761252133", "variant_ids": []}}
+{"id": 7692853739571, "title": "Novasuede\u2122 - Salt Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in a light, neutral color. The subtle texture and soft color palette create a warm and inviting atmosphere.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-salt", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Off-white, Office, Organic Modern, Paper, Salt, Serene, Solid, T3DRW, Textured, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 43698997395507, "product_id": 7692853739571, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:16-07:00", "updated_at": "2026-04-03T13:30:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239552563, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997395507", "image_id": null}, {"id": 44178690867251, "product_id": 7692853739571, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:13-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288549052467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690867251", "image_id": null}, {"id": 44178690900019, "product_id": 7692853739571, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:14-07:00", "updated_at": "2026-04-15T10:48:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288549085235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690900019", "image_id": null}], "images": [{"id": 36104249802803, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853739571, "created_at": "2025-10-23T13:42:16-07:00", "updated_at": "2026-04-03T12:17:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791499827", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-salt.jpg?v=1761252136", "variant_ids": []}], "image": {"id": 36104249802803, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853739571, "created_at": "2025-10-23T13:42:16-07:00", "updated_at": "2026-04-03T12:17:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791499827", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-salt.jpg?v=1761252136", "variant_ids": []}}
+{"id": 7692853772339, "title": "Novasuede\u2122 - Sand Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in a sand color. The texture creates a soft, luxurious, and minimalist aesthetic.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sand", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Pale Beige, Serene, Solid, Suede, T3E1W, Taupe, Textured, UFAC Class I, Upholstery, Wallcovering, Zen", "status": "active", "variants": [{"id": 43698997428275, "product_id": 7692853772339, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:19-07:00", "updated_at": "2026-04-03T13:30:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239585331, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997428275", "image_id": null}, {"id": 44178690932787, "product_id": 7692853772339, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:27-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288549118003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690932787", "image_id": null}, {"id": 44178690965555, "product_id": 7692853772339, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:30:28-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288549150771, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690965555", "image_id": null}], "images": [{"id": 36104249966643, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853772339, "created_at": "2025-10-23T13:42:19-07:00", "updated_at": "2026-04-03T12:17:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791794739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sand.jpg?v=1761252139", "variant_ids": []}], "image": {"id": 36104249966643, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853772339, "created_at": "2025-10-23T13:42:19-07:00", "updated_at": "2026-04-03T12:17:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102791794739", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sand.jpg?v=1761252139", "variant_ids": []}}
+{"id": 7692853837875, "title": "Novasuede\u2122 - Scarlet Wine Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a deep scarlet wine color. The textured surface adds depth and a touch of glam to any space.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-scarlet-wine", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Burgundy, Cal 117, Class A Fire Rated, Color: Red, color:Maroon, Commercial, Contemporary, Deep Maroon, display_variant, Fabric, Fire Rated, Living Room, Maroon, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Red, Scarlet Wine, Solid, Suede, T3J8W, Textured, Traditional, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997493811, "product_id": 7692853837875, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:25-07:00", "updated_at": "2026-04-03T13:31:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239650867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997493811", "image_id": null}, {"id": 44178691555379, "product_id": 7692853837875, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:09-07:00", "updated_at": "2026-04-15T10:48:45-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288549740595, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691555379", "image_id": null}, {"id": 44178691588147, "product_id": 7692853837875, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:10-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288549773363, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691588147", "image_id": null}], "images": [{"id": 36104250654771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853837875, "created_at": "2025-10-23T13:42:25-07:00", "updated_at": "2026-04-03T12:17:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792482867", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-scarlet-wine.jpg?v=1761252145", "variant_ids": []}], "image": {"id": 36104250654771, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853837875, "created_at": "2025-10-23T13:42:25-07:00", "updated_at": "2026-04-03T12:17:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792482867", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-scarlet-wine.jpg?v=1761252145", "variant_ids": []}}
+{"id": 7692853870643, "title": "Novasuede\u2122 - Sea Blue Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a sea blue hue. The textured finish and rich color evoke a sophisticated and calming mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sea-blue", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Blue, Cal 117, Class A Fire Rated, Color: Blue, color:Peacock, Commercial, Contemporary, Denim Blue, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sea Blue, Serene, Slate Blue, Solid, Suede, T3N9W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997526579, "product_id": 7692853870643, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:28-07:00", "updated_at": "2026-04-03T13:31:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239683635, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997526579", "image_id": null}, {"id": 44178691751987, "product_id": 7692853870643, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:23-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288549937203, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691751987", "image_id": null}, {"id": 44178691784755, "product_id": 7692853870643, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:25-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288549969971, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691784755", "image_id": null}], "images": [{"id": 36104250884147, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853870643, "created_at": "2025-10-23T13:42:28-07:00", "updated_at": "2026-04-03T12:17:46-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792679475", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-blue.jpg?v=1761252148", "variant_ids": []}], "image": {"id": 36104250884147, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853870643, "created_at": "2025-10-23T13:42:28-07:00", "updated_at": "2026-04-03T12:17:46-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792679475", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-blue.jpg?v=1761252148", "variant_ids": []}}
+{"id": 7692853903411, "title": "Novasuede\u2122 - Sea Grass Luxury Suede", "body_html": "<p>This is a textured wallcovering with a subtle grasscloth pattern. It evokes a natural and calming mood, suitable for creating a serene interior.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sea-grass", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Cal 117, Class A Fire Rated, Color: Green, color:Eggshell, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive Green, Organic Modern, Sage, Sea Grass, Serene, Solid, Suede, T3L8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997592115, "product_id": 7692853903411, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:35-07:00", "updated_at": "2026-04-03T13:32:03-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239749171, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997592115", "image_id": null}, {"id": 44178691915827, "product_id": 7692853903411, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:51-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288550101043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691915827", "image_id": null}, {"id": 44178691948595, "product_id": 7692853903411, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:53-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288550133811, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691948595", "image_id": null}], "images": [{"id": 36104251375667, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853903411, "created_at": "2025-10-23T13:42:34-07:00", "updated_at": "2026-04-03T12:17:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102793170995", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-grass.jpg?v=1761252154", "variant_ids": []}], "image": {"id": 36104251375667, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853903411, "created_at": "2025-10-23T13:42:34-07:00", "updated_at": "2026-04-03T12:17:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102793170995", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-grass.jpg?v=1761252154", "variant_ids": []}}
+{"id": 7692853936179, "title": "Novasuede\u2122 - Sea Breeze Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a soft, textured appearance. The color palette evokes a calming and serene mood, reminiscent of a sea breeze.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-sea-breeze", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Green, color:Powder Blue, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Light Seagreen, Living Room, Microfiber Suede, Minimalist, Mintcream, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sage, Sea Breeze, Seafoam Green, Serene, Solid, Suede, T3PCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997559347, "product_id": 7692853936179, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:32-07:00", "updated_at": "2026-04-03T13:31:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239716403, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997559347", "image_id": null}, {"id": 44178691850291, "product_id": 7692853936179, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:37-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288550035507, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691850291", "image_id": null}, {"id": 44178691883059, "product_id": 7692853936179, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:31:39-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288550068275, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178691883059", "image_id": null}], "images": [{"id": 36104251146291, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853936179, "created_at": "2025-10-23T13:42:31-07:00", "updated_at": "2026-04-03T12:17:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792941619", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-breeze.jpg?v=1761252151", "variant_ids": []}], "image": {"id": 36104251146291, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853936179, "created_at": "2025-10-23T13:42:31-07:00", "updated_at": "2026-04-03T12:17:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102792941619", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sea-breeze.jpg?v=1761252151", "variant_ids": []}}
+{"id": 7692853968947, "title": "Novasuede\u2122 - Seafoam Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede material in a seafoam green color. Its textured surface and subtle color create a calming and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-seafoam", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Celadon, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Khaki, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive Drab, Organic Modern, Serene, Solid, Suede, T3P2W, Tan, Taupe, Texture, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997624883, "product_id": 7692853968947, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:38-07:00", "updated_at": "2026-04-03T13:32:17-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239781939, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997624883", "image_id": null}, {"id": 44178692112435, "product_id": 7692853968947, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:32:06-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288550297651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692112435", "image_id": null}, {"id": 44178692177971, "product_id": 7692853968947, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:32:07-07:00", "updated_at": "2026-04-15T10:48:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288550363187, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692177971", "image_id": null}], "images": [{"id": 36104251605043, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853968947, "created_at": "2025-10-23T13:42:37-07:00", "updated_at": "2026-04-03T12:17:52-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102793367603", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-seafoam.jpg?v=1761252157", "variant_ids": []}], "image": {"id": 36104251605043, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692853968947, "created_at": "2025-10-23T13:42:37-07:00", "updated_at": "2026-04-03T12:17:52-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102793367603", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-seafoam.jpg?v=1761252157", "variant_ids": []}}
+{"id": 7692854034483, "title": "Novasuede\u2122 - Sienna Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in Sienna. The textured surface and warm color create a luxurious and inviting mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-sienna", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Camel, Class A Fire Rated, color:Sienna, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Sienna, Solid, Suede, T3F7W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997657651, "product_id": 7692854034483, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:41-07:00", "updated_at": "2026-04-03T13:32:59-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239814707, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997657651", "image_id": null}, {"id": 44178692472883, "product_id": 7692854034483, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:32:48-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288550658099, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692472883", "image_id": null}, {"id": 44178692505651, "product_id": 7692854034483, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:32:49-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-113800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288550690867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692505651", "image_id": null}], "images": [{"id": 36104252293171, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854034483, "created_at": "2025-10-23T13:42:40-07:00", "updated_at": "2026-04-03T12:17:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794088499", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sienna.jpg?v=1761252160", "variant_ids": []}], "image": {"id": 36104252293171, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854034483, "created_at": "2025-10-23T13:42:40-07:00", "updated_at": "2026-04-03T12:17:53-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794088499", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sienna.jpg?v=1761252160", "variant_ids": []}}
+{"id": 7692854067251, "title": "Novasuede\u2122 Fabric & Wallcovering - Silver", "body_html": "<p>This is a silver-toned Novasuede fabric wallcovering. It offers a minimalist and contemporary aesthetic with a subtle textured appearance.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-silver", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Silver, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Light Gray, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Showroom Line, Solid, Suede, T3LEW, Taupe, Texture, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997690419, "product_id": 7692854067251, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:43-07:00", "updated_at": "2026-04-03T13:08:59-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114000", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239847475, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997690419", "image_id": null}], "images": [{"id": 36104252489779, "alt": "Novasuede\u2122 Silver - Premium Microfiber Suede", "position": 1, "product_id": 7692854067251, "created_at": "2025-10-23T13:42:43-07:00", "updated_at": "2025-10-23T13:42:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794317875", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-silver.jpg?v=1761252163", "variant_ids": []}], "image": {"id": 36104252489779, "alt": "Novasuede\u2122 Silver - Premium Microfiber Suede", "position": 1, "product_id": 7692854067251, "created_at": "2025-10-23T13:42:43-07:00", "updated_at": "2025-10-23T13:42:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794317875", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-silver.jpg?v=1761252163", "variant_ids": []}}
+{"id": 7692854100019, "title": "Novasuede\u2122 - Sky Blue Luxury Suede", "body_html": "<p>This is a sky blue suede wallcovering. It evokes a soft, luxurious, and calming mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-sky-blue", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Baby Blue, Bathroom, Bedroom, Blue, Cal 117, Class A Fire Rated, color:Steel, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Blue, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Nursery, Organic Modern, Powder Blue, Serene, Sky Blue, Solid, Suede, T3N3W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997723187, "product_id": 7692854100019, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:46-07:00", "updated_at": "2026-04-03T13:33:14-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239880243, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997723187", "image_id": null}, {"id": 44178692735027, "product_id": 7692854100019, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:02-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288550920243, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692735027", "image_id": null}, {"id": 44178692767795, "product_id": 7692854100019, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:03-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288550953011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692767795", "image_id": null}], "images": [{"id": 36104252784691, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854100019, "created_at": "2025-10-23T13:42:46-07:00", "updated_at": "2026-04-03T12:17:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794580019", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sky-blue.jpg?v=1761252166", "variant_ids": []}], "image": {"id": 36104252784691, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854100019, "created_at": "2025-10-23T13:42:46-07:00", "updated_at": "2026-04-03T12:17:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794580019", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sky-blue.jpg?v=1761252166", "variant_ids": []}}
+{"id": 7692854132787, "title": "Novasuede\u2122 - Smoke Luxury Suede", "body_html": "<p>This is a wallcovering that features a soft, suede-like texture in a muted gray tone. The subtle variations in color and the tactile quality create a sophisticated and understated mood, perfect for modern interiors.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-smoke", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Brown, Cal 117, Class A Fire Rated, Cocoa Brown, color:Sage, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Smoke, Solid, Suede, T3K5W, Taupe, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997755955, "product_id": 7692854132787, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:49-07:00", "updated_at": "2026-04-03T13:33:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239913011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997755955", "image_id": null}, {"id": 44178692833331, "product_id": 7692854132787, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:16-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551018547, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692833331", "image_id": null}, {"id": 44178692866099, "product_id": 7692854132787, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:17-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551051315, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692866099", "image_id": null}], "images": [{"id": 36104252948531, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854132787, "created_at": "2025-10-23T13:42:49-07:00", "updated_at": "2026-04-03T12:17:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794776627", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-smoke.jpg?v=1761252169", "variant_ids": []}], "image": {"id": 36104252948531, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854132787, "created_at": "2025-10-23T13:42:49-07:00", "updated_at": "2026-04-03T12:17:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794776627", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-smoke.jpg?v=1761252169", "variant_ids": []}}
+{"id": 7692854165555, "title": "Novasuede\u2122 - Soft Clay Luxury Suede", "body_html": "<p>This is a suede-like wallcovering in soft clay tones. The texture and neutral color palette create a warm and inviting, yet minimalist aesthetic.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-soft-clay", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Burnt Sienna, Cal 117, Class A Fire Rated, color:Ecru, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Orange, Organic Modern, Soft Clay, Solid, Suede, T3R5W, Terracotta, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997788723, "product_id": 7692854165555, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:52-07:00", "updated_at": "2026-04-03T13:33:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239945779, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997788723", "image_id": null}, {"id": 44178692931635, "product_id": 7692854165555, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:30-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551116851, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692931635", "image_id": null}, {"id": 44178692964403, "product_id": 7692854165555, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:31-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551149619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692964403", "image_id": null}], "images": [{"id": 36104253177907, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854165555, "created_at": "2025-10-23T13:42:52-07:00", "updated_at": "2026-04-03T12:17:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794940467", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-soft-clay.jpg?v=1761252172", "variant_ids": []}], "image": {"id": 36104253177907, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854165555, "created_at": "2025-10-23T13:42:52-07:00", "updated_at": "2026-04-03T12:17:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102794940467", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-soft-clay.jpg?v=1761252172", "variant_ids": []}}
+{"id": 7692854198323, "title": "Novasuede\u2122 - Solar Yellow Luxury Suede", "body_html": "<p>This wallcovering is a solid yellow suede texture. It evokes a warm and luxurious feeling with a modern touch.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-solar-yellow", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Honey, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Golden Yellow, Goldenrod, Khaki, Living Room, Microfiber Suede, Minimalist, Mustard, Mustard Yellow, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solar Yellow, Solid, Suede, T3O1W, Texture, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering, Warm, Yellow", "status": "active", "variants": [{"id": 43698997821491, "product_id": 7692854198323, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:42:55-07:00", "updated_at": "2026-04-03T13:33:55-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804239978547, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997821491", "image_id": null}, {"id": 44178692997171, "product_id": 7692854198323, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:44-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551182387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178692997171", "image_id": null}, {"id": 44178693029939, "product_id": 7692854198323, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:33:45-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-114800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551215155, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693029939", "image_id": null}], "images": [{"id": 36104253407283, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854198323, "created_at": "2025-10-23T13:42:55-07:00", "updated_at": "2026-04-03T12:18:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795235379", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-solar-yellow.jpg?v=1761252175", "variant_ids": []}], "image": {"id": 36104253407283, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854198323, "created_at": "2025-10-23T13:42:55-07:00", "updated_at": "2026-04-03T12:18:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795235379", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-solar-yellow.jpg?v=1761252175", "variant_ids": []}}
+{"id": 7692854263859, "title": "Novasuede\u2122 - Steel Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a steel gray color. It evokes a modern and sophisticated mood with its subtle texture and neutral tone.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-steel", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, color:Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Light Gray, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Steel, Suede, T3LDW, Taupe, Texture, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997887027, "product_id": 7692854263859, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:01-07:00", "updated_at": "2026-04-03T13:34:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240044083, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997887027", "image_id": null}, {"id": 44178693161011, "product_id": 7692854263859, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:11-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551346227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693161011", "image_id": null}, {"id": 44178693193779, "product_id": 7692854263859, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:12-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551378995, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693193779", "image_id": null}], "images": [{"id": 36104253866035, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854263859, "created_at": "2025-10-23T13:43:00-07:00", "updated_at": "2026-04-03T12:18:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795628595", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-steel.jpg?v=1761252180", "variant_ids": []}], "image": {"id": 36104253866035, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854263859, "created_at": "2025-10-23T13:43:00-07:00", "updated_at": "2026-04-03T12:18:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795628595", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-steel.jpg?v=1761252180", "variant_ids": []}}
+{"id": 7692854296627, "title": "Novasuede\u2122 - Stone Grey Luxury Suede", "body_html": "<p>This is a close-up of a stone grey suede wallcovering. The texture and subtle color variations create a sophisticated and calming mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-stone-grey", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, color:Light Gray, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, Mushroom, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Stone Grey, Suede, T3L2W, Taupe, Texture, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698997952563, "product_id": 7692854296627, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:03-07:00", "updated_at": "2026-04-03T13:34:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240109619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997952563", "image_id": null}, {"id": 44178693259315, "product_id": 7692854296627, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:25-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551444531, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693259315", "image_id": null}, {"id": 44178693292083, "product_id": 7692854296627, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:26-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551477299, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693292083", "image_id": null}], "images": [{"id": 36104254095411, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854296627, "created_at": "2025-10-23T13:43:03-07:00", "updated_at": "2026-04-03T12:18:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795857971", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-grey.jpg?v=1761252183", "variant_ids": []}], "image": {"id": 36104254095411, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854296627, "created_at": "2025-10-23T13:43:03-07:00", "updated_at": "2026-04-03T12:18:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102795857971", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-grey.jpg?v=1761252183", "variant_ids": []}}
+{"id": 7692854329395, "title": "Novasuede\u2122 - Stone Taupe Luxury Suede", "body_html": "<p>This is a close-up of a suede-like wallcovering in a stone taupe color. The texture and neutral tone evoke a sense of understated elegance and warmth.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-stone-taupe", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, color:Taupe, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Stone Taupe, Suede, T3K8W, Tan, Taupe, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698997985331, "product_id": 7692854329395, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:06-07:00", "updated_at": "2026-04-03T13:34:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240142387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698997985331", "image_id": null}, {"id": 44178693521459, "product_id": 7692854329395, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:39-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551706675, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693521459", "image_id": null}, {"id": 44178693554227, "product_id": 7692854329395, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:40-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551739443, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693554227", "image_id": null}], "images": [{"id": 36104254259251, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854329395, "created_at": "2025-10-23T13:43:06-07:00", "updated_at": "2026-04-03T12:18:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102796087347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-taupe.jpg?v=1761252186", "variant_ids": []}], "image": {"id": 36104254259251, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854329395, "created_at": "2025-10-23T13:43:06-07:00", "updated_at": "2026-04-03T12:18:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102796087347", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-stone-taupe.jpg?v=1761252186", "variant_ids": []}}
+{"id": 7692854394931, "title": "Novasuede\u2122 - Raffia Luxury Suede", "body_html": "<p>This wallcovering features a raffia texture with a suede-like appearance. It evokes a natural and subtly luxurious mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-straw", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Light Beige, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Serene, Solid, Straw, Suede, T3DCW, Tan, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998050867, "product_id": 7692854394931, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:12-07:00", "updated_at": "2026-04-03T13:28:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110400-SAMPLE-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240207923, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998050867", "image_id": null}, {"id": 44178690146355, "product_id": 7692854394931, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:28:08-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548331571, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690146355", "image_id": null}, {"id": 44178690179123, "product_id": 7692854394931, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:28:09-07:00", "updated_at": "2026-04-15T10:48:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548364339, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690179123", "image_id": null}], "images": [{"id": 37098636902451, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854394931, "created_at": "2026-03-31T13:51:36-07:00", "updated_at": "2026-04-03T12:17:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967600427059", "width": 606, "height": 592, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.51.27PM.png?v=1774990298", "variant_ids": []}], "image": {"id": 37098636902451, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854394931, "created_at": "2026-03-31T13:51:36-07:00", "updated_at": "2026-04-03T12:17:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967600427059", "width": 606, "height": 592, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.51.27PM.png?v=1774990298", "variant_ids": []}}
+{"id": 7692854427699, "title": "Novasuede\u2122 - Porcelain Luxury Suede", "body_html": "<p>This is a suede-like wallcovering with a subtle texture. It evokes a warm and sophisticated mood.</p>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-strong-white", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Ecru, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Off-white, Organic Modern, Paper, Serene, Solid, Strong White, T3DAW, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 43698998083635, "product_id": 7692854427699, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:15-07:00", "updated_at": "2026-04-03T13:27:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240240691, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998083635", "image_id": null}, {"id": 44178689490995, "product_id": 7692854427699, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:11-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288547676211, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689490995", "image_id": null}, {"id": 44178689523763, "product_id": 7692854427699, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:12-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288547708979, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689523763", "image_id": null}], "images": [{"id": 37098596237363, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854427699, "created_at": "2026-03-31T13:43:59-07:00", "updated_at": "2026-04-03T12:17:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967561007155", "width": 610, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.43.35PM.png?v=1774989843", "variant_ids": []}], "image": {"id": 37098596237363, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854427699, "created_at": "2026-03-31T13:43:59-07:00", "updated_at": "2026-04-03T12:17:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967561007155", "width": 610, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.43.35PM.png?v=1774989843", "variant_ids": []}}
+{"id": 7692854460467, "title": "Novasuede\u2122 - Sugar Plum Luxury Suede", "body_html": "<p>This is a luxurious suede wallcovering in a rich plum color. The textured finish adds depth and a glamorous feel to any space.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-sugar-plum", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Slate, Commercial, Contemporary, display_variant, Dusty Rose, Fabric, Fire Rated, Light Pink, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pink, Primary Suite, Rose Quartz, Serene, Solid, Suede, Sugar Plum, T3J3W, Texture, Textured, Timeless, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998116403, "product_id": 7692854460467, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:18-07:00", "updated_at": "2026-04-03T13:35:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240273459, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998116403", "image_id": null}, {"id": 44178694176819, "product_id": 7692854460467, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:35-07:00", "updated_at": "2026-04-15T10:48:38-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552362035, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694176819", "image_id": null}, {"id": 44178694209587, "product_id": 7692854460467, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:36-07:00", "updated_at": "2026-04-15T10:48:39-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552394803, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694209587", "image_id": null}], "images": [{"id": 36104255176755, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854460467, "created_at": "2025-10-23T13:43:17-07:00", "updated_at": "2026-04-03T12:18:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797004851", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sugar-plum.jpg?v=1761252197", "variant_ids": []}], "image": {"id": 36104255176755, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854460467, "created_at": "2025-10-23T13:43:17-07:00", "updated_at": "2026-04-03T12:18:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797004851", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sugar-plum.jpg?v=1761252197", "variant_ids": []}}
+{"id": 7692854493235, "title": "Novasuede\u2122 - Sweet Lilac Luxury Suede", "body_html": "<p>This wallcovering is a luxurious suede texture in a soft lilac hue. It evokes a calming and sophisticated mood, perfect for creating a serene space. </p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-sweet-lilac", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Lilac, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Lavender, Light Purple, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Nursery, Organic Modern, Pale Lavender, Purple, Serene, Solid, Suede, Sweet Lilac, T3T1W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998149171, "product_id": 7692854493235, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:21-07:00", "updated_at": "2026-04-03T13:36:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240306227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998149171", "image_id": null}, {"id": 44178694242355, "product_id": 7692854493235, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:49-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552427571, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694242355", "image_id": null}, {"id": 44178694275123, "product_id": 7692854493235, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:50-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552460339, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694275123", "image_id": null}], "images": [{"id": 36104255471667, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854493235, "created_at": "2025-10-23T13:43:20-07:00", "updated_at": "2026-04-03T12:18:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797201459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sweet-lilac.jpg?v=1761252200", "variant_ids": []}], "image": {"id": 36104255471667, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854493235, "created_at": "2025-10-23T13:43:20-07:00", "updated_at": "2026-04-03T12:18:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797201459", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sweet-lilac.jpg?v=1761252200", "variant_ids": []}}
+{"id": 7692854526003, "title": "Novasuede\u2122 - Tan Luxury Suede", "body_html": "<p>This is a close-up of a tan, suede-like wallcovering. The texture and color evoke a warm and inviting, organic mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-tan", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Camel, Class A Fire Rated, color:Tan, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Solid, Suede, T3E7W, Tan, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Warm", "status": "active", "variants": [{"id": 43698998181939, "product_id": 7692854526003, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:23-07:00", "updated_at": "2026-04-03T13:36:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240338995, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998181939", "image_id": null}, {"id": 44178694406195, "product_id": 7692854526003, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:08-07:00", "updated_at": "2026-04-15T10:48:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552591411, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694406195", "image_id": null}, {"id": 44178694438963, "product_id": 7692854526003, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:10-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552624179, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694438963", "image_id": null}], "images": [{"id": 36104255668275, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854526003, "created_at": "2025-10-23T13:43:23-07:00", "updated_at": "2026-04-03T12:18:16-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797463603", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tan.jpg?v=1761252203", "variant_ids": []}], "image": {"id": 36104255668275, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854526003, "created_at": "2025-10-23T13:43:23-07:00", "updated_at": "2026-04-03T12:18:16-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797463603", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tan.jpg?v=1761252203", "variant_ids": []}}
+{"id": 7692854558771, "title": "Novasuede\u2122 - Tarragon Luxury Suede", "body_html": "<p>This is a suede-like wallcovering in varying shades of olive green. The textured surface creates a warm and inviting organic mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-tarragon", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Cal 117, Class A Fire Rated, color:Coffee, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Green, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive Green, Organic, Organic Modern, Sage, Solid, Suede, T3PNW, Tarragon, Texture, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998214707, "product_id": 7692854558771, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:26-07:00", "updated_at": "2026-04-03T13:36:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240371763, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998214707", "image_id": null}, {"id": 44178694471731, "product_id": 7692854558771, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:22-07:00", "updated_at": "2026-04-15T10:48:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552656947, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694471731", "image_id": null}, {"id": 44178694537267, "product_id": 7692854558771, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:24-07:00", "updated_at": "2026-04-15T10:48:22-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552722483, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694537267", "image_id": null}], "images": [{"id": 36104255832115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854558771, "created_at": "2025-10-23T13:43:26-07:00", "updated_at": "2026-04-03T12:18:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797660211", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tarragon.jpg?v=1761252206", "variant_ids": []}], "image": {"id": 36104255832115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854558771, "created_at": "2025-10-23T13:43:26-07:00", "updated_at": "2026-04-03T12:18:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797660211", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tarragon.jpg?v=1761252206", "variant_ids": []}}
+{"id": 7692854591539, "title": "Novasuede\u2122 - Taupe Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in a taupe color. The subtle texture and neutral tone create a sophisticated and calming atmosphere.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-taupe", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, color:Taupe, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Primary Suite, Serene, Solid, Suede, T3K3W, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698998247475, "product_id": 7692854591539, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:29-07:00", "updated_at": "2026-04-03T13:36:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240404531, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998247475", "image_id": null}, {"id": 44178694570035, "product_id": 7692854591539, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:36-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552755251, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694570035", "image_id": null}, {"id": 44178694602803, "product_id": 7692854591539, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:36:38-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552788019, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694602803", "image_id": null}], "images": [{"id": 36104256127027, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854591539, "created_at": "2025-10-23T13:43:29-07:00", "updated_at": "2026-04-03T12:18:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797856819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-taupe.jpg?v=1761252209", "variant_ids": []}], "image": {"id": 36104256127027, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854591539, "created_at": "2025-10-23T13:43:29-07:00", "updated_at": "2026-04-03T12:18:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102797856819", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-taupe.jpg?v=1761252209", "variant_ids": []}}
+{"id": 7692854624307, "title": "Novasuede\u2122 - Thyme Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in the Thyme color. The suede texture and muted green tones evoke a natural and calming mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-thyme", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, color:Gray, Commercial, Contemporary, Dark Olive Green, Dark Olivegreen, display_variant, Fabric, Fire Rated, Green, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Olive, Organic Modern, Serene, Solid, Suede, T3PBW, Texture, Textured, Thyme, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998280243, "product_id": 7692854624307, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:32-07:00", "updated_at": "2026-04-03T13:37:17-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240437299, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998280243", "image_id": null}, {"id": 44178694733875, "product_id": 7692854624307, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:37:05-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552919091, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694733875", "image_id": null}, {"id": 44178694766643, "product_id": 7692854624307, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:37:06-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552951859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694766643", "image_id": null}], "images": [{"id": 36104256290867, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854624307, "created_at": "2025-10-23T13:43:31-07:00", "updated_at": "2026-04-03T12:18:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798086195", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thyme.jpg?v=1761252211", "variant_ids": []}], "image": {"id": 36104256290867, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854624307, "created_at": "2025-10-23T13:43:31-07:00", "updated_at": "2026-04-03T12:18:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798086195", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thyme.jpg?v=1761252211", "variant_ids": []}}
+{"id": 7692854657075, "title": "Novasuede\u2122 - Trench Luxury Suede", "body_html": "<p>This is a close-up of Novasuede\u2122 wallcovering in the Trench colorway. The suede texture creates a warm and inviting, subtly luxurious mood.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-trench", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, color:Sand, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Rustic, Serene, Solid, Suede, T3L9W, Taupe, Texture, Textured, Trench, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 43698998313011, "product_id": 7692854657075, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:35-07:00", "updated_at": "2026-04-03T13:37:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240470067, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998313011", "image_id": null}, {"id": 44178694799411, "product_id": 7692854657075, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:37:19-07:00", "updated_at": "2026-04-15T10:48:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288552984627, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694799411", "image_id": null}, {"id": 44178694832179, "product_id": 7692854657075, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:37:20-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288553017395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178694832179", "image_id": null}], "images": [{"id": 36104256487475, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854657075, "created_at": "2025-10-23T13:43:35-07:00", "updated_at": "2026-04-03T12:18:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798282803", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-trench.jpg?v=1761252215", "variant_ids": []}], "image": {"id": 36104256487475, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854657075, "created_at": "2025-10-23T13:43:35-07:00", "updated_at": "2026-04-03T12:18:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798282803", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-trench.jpg?v=1761252215", "variant_ids": []}}
+{"id": 7692854689843, "title": "Novasuede\u2122 - Vanilla Luxury Suede", "body_html": "<p>This is a solid color wallcovering with a suede-like texture. It evokes a sense of understated luxury and warmth, perfect for creating a serene and inviting atmosphere.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-vanilla", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, color:Eggshell, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Pale Beige, Paper, Serene, Solid, T3D5W, Texture, Textured, UFAC Class I, Upholstery, Vanilla, Wallcovering, Yellow", "status": "active", "variants": [{"id": 43698998345779, "product_id": 7692854689843, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:38-07:00", "updated_at": "2026-04-03T13:38:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240502835, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998345779", "image_id": null}, {"id": 44178695127091, "product_id": 7692854689843, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:38:01-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288553312307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178695127091", "image_id": null}, {"id": 44178695159859, "product_id": 7692854689843, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:38:02-07:00", "updated_at": "2026-04-15T10:48:37-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-117800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288553345075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178695159859", "image_id": null}], "images": [{"id": 36104256749619, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854689843, "created_at": "2025-10-23T13:43:37-07:00", "updated_at": "2026-04-03T12:18:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798512179", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vanilla.jpg?v=1761252217", "variant_ids": []}], "image": {"id": 36104256749619, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7692854689843, "created_at": "2025-10-23T13:43:37-07:00", "updated_at": "2026-04-03T12:18:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798512179", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vanilla.jpg?v=1761252217", "variant_ids": []}}
+{"id": 7692854722611, "title": "Novasuede\u2122 Fabric & Wallcovering - White", "body_html": "<p>This is a close-up of a white, suede-like fabric wallcovering. Its subtle texture creates a soft and clean aesthetic, perfect for a minimalist or contemporary space.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-white", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, color:White, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Off-white, Organic Modern, Paper, Serene, Showroom Line, Solid, T3WHW, Texture, Textured, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 43698998378547, "product_id": 7692854722611, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2025-10-23T13:43:41-07:00", "updated_at": "2026-06-11T12:22:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118000", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 45804240535603, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/43698998378547", "image_id": null}], "images": [{"id": 36104256978995, "alt": "Novasuede\u2122 White - Premium Microfiber Suede", "position": 1, "product_id": 7692854722611, "created_at": "2025-10-23T13:43:40-07:00", "updated_at": "2025-10-23T13:43:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798807091", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-white.jpg?v=1761252220", "variant_ids": []}], "image": {"id": 36104256978995, "alt": "Novasuede\u2122 White - Premium Microfiber Suede", "position": 1, "product_id": 7692854722611, "created_at": "2025-10-23T13:43:40-07:00", "updated_at": "2025-10-23T13:43:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27102798807091", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-white.jpg?v=1761252220", "variant_ids": []}}
+{"id": 7810413133875, "title": "Novasuede\u2122 - Putty Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fabric-wallcovering-white-copy", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Tan, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Off-white, Organic Modern, Paper, Serene, Solid, T3DFW, Textured, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 44170094444595, "product_id": 7810413133875, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-03-31T13:47:27-07:00", "updated_at": "2026-04-03T13:28:05-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110200-SAMPLE-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46279768637491, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44170094444595", "image_id": null}, {"id": 44178689753139, "product_id": 7810413133875, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:53-07:00", "updated_at": "2026-04-15T10:48:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288547938355, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689753139", "image_id": null}, {"id": 44178689785907, "product_id": 7810413133875, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:27:54-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288547971123, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178689785907", "image_id": null}], "images": [{"id": 37098617176115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810413133875, "created_at": "2026-03-31T13:48:03-07:00", "updated_at": "2026-04-03T12:17:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967580897331", "width": 608, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.47.32PM.png?v=1774990085", "variant_ids": []}], "image": {"id": 37098617176115, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810413133875, "created_at": "2026-03-31T13:48:03-07:00", "updated_at": "2026-04-03T12:17:15-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967580897331", "width": 608, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at1.47.32PM.png?v=1774990085", "variant_ids": []}}
+{"id": 7810424700979, "title": "Novasuede\u2122 - Straw Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-iceberg-copy", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Champagne, Class A Fire Rated, Color: Beige, color:Apricot, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Iceberg, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Suede, T3O2W, Tan, Taupe, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, Yellow", "status": "active", "variants": [{"id": 44170164109363, "product_id": 7810424700979, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-03-31T14:40:37-07:00", "updated_at": "2026-04-03T13:35:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46279838302259, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44170164109363", "image_id": null}, {"id": 44178693685299, "product_id": 7810424700979, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:06-07:00", "updated_at": "2026-04-15T10:48:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551870515, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693685299", "image_id": null}, {"id": 44178693718067, "product_id": 7810424700979, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:08-07:00", "updated_at": "2026-04-15T10:48:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551903283, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693718067", "image_id": null}], "images": [{"id": 37098791501875, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810424700979, "created_at": "2026-03-31T14:41:26-07:00", "updated_at": "2026-04-03T12:18:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967752372275", "width": 606, "height": 600, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.41.15PM.png?v=1774993288", "variant_ids": []}], "image": {"id": 37098791501875, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810424700979, "created_at": "2026-03-31T14:41:26-07:00", "updated_at": "2026-04-03T12:18:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967752372275", "width": 606, "height": 600, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.41.15PM.png?v=1774993288", "variant_ids": []}}
+{"id": 7810424864819, "title": "Novasuede\u2122 - Strong White Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-strong-white", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Bone, Commercial, Contemporary, Cream, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Off-white, Organic Modern, Paper, Serene, Solid, Strong White, T3B1W, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering, White", "status": "active", "variants": [{"id": 44170164502579, "product_id": 7810424864819, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-03-31T14:42:59-07:00", "updated_at": "2026-04-03T13:35:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46279838695475, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44170164502579", "image_id": null}, {"id": 44178693750835, "product_id": 7810424864819, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:20-07:00", "updated_at": "2026-04-15T10:48:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551968819, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693750835", "image_id": null}, {"id": 44178693816371, "product_id": 7810424864819, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:35:22-07:00", "updated_at": "2026-04-15T10:48:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-116200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288552001587, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693816371", "image_id": null}], "images": [{"id": 37098795499571, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810424864819, "created_at": "2026-03-31T14:43:14-07:00", "updated_at": "2026-04-03T12:18:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967756369971", "width": 608, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.43.05PM.png?v=1774993396", "variant_ids": []}], "image": {"id": 37098795499571, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7810424864819, "created_at": "2026-03-31T14:43:14-07:00", "updated_at": "2026-04-03T12:18:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27967756369971", "width": 608, "height": 604, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-03-31at2.43.05PM.png?v=1774993396", "variant_ids": []}}
+{"id": 7811043164211, "title": "Novasuede\u2122 - Pistachio Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fabric-wallcovering-pistachio", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Cobalt Blue, Color: Blue, color:Eggplant, Commercial, Contemporary, Cool, display_variant, Fabric, Fabric-backed Vinyl, Fire Rated, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Pistachio, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44172685180979, "product_id": 7811043164211, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-01T10:32:29-07:00", "updated_at": "2026-04-03T13:26:55-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109200-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46282459971635, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44172685180979", "image_id": null}, {"id": 44178688442419, "product_id": 7811043164211, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:43-07:00", "updated_at": "2026-04-15T10:48:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109200-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288546627635, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178688442419", "image_id": null}, {"id": 44178688540723, "product_id": 7811043164211, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:26:45-07:00", "updated_at": "2026-04-15T10:48:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-109200-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546725939, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178688540723", "image_id": null}], "images": [{"id": 37189382701107, "alt": "Novasuede pistachio luxury suede wallcovering", "position": 1, "product_id": 7811043164211, "created_at": "2026-04-15T19:11:58-07:00", "updated_at": "2026-04-15T19:11:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053339275315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pistachio.jpg?v=1776305519", "variant_ids": []}], "image": {"id": 37189382701107, "alt": "Novasuede pistachio luxury suede wallcovering", "position": 1, "product_id": 7811043164211, "created_at": "2026-04-15T19:11:58-07:00", "updated_at": "2026-04-15T19:11:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053339275315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pistachio.jpg?v=1776305519", "variant_ids": []}}
+{"id": 7811044311091, "title": "Novasuede\u2122 - Rosewater Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fabric-wallcovering-rosewater", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, color:Gunmetal, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Light Beige, Light Brown, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Serene, Solid, Straw, Suede, T3DCW, Tan, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44172688064563, "product_id": 7811044311091, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-01T10:44:34-07:00", "updated_at": "2026-04-03T13:28:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46282462855219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44172688064563", "image_id": null}, {"id": 44178690277427, "product_id": 7811044311091, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:28:36-07:00", "updated_at": "2026-04-15T10:48:43-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288548462643, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690277427", "image_id": null}, {"id": 44178690310195, "product_id": 7811044311091, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:28:37-07:00", "updated_at": "2026-04-15T10:48:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-110800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288548495411, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178690310195", "image_id": null}], "images": [{"id": 37189382799411, "alt": "Novasuede rosewater luxury suede wallcovering", "position": 1, "product_id": 7811044311091, "created_at": "2026-04-15T19:11:59-07:00", "updated_at": "2026-04-15T19:12:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053339373619", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-rosewater.jpg?v=1776305521", "variant_ids": []}], "image": {"id": 37189382799411, "alt": "Novasuede rosewater luxury suede wallcovering", "position": 1, "product_id": 7811044311091, "created_at": "2026-04-15T19:11:59-07:00", "updated_at": "2026-04-15T19:12:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053339373619", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-rosewater.jpg?v=1776305521", "variant_ids": []}}
+{"id": 7811046309939, "title": "Novasuede\u2122 - Safari Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fabric-wallcovering-safari", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Color: Purple, color:Buff, Commercial, Contemporary, Dark Plum, display_variant, Eggplant, Fabric, Fire Rated, Hallway, Living Room, Luxe, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Solid, Sophisticated, Suede, T3D8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44172698189875, "product_id": 7811046309939, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-01T10:55:02-07:00", "updated_at": "2026-04-03T13:08:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111600-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46282473078835, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44172698189875", "image_id": null}, {"id": 44178650071091, "product_id": 7811046309939, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T12:37:39-07:00", "updated_at": "2026-04-03T13:08:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111600-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288508256307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178650071091", "image_id": null}, {"id": 44178650103859, "product_id": 7811046309939, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T12:37:39-07:00", "updated_at": "2026-04-03T13:08:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-111600-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288508289075, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178650103859", "image_id": null}], "images": [{"id": 37104280174643, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7811046309939, "created_at": "2026-04-01T10:56:02-07:00", "updated_at": "2026-04-03T12:17:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27972965367859", "width": 616, "height": 608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-04-01at10.55.54AM.png?v=1775066164", "variant_ids": []}], "image": {"id": 37104280174643, "alt": "Direct Resource for Novasuede\u2122 - Premium Microfiber Suede", "position": 1, "product_id": 7811046309939, "created_at": "2026-04-01T10:56:02-07:00", "updated_at": "2026-04-03T12:17:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/27972965367859", "width": 616, "height": 608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-04-01at10.55.54AM.png?v=1775066164", "variant_ids": []}}
+{"id": 7811047948339, "title": "Novasuede\u2122 - Storm Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-storm", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Beige, Cal 117, Class A Fire Rated, Color: Beige, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Light Beige, Light Gray, Living Room, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Office, Organic Modern, Serene, Solid, Steel, Suede, Taupe, Textured, Transitional, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44172701368371, "product_id": 7811047948339, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-01T11:01:45-07:00", "updated_at": "2026-04-03T13:35:04-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115800-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46282476257331, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44172701368371", "image_id": null}, {"id": 44178693586995, "product_id": 7811047948339, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:53-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115800-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288551772211, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693586995", "image_id": null}, {"id": 44178693619763, "product_id": 7811047948339, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:34:54-07:00", "updated_at": "2026-04-15T10:48:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-115800-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288551804979, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178693619763", "image_id": null}], "images": [{"id": 37189341937715, "alt": "Novasuede storm luxury suede wallcovering", "position": 1, "product_id": 7811047948339, "created_at": "2026-04-15T19:03:28-07:00", "updated_at": "2026-04-15T19:03:30-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053299265587", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-storm.jpg?v=1776305010", "variant_ids": []}], "image": {"id": 37189341937715, "alt": "Novasuede storm luxury suede wallcovering", "position": 1, "product_id": 7811047948339, "created_at": "2026-04-15T19:03:28-07:00", "updated_at": "2026-04-15T19:03:30-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28053299265587", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-storm.jpg?v=1776305010", "variant_ids": []}}
+{"id": 7812135682099, "title": "Novasuede\u2122 - Abyss Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-abyss", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630475827, "product_id": 7812135682099, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:33-07:00", "updated_at": "2026-04-03T13:07:08-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490000-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488661043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630475827", "image_id": null}, {"id": 44178677071923, "product_id": 7812135682099, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:04:51-07:00", "updated_at": "2026-04-03T13:07:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490000-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288535257139, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677071923", "image_id": null}, {"id": 44178677104691, "product_id": 7812135682099, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:04:53-07:00", "updated_at": "2026-04-03T13:07:10-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490000-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288535289907, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677104691", "image_id": null}], "images": [], "image": null}
+{"id": 7812135714867, "title": "Novasuede\u2122 - Amber Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-amber", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630508595, "product_id": 7812135714867, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:37-07:00", "updated_at": "2026-04-03T13:07:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490001-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488693811, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630508595", "image_id": null}, {"id": 44178677825587, "product_id": 7812135714867, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:49-07:00", "updated_at": "2026-04-03T13:07:21-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490001-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536010803, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677825587", "image_id": null}, {"id": 44178677858355, "product_id": 7812135714867, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:05:50-07:00", "updated_at": "2026-04-03T13:07:20-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490001-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536043571, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178677858355", "image_id": null}], "images": [], "image": null}
+{"id": 7812135747635, "title": "Novasuede\u2122 - Blank Slate Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-blank-slate", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630574131, "product_id": 7812135747635, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:40-07:00", "updated_at": "2026-04-03T13:07:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490002-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488759347, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630574131", "image_id": null}, {"id": 44178678546483, "product_id": 7812135747635, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:29-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490002-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536731699, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678546483", "image_id": null}, {"id": 44178678579251, "product_id": 7812135747635, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:30-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490002-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536764467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678579251", "image_id": null}], "images": [], "image": null}
+{"id": 7812135780403, "title": "Novasuede\u2122 - Bliss Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-bliss", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630606899, "product_id": 7812135780403, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:43-07:00", "updated_at": "2026-04-03T13:07:55-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490003-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488792115, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630606899", "image_id": null}, {"id": 44178678612019, "product_id": 7812135780403, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:43-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490003-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288536797235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678612019", "image_id": null}, {"id": 44178678644787, "product_id": 7812135780403, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:07:44-07:00", "updated_at": "2026-04-15T10:48:52-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490003-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288536830003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178678644787", "image_id": null}], "images": [], "image": null}
+{"id": 7812135813171, "title": "Novasuede\u2122 - Cement Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-cement", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630639667, "product_id": 7812135813171, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:48-07:00", "updated_at": "2026-04-03T13:10:43-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490005-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488824883, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630639667", "image_id": null}, {"id": 44178679693363, "product_id": 7812135813171, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:30-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490005-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288537878579, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679693363", "image_id": null}, {"id": 44178679726131, "product_id": 7812135813171, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:10:31-07:00", "updated_at": "2026-04-15T10:48:51-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490005-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288537911347, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178679726131", "image_id": null}], "images": [], "image": null}
+{"id": 7812135845939, "title": "Novasuede\u2122 - Dusty Ranch Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-dusty-ranch", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630672435, "product_id": 7812135845939, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:08:53-07:00", "updated_at": "2026-04-03T13:14:12-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490006-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488857651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630672435", "image_id": null}, {"id": 44178680971315, "product_id": 7812135845939, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:00-07:00", "updated_at": "2026-04-15T10:48:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490006-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539156531, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178680971315", "image_id": null}, {"id": 44178681004083, "product_id": 7812135845939, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:14:01-07:00", "updated_at": "2026-04-15T10:48:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490006-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539189299, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681004083", "image_id": null}], "images": [], "image": null}
+{"id": 7812135878707, "title": "Novasuede\u2122 - Fire Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-fire", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630705203, "product_id": 7812135878707, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:01-07:00", "updated_at": "2026-04-03T13:15:27-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490008-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488890419, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630705203", "image_id": null}, {"id": 44178681495603, "product_id": 7812135878707, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:15-07:00", "updated_at": "2026-04-15T10:48:45-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490008-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539680819, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681495603", "image_id": null}, {"id": 44178681528371, "product_id": 7812135878707, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:17-07:00", "updated_at": "2026-04-15T10:48:44-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490008-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539713587, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681528371", "image_id": null}], "images": [], "image": null}
+{"id": 7812135911475, "title": "Novasuede\u2122 - Flagstone Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-flagstone", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630737971, "product_id": 7812135911475, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:05-07:00", "updated_at": "2026-04-03T13:15:42-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490009-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488923187, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630737971", "image_id": null}, {"id": 44178681561139, "product_id": 7812135911475, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:30-07:00", "updated_at": "2026-04-15T10:48:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490009-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288539746355, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681561139", "image_id": null}, {"id": 44178681593907, "product_id": 7812135911475, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:15:31-07:00", "updated_at": "2026-04-15T10:48:56-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490009-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288539779123, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178681593907", "image_id": null}], "images": [], "image": null}
+{"id": 7812135944243, "title": "Novasuede\u2122 - Henna Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-henna", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178630770739, "product_id": 7812135944243, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:08-07:00", "updated_at": "2026-04-03T13:18:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490010-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288488955955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178630770739", "image_id": null}, {"id": 44178682609715, "product_id": 7812135944243, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:50-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490010-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288540794931, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682609715", "image_id": null}, {"id": 44178682642483, "product_id": 7812135944243, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:17:52-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490010-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288540827699, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682642483", "image_id": null}], "images": [], "image": null}
+{"id": 7812136108083, "title": "Novasuede\u2122 - Kiva Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-kiva", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178631327795, "product_id": 7812136108083, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:12-07:00", "updated_at": "2026-04-03T13:19:15-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490011-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288489513011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178631327795", "image_id": null}, {"id": 44178682937395, "product_id": 7812136108083, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:03-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490011-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541122611, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682937395", "image_id": null}, {"id": 44178682970163, "product_id": 7812136108083, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:19:04-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490011-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541155379, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178682970163", "image_id": null}], "images": [], "image": null}
+{"id": 7812136173619, "title": "Novasuede\u2122 - Lipstick Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-lipstick", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178631458867, "product_id": 7812136173619, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:15-07:00", "updated_at": "2026-04-03T13:20:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490012-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288489644083, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178631458867", "image_id": null}, {"id": 44178683330611, "product_id": 7812136173619, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:20-07:00", "updated_at": "2026-04-15T10:49:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490012-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288541515827, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683330611", "image_id": null}, {"id": 44178683363379, "product_id": 7812136173619, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:20:22-07:00", "updated_at": "2026-04-15T10:49:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490012-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288541548595, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178683363379", "image_id": null}], "images": [], "image": null}
+{"id": 7812136206387, "title": "Novasuede\u2122 - Opal Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-opal", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178631491635, "product_id": 7812136206387, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:18-07:00", "updated_at": "2026-04-03T13:24:05-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490013-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288489676851, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178631491635", "image_id": null}, {"id": 44178685853747, "product_id": 7812136206387, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:23:53-07:00", "updated_at": "2026-04-15T10:49:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490013-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288544038963, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685853747", "image_id": null}, {"id": 44178685886515, "product_id": 7812136206387, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:23:54-07:00", "updated_at": "2026-04-15T10:49:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490013-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544071731, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178685886515", "image_id": null}], "images": [], "image": null}
+{"id": 7812136239155, "title": "Novasuede\u2122 - Pastel Blue Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-pastel-blue", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178631524403, "product_id": 7812136239155, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:22-07:00", "updated_at": "2026-04-03T13:25:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490014-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288489709619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178631524403", "image_id": null}, {"id": 44178686541875, "product_id": 7812136239155, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:50-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490014-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288544727091, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178686541875", "image_id": null}, {"id": 44178686574643, "product_id": 7812136239155, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:24:52-07:00", "updated_at": "2026-04-15T10:48:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490014-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288544759859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178686574643", "image_id": null}], "images": [], "image": null}
+{"id": 7812136271923, "title": "Novasuede\u2122 - Pastel Pink Luxury Suede", "body_html": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\">\n<p>Novasuede\u2122 represents the pinnacle of engineered microfiber suede technology, delivering the tactile luxury and visual sophistication of genuine suede with superior performance characteristics essential for demanding commercial and high-end residential applications. Available as Wallcovering (with Backing) </p>\n</div>", "vendor": "Novasuede", "product_type": "Wallcovering", "handle": "novasuede\u2122-pastel-pink", "tags": "100% Nylon Fiber Matrix, AI-Analyzed-v2, Architectural, Bedroom, Cal 117, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fire Rated, Hallway, Living Room, Microfiber Suede, Minimalist, NFPA 260, Non-woven, Novasuede, Novasuede\u2122 Fabric & Wallcovering, Organic Modern, Paper, Serene, Solid, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "draft", "variants": [{"id": 44178631557171, "product_id": 7812136271923, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-03T12:09:25-07:00", "updated_at": "2026-04-03T13:25:16-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490015-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46288489742387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178631557171", "image_id": null}, {"id": 44178687787059, "product_id": 7812136271923, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:04-07:00", "updated_at": "2026-04-15T10:48:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490015-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46288545972275, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687787059", "image_id": null}, {"id": 44178687819827, "product_id": 7812136271923, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-03T13:25:06-07:00", "updated_at": "2026-04-15T10:48:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-490015-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46288546005043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44178687819827", "image_id": null}], "images": [], "image": null}
+{"id": 7821430095923, "title": "Novasuede\u2122 Fabric & Wallcovering - Wheat", "body_html": "<p>Novasuede\u2122 Wheat is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-wheat", "tags": "Architectural, Cal 117, color:Tan, Commercial, Contemporary, display_variant, DWCC-112370, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3FDW, Textured, UFAC Class I, Upholstery, Wallcovering, Wheat", "status": "active", "variants": [{"id": 44218990821427, "product_id": 7821430095923, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:39-07:00", "updated_at": "2026-04-20T15:09:28-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112370-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329111314483, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990821427", "image_id": null}, {"id": 44218990854195, "product_id": 7821430095923, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:39-07:00", "updated_at": "2026-04-20T15:09:29-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112370-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329111347251, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990854195", "image_id": null}, {"id": 44218996326451, "product_id": 7821430095923, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:56:01-07:00", "updated_at": "2026-04-20T15:09:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112370-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118654515, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996326451", "image_id": null}], "images": [{"id": 37218440904755, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat swatch", "position": 1, "product_id": 7821430095923, "created_at": "2026-04-20T15:02:35-07:00", "updated_at": "2026-04-20T15:02:35-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368072243", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-wheat.jpg?v=1776722555", "variant_ids": []}, {"id": 37218537078835, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat - bedroom room setting", "position": 2, "product_id": 7821430095923, "created_at": "2026-04-20T16:41:21-07:00", "updated_at": "2026-04-20T16:41:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081461100595", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-wheat-bedroom.jpg?v=1776728481", "variant_ids": []}, {"id": 37218537111603, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat - dining room room setting", "position": 3, "product_id": 7821430095923, "created_at": "2026-04-20T16:41:25-07:00", "updated_at": "2026-04-20T16:41:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081461133363", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-wheat-dining_room.jpg?v=1776728485", "variant_ids": []}, {"id": 37218537144371, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat - office room setting", "position": 4, "product_id": 7821430095923, "created_at": "2026-04-20T16:41:29-07:00", "updated_at": "2026-04-20T16:41:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081461166131", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-wheat-office.jpg?v=1776728489", "variant_ids": []}, {"id": 37218537406515, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat - bathroom room setting", "position": 5, "product_id": 7821430095923, "created_at": "2026-04-20T16:41:33-07:00", "updated_at": "2026-04-20T16:41:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081461428275", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-wheat-bathroom.jpg?v=1776728493", "variant_ids": []}], "image": {"id": 37218440904755, "alt": "Novasuede\u2122 Fabric & Wallcovering - Wheat swatch", "position": 1, "product_id": 7821430095923, "created_at": "2026-04-20T15:02:35-07:00", "updated_at": "2026-04-20T15:02:35-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368072243", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-wheat.jpg?v=1776722555", "variant_ids": []}}
+{"id": 7821430128691, "title": "Novasuede\u2122 Fabric & Wallcovering - Woodland", "body_html": "<p>Novasuede\u2122 Woodland is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-woodland", "tags": "Architectural, Cal 117, color:Mocha, Commercial, Contemporary, display_variant, DWCC-112390, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3H6W, Textured, UFAC Class I, Upholstery, Wallcovering, Woodland", "status": "active", "variants": [{"id": 44218990886963, "product_id": 7821430128691, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:40-07:00", "updated_at": "2026-04-20T15:09:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112390-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329111380019, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990886963", "image_id": null}, {"id": 44218990919731, "product_id": 7821430128691, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:40-07:00", "updated_at": "2026-04-20T15:09:17-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112390-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329111412787, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990919731", "image_id": null}, {"id": 44218996391987, "product_id": 7821430128691, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:56:05-07:00", "updated_at": "2026-04-20T15:09:19-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112390-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118851123, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996391987", "image_id": null}], "images": [{"id": 37218441035827, "alt": "Novasuede\u2122 Fabric & Wallcovering - Woodland swatch", "position": 1, "product_id": 7821430128691, "created_at": "2026-04-20T15:02:40-07:00", "updated_at": "2026-04-20T15:02:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368203315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-woodland.jpg?v=1776722560", "variant_ids": []}, {"id": 37218539077683, "alt": "Novasuede\u2122 Fabric & Wallcovering - Woodland - bedroom room setting", "position": 2, "product_id": 7821430128691, "created_at": "2026-04-20T16:44:27-07:00", "updated_at": "2026-04-20T16:44:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463099443", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-woodland-bedroom.jpg?v=1776728667", "variant_ids": []}, {"id": 37218539175987, "alt": "Novasuede\u2122 Fabric & Wallcovering - Woodland - dining room room setting", "position": 3, "product_id": 7821430128691, "created_at": "2026-04-20T16:44:31-07:00", "updated_at": "2026-04-20T16:44:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463197747", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-woodland-dining_room.jpg?v=1776728671", "variant_ids": []}, {"id": 37218539274291, "alt": "Novasuede\u2122 Fabric & Wallcovering - Woodland - bathroom room setting", "position": 4, "product_id": 7821430128691, "created_at": "2026-04-20T16:44:35-07:00", "updated_at": "2026-04-20T16:44:35-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463296051", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-woodland-bathroom.jpg?v=1776728675", "variant_ids": []}], "image": {"id": 37218441035827, "alt": "Novasuede\u2122 Fabric & Wallcovering - Woodland swatch", "position": 1, "product_id": 7821430128691, "created_at": "2026-04-20T15:02:40-07:00", "updated_at": "2026-04-20T15:02:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368203315", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-woodland.jpg?v=1776722560", "variant_ids": []}}
+{"id": 7821430161459, "title": "Novasuede\u2122 Fabric & Wallcovering - Snow", "body_html": "<p>Novasuede\u2122 Snow is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-snow", "tags": "Architectural, Cal 117, color:Ivory, Commercial, Contemporary, display_variant, DWCC-112400, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Snow, Solid, Suede, T3B3W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218990952499, "product_id": 7821430161459, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:42-07:00", "updated_at": "2026-04-20T15:10:58-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329111445555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990952499", "image_id": null}, {"id": 44218990985267, "product_id": 7821430161459, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:42-07:00", "updated_at": "2026-04-20T15:11:03-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329111478323, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218990985267", "image_id": null}, {"id": 44218996424755, "product_id": 7821430161459, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:56:07-07:00", "updated_at": "2026-04-20T15:10:59-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112400-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118949427, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996424755", "image_id": null}], "images": [{"id": 37218441101363, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow swatch", "position": 1, "product_id": 7821430161459, "created_at": "2026-04-20T15:02:42-07:00", "updated_at": "2026-04-20T15:02:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368334387", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-snow.jpg?v=1776722562", "variant_ids": []}, {"id": 37218539667507, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow - bedroom room setting", "position": 2, "product_id": 7821430161459, "created_at": "2026-04-20T16:45:57-07:00", "updated_at": "2026-04-20T16:45:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463689267", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-snow-bedroom.jpg?v=1776728757", "variant_ids": []}, {"id": 37218539700275, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow - living room room setting", "position": 3, "product_id": 7821430161459, "created_at": "2026-04-20T16:46:01-07:00", "updated_at": "2026-04-20T16:46:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463722035", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-snow-living_room.jpg?v=1776728761", "variant_ids": []}, {"id": 37218539733043, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow - dining room room setting", "position": 4, "product_id": 7821430161459, "created_at": "2026-04-20T16:46:06-07:00", "updated_at": "2026-04-20T16:46:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463787571", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-snow-dining_room.jpg?v=1776728766", "variant_ids": []}, {"id": 37218539831347, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow - bathroom room setting", "position": 5, "product_id": 7821430161459, "created_at": "2026-04-20T16:46:10-07:00", "updated_at": "2026-04-20T16:46:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081463984179", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-snow-bathroom.jpg?v=1776728770", "variant_ids": []}], "image": {"id": 37218441101363, "alt": "Novasuede\u2122 Fabric & Wallcovering - Snow swatch", "position": 1, "product_id": 7821430161459, "created_at": "2026-04-20T15:02:42-07:00", "updated_at": "2026-04-20T15:02:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368334387", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-snow.jpg?v=1776722562", "variant_ids": []}}
+{"id": 7821430194227, "title": "Novasuede\u2122 Fabric & Wallcovering - Amber", "body_html": "<p>Novasuede\u2122 Amber is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-amber", "tags": "Amber, Architectural, Cal 117, color:Honey, Commercial, Contemporary, display_variant, DWCC-112050, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3Q8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991018035, "product_id": 7821430194227, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:43-07:00", "updated_at": "2026-04-20T15:08:31-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112050-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329111511091, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991018035", "image_id": null}, {"id": 44218991050803, "product_id": 7821430194227, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:43-07:00", "updated_at": "2026-04-20T15:08:26-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112050-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329111543859, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991050803", "image_id": null}, {"id": 44218995474483, "product_id": 7821430194227, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:13-07:00", "updated_at": "2026-04-20T15:08:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112050-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116098611, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995474483", "image_id": null}], "images": [{"id": 37218438938675, "alt": "Novasuede\u2122 Fabric & Wallcovering - Amber swatch", "position": 1, "product_id": 7821430194227, "created_at": "2026-04-20T15:01:29-07:00", "updated_at": "2026-04-20T15:01:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366073395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-amber.jpg?v=1776722489", "variant_ids": []}, {"id": 37218492940339, "alt": "Novasuede\u2122 Fabric & Wallcovering - Amber - bedroom room setting", "position": 2, "product_id": 7821430194227, "created_at": "2026-04-20T15:54:55-07:00", "updated_at": "2026-04-20T15:54:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081418240051", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-amber-bedroom.jpg?v=1776725695", "variant_ids": []}, {"id": 37218492973107, "alt": "Novasuede\u2122 Fabric & Wallcovering - Amber - dining room room setting", "position": 3, "product_id": 7821430194227, "created_at": "2026-04-20T15:54:59-07:00", "updated_at": "2026-04-20T15:54:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081418272819", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-amber-dining_room.jpg?v=1776725699", "variant_ids": []}, {"id": 37218493005875, "alt": "Novasuede\u2122 Fabric & Wallcovering - Amber - bathroom room setting", "position": 4, "product_id": 7821430194227, "created_at": "2026-04-20T15:55:02-07:00", "updated_at": "2026-04-20T15:55:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081418305587", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-amber-bathroom.jpg?v=1776725702", "variant_ids": []}], "image": {"id": 37218438938675, "alt": "Novasuede\u2122 Fabric & Wallcovering - Amber swatch", "position": 1, "product_id": 7821430194227, "created_at": "2026-04-20T15:01:29-07:00", "updated_at": "2026-04-20T15:01:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366073395", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-amber.jpg?v=1776722489", "variant_ids": []}}
+{"id": 7821430226995, "title": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose", "body_html": "<p>Novasuede\u2122 Blush Rose is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-blush-rose", "tags": "Architectural, Blush Rose, Cal 117, color:Putty, Commercial, Contemporary, display_variant, DWCC-112060, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3RFW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991083571, "product_id": 7821430226995, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:45-07:00", "updated_at": "2026-04-20T15:08:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112060-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329111576627, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991083571", "image_id": null}, {"id": 44218991116339, "product_id": 7821430226995, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:45-07:00", "updated_at": "2026-04-20T15:08:04-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112060-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329111609395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991116339", "image_id": null}, {"id": 44218995507251, "product_id": 7821430226995, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:15-07:00", "updated_at": "2026-04-20T15:08:03-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112060-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116196915, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995507251", "image_id": null}], "images": [{"id": 37218439004211, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose swatch", "position": 1, "product_id": 7821430226995, "created_at": "2026-04-20T15:01:31-07:00", "updated_at": "2026-04-20T15:01:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366138931", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-rose.jpg?v=1776722491", "variant_ids": []}, {"id": 37218494611507, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose - bedroom room setting", "position": 2, "product_id": 7821430226995, "created_at": "2026-04-20T15:56:28-07:00", "updated_at": "2026-04-20T15:56:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081419943987", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blush-rose-bedroom.jpg?v=1776725788", "variant_ids": []}, {"id": 37218494709811, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose - living room room setting", "position": 3, "product_id": 7821430226995, "created_at": "2026-04-20T15:56:32-07:00", "updated_at": "2026-04-20T15:56:32-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420009523", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blush-rose-living_room.jpg?v=1776725792", "variant_ids": []}, {"id": 37218494742579, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose - dining room room setting", "position": 4, "product_id": 7821430226995, "created_at": "2026-04-20T15:56:36-07:00", "updated_at": "2026-04-20T15:56:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420042291", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blush-rose-dining_room.jpg?v=1776725796", "variant_ids": []}, {"id": 37218494808115, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose - office room setting", "position": 5, "product_id": 7821430226995, "created_at": "2026-04-20T15:56:39-07:00", "updated_at": "2026-04-20T15:56:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420140595", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blush-rose-office.jpg?v=1776725799", "variant_ids": []}, {"id": 37218494939187, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose - bathroom room setting", "position": 6, "product_id": 7821430226995, "created_at": "2026-04-20T15:56:43-07:00", "updated_at": "2026-04-20T15:56:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420271667", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blush-rose-bathroom.jpg?v=1776725803", "variant_ids": []}], "image": {"id": 37218439004211, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blush Rose swatch", "position": 1, "product_id": 7821430226995, "created_at": "2026-04-20T15:01:31-07:00", "updated_at": "2026-04-20T15:01:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366138931", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blush-rose.jpg?v=1776722491", "variant_ids": []}}
+{"id": 7821430292531, "title": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal", "body_html": "<p>Novasuede\u2122 Dusty Teal is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-dusty-teal", "tags": "Architectural, Cal 117, color:Gunmetal, Commercial, Contemporary, display_variant, Dusty Teal, DWCC-112100, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3NGW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991542323, "product_id": 7821430292531, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:46-07:00", "updated_at": "2026-04-20T15:08:10-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112100-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112035379, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991542323", "image_id": null}, {"id": 44218991575091, "product_id": 7821430292531, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:46-07:00", "updated_at": "2026-04-20T15:08:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112100-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112068147, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991575091", "image_id": null}, {"id": 44218995605555, "product_id": 7821430292531, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:22-07:00", "updated_at": "2026-04-20T15:08:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112100-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116491827, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995605555", "image_id": null}], "images": [{"id": 37218439299123, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal swatch", "position": 1, "product_id": 7821430292531, "created_at": "2026-04-20T15:01:41-07:00", "updated_at": "2026-04-20T15:01:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366433843", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-teal.jpg?v=1776722501", "variant_ids": []}, {"id": 37218498084915, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal - bedroom room setting", "position": 2, "product_id": 7821430292531, "created_at": "2026-04-20T16:02:37-07:00", "updated_at": "2026-04-20T16:02:37-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081423384627", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-teal-bedroom.jpg?v=1776726157", "variant_ids": []}, {"id": 37218498117683, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal - living room room setting", "position": 3, "product_id": 7821430292531, "created_at": "2026-04-20T16:02:41-07:00", "updated_at": "2026-04-20T16:02:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081423417395", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-teal-living_room.jpg?v=1776726161", "variant_ids": []}, {"id": 37218498150451, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal - dining room room setting", "position": 4, "product_id": 7821430292531, "created_at": "2026-04-20T16:02:45-07:00", "updated_at": "2026-04-20T16:02:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081423450163", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-teal-dining_room.jpg?v=1776726165", "variant_ids": []}, {"id": 37218498183219, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal - bathroom room setting", "position": 5, "product_id": 7821430292531, "created_at": "2026-04-20T16:02:48-07:00", "updated_at": "2026-04-20T16:02:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081423482931", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-teal-bathroom.jpg?v=1776726168", "variant_ids": []}], "image": {"id": 37218439299123, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Teal swatch", "position": 1, "product_id": 7821430292531, "created_at": "2026-04-20T15:01:41-07:00", "updated_at": "2026-04-20T15:01:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366433843", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-teal.jpg?v=1776722501", "variant_ids": []}}
+{"id": 7821430325299, "title": "Novasuede\u2122 Fabric & Wallcovering - Verdigris", "body_html": "<p>Novasuede\u2122 Verdigris is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-verdigris", "tags": "Architectural, Cal 117, color:Steel, Commercial, Contemporary, display_variant, DWCC-112350, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3NHW, Textured, UFAC Class I, Upholstery, Verdigris, Wallcovering", "status": "active", "variants": [{"id": 44218991607859, "product_id": 7821430325299, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:48-07:00", "updated_at": "2026-04-20T15:09:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112350-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112100915, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991607859", "image_id": null}, {"id": 44218991640627, "product_id": 7821430325299, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:48-07:00", "updated_at": "2026-04-20T15:09:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112350-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112133683, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991640627", "image_id": null}, {"id": 44218996260915, "product_id": 7821430325299, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:58-07:00", "updated_at": "2026-04-20T15:09:25-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112350-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118457907, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996260915", "image_id": null}], "images": [{"id": 37218440773683, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris swatch", "position": 1, "product_id": 7821430325299, "created_at": "2026-04-20T15:02:31-07:00", "updated_at": "2026-04-20T15:02:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367941171", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-verdigris.jpg?v=1776722551", "variant_ids": []}, {"id": 37218535211059, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris - bedroom room setting", "position": 2, "product_id": 7821430325299, "created_at": "2026-04-20T16:38:10-07:00", "updated_at": "2026-04-20T16:38:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459462195", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-verdigris-bedroom.jpg?v=1776728290", "variant_ids": []}, {"id": 37218535440435, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris - living room room setting", "position": 3, "product_id": 7821430325299, "created_at": "2026-04-20T16:38:13-07:00", "updated_at": "2026-04-20T16:38:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459658803", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-verdigris-living_room.jpg?v=1776728293", "variant_ids": []}, {"id": 37218535473203, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris - dining room room setting", "position": 4, "product_id": 7821430325299, "created_at": "2026-04-20T16:38:17-07:00", "updated_at": "2026-04-20T16:38:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459691571", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-verdigris-dining_room.jpg?v=1776728297", "variant_ids": []}, {"id": 37218535505971, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris - bathroom room setting", "position": 5, "product_id": 7821430325299, "created_at": "2026-04-20T16:38:21-07:00", "updated_at": "2026-04-20T16:38:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459724339", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-verdigris-bathroom.jpg?v=1776728301", "variant_ids": []}], "image": {"id": 37218440773683, "alt": "Novasuede\u2122 Fabric & Wallcovering - Verdigris swatch", "position": 1, "product_id": 7821430325299, "created_at": "2026-04-20T15:02:31-07:00", "updated_at": "2026-04-20T15:02:31-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367941171", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-verdigris.jpg?v=1776722551", "variant_ids": []}}
+{"id": 7821430358067, "title": "Novasuede\u2122 Fabric & Wallcovering - Winter White", "body_html": "<p>Novasuede\u2122 Winter White is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-winter-white", "tags": "Architectural, Cal 117, color:Oatmeal, Commercial, Contemporary, display_variant, DWCC-112380, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3B2W, Textured, UFAC Class I, Upholstery, Wallcovering, Winter White", "status": "active", "variants": [{"id": 44218991673395, "product_id": 7821430358067, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:50-07:00", "updated_at": "2026-06-11T12:59:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112380-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112166451, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991673395", "image_id": null}, {"id": 44218991706163, "product_id": 7821430358067, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:50-07:00", "updated_at": "2026-04-20T15:09:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112380-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112199219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991706163", "image_id": null}, {"id": 44218996359219, "product_id": 7821430358067, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:56:03-07:00", "updated_at": "2026-04-20T15:09:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112380-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118752819, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996359219", "image_id": null}], "images": [{"id": 37218440970291, "alt": "Novasuede\u2122 Fabric & Wallcovering - Winter White swatch", "position": 1, "product_id": 7821430358067, "created_at": "2026-04-20T15:02:37-07:00", "updated_at": "2026-04-20T15:02:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368137779", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-winter-white.jpg?v=1776722558", "variant_ids": []}, {"id": 37218538586163, "alt": "Novasuede\u2122 Fabric & Wallcovering - Winter White - bedroom room setting", "position": 2, "product_id": 7821430358067, "created_at": "2026-04-20T16:42:57-07:00", "updated_at": "2026-04-20T16:42:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081462607923", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-winter-white-bedroom.jpg?v=1776728577", "variant_ids": []}, {"id": 37218538618931, "alt": "Novasuede\u2122 Fabric & Wallcovering - Winter White - living room room setting", "position": 3, "product_id": 7821430358067, "created_at": "2026-04-20T16:43:01-07:00", "updated_at": "2026-04-20T16:43:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081462640691", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-winter-white-living_room.jpg?v=1776728581", "variant_ids": []}, {"id": 37218538651699, "alt": "Novasuede\u2122 Fabric & Wallcovering - Winter White - dining room room setting", "position": 4, "product_id": 7821430358067, "created_at": "2026-04-20T16:43:05-07:00", "updated_at": "2026-04-20T16:43:05-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081462673459", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-winter-white-dining_room.jpg?v=1776728585", "variant_ids": []}], "image": {"id": 37218440970291, "alt": "Novasuede\u2122 Fabric & Wallcovering - Winter White swatch", "position": 1, "product_id": 7821430358067, "created_at": "2026-04-20T15:02:37-07:00", "updated_at": "2026-04-20T15:02:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368137779", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-winter-white.jpg?v=1776722558", "variant_ids": []}}
+{"id": 7821430390835, "title": "Novasuede\u2122 Fabric & Wallcovering - Bliss", "body_html": "<p>Novasuede\u2122 Bliss is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-bliss", "tags": "Architectural, Bliss, Cal 117, color:Beige, Commercial, Contemporary, display_variant, DWCC-112030, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3Q7W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991738931, "product_id": 7821430390835, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:51-07:00", "updated_at": "2026-06-11T12:59:30-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112030-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112231987, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991738931", "image_id": null}, {"id": 44218991771699, "product_id": 7821430390835, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:51-07:00", "updated_at": "2026-04-20T15:08:18-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112030-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112264755, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991771699", "image_id": null}, {"id": 44218995343411, "product_id": 7821430390835, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:09-07:00", "updated_at": "2026-04-20T15:08:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112030-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329115836467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995343411", "image_id": null}], "images": [{"id": 37218438807603, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss swatch", "position": 1, "product_id": 7821430390835, "created_at": "2026-04-20T15:01:24-07:00", "updated_at": "2026-04-20T15:01:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081365942323", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bliss.jpg?v=1776722484", "variant_ids": []}, {"id": 37218490187827, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss - bedroom room setting", "position": 2, "product_id": 7821430390835, "created_at": "2026-04-20T15:51:36-07:00", "updated_at": "2026-04-20T15:51:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081415487539", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-bliss-bedroom.jpg?v=1776725496", "variant_ids": []}, {"id": 37218490220595, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss - dining room room setting", "position": 3, "product_id": 7821430390835, "created_at": "2026-04-20T15:51:40-07:00", "updated_at": "2026-04-20T15:51:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081415520307", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-bliss-dining_room.jpg?v=1776725500", "variant_ids": []}, {"id": 37218490253363, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss - office room setting", "position": 4, "product_id": 7821430390835, "created_at": "2026-04-20T15:51:45-07:00", "updated_at": "2026-04-20T15:51:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416175667", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-bliss-office.jpg?v=1776725505", "variant_ids": []}, {"id": 37218490908723, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss - bathroom room setting", "position": 5, "product_id": 7821430390835, "created_at": "2026-04-20T15:51:49-07:00", "updated_at": "2026-04-20T15:51:49-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416208435", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-bliss-bathroom.jpg?v=1776725509", "variant_ids": []}], "image": {"id": 37218438807603, "alt": "Novasuede\u2122 Fabric & Wallcovering - Bliss swatch", "position": 1, "product_id": 7821430390835, "created_at": "2026-04-20T15:01:24-07:00", "updated_at": "2026-04-20T15:01:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081365942323", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-bliss.jpg?v=1776722484", "variant_ids": []}}
+{"id": 7821430423603, "title": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate", "body_html": "<p>Novasuede\u2122 Blank Slate is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-blank-slate", "tags": "Architectural, Blank Slate, Cal 117, color:Smoke, Commercial, Contemporary, display_variant, DWCC-112040, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3L0W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991804467, "product_id": 7821430423603, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:53-07:00", "updated_at": "2026-04-20T15:07:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112040-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112297523, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991804467", "image_id": null}, {"id": 44218991837235, "product_id": 7821430423603, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:53-07:00", "updated_at": "2026-04-20T15:07:35-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112040-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112330291, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991837235", "image_id": null}, {"id": 44218995441715, "product_id": 7821430423603, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:11-07:00", "updated_at": "2026-04-20T15:07:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112040-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116000307, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995441715", "image_id": null}], "images": [{"id": 37218438873139, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate swatch", "position": 1, "product_id": 7821430423603, "created_at": "2026-04-20T15:01:27-07:00", "updated_at": "2026-04-20T15:01:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366007859", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blank-slate.jpg?v=1776722487", "variant_ids": []}, {"id": 37218491334707, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate - bedroom room setting", "position": 2, "product_id": 7821430423603, "created_at": "2026-04-20T15:53:18-07:00", "updated_at": "2026-04-20T15:53:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416634419", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blank-slate-bedroom.jpg?v=1776725598", "variant_ids": []}, {"id": 37218491367475, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate - living room room setting", "position": 3, "product_id": 7821430423603, "created_at": "2026-04-20T15:53:21-07:00", "updated_at": "2026-04-20T15:53:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416667187", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blank-slate-living_room.jpg?v=1776725601", "variant_ids": []}, {"id": 37218491400243, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate - dining room room setting", "position": 4, "product_id": 7821430423603, "created_at": "2026-04-20T15:53:25-07:00", "updated_at": "2026-04-20T15:53:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416699955", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blank-slate-dining_room.jpg?v=1776725605", "variant_ids": []}, {"id": 37218491433011, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate - bathroom room setting", "position": 5, "product_id": 7821430423603, "created_at": "2026-04-20T15:53:29-07:00", "updated_at": "2026-04-20T15:53:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081416732723", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-blank-slate-bathroom.jpg?v=1776725609", "variant_ids": []}], "image": {"id": 37218438873139, "alt": "Novasuede\u2122 Fabric & Wallcovering - Blank Slate swatch", "position": 1, "product_id": 7821430423603, "created_at": "2026-04-20T15:01:27-07:00", "updated_at": "2026-04-20T15:01:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366007859", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-blank-slate.jpg?v=1776722487", "variant_ids": []}}
+{"id": 7821430456371, "title": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue", "body_html": "<p>Novasuede\u2122 Colonial Blue is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-colonial-blue", "tags": "Architectural, Cal 117, Colonial Blue, color:Slate Blue, Commercial, Contemporary, display_variant, DWCC-112080, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3C9W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991870003, "product_id": 7821430456371, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:54-07:00", "updated_at": "2026-06-11T12:59:32-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112080-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112363059, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991870003", "image_id": null}, {"id": 44218991902771, "product_id": 7821430456371, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:54-07:00", "updated_at": "2026-04-20T15:08:12-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112080-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112395827, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991902771", "image_id": null}, {"id": 44218995540019, "product_id": 7821430456371, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:17-07:00", "updated_at": "2026-04-20T15:08:13-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112080-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116295219, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995540019", "image_id": null}], "images": [{"id": 37218439102515, "alt": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue swatch", "position": 1, "product_id": 7821430456371, "created_at": "2026-04-20T15:01:36-07:00", "updated_at": "2026-04-20T15:01:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366270003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-colonial-blue.jpg?v=1776722496", "variant_ids": []}, {"id": 37218496053299, "alt": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue - bedroom room setting", "position": 2, "product_id": 7821430456371, "created_at": "2026-04-20T15:59:37-07:00", "updated_at": "2026-04-20T15:59:37-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081421385779", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-colonial-blue-bedroom.jpg?v=1776725977", "variant_ids": []}, {"id": 37218496151603, "alt": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue - living room room setting", "position": 3, "product_id": 7821430456371, "created_at": "2026-04-20T15:59:40-07:00", "updated_at": "2026-04-20T15:59:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081421451315", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-colonial-blue-living_room.jpg?v=1776725980", "variant_ids": []}, {"id": 37218496282675, "alt": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue - office room setting", "position": 4, "product_id": 7821430456371, "created_at": "2026-04-20T15:59:44-07:00", "updated_at": "2026-04-20T15:59:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081421615155", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-colonial-blue-office.jpg?v=1776725984", "variant_ids": []}], "image": {"id": 37218439102515, "alt": "Novasuede\u2122 Fabric & Wallcovering - Colonial Blue swatch", "position": 1, "product_id": 7821430456371, "created_at": "2026-04-20T15:01:36-07:00", "updated_at": "2026-04-20T15:01:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366270003", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-colonial-blue.jpg?v=1776722496", "variant_ids": []}}
+{"id": 7821430489139, "title": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch", "body_html": "<p>Novasuede\u2122 Dusty Ranch is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-dusty-ranch", "tags": "Architectural, Cal 117, color:Caramel, Commercial, Contemporary, display_variant, Dusty Ranch, DWCC-112090, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3FAW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218991935539, "product_id": 7821430489139, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:56-07:00", "updated_at": "2026-04-20T15:08:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112090-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112428595, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991935539", "image_id": null}, {"id": 44218991968307, "product_id": 7821430489139, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:56-07:00", "updated_at": "2026-04-20T15:08:33-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112090-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112461363, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218991968307", "image_id": null}, {"id": 44218995572787, "product_id": 7821430489139, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:20-07:00", "updated_at": "2026-04-20T15:08:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112090-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116393523, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995572787", "image_id": null}], "images": [{"id": 37218439200819, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch swatch", "position": 1, "product_id": 7821430489139, "created_at": "2026-04-20T15:01:38-07:00", "updated_at": "2026-04-20T15:01:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366368307", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-ranch.jpg?v=1776722498", "variant_ids": []}, {"id": 37218497364019, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch - bedroom room setting", "position": 2, "product_id": 7821430489139, "created_at": "2026-04-20T16:01:09-07:00", "updated_at": "2026-04-20T16:01:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081422663731", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-ranch-bedroom.jpg?v=1776726069", "variant_ids": []}, {"id": 37218497527859, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch - dining room room setting", "position": 3, "product_id": 7821430489139, "created_at": "2026-04-20T16:01:13-07:00", "updated_at": "2026-04-20T16:01:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081422827571", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-ranch-dining_room.jpg?v=1776726073", "variant_ids": []}, {"id": 37218497560627, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch - bathroom room setting", "position": 4, "product_id": 7821430489139, "created_at": "2026-04-20T16:01:17-07:00", "updated_at": "2026-04-20T16:01:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081422860339", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-dusty-ranch-bathroom.jpg?v=1776726077", "variant_ids": []}], "image": {"id": 37218439200819, "alt": "Novasuede\u2122 Fabric & Wallcovering - Dusty Ranch swatch", "position": 1, "product_id": 7821430489139, "created_at": "2026-04-20T15:01:38-07:00", "updated_at": "2026-04-20T15:01:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366368307", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-dusty-ranch.jpg?v=1776722498", "variant_ids": []}}
+{"id": 7821430521907, "title": "Novasuede\u2122 Fabric & Wallcovering - Fire", "body_html": "<p>Novasuede\u2122 Fire is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-fire", "tags": "Architectural, Cal 117, color:Paprika, Commercial, Contemporary, display_variant, DWCC-112110, Fabric, Fire, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3QAW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992001075, "product_id": 7821430521907, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:58-07:00", "updated_at": "2026-04-20T15:07:59-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112110-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112494131, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992001075", "image_id": null}, {"id": 44218992033843, "product_id": 7821430521907, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:58-07:00", "updated_at": "2026-04-20T15:07:58-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112110-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112526899, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992033843", "image_id": null}, {"id": 44218995638323, "product_id": 7821430521907, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:24-07:00", "updated_at": "2026-04-20T15:08:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112110-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116590131, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995638323", "image_id": null}], "images": [{"id": 37218439364659, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire swatch", "position": 1, "product_id": 7821430521907, "created_at": "2026-04-20T15:01:43-07:00", "updated_at": "2026-04-20T15:01:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366499379", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fire-red.jpg?v=1776722503", "variant_ids": []}, {"id": 37218498281523, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire - bedroom room setting", "position": 2, "product_id": 7821430521907, "created_at": "2026-04-20T16:04:06-07:00", "updated_at": "2026-04-20T16:04:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081423581235", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-fire-bedroom.jpg?v=1776726246", "variant_ids": []}, {"id": 37218498314291, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire - living room room setting", "position": 3, "product_id": 7821430521907, "created_at": "2026-04-20T16:04:09-07:00", "updated_at": "2026-04-20T16:04:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081424138291", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-fire-living_room.jpg?v=1776726249", "variant_ids": []}, {"id": 37218499395635, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire - dining room room setting", "position": 4, "product_id": 7821430521907, "created_at": "2026-04-20T16:04:13-07:00", "updated_at": "2026-04-20T16:04:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081425219635", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-fire-dining_room.jpg?v=1776726253", "variant_ids": []}, {"id": 37218500345907, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire - office room setting", "position": 5, "product_id": 7821430521907, "created_at": "2026-04-20T16:04:17-07:00", "updated_at": "2026-04-20T16:04:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081425645619", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-fire-office.jpg?v=1776726257", "variant_ids": []}, {"id": 37218501066803, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire - bathroom room setting", "position": 6, "product_id": 7821430521907, "created_at": "2026-04-20T16:04:21-07:00", "updated_at": "2026-04-20T16:04:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081426399283", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-fire-bathroom.jpg?v=1776726261", "variant_ids": []}], "image": {"id": 37218439364659, "alt": "Novasuede\u2122 Fabric & Wallcovering - Fire swatch", "position": 1, "product_id": 7821430521907, "created_at": "2026-04-20T15:01:43-07:00", "updated_at": "2026-04-20T15:01:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366499379", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-fire-red.jpg?v=1776722503", "variant_ids": []}}
+{"id": 7821430554675, "title": "Novasuede\u2122 Fabric & Wallcovering - Flagstone", "body_html": "<p>Novasuede\u2122 Flagstone is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-flagstone", "tags": "Architectural, Cal 117, color:Ash, Commercial, Contemporary, display_variant, DWCC-112120, Fabric, Fire Rated, Flagstone, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3LKW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992066611, "product_id": 7821430554675, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:59-07:00", "updated_at": "2026-04-20T15:08:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112120-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112559667, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992066611", "image_id": null}, {"id": 44218992099379, "product_id": 7821430554675, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:47:59-07:00", "updated_at": "2026-04-20T15:08:24-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112120-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112592435, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992099379", "image_id": null}, {"id": 44218995671091, "product_id": 7821430554675, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:26-07:00", "updated_at": "2026-04-20T15:08:23-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112120-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116688435, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995671091", "image_id": null}], "images": [{"id": 37218439430195, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone swatch", "position": 1, "product_id": 7821430554675, "created_at": "2026-04-20T15:01:45-07:00", "updated_at": "2026-04-20T15:01:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366564915", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-flagstone.jpg?v=1776722505", "variant_ids": []}, {"id": 37218507259955, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone - bedroom room setting", "position": 2, "product_id": 7821430554675, "created_at": "2026-04-20T16:06:02-07:00", "updated_at": "2026-04-20T16:06:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081432297523", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-flagstone-bedroom.jpg?v=1776726362", "variant_ids": []}, {"id": 37218507292723, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone - living room room setting", "position": 3, "product_id": 7821430554675, "created_at": "2026-04-20T16:06:06-07:00", "updated_at": "2026-04-20T16:06:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081432363059", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-flagstone-living_room.jpg?v=1776726366", "variant_ids": []}, {"id": 37218507391027, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone - dining room room setting", "position": 4, "product_id": 7821430554675, "created_at": "2026-04-20T16:06:10-07:00", "updated_at": "2026-04-20T16:06:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081432395827", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-flagstone-dining_room.jpg?v=1776726370", "variant_ids": []}, {"id": 37218508013619, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone - office room setting", "position": 5, "product_id": 7821430554675, "created_at": "2026-04-20T16:06:14-07:00", "updated_at": "2026-04-20T16:06:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081433018419", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-flagstone-office.jpg?v=1776726374", "variant_ids": []}, {"id": 37218508046387, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone - bathroom room setting", "position": 6, "product_id": 7821430554675, "created_at": "2026-04-20T16:06:17-07:00", "updated_at": "2026-04-20T16:06:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081433051187", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-flagstone-bathroom.jpg?v=1776726377", "variant_ids": []}], "image": {"id": 37218439430195, "alt": "Novasuede\u2122 Fabric & Wallcovering - Flagstone swatch", "position": 1, "product_id": 7821430554675, "created_at": "2026-04-20T15:01:45-07:00", "updated_at": "2026-04-20T15:01:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366564915", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-flagstone.jpg?v=1776722505", "variant_ids": []}}
+{"id": 7821430587443, "title": "Novasuede\u2122 Fabric & Wallcovering - Henna", "body_html": "<p>Novasuede\u2122 Henna is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-henna", "tags": "Architectural, Cal 117, color:Copper, Commercial, Contemporary, display_variant, DWCC-112130, Fabric, Fire Rated, Henna, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3G3W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992132147, "product_id": 7821430587443, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:01-07:00", "updated_at": "2026-04-20T15:07:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112130-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112625203, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992132147", "image_id": null}, {"id": 44218992164915, "product_id": 7821430587443, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:01-07:00", "updated_at": "2026-04-20T15:08:00-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112130-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112657971, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992164915", "image_id": null}, {"id": 44218995703859, "product_id": 7821430587443, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:28-07:00", "updated_at": "2026-04-20T15:07:56-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112130-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116786739, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995703859", "image_id": null}], "images": [{"id": 37218439495731, "alt": "Novasuede\u2122 Fabric & Wallcovering - Henna swatch", "position": 1, "product_id": 7821430587443, "created_at": "2026-04-20T15:01:48-07:00", "updated_at": "2026-04-20T15:01:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366630451", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-henna.jpg?v=1776722508", "variant_ids": []}, {"id": 37218515288115, "alt": "Novasuede\u2122 Fabric & Wallcovering - Henna - bedroom room setting", "position": 2, "product_id": 7821430587443, "created_at": "2026-04-20T16:07:40-07:00", "updated_at": "2026-04-20T16:07:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440096307", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-henna-bedroom.jpg?v=1776726460", "variant_ids": []}, {"id": 37218515386419, "alt": "Novasuede\u2122 Fabric & Wallcovering - Henna - office room setting", "position": 3, "product_id": 7821430587443, "created_at": "2026-04-20T16:07:44-07:00", "updated_at": "2026-04-20T16:07:44-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440129075", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-henna-office.jpg?v=1776726464", "variant_ids": []}, {"id": 37218515419187, "alt": "Novasuede\u2122 Fabric & Wallcovering - Henna - bathroom room setting", "position": 4, "product_id": 7821430587443, "created_at": "2026-04-20T16:07:48-07:00", "updated_at": "2026-04-20T16:07:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440161843", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-henna-bathroom.jpg?v=1776726468", "variant_ids": []}], "image": {"id": 37218439495731, "alt": "Novasuede\u2122 Fabric & Wallcovering - Henna swatch", "position": 1, "product_id": 7821430587443, "created_at": "2026-04-20T15:01:48-07:00", "updated_at": "2026-04-20T15:01:48-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366630451", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-henna.jpg?v=1776722508", "variant_ids": []}}
+{"id": 7821430620211, "title": "Novasuede\u2122 Fabric & Wallcovering - Kiva", "body_html": "<p>Novasuede\u2122 Kiva is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-kiva", "tags": "Architectural, Cal 117, color:Mushroom, Commercial, Contemporary, display_variant, DWCC-112140, Fabric, Fire Rated, Kiva, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3ECW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992197683, "product_id": 7821430620211, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:02-07:00", "updated_at": "2026-04-20T15:08:07-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112140-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112690739, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992197683", "image_id": null}, {"id": 44218992230451, "product_id": 7821430620211, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:02-07:00", "updated_at": "2026-04-20T15:08:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112140-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112723507, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992230451", "image_id": null}, {"id": 44218995736627, "product_id": 7821430620211, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:29-07:00", "updated_at": "2026-04-20T15:08:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112140-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116885043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995736627", "image_id": null}], "images": [{"id": 37218439561267, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva swatch", "position": 1, "product_id": 7821430620211, "created_at": "2026-04-20T15:01:50-07:00", "updated_at": "2026-04-20T15:01:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366695987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-kiva.jpg?v=1776722510", "variant_ids": []}, {"id": 37218515746867, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva - bedroom room setting", "position": 2, "product_id": 7821430620211, "created_at": "2026-04-20T16:09:09-07:00", "updated_at": "2026-04-20T16:09:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440587827", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-kiva-bedroom.jpg?v=1776726549", "variant_ids": []}, {"id": 37218516140083, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva - dining room room setting", "position": 3, "product_id": 7821430620211, "created_at": "2026-04-20T16:09:13-07:00", "updated_at": "2026-04-20T16:09:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440882739", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-kiva-dining_room.jpg?v=1776726553", "variant_ids": []}, {"id": 37218516205619, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva - office room setting", "position": 4, "product_id": 7821430620211, "created_at": "2026-04-20T16:09:17-07:00", "updated_at": "2026-04-20T16:09:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440948275", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-kiva-office.jpg?v=1776726557", "variant_ids": []}, {"id": 37218516238387, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva - bathroom room setting", "position": 5, "product_id": 7821430620211, "created_at": "2026-04-20T16:09:21-07:00", "updated_at": "2026-04-20T16:09:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081440981043", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-kiva-bathroom.jpg?v=1776726561", "variant_ids": []}], "image": {"id": 37218439561267, "alt": "Novasuede\u2122 Fabric & Wallcovering - Kiva swatch", "position": 1, "product_id": 7821430620211, "created_at": "2026-04-20T15:01:50-07:00", "updated_at": "2026-04-20T15:01:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366695987", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-kiva.jpg?v=1776722510", "variant_ids": []}}
+{"id": 7821430652979, "title": "Novasuede\u2122 Fabric & Wallcovering - Lipstick", "body_html": "<p>Novasuede\u2122 Lipstick is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-lipstick", "tags": "Architectural, Cal 117, color:Ruby, Commercial, Contemporary, display_variant, DWCC-112150, Fabric, Fire Rated, Lipstick, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3M4W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992263219, "product_id": 7821430652979, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:04-07:00", "updated_at": "2026-04-20T15:09:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112150-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112756275, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992263219", "image_id": null}, {"id": 44218992295987, "product_id": 7821430652979, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:04-07:00", "updated_at": "2026-04-20T15:09:03-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112150-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329112789043, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992295987", "image_id": null}, {"id": 44218995769395, "product_id": 7821430652979, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:31-07:00", "updated_at": "2026-04-20T15:09:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112150-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329116983347, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995769395", "image_id": null}], "images": [{"id": 37218439626803, "alt": "Novasuede\u2122 Fabric & Wallcovering - Lipstick swatch", "position": 1, "product_id": 7821430652979, "created_at": "2026-04-20T15:01:52-07:00", "updated_at": "2026-04-20T15:01:52-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366761523", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lipstick-red.jpg?v=1776722512", "variant_ids": []}, {"id": 37218516795443, "alt": "Novasuede\u2122 Fabric & Wallcovering - Lipstick - bedroom room setting", "position": 2, "product_id": 7821430652979, "created_at": "2026-04-20T16:10:51-07:00", "updated_at": "2026-04-20T16:10:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441538099", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-lipstick-bedroom.jpg?v=1776726651", "variant_ids": []}, {"id": 37218516828211, "alt": "Novasuede\u2122 Fabric & Wallcovering - Lipstick - living room room setting", "position": 3, "product_id": 7821430652979, "created_at": "2026-04-20T16:10:55-07:00", "updated_at": "2026-04-20T16:10:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441570867", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-lipstick-living_room.jpg?v=1776726655", "variant_ids": []}, {"id": 37218516860979, "alt": "Novasuede\u2122 Fabric & Wallcovering - Lipstick - dining room room setting", "position": 4, "product_id": 7821430652979, "created_at": "2026-04-20T16:10:59-07:00", "updated_at": "2026-04-20T16:10:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441603635", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-lipstick-dining_room.jpg?v=1776726659", "variant_ids": []}], "image": {"id": 37218439626803, "alt": "Novasuede\u2122 Fabric & Wallcovering - Lipstick swatch", "position": 1, "product_id": 7821430652979, "created_at": "2026-04-20T15:01:52-07:00", "updated_at": "2026-04-20T15:01:52-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366761523", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-lipstick-red.jpg?v=1776722512", "variant_ids": []}}
+{"id": 7821430718515, "title": "Novasuede\u2122 Fabric & Wallcovering - Noir", "body_html": "<p>Novasuede\u2122 Noir is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-noir", "tags": "Architectural, Cal 117, color:Onyx, Commercial, Contemporary, display_variant, DWCC-112160, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3A2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992492595, "product_id": 7821430718515, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:06-07:00", "updated_at": "2026-04-20T15:08:07-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112160-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329112985651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992492595", "image_id": null}, {"id": 44218992525363, "product_id": 7821430718515, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:06-07:00", "updated_at": "2026-04-20T15:08:06-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112160-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113018419, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992525363", "image_id": null}, {"id": 44218995802163, "product_id": 7821430718515, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:33-07:00", "updated_at": "2026-04-20T15:08:07-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112160-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117081651, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995802163", "image_id": null}], "images": [{"id": 37218439659571, "alt": "Novasuede\u2122 Fabric & Wallcovering - Noir swatch", "position": 1, "product_id": 7821430718515, "created_at": "2026-04-20T15:01:54-07:00", "updated_at": "2026-04-20T15:01:54-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366827059", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-noir-black.jpg?v=1776722514", "variant_ids": []}, {"id": 37218517123123, "alt": "Novasuede\u2122 Fabric & Wallcovering - Noir - bedroom room setting", "position": 2, "product_id": 7821430718515, "created_at": "2026-04-20T16:12:20-07:00", "updated_at": "2026-04-20T16:12:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441865779", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-noir-bedroom.jpg?v=1776726740", "variant_ids": []}, {"id": 37218517155891, "alt": "Novasuede\u2122 Fabric & Wallcovering - Noir - living room room setting", "position": 3, "product_id": 7821430718515, "created_at": "2026-04-20T16:12:24-07:00", "updated_at": "2026-04-20T16:12:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441898547", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-noir-living_room.jpg?v=1776726744", "variant_ids": []}, {"id": 37218517188659, "alt": "Novasuede\u2122 Fabric & Wallcovering - Noir - dining room room setting", "position": 4, "product_id": 7821430718515, "created_at": "2026-04-20T16:12:28-07:00", "updated_at": "2026-04-20T16:12:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081441931315", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-noir-dining_room.jpg?v=1776726748", "variant_ids": []}], "image": {"id": 37218439659571, "alt": "Novasuede\u2122 Fabric & Wallcovering - Noir swatch", "position": 1, "product_id": 7821430718515, "created_at": "2026-04-20T15:01:54-07:00", "updated_at": "2026-04-20T15:01:54-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366827059", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-noir-black.jpg?v=1776722514", "variant_ids": []}}
+{"id": 7821430784051, "title": "Novasuede\u2122 Fabric & Wallcovering - Opal", "body_html": "<p>Novasuede\u2122 Opal is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-opal", "tags": "Architectural, Cal 117, color:Steel, Commercial, Contemporary, display_variant, DWCC-112170, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Opal, Solid, Suede, T3PQW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992656435, "product_id": 7821430784051, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:08-07:00", "updated_at": "2026-04-20T15:08:56-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112170-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113149491, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992656435", "image_id": null}, {"id": 44218992689203, "product_id": 7821430784051, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:08-07:00", "updated_at": "2026-04-20T15:08:58-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112170-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113182259, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992689203", "image_id": null}, {"id": 44218995834931, "product_id": 7821430784051, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:35-07:00", "updated_at": "2026-04-20T15:08:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112170-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117179955, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995834931", "image_id": null}], "images": [{"id": 37218439725107, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal swatch", "position": 1, "product_id": 7821430784051, "created_at": "2026-04-20T15:01:57-07:00", "updated_at": "2026-04-20T15:01:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366892595", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-opal.jpg?v=1776722517", "variant_ids": []}, {"id": 37218518171699, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal - bedroom room setting", "position": 2, "product_id": 7821430784051, "created_at": "2026-04-20T16:13:50-07:00", "updated_at": "2026-04-20T16:13:51-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081442914355", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-opal-bedroom.jpg?v=1776726830", "variant_ids": []}, {"id": 37218518204467, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal - living room room setting", "position": 3, "product_id": 7821430784051, "created_at": "2026-04-20T16:13:54-07:00", "updated_at": "2026-04-20T16:13:54-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081442947123", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-opal-living_room.jpg?v=1776726834", "variant_ids": []}, {"id": 37218518237235, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal - dining room room setting", "position": 4, "product_id": 7821430784051, "created_at": "2026-04-20T16:13:58-07:00", "updated_at": "2026-04-20T16:13:58-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081442979891", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-opal-dining_room.jpg?v=1776726838", "variant_ids": []}, {"id": 37218518270003, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal - office room setting", "position": 5, "product_id": 7821430784051, "created_at": "2026-04-20T16:14:02-07:00", "updated_at": "2026-04-20T16:14:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081443012659", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-opal-office.jpg?v=1776726842", "variant_ids": []}], "image": {"id": 37218439725107, "alt": "Novasuede\u2122 Fabric & Wallcovering - Opal swatch", "position": 1, "product_id": 7821430784051, "created_at": "2026-04-20T15:01:57-07:00", "updated_at": "2026-04-20T15:01:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366892595", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-opal.jpg?v=1776722517", "variant_ids": []}}
+{"id": 7821430816819, "title": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue", "body_html": "<p>Novasuede\u2122 Pastel Blue is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-pastel-blue", "tags": "Architectural, Cal 117, color:Powder Blue, Commercial, Contemporary, display_variant, DWCC-112180, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Pastel Blue, Solid, Suede, T3N0W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992721971, "product_id": 7821430816819, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:09-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112180-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113215027, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992721971", "image_id": null}, {"id": 44218992754739, "product_id": 7821430816819, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:09-07:00", "updated_at": "2026-04-20T15:08:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112180-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113247795, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992754739", "image_id": null}, {"id": 44218995867699, "product_id": 7821430816819, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:36-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112180-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117278259, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995867699", "image_id": null}], "images": [{"id": 37218439790643, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue swatch", "position": 1, "product_id": 7821430816819, "created_at": "2026-04-20T15:01:59-07:00", "updated_at": "2026-04-20T15:01:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366958131", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-blue.jpg?v=1776722519", "variant_ids": []}, {"id": 37218519154739, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue - bedroom room setting", "position": 2, "product_id": 7821430816819, "created_at": "2026-04-20T16:15:21-07:00", "updated_at": "2026-04-20T16:15:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081443897395", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-blue-bedroom.jpg?v=1776726921", "variant_ids": []}, {"id": 37218519187507, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue - living room room setting", "position": 3, "product_id": 7821430816819, "created_at": "2026-04-20T16:15:25-07:00", "updated_at": "2026-04-20T16:15:25-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081443930163", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-blue-living_room.jpg?v=1776726925", "variant_ids": []}, {"id": 37218519220275, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue - office room setting", "position": 4, "product_id": 7821430816819, "created_at": "2026-04-20T16:15:29-07:00", "updated_at": "2026-04-20T16:15:29-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081443962931", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-blue-office.jpg?v=1776726929", "variant_ids": []}], "image": {"id": 37218439790643, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Blue swatch", "position": 1, "product_id": 7821430816819, "created_at": "2026-04-20T15:01:59-07:00", "updated_at": "2026-04-20T15:01:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366958131", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-blue.jpg?v=1776722519", "variant_ids": []}}
+{"id": 7821430849587, "title": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink", "body_html": "<p>Novasuede\u2122 Pastel Pink is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-pastel-pink", "tags": "Architectural, Cal 117, color:Petal, Commercial, Contemporary, display_variant, DWCC-112190, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Pastel Pink, Solid, Suede, T3R6W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992787507, "product_id": 7821430849587, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:11-07:00", "updated_at": "2026-06-11T12:59:34-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112190-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113280563, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992787507", "image_id": null}, {"id": 44218992820275, "product_id": 7821430849587, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:11-07:00", "updated_at": "2026-04-20T15:08:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112190-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113313331, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992820275", "image_id": null}, {"id": 44218995900467, "product_id": 7821430849587, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:38-07:00", "updated_at": "2026-04-20T15:08:40-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112190-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117376563, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995900467", "image_id": null}], "images": [{"id": 37218439856179, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink swatch", "position": 1, "product_id": 7821430849587, "created_at": "2026-04-20T15:02:01-07:00", "updated_at": "2026-04-20T15:02:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367023667", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-pink.jpg?v=1776722521", "variant_ids": []}, {"id": 37218519285811, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink - bedroom room setting", "position": 2, "product_id": 7821430849587, "created_at": "2026-04-20T16:16:55-07:00", "updated_at": "2026-04-20T16:16:55-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081444028467", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-pink-bedroom.jpg?v=1776727015", "variant_ids": []}, {"id": 37218519318579, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink - living room room setting", "position": 3, "product_id": 7821430849587, "created_at": "2026-04-20T16:16:58-07:00", "updated_at": "2026-04-20T16:16:58-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081444061235", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-pink-living_room.jpg?v=1776727018", "variant_ids": []}, {"id": 37218519384115, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink - dining room room setting", "position": 4, "product_id": 7821430849587, "created_at": "2026-04-20T16:17:02-07:00", "updated_at": "2026-04-20T16:17:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081444159539", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-pink-dining_room.jpg?v=1776727022", "variant_ids": []}, {"id": 37218519482419, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink - bathroom room setting", "position": 5, "product_id": 7821430849587, "created_at": "2026-04-20T16:17:06-07:00", "updated_at": "2026-04-20T16:17:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081444225075", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pastel-pink-bathroom.jpg?v=1776727026", "variant_ids": []}], "image": {"id": 37218439856179, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pastel Pink swatch", "position": 1, "product_id": 7821430849587, "created_at": "2026-04-20T15:02:01-07:00", "updated_at": "2026-04-20T15:02:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367023667", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pastel-pink.jpg?v=1776722521", "variant_ids": []}}
+{"id": 7821430882355, "title": "Novasuede\u2122 Fabric & Wallcovering - Persimmon", "body_html": "<p>Novasuede\u2122 Persimmon is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-persimmon", "tags": "Architectural, Cal 117, color:Copper, Commercial, Contemporary, display_variant, DWCC-112200, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Persimmon, Solid, Suede, T3M8W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992853043, "product_id": 7821430882355, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:12-07:00", "updated_at": "2026-06-22T10:41:18-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99900-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113346099, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992853043", "image_id": null}, {"id": 44218992885811, "product_id": 7821430882355, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:12-07:00", "updated_at": "2026-06-15T13:12:51-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99900-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113378867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992885811", "image_id": null}, {"id": 44218995933235, "product_id": 7821430882355, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:40-07:00", "updated_at": "2026-06-15T13:12:30-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-99900-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117474867, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995933235", "image_id": null}], "images": [{"id": 37218439921715, "alt": "Novasuede\u2122 Fabric & Wallcovering - Persimmon swatch", "position": 1, "product_id": 7821430882355, "created_at": "2026-04-20T15:02:03-07:00", "updated_at": "2026-04-20T15:02:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367121971", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-persimmon.jpg?v=1776722524", "variant_ids": []}, {"id": 37218521874483, "alt": "Novasuede\u2122 Fabric & Wallcovering - Persimmon - bedroom room setting", "position": 2, "product_id": 7821430882355, "created_at": "2026-04-20T16:18:33-07:00", "updated_at": "2026-04-20T16:18:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446617139", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-persimmon-bedroom.jpg?v=1776727113", "variant_ids": []}, {"id": 37218521907251, "alt": "Novasuede\u2122 Fabric & Wallcovering - Persimmon - dining room room setting", "position": 3, "product_id": 7821430882355, "created_at": "2026-04-20T16:18:37-07:00", "updated_at": "2026-04-20T16:18:37-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446682675", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-persimmon-dining_room.jpg?v=1776727117", "variant_ids": []}, {"id": 37218521972787, "alt": "Novasuede\u2122 Fabric & Wallcovering - Persimmon - bathroom room setting", "position": 4, "product_id": 7821430882355, "created_at": "2026-04-20T16:18:40-07:00", "updated_at": "2026-04-20T16:18:40-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446715443", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-persimmon-bathroom.jpg?v=1776727120", "variant_ids": []}], "image": {"id": 37218439921715, "alt": "Novasuede\u2122 Fabric & Wallcovering - Persimmon swatch", "position": 1, "product_id": 7821430882355, "created_at": "2026-04-20T15:02:03-07:00", "updated_at": "2026-04-20T15:02:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367121971", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-persimmon.jpg?v=1776722524", "variant_ids": []}}
+{"id": 7821430915123, "title": "Novasuede\u2122 Fabric & Wallcovering - Port Blue", "body_html": "<p>Novasuede\u2122 Port Blue is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-port-blue", "tags": "Architectural, Cal 117, color:Charcoal, Commercial, Contemporary, display_variant, DWCC-112210, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Port Blue, Solid, Suede, T3NJW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992918579, "product_id": 7821430915123, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:14-07:00", "updated_at": "2026-04-20T15:09:55-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112210-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113411635, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992918579", "image_id": null}, {"id": 44218992951347, "product_id": 7821430915123, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:14-07:00", "updated_at": "2026-04-20T15:09:54-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112210-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113444403, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992951347", "image_id": null}, {"id": 44218995966003, "product_id": 7821430915123, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:42-07:00", "updated_at": "2026-04-20T15:10:00-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112210-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117573171, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995966003", "image_id": null}], "images": [{"id": 37218440020019, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue swatch", "position": 1, "product_id": 7821430915123, "created_at": "2026-04-20T15:02:06-07:00", "updated_at": "2026-04-20T15:02:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367187507", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-port-blue.jpg?v=1776722526", "variant_ids": []}, {"id": 37218522038323, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue - bedroom room setting", "position": 2, "product_id": 7821430915123, "created_at": "2026-04-20T16:19:59-07:00", "updated_at": "2026-04-20T16:19:59-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446780979", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-port-blue-bedroom.jpg?v=1776727199", "variant_ids": []}, {"id": 37218522071091, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue - living room room setting", "position": 3, "product_id": 7821430915123, "created_at": "2026-04-20T16:20:03-07:00", "updated_at": "2026-04-20T16:20:03-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446813747", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-port-blue-living_room.jpg?v=1776727203", "variant_ids": []}, {"id": 37218522103859, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue - dining room room setting", "position": 4, "product_id": 7821430915123, "created_at": "2026-04-20T16:20:07-07:00", "updated_at": "2026-04-20T16:20:07-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446846515", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-port-blue-dining_room.jpg?v=1776727207", "variant_ids": []}, {"id": 37218522136627, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue - office room setting", "position": 5, "product_id": 7821430915123, "created_at": "2026-04-20T16:20:11-07:00", "updated_at": "2026-04-20T16:20:11-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081446879283", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-port-blue-office.jpg?v=1776727211", "variant_ids": []}], "image": {"id": 37218440020019, "alt": "Novasuede\u2122 Fabric & Wallcovering - Port Blue swatch", "position": 1, "product_id": 7821430915123, "created_at": "2026-04-20T15:02:06-07:00", "updated_at": "2026-04-20T15:02:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367187507", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-port-blue.jpg?v=1776722526", "variant_ids": []}}
+{"id": 7821430947891, "title": "Novasuede\u2122 Fabric & Wallcovering - Raisin", "body_html": "<p>Novasuede\u2122 Raisin is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-raisin", "tags": "Architectural, Cal 117, color:Charcoal, Commercial, Contemporary, display_variant, DWCC-112240, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Raisin, Solid, Suede, T3PRW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218992984115, "product_id": 7821430947891, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:15-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112240-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113477171, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218992984115", "image_id": null}, {"id": 44218993016883, "product_id": 7821430947891, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:15-07:00", "updated_at": "2026-04-20T15:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112240-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113509939, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993016883", "image_id": null}, {"id": 44218995998771, "product_id": 7821430947891, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:43-07:00", "updated_at": "2026-04-20T15:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112240-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117671475, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218995998771", "image_id": null}], "images": [{"id": 37218440216627, "alt": "Novasuede\u2122 Fabric & Wallcovering - Raisin swatch", "position": 1, "product_id": 7821430947891, "created_at": "2026-04-20T15:02:12-07:00", "updated_at": "2026-04-20T15:02:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367384115", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-raisin.jpg?v=1776722532", "variant_ids": []}, {"id": 37218527346739, "alt": "Novasuede\u2122 Fabric & Wallcovering - Raisin - bedroom room setting", "position": 2, "product_id": 7821430947891, "created_at": "2026-04-20T16:25:19-07:00", "updated_at": "2026-04-20T16:25:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081452089395", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-raisin-bedroom.jpg?v=1776727519", "variant_ids": []}], "image": {"id": 37218440216627, "alt": "Novasuede\u2122 Fabric & Wallcovering - Raisin swatch", "position": 1, "product_id": 7821430947891, "created_at": "2026-04-20T15:02:12-07:00", "updated_at": "2026-04-20T15:02:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367384115", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-raisin.jpg?v=1776722532", "variant_ids": []}}
+{"id": 7821430980659, "title": "Novasuede\u2122 Fabric & Wallcovering - Shale", "body_html": "<p>Novasuede\u2122 Shale is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-shale", "tags": "Architectural, Cal 117, color:Mocha, Commercial, Contemporary, display_variant, DWCC-112280, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Shale, Solid, Suede, T3KDW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993049651, "product_id": 7821430980659, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:17-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112280-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113542707, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993049651", "image_id": null}, {"id": 44218993082419, "product_id": 7821430980659, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:17-07:00", "updated_at": "2026-04-20T15:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112280-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113575475, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993082419", "image_id": null}, {"id": 44218996064307, "product_id": 7821430980659, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:47-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112280-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117868083, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996064307", "image_id": null}], "images": [{"id": 37218440347699, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale swatch", "position": 1, "product_id": 7821430980659, "created_at": "2026-04-20T15:02:17-07:00", "updated_at": "2026-04-20T15:02:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367515187", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-shale.jpg?v=1776722537", "variant_ids": []}, {"id": 37218528919603, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale - bedroom room setting", "position": 2, "product_id": 7821430980659, "created_at": "2026-04-20T16:28:12-07:00", "updated_at": "2026-04-20T16:28:12-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081453662259", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-shale-bedroom.jpg?v=1776727692", "variant_ids": []}, {"id": 37218528952371, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale - living room room setting", "position": 3, "product_id": 7821430980659, "created_at": "2026-04-20T16:28:16-07:00", "updated_at": "2026-04-20T16:28:16-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081453695027", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-shale-living_room.jpg?v=1776727696", "variant_ids": []}, {"id": 37218529214515, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale - dining room room setting", "position": 4, "product_id": 7821430980659, "created_at": "2026-04-20T16:28:19-07:00", "updated_at": "2026-04-20T16:28:20-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081453957171", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-shale-dining_room.jpg?v=1776727699", "variant_ids": []}, {"id": 37218529247283, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale - office room setting", "position": 5, "product_id": 7821430980659, "created_at": "2026-04-20T16:28:23-07:00", "updated_at": "2026-04-20T16:28:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081454055475", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-shale-office.jpg?v=1776727703", "variant_ids": []}, {"id": 37218529345587, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale - bathroom room setting", "position": 6, "product_id": 7821430980659, "created_at": "2026-04-20T16:28:28-07:00", "updated_at": "2026-04-20T16:28:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081454088243", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-shale-bathroom.jpg?v=1776727708", "variant_ids": []}], "image": {"id": 37218440347699, "alt": "Novasuede\u2122 Fabric & Wallcovering - Shale swatch", "position": 1, "product_id": 7821430980659, "created_at": "2026-04-20T15:02:17-07:00", "updated_at": "2026-04-20T15:02:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367515187", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-shale.jpg?v=1776722537", "variant_ids": []}}
+{"id": 7821431013427, "title": "Novasuede\u2122 Fabric & Wallcovering - Spruce", "body_html": "<p>Novasuede\u2122 Spruce is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-spruce", "tags": "Architectural, Cal 117, color:Charcoal, Commercial, Contemporary, display_variant, DWCC-112290, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Spruce, Suede, T3PYW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993115187, "product_id": 7821431013427, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:19-07:00", "updated_at": "2026-04-20T15:08:36-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112290-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113608243, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993115187", "image_id": null}, {"id": 44218993147955, "product_id": 7821431013427, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:19-07:00", "updated_at": "2026-04-20T15:08:51-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112290-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113641011, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993147955", "image_id": null}, {"id": 44218996097075, "product_id": 7821431013427, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:49-07:00", "updated_at": "2026-04-20T15:08:51-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112290-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117966387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996097075", "image_id": null}], "images": [{"id": 37218440413235, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce swatch", "position": 1, "product_id": 7821431013427, "created_at": "2026-04-20T15:02:19-07:00", "updated_at": "2026-04-20T15:02:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367580723", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-spruce.jpg?v=1776722539", "variant_ids": []}, {"id": 37218532065331, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce - bedroom room setting", "position": 2, "product_id": 7821431013427, "created_at": "2026-04-20T16:29:57-07:00", "updated_at": "2026-04-20T16:29:57-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081456807987", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-spruce-bedroom.jpg?v=1776727797", "variant_ids": []}, {"id": 37218532130867, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce - dining room room setting", "position": 3, "product_id": 7821431013427, "created_at": "2026-04-20T16:30:01-07:00", "updated_at": "2026-04-20T16:30:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081456873523", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-spruce-dining_room.jpg?v=1776727801", "variant_ids": []}, {"id": 37218532196403, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce - office room setting", "position": 4, "product_id": 7821431013427, "created_at": "2026-04-20T16:30:06-07:00", "updated_at": "2026-04-20T16:30:06-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081456939059", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-spruce-office.jpg?v=1776727806", "variant_ids": []}, {"id": 37218532229171, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce - bathroom room setting", "position": 5, "product_id": 7821431013427, "created_at": "2026-04-20T16:30:10-07:00", "updated_at": "2026-04-20T16:30:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081456971827", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-spruce-bathroom.jpg?v=1776727810", "variant_ids": []}], "image": {"id": 37218440413235, "alt": "Novasuede\u2122 Fabric & Wallcovering - Spruce swatch", "position": 1, "product_id": 7821431013427, "created_at": "2026-04-20T15:02:19-07:00", "updated_at": "2026-04-20T15:02:19-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367580723", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-spruce.jpg?v=1776722539", "variant_ids": []}}
+{"id": 7821431046195, "title": "Novasuede\u2122 Fabric & Wallcovering - Terracotta", "body_html": "<p>Novasuede\u2122 Terracotta is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-terracotta", "tags": "Architectural, Cal 117, color:Brass, Commercial, Contemporary, display_variant, DWCC-112310, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3FCW, Terracotta, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993180723, "product_id": 7821431046195, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:21-07:00", "updated_at": "2026-04-20T15:09:08-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112310-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113673779, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993180723", "image_id": null}, {"id": 44218993213491, "product_id": 7821431046195, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:21-07:00", "updated_at": "2026-04-20T15:09:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112310-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113706547, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993213491", "image_id": null}, {"id": 44218996129843, "product_id": 7821431046195, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:51-07:00", "updated_at": "2026-04-20T15:09:02-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112310-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118064691, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996129843", "image_id": null}], "images": [{"id": 37218440478771, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta swatch", "position": 1, "product_id": 7821431046195, "created_at": "2026-04-20T15:02:21-07:00", "updated_at": "2026-04-20T15:02:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367646259", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-terracotta.jpg?v=1776722541", "variant_ids": []}, {"id": 37218533244979, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta - bedroom room setting", "position": 2, "product_id": 7821431046195, "created_at": "2026-04-20T16:31:41-07:00", "updated_at": "2026-04-20T16:31:41-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081457987635", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-terracotta-bedroom.jpg?v=1776727901", "variant_ids": []}, {"id": 37218533277747, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta - dining room room setting", "position": 3, "product_id": 7821431046195, "created_at": "2026-04-20T16:31:45-07:00", "updated_at": "2026-04-20T16:31:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458020403", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-terracotta-dining_room.jpg?v=1776727905", "variant_ids": []}, {"id": 37218533310515, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta - office room setting", "position": 4, "product_id": 7821431046195, "created_at": "2026-04-20T16:31:49-07:00", "updated_at": "2026-04-20T16:31:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458053171", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-terracotta-office.jpg?v=1776727910", "variant_ids": []}, {"id": 37218533343283, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta - bathroom room setting", "position": 5, "product_id": 7821431046195, "created_at": "2026-04-20T16:31:54-07:00", "updated_at": "2026-04-20T16:31:54-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458085939", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-terracotta-bathroom.jpg?v=1776727914", "variant_ids": []}], "image": {"id": 37218440478771, "alt": "Novasuede\u2122 Fabric & Wallcovering - Terracotta swatch", "position": 1, "product_id": 7821431046195, "created_at": "2026-04-20T15:02:21-07:00", "updated_at": "2026-04-20T15:02:21-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367646259", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-terracotta.jpg?v=1776722541", "variant_ids": []}}
+{"id": 7821431078963, "title": "Novasuede\u2122 Fabric & Wallcovering - Sedona", "body_html": "<p>This luxurious wallcovering or fabric features a solid, lightly textured surface in a warm terracotta hue. Its subtle texture adds depth and sophistication, perfect for creating a cozy and inviting atmosphere.</p><p>Novasuede\u2122 Sedona is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-sedona", "tags": "Architectural, Bedroom, Cal 117, color:Copper, Commercial, Contemporary, Coral, display_variant, DWCC-112270, Fabric, Fire Rated, Hotel Lobby, Living Room, Microfiber Suede, Minimalist, Modern, NFPA 260, Novasuede, Office, Sedona, Solid, Solid/Textural, Suede, T3Q9W, Terracotta, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993246259, "product_id": 7821431078963, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:22-07:00", "updated_at": "2026-04-20T15:09:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112270-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113739315, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993246259", "image_id": null}, {"id": 44218993279027, "product_id": 7821431078963, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:22-07:00", "updated_at": "2026-04-20T15:09:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112270-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113772083, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993279027", "image_id": null}, {"id": 44218996031539, "product_id": 7821431078963, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:45-07:00", "updated_at": "2026-04-20T15:09:10-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112270-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329117769779, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996031539", "image_id": null}], "images": [{"id": 37218440282163, "alt": "Novasuede\u2122 Fabric & Wallcovering - Sedona swatch", "position": 1, "product_id": 7821431078963, "created_at": "2026-04-20T15:02:14-07:00", "updated_at": "2026-04-20T15:02:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367449651", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sedona.jpg?v=1776722534", "variant_ids": []}, {"id": 37218528133171, "alt": "Novasuede\u2122 Fabric & Wallcovering - Sedona - bedroom room setting", "position": 2, "product_id": 7821431078963, "created_at": "2026-04-20T16:26:43-07:00", "updated_at": "2026-04-20T16:26:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081452875827", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-sedona-bedroom.jpg?v=1776727603", "variant_ids": []}, {"id": 37218528165939, "alt": "Novasuede\u2122 Fabric & Wallcovering - Sedona - dining room room setting", "position": 3, "product_id": 7821431078963, "created_at": "2026-04-20T16:26:46-07:00", "updated_at": "2026-04-20T16:26:46-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081452908595", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-sedona-dining_room.jpg?v=1776727606", "variant_ids": []}, {"id": 37218528198707, "alt": "Novasuede\u2122 Fabric & Wallcovering - Sedona - office room setting", "position": 4, "product_id": 7821431078963, "created_at": "2026-04-20T16:26:50-07:00", "updated_at": "2026-04-20T16:26:50-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081452941363", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-sedona-office.jpg?v=1776727610", "variant_ids": []}], "image": {"id": 37218440282163, "alt": "Novasuede\u2122 Fabric & Wallcovering - Sedona swatch", "position": 1, "product_id": 7821431078963, "created_at": "2026-04-20T15:02:14-07:00", "updated_at": "2026-04-20T15:02:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367449651", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-sedona.jpg?v=1776722534", "variant_ids": []}}
+{"id": 7821431111731, "title": "Novasuede\u2122 Fabric & Wallcovering - Thistle", "body_html": "<p>Novasuede\u2122 Thistle is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-thistle", "tags": "Architectural, Cal 117, color:Charcoal, Commercial, Contemporary, display_variant, DWCC-112320, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3PMW, Textured, Thistle, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993311795, "product_id": 7821431111731, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:24-07:00", "updated_at": "2026-04-20T15:08:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112320-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113804851, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993311795", "image_id": null}, {"id": 44218993344563, "product_id": 7821431111731, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:24-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112320-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113837619, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993344563", "image_id": null}, {"id": 44218996162611, "product_id": 7821431111731, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:52-07:00", "updated_at": "2026-04-20T15:08:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112320-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118162995, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996162611", "image_id": null}], "images": [{"id": 37218440544307, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle swatch", "position": 1, "product_id": 7821431111731, "created_at": "2026-04-20T15:02:24-07:00", "updated_at": "2026-04-20T15:02:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367711795", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thistle.jpg?v=1776722544", "variant_ids": []}, {"id": 37218533965875, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle - bedroom room setting", "position": 2, "product_id": 7821431111731, "created_at": "2026-04-20T16:33:14-07:00", "updated_at": "2026-04-20T16:33:14-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458708531", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-thistle-bedroom.jpg?v=1776727994", "variant_ids": []}, {"id": 37218533998643, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle - living room room setting", "position": 3, "product_id": 7821431111731, "created_at": "2026-04-20T16:33:18-07:00", "updated_at": "2026-04-20T16:33:18-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458741299", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-thistle-living_room.jpg?v=1776727998", "variant_ids": []}, {"id": 37218534064179, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle - dining room room setting", "position": 4, "product_id": 7821431111731, "created_at": "2026-04-20T16:33:23-07:00", "updated_at": "2026-04-20T16:33:23-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458806835", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-thistle-dining_room.jpg?v=1776728003", "variant_ids": []}, {"id": 37218534096947, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle - office room setting", "position": 5, "product_id": 7821431111731, "created_at": "2026-04-20T16:33:27-07:00", "updated_at": "2026-04-20T16:33:27-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458839603", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-thistle-office.jpg?v=1776728007", "variant_ids": []}], "image": {"id": 37218440544307, "alt": "Novasuede\u2122 Fabric & Wallcovering - Thistle swatch", "position": 1, "product_id": 7821431111731, "created_at": "2026-04-20T15:02:24-07:00", "updated_at": "2026-04-20T15:02:24-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367711795", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-thistle.jpg?v=1776722544", "variant_ids": []}}
+{"id": 7821431144499, "title": "Novasuede\u2122 Fabric & Wallcovering - Tusk", "body_html": "<p>Novasuede\u2122 Tusk is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-tusk", "tags": "Architectural, Cal 117, color:Bone, Commercial, Contemporary, display_variant, DWCC-112330, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3DJW, Textured, Tusk, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993377331, "product_id": 7821431144499, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:25-07:00", "updated_at": "2026-06-11T13:00:14-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112330-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113870387, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993377331", "image_id": null}, {"id": 44218993410099, "product_id": 7821431144499, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:25-07:00", "updated_at": "2026-04-20T15:08:56-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112330-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113903155, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993410099", "image_id": null}, {"id": 44218996195379, "product_id": 7821431144499, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:54-07:00", "updated_at": "2026-04-20T15:08:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112330-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118261299, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996195379", "image_id": null}], "images": [{"id": 37218440609843, "alt": "Novasuede\u2122 Fabric & Wallcovering - Tusk swatch", "position": 1, "product_id": 7821431144499, "created_at": "2026-04-20T15:02:26-07:00", "updated_at": "2026-04-20T15:02:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367777331", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tusk.jpg?v=1776722546", "variant_ids": []}, {"id": 37218534228019, "alt": "Novasuede\u2122 Fabric & Wallcovering - Tusk - bedroom room setting", "position": 2, "product_id": 7821431144499, "created_at": "2026-04-20T16:35:00-07:00", "updated_at": "2026-04-20T16:35:00-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458937907", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-tusk-bedroom.jpg?v=1776728100", "variant_ids": []}, {"id": 37218534326323, "alt": "Novasuede\u2122 Fabric & Wallcovering - Tusk - dining room room setting", "position": 3, "product_id": 7821431144499, "created_at": "2026-04-20T16:35:04-07:00", "updated_at": "2026-04-20T16:35:04-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081458970675", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-tusk-dining_room.jpg?v=1776728104", "variant_ids": []}, {"id": 37218534424627, "alt": "Novasuede\u2122 Fabric & Wallcovering - Tusk - office room setting", "position": 4, "product_id": 7821431144499, "created_at": "2026-04-20T16:35:07-07:00", "updated_at": "2026-04-20T16:35:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459003443", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-tusk-office.jpg?v=1776728107", "variant_ids": []}], "image": {"id": 37218440609843, "alt": "Novasuede\u2122 Fabric & Wallcovering - Tusk swatch", "position": 1, "product_id": 7821431144499, "created_at": "2026-04-20T15:02:26-07:00", "updated_at": "2026-04-20T15:02:26-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367777331", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-tusk.jpg?v=1776722546", "variant_ids": []}}
+{"id": 7821431177267, "title": "Novasuede\u2122 Fabric & Wallcovering - Umber", "body_html": "<p>Novasuede\u2122 Umber is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-umber", "tags": "Architectural, Cal 117, color:Umber, Commercial, Contemporary, display_variant, DWCC-112340, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3G4W, Textured, UFAC Class I, Umber, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218993442867, "product_id": 7821431177267, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:27-07:00", "updated_at": "2026-04-20T15:08:50-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112340-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329113935923, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993442867", "image_id": null}, {"id": 44218993475635, "product_id": 7821431177267, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:27-07:00", "updated_at": "2026-04-20T15:08:49-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112340-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329113968691, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993475635", "image_id": null}, {"id": 44218996228147, "product_id": 7821431177267, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:56-07:00", "updated_at": "2026-04-20T15:08:48-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112340-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118359603, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996228147", "image_id": null}], "images": [{"id": 37218440675379, "alt": "Novasuede\u2122 Fabric & Wallcovering - Umber swatch", "position": 1, "product_id": 7821431177267, "created_at": "2026-04-20T15:02:28-07:00", "updated_at": "2026-04-20T15:02:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367875635", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-umber.jpg?v=1776722548", "variant_ids": []}, {"id": 37218534981683, "alt": "Novasuede\u2122 Fabric & Wallcovering - Umber - bedroom room setting", "position": 2, "product_id": 7821431177267, "created_at": "2026-04-20T16:36:38-07:00", "updated_at": "2026-04-20T16:36:38-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459265587", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-umber-bedroom.jpg?v=1776728198", "variant_ids": []}, {"id": 37218535047219, "alt": "Novasuede\u2122 Fabric & Wallcovering - Umber - dining room room setting", "position": 3, "product_id": 7821431177267, "created_at": "2026-04-20T16:36:42-07:00", "updated_at": "2026-04-20T16:36:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459298355", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-umber-dining_room.jpg?v=1776728202", "variant_ids": []}, {"id": 37218535079987, "alt": "Novasuede\u2122 Fabric & Wallcovering - Umber - bathroom room setting", "position": 4, "product_id": 7821431177267, "created_at": "2026-04-20T16:36:45-07:00", "updated_at": "2026-04-20T16:36:45-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081459331123", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-umber-bathroom.jpg?v=1776728205", "variant_ids": []}], "image": {"id": 37218440675379, "alt": "Novasuede\u2122 Fabric & Wallcovering - Umber swatch", "position": 1, "product_id": 7821431177267, "created_at": "2026-04-20T15:02:28-07:00", "updated_at": "2026-04-20T15:02:28-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367875635", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-umber.jpg?v=1776722548", "variant_ids": []}}
+{"id": 7821431210035, "title": "Novasuede\u2122 Fabric & Wallcovering - Vermilion", "body_html": "<p>Novasuede\u2122 Vermilion is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-vermilion", "tags": "Architectural, Cal 117, color:Ruby, Commercial, Contemporary, display_variant, DWCC-112360, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3MBW, Textured, UFAC Class I, Upholstery, Vermilion, Wallcovering", "status": "active", "variants": [{"id": 44218993508403, "product_id": 7821431210035, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:29-07:00", "updated_at": "2026-04-20T15:09:11-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112360-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329114001459, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993508403", "image_id": null}, {"id": 44218993541171, "product_id": 7821431210035, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:48:29-07:00", "updated_at": "2026-04-20T15:09:10-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112360-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329114034227, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218993541171", "image_id": null}, {"id": 44218996293683, "product_id": 7821431210035, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:55:59-07:00", "updated_at": "2026-04-20T15:09:10-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112360-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329118556211, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218996293683", "image_id": null}], "images": [{"id": 37218440839219, "alt": "Novasuede\u2122 Fabric & Wallcovering - Vermilion swatch", "position": 1, "product_id": 7821431210035, "created_at": "2026-04-20T15:02:33-07:00", "updated_at": "2026-04-20T15:02:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368006707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vermillion-red.jpg?v=1776722553", "variant_ids": []}, {"id": 37218536423475, "alt": "Novasuede\u2122 Fabric & Wallcovering - Vermilion - bedroom room setting", "position": 2, "product_id": 7821431210035, "created_at": "2026-04-20T16:39:52-07:00", "updated_at": "2026-04-20T16:39:52-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081460445235", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-vermilion-bedroom.jpg?v=1776728392", "variant_ids": []}, {"id": 37218536456243, "alt": "Novasuede\u2122 Fabric & Wallcovering - Vermilion - office room setting", "position": 3, "product_id": 7821431210035, "created_at": "2026-04-20T16:39:56-07:00", "updated_at": "2026-04-20T16:39:56-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081460478003", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-vermilion-office.jpg?v=1776728396", "variant_ids": []}], "image": {"id": 37218440839219, "alt": "Novasuede\u2122 Fabric & Wallcovering - Vermilion swatch", "position": 1, "product_id": 7821431210035, "created_at": "2026-04-20T15:02:33-07:00", "updated_at": "2026-04-20T15:02:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081368006707", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-vermillion-red.jpg?v=1776722553", "variant_ids": []}}
+{"id": 7821432520755, "title": "Novasuede\u2122 Fabric & Wallcovering - Cement", "body_html": "<p>Novasuede\u2122 Cement is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "", "handle": "novasuede\u2122-fabric-wallcovering-cement", "tags": "Architectural, Cal 117, Cement, color:Heather, Commercial, Contemporary, display_variant, DWCC-112070, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3LAW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218997178419, "product_id": 7821432520755, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:56-07:00", "updated_at": "2026-04-20T15:07:46-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112070-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329119768627, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997178419", "image_id": null}, {"id": 44218997211187, "product_id": 7821432520755, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:56-07:00", "updated_at": "2026-04-20T15:07:47-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112070-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329119801395, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997211187", "image_id": null}, {"id": 44218997243955, "product_id": 7821432520755, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:56-07:00", "updated_at": "2026-04-20T15:07:41-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112070-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329119834163, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997243955", "image_id": null}], "images": [{"id": 37218439069747, "alt": "Novasuede\u2122 Fabric & Wallcovering - Cement swatch", "position": 1, "product_id": 7821432520755, "created_at": "2026-04-20T15:01:33-07:00", "updated_at": "2026-04-20T15:01:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366204467", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cement.jpg?v=1776722493", "variant_ids": []}, {"id": 37218495463475, "alt": "Novasuede\u2122 Fabric & Wallcovering - Cement - bedroom room setting", "position": 2, "product_id": 7821432520755, "created_at": "2026-04-20T15:58:09-07:00", "updated_at": "2026-04-20T15:58:09-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420763187", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-cement-bedroom.jpg?v=1776725889", "variant_ids": []}, {"id": 37218495660083, "alt": "Novasuede\u2122 Fabric & Wallcovering - Cement - dining room room setting", "position": 3, "product_id": 7821432520755, "created_at": "2026-04-20T15:58:13-07:00", "updated_at": "2026-04-20T15:58:13-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420959795", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-cement-dining_room.jpg?v=1776725893", "variant_ids": []}, {"id": 37218495692851, "alt": "Novasuede\u2122 Fabric & Wallcovering - Cement - office room setting", "position": 4, "product_id": 7821432520755, "created_at": "2026-04-20T15:58:17-07:00", "updated_at": "2026-04-20T15:58:17-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081420992563", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-cement-office.jpg?v=1776725897", "variant_ids": []}], "image": {"id": 37218439069747, "alt": "Novasuede\u2122 Fabric & Wallcovering - Cement swatch", "position": 1, "product_id": 7821432520755, "created_at": "2026-04-20T15:01:33-07:00", "updated_at": "2026-04-20T15:01:33-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081366204467", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-cement.jpg?v=1776722493", "variant_ids": []}}
+{"id": 7821432553523, "title": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace", "body_html": "<p>Novasuede\u2122 Pink Lace is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "", "handle": "novasuede\u2122-fabric-wallcovering-pink-lace", "tags": "Architectural, Cal 117, color:Chalk, Commercial, Contemporary, display_variant, DWCC-112220, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Pink Lace, Solid, Suede, T3RCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218997276723, "product_id": 7821432553523, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:58-07:00", "updated_at": "2026-06-11T12:59:57-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112220-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329119866931, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997276723", "image_id": null}, {"id": 44218997309491, "product_id": 7821432553523, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:58-07:00", "updated_at": "2026-04-20T15:09:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112220-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329119899699, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997309491", "image_id": null}, {"id": 44218997342259, "product_id": 7821432553523, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:58-07:00", "updated_at": "2026-04-20T15:09:01-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112220-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329119932467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997342259", "image_id": null}], "images": [{"id": 37218440085555, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace swatch", "position": 1, "product_id": 7821432553523, "created_at": "2026-04-20T15:02:08-07:00", "updated_at": "2026-04-20T15:02:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367253043", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pink-lace.jpg?v=1776722528", "variant_ids": []}, {"id": 37218524430387, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace - bedroom room setting", "position": 2, "product_id": 7821432553523, "created_at": "2026-04-20T16:21:54-07:00", "updated_at": "2026-04-20T16:21:54-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081449173043", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pink-lace-bedroom.jpg?v=1776727314", "variant_ids": []}, {"id": 37218524463155, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace - dining room room setting", "position": 3, "product_id": 7821432553523, "created_at": "2026-04-20T16:21:58-07:00", "updated_at": "2026-04-20T16:21:58-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081449205811", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pink-lace-dining_room.jpg?v=1776727318", "variant_ids": []}, {"id": 37218524495923, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace - office room setting", "position": 4, "product_id": 7821432553523, "created_at": "2026-04-20T16:22:01-07:00", "updated_at": "2026-04-20T16:22:01-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081449238579", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pink-lace-office.jpg?v=1776727321", "variant_ids": []}, {"id": 37218524528691, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace - bathroom room setting", "position": 5, "product_id": 7821432553523, "created_at": "2026-04-20T16:22:05-07:00", "updated_at": "2026-04-20T16:22:05-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081449271347", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-pink-lace-bathroom.jpg?v=1776727325", "variant_ids": []}], "image": {"id": 37218440085555, "alt": "Novasuede\u2122 Fabric & Wallcovering - Pink Lace swatch", "position": 1, "product_id": 7821432553523, "created_at": "2026-04-20T15:02:08-07:00", "updated_at": "2026-04-20T15:02:08-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367253043", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-pink-lace.jpg?v=1776722528", "variant_ids": []}}
+{"id": 7821432586291, "title": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue", "body_html": "<p>Novasuede\u2122 Royal Blue is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "", "handle": "novasuede\u2122-fabric-wallcovering-royal-blue", "tags": "Architectural, Cal 117, color:Navy, Commercial, Contemporary, display_variant, DWCC-112230, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Royal Blue, Solid, Suede, T3CCW, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44218997375027, "product_id": 7821432586291, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:59-07:00", "updated_at": "2026-04-20T15:09:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112230-Sample", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46329119965235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997375027", "image_id": null}, {"id": 44218997407795, "product_id": 7821432586291, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:59-07:00", "updated_at": "2026-04-20T15:09:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112230-Per Yard", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46329119998003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997407795", "image_id": null}, {"id": 44218997440563, "product_id": 7821432586291, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-04-20T14:59:59-07:00", "updated_at": "2026-04-20T15:09:09-07:00", "taxable": true, "barcode": null, "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-112230-Per Yard Wallcovering with Backing", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46329120030771, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44218997440563", "image_id": null}], "images": [{"id": 37218440151091, "alt": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue swatch", "position": 1, "product_id": 7821432586291, "created_at": "2026-04-20T15:02:10-07:00", "updated_at": "2026-04-20T15:02:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367318579", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-royal-blue.jpg?v=1776722530", "variant_ids": []}, {"id": 37218526101555, "alt": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue - bedroom room setting", "position": 2, "product_id": 7821432586291, "created_at": "2026-04-20T16:23:36-07:00", "updated_at": "2026-04-20T16:23:36-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081450844211", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-royal-blue-bedroom.jpg?v=1776727416", "variant_ids": []}, {"id": 37218526134323, "alt": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue - living room room setting", "position": 3, "product_id": 7821432586291, "created_at": "2026-04-20T16:23:39-07:00", "updated_at": "2026-04-20T16:23:39-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081450876979", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-royal-blue-living_room.jpg?v=1776727419", "variant_ids": []}, {"id": 37218526167091, "alt": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue - dining room room setting", "position": 4, "product_id": 7821432586291, "created_at": "2026-04-20T16:23:43-07:00", "updated_at": "2026-04-20T16:23:43-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081450909747", "width": 1024, "height": 914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede_-fabric-wallcovering-royal-blue-dining_room.jpg?v=1776727423", "variant_ids": []}], "image": {"id": 37218440151091, "alt": "Novasuede\u2122 Fabric & Wallcovering - Royal Blue swatch", "position": 1, "product_id": 7821432586291, "created_at": "2026-04-20T15:02:10-07:00", "updated_at": "2026-04-20T15:02:10-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28081367318579", "width": 1200, "height": 1200, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-royal-blue.jpg?v=1776722530", "variant_ids": []}}
+{"id": 7867431649331, "title": "Novasuede\u2122 Fabric & Wallcovering - Satin", "body_html": "<p>Novasuede\u2122 Satin is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-satin", "tags": "Architectural, Cal 117, color:Onyx, Commercial, Contemporary, display_variant, DWCC-112160, Fabric, Fire Rated, Microfiber Suede, Minimalist, New Arrival, NFPA 260, Novasuede, Solid, Suede, T3A2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44462213595187, "product_id": 7867431649331, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-06-24T10:53:15-07:00", "updated_at": "2026-06-24T10:54:14-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118200-SAMPLE", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46575436988467, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462213595187", "image_id": null}, {"id": 44462213627955, "product_id": 7867431649331, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-06-24T10:53:15-07:00", "updated_at": "2026-06-24T10:53:51-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118200", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46575437021235, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462213627955", "image_id": null}, {"id": 44462213660723, "product_id": 7867431649331, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-06-24T10:53:15-07:00", "updated_at": "2026-06-24T12:45:31-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118200-WC", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46575437054003, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462213660723", "image_id": null}], "images": [{"id": 37571538649139, "alt": null, "position": 1, "product_id": 7867431649331, "created_at": "2026-06-24T11:01:53-07:00", "updated_at": "2026-06-24T11:02:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28420650172467", "width": 1590, "height": 1866, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at11.01.42AM.png?v=1782324116", "variant_ids": []}], "image": {"id": 37571538649139, "alt": null, "position": 1, "product_id": 7867431649331, "created_at": "2026-06-24T11:01:53-07:00", "updated_at": "2026-06-24T11:02:02-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28420650172467", "width": 1590, "height": 1866, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at11.01.42AM.png?v=1782324116", "variant_ids": []}}
+{"id": 7867477229619, "title": "Novasuede\u2122 Fabric & Wallcovering - Abyss", "body_html": "<p>Novasuede\u2122 Abyss is a premium engineered microfiber suede delivering the tactile luxury of genuine suede with superior commercial-grade performance. Ideal for hospitality, healthcare, office, and high-end residential upholstery and wallcovering applications.</p>", "vendor": "Novasuede", "product_type": "Fabric", "handle": "novasuede\u2122-fabric-wallcovering-abyss", "tags": "Architectural, Cal 117, color:Onyx, Commercial, Contemporary, display_variant, DWCC-112160, Fabric, Fire Rated, Microfiber Suede, Minimalist, NFPA 260, Novasuede, Solid, Suede, T3A2W, Textured, UFAC Class I, Upholstery, Wallcovering", "status": "active", "variants": [{"id": 44462359347251, "product_id": 7867477229619, "title": "Sample", "price": "4.25", "position": 1, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sample", "option2": null, "option3": null, "created_at": "2026-06-24T12:33:51-07:00", "updated_at": "2026-06-24T12:43:49-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 0, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118100-SAMPLE", "weight": 0.0, "weight_unit": "lb", "inventory_item_id": 46575584116787, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462359347251", "image_id": null}, {"id": 44462359380019, "product_id": 7867477229619, "title": "Sold Per Yard (5 yd min)", "price": "108.50", "position": 2, "inventory_policy": "continue", "compare_at_price": null, "option1": "Sold Per Yard (5 yd min)", "option2": null, "option3": null, "created_at": "2026-06-24T12:33:51-07:00", "updated_at": "2026-06-24T12:43:25-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 454, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118100", "weight": 1.0, "weight_unit": "lb", "inventory_item_id": 46575584149555, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462359380019", "image_id": null}, {"id": 44462359412787, "product_id": 7867477229619, "title": "Wallcovering (10 yd min)", "price": "124.50", "position": 3, "inventory_policy": "continue", "compare_at_price": null, "option1": "Wallcovering (10 yd min)", "option2": null, "option3": null, "created_at": "2026-06-24T12:33:51-07:00", "updated_at": "2026-06-24T12:46:01-07:00", "taxable": true, "barcode": "", "fulfillment_service": "manual", "grams": 680, "inventory_management": "shopify", "requires_shipping": true, "sku": "DWCC-118100-WC", "weight": 1.5, "weight_unit": "lb", "inventory_item_id": 46575584182323, "inventory_quantity": 2026, "old_inventory_quantity": 2026, "admin_graphql_api_id": "gid://shopify/ProductVariant/44462359412787", "image_id": null}], "images": [{"id": 37571877077043, "alt": null, "position": 1, "product_id": 7867477229619, "created_at": "2026-06-24T12:42:37-07:00", "updated_at": "2026-06-24T12:42:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28420984864819", "width": 1328, "height": 1608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at12.42.27PM.png?v=1782330159", "variant_ids": []}], "image": {"id": 37571877077043, "alt": null, "position": 1, "product_id": 7867477229619, "created_at": "2026-06-24T12:42:37-07:00", "updated_at": "2026-06-24T12:42:42-07:00", "admin_graphql_api_id": "gid://shopify/MediaImage/28420984864819", "width": 1328, "height": 1608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-06-24at12.42.27PM.png?v=1782330159", "variant_ids": []}}
diff --git a/plan_writes.py b/plan_writes.py
new file mode 100644
index 0000000..fb96a7a
--- /dev/null
+++ b/plan_writes.py
@@ -0,0 +1,122 @@
+#!/usr/bin/env python3
+"""
+Turn data/enriched.ndjson into the final per-product tag set + body_html.
+Tag rule (Steve's decision: "replace descriptors, keep spam"):
+ KEEP : spec/operational, SEO-spam, room, material, SKU codes (DWCC-*, T3..W),
+ 'novasuede <name>', and THIS product's own vendor name.
+ DROP : color words, Color:/color: tags, interior-style words, mood words,
+ and the old AI-Analyzed-v2 marker.
+ ADD : Color: <Primary> [+ secondary], bare colorway, undertone, 2-3 styles,
+ and marker 'AI-Lexicon-v3'.
+Emits data/plan.ndjson (id,title,old_tags,new_tags,old_body,new_body,added,removed)
+and data/before_after.csv for human audit.
+"""
+import json, csv, re, pathlib
+
+ROOT = pathlib.Path(__file__).resolve().parent
+DATA = ROOT / "data"
+
+# ---- KEEP whitelist (exact, case-insensitive) ----
+KEEP_EXACT = {t.lower() for t in [
+ # spec / operational / material
+ "Architectural","Cal 117","Commercial","display_variant","Fabric","Fire Rated",
+ "Microfiber Suede","NFPA 260","Novasuede","UFAC Class I","Wallcovering","Upholstery",
+ "Class A Fire Rated","100% Nylon Fiber Matrix","Suede","Solid","Textured","Texture",
+ "Solid/Textural","100000 double rubs","54 inch wide fabric","by the yard","wyzenbeek rated",
+ "ufac class 1","Paper","Non-woven","Fabric-backed Vinyl","Novasuede™ Fabric & Wallcovering",
+ # SEO-spam (keep per Steve)
+ "aircraft fabric","cal 117 fabric","commercial grade fabric","contract fabric","designer fabric",
+ "faux suede fabric","fire rated fabric","hospitality fabric","majilite novasuede",
+ "microfiber suede fabric","microfiber wallcovering","microsuede fabric","synthetic suede",
+ "upholstery fabric","wallcovering fabric","yacht fabric",
+ # room / application
+ "Bedroom","Living Room","Office","Hallway","Bathroom","Nursery","Primary Suite","Hotel Lobby",
+ # marketing / identity
+ "Showroom Line","New Arrival",
+]}
+KEEP_PREFIX = ("novasuede ",) # lowercase vendor SEO tags
+KEEP_RE = [re.compile(r"^DWCC-\d+$", re.I), re.compile(r"^T3[A-Z0-9]{2,3}W$", re.I)]
+DROP_MARKERS = {"ai-analyzed-v2"}
+
+def keep_tag(tag, vendor_name):
+ t = tag.strip()
+ if not t: return False
+ tl = t.lower()
+ if tl in DROP_MARKERS: return False
+ if t == vendor_name: return True # product's own decorative identity
+ if tl == vendor_name.lower(): return True
+ if tl in KEEP_EXACT: return True
+ if tl.startswith(KEEP_PREFIX): return True
+ if any(rx.match(t) for rx in KEEP_RE): return True
+ return False # everything else = descriptor → drop
+
+def title_case(s): # 'mid-century modern' stays as given; colorways already cased
+ return s
+
+def build(rec):
+ vname = rec["vendor_name"]
+ old_tags = [x.strip() for x in (rec.get("_old_tags","") ).split(",") if x.strip()]
+ kept = [t for t in old_tags if keep_tag(t, vname)]
+ prim = (rec.get("primary_colorway") or "").strip().replace("-", " ")
+ sec = (rec.get("secondary_colorway") or "").strip().replace("-", " ")
+ und = (rec.get("undertone") or "").strip().capitalize()
+ styles = [s.strip() for s in (rec.get("styles") or []) if s.strip()][:3]
+ add = []
+ if prim:
+ add += [f"Color: {prim}", prim]
+ if sec and sec.lower() != prim.lower():
+ add += [f"Color: {sec}", sec]
+ if und: add.append(und)
+ add += styles
+ add.append("AI-Lexicon-v3")
+ # merge kept + add, de-dup case-insensitively, preserve order (kept first)
+ seen=set(); final=[]
+ for t in kept + add:
+ k=t.lower()
+ if k in seen: continue
+ seen.add(k); final.append(t)
+ # body_html
+ desc = (rec.get("description") or "").strip()
+ depth = (rec.get("depth") or "").strip()
+ color_line = prim + (f" / {sec}" if sec and sec.lower()!=prim.lower() else "")
+ style_line = ", ".join(styles)
+ body = (f"<p>{desc}</p>\n"
+ f"<p><strong>Color:</strong> {color_line} ({und.lower()}, {depth}) · "
+ f"<strong>Style:</strong> {style_line} · 100% nylon microfiber suede, "
+ f"54" wide, Cal 117 / NFPA 260 / UFAC Class I, 100,000+ double rubs.</p>")
+ removed = [t for t in old_tags if t not in final]
+ added = [t for t in final if t not in old_tags]
+ return final, body, added, removed
+
+def main():
+ raw = {json.loads(l)["id"]: json.loads(l)
+ for l in (DATA/"novasuede_raw.ndjson").read_text().splitlines()}
+ out = (DATA/"plan.ndjson").open("w")
+ csvf = (DATA/"before_after.csv").open("w", newline="")
+ w = csv.writer(csvf)
+ w.writerow(["id","title","vendor_name","primary","secondary","undertone","depth",
+ "styles","removed_tags","added_tags","new_body"])
+ n=0; errs=0
+ for line in (DATA/"enriched.ndjson").read_text().splitlines():
+ rec = json.loads(line)
+ if not rec.get("_ok"):
+ errs+=1; continue
+ rec["_old_tags"] = raw[rec["id"]].get("tags","")
+ final, body, added, removed = build(rec)
+ plan = {"id":rec["id"],"title":rec["title"],"new_tags":", ".join(final),
+ "new_body":body,"old_tags":rec["_old_tags"],
+ "added":added,"removed":removed,
+ "primary":rec.get("primary_colorway"),"secondary":rec.get("secondary_colorway"),
+ "styles":rec.get("styles")}
+ out.write(json.dumps(plan)+"\n")
+ w.writerow([rec["id"],rec["title"],rec["vendor_name"],rec.get("primary_colorway"),
+ rec.get("secondary_colorway"),rec.get("undertone"),rec.get("depth"),
+ " | ".join(rec.get("styles") or []),
+ " | ".join(removed)," | ".join(added), re.sub("<[^>]+>"," ",body)])
+ n+=1
+ out.close(); csvf.close()
+ print(f"planned {n} products ({errs} enrichment errors skipped)")
+ print(f"-> {DATA/'plan.ndjson'}\n-> {DATA/'before_after.csv'}")
+
+if __name__ == "__main__":
+ main()
diff --git a/pull_catalog.py b/pull_catalog.py
new file mode 100644
index 0000000..f4f5198
--- /dev/null
+++ b/pull_catalog.py
@@ -0,0 +1,45 @@
+#!/usr/bin/env python3
+"""Pull the full Novasuede catalog from Shopify (read-only) to data/novasuede_raw.ndjson."""
+import os, json, time, urllib.request, re, pathlib
+
+ROOT = pathlib.Path(__file__).resolve().parent
+DATA = ROOT / "data"; DATA.mkdir(exist_ok=True)
+
+# read token from secrets-manager .env without printing it
+env = pathlib.Path.home() / "Projects/secrets-manager/.env"
+TOKEN = None
+for ln in env.read_text().splitlines():
+ if ln.startswith("SHOPIFY_ADMIN_TOKEN="):
+ TOKEN = ln.split("=", 1)[1].strip().strip('"'); break
+assert TOKEN, "no SHOPIFY_ADMIN_TOKEN"
+
+SHOP = "designer-laboratory-sandbox.myshopify.com"
+API = f"https://{SHOP}/admin/api/2024-01"
+FIELDS = "id,title,handle,status,tags,product_type,body_html,images,image,variants,vendor"
+
+def get(url):
+ req = urllib.request.Request(url, headers={"X-Shopify-Access-Token": TOKEN})
+ for attempt in range(5):
+ try:
+ with urllib.request.urlopen(req, timeout=30) as r:
+ return json.load(r)
+ except urllib.error.HTTPError as e:
+ if e.code == 429:
+ time.sleep(2); continue
+ raise
+ raise RuntimeError("too many retries")
+
+out = (DATA / "novasuede_raw.ndjson").open("w")
+since = 0; total = 0
+while True:
+ url = f"{API}/products.json?vendor=Novasuede&limit=250&since_id={since}&fields={FIELDS}"
+ ps = get(url).get("products", [])
+ if not ps: break
+ for p in ps:
+ out.write(json.dumps(p) + "\n")
+ total += len(ps)
+ since = ps[-1]["id"]
+ if len(ps) < 250: break
+ time.sleep(0.4)
+out.close()
+print(f"pulled {total} products -> {DATA/'novasuede_raw.ndjson'}")
(oldest)
·
back to Novasuede Onboard
·
Validated tag keep/drop + body planner + live writer (dry-ru e5c548d →