← back to Dw Collection Banner Audit
collection banner audit + dry-run apply planner
fb37d1dac41c3ca14d03eb6da967f5ecc4d14475 · 2026-07-30 09:12:39 -0700 · steve
Files touched
A .gitignoreA dryrun_apply.pyA dw_col_probe.jsonA dw_col_remediation.jsonA dw_collections.json
Diff
commit fb37d1dac41c3ca14d03eb6da967f5ecc4d14475
Author: steve <steve@designerwallcoverings.com>
Date: Thu Jul 30 09:12:39 2026 -0700
collection banner audit + dry-run apply planner
---
.gitignore | 5 ++
dryrun_apply.py | 118 ++++++++++++++++++++++++++++++++++++++++++++++++
dw_col_probe.json | 1 +
dw_col_remediation.json | 1 +
dw_collections.json | 1 +
5 files changed, 126 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ff2422c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+node_modules/
+.env*
+tmp/
+*.log
+.DS_Store
diff --git a/dryrun_apply.py b/dryrun_apply.py
new file mode 100644
index 0000000..b86c413
--- /dev/null
+++ b/dryrun_apply.py
@@ -0,0 +1,118 @@
+#!/usr/bin/env python3
+"""
+DRY-RUN collection-banner remediation planner for the LIVE DW Shopify store.
+READ-ONLY. Produces a proposed before/after banner list. Writes NOTHING to Shopify.
+
+For each MISSING / LOW-RES collection that has products:
+ - paced fetch of /collections/<handle>/products.json (bot-filter safe: sequential + backoff)
+ - pick the LARGEST product image with min-dimension >= MIN_DIM, skipping logo files
+ - if none >= MIN_DIM -> flag NO_HIRES_SOURCE (needs a hand-picked asset; do NOT auto-fill)
+Empty (0-product) collections are skipped (hide/populate decision, not an image fix).
+"""
+import json, os, time, urllib.request, csv
+
+HERE = os.path.dirname(os.path.abspath(__file__))
+HOST = "designerwallcoverings.com"
+UA = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)"
+MIN_DIM = 1200 # a banner needs at least this on the short edge to stay sharp
+PER_COLLECTION = 24 # scan up to N products for the best image
+SLEEP = 1.1 # polite pacing to dodge the 403 bot-filter
+MAX_RETRY = 4
+
+cols = json.load(open(os.path.join(HERE, "dw_collections.json")))
+probe = {r["handle"]: r for r in json.load(open(os.path.join(HERE, "dw_col_probe.json")))}
+
+def is_problem(c):
+ if not c.get("image"):
+ return "MISSING", None, None
+ p = probe.get(c["handle"])
+ if p and p["w"] and (p["w"] < 1000 or p["ht"] < 600):
+ return f"LOWRES", p["w"], p["ht"]
+ return None, None, None
+
+def fetch_products(handle):
+ url = f"https://{HOST}/collections/{handle}/products.json?limit={PER_COLLECTION}"
+ for attempt in range(MAX_RETRY):
+ try:
+ r = urllib.request.urlopen(urllib.request.Request(url, headers={"User-Agent": UA, "Accept": "application/json"}), timeout=30)
+ return json.load(r).get("products", [])
+ except urllib.error.HTTPError as e:
+ if e.code in (403, 429):
+ time.sleep(2.0 * (attempt + 1)) # backoff on throttle
+ continue
+ return None
+ except Exception:
+ time.sleep(1.5)
+ return None
+
+def best_image(products):
+ """largest product image with min-dim >= MIN_DIM, skipping logo files; returns (src,w,h) or None, plus best-any fallback."""
+ best = None; best_any = None
+ for p in products:
+ for im in p.get("images", []):
+ src = im.get("src", "")
+ if "logo" in src.lower():
+ continue
+ w, h = im.get("width") or 0, im.get("height") or 0
+ area = w * h
+ if best_any is None or area > best_any[3]:
+ best_any = (src, w, h, area)
+ if w >= MIN_DIM and h >= MIN_DIM:
+ if best is None or area > best[3]:
+ best = (src, w, h, area)
+ return best, best_any
+
+problems = []
+for c in cols:
+ kind, w, h = is_problem(c)
+ if kind:
+ problems.append((c, kind, w, h))
+
+print(f"problem collections: {len(problems)} (MIN_DIM={MIN_DIM}, per-collection scan={PER_COLLECTION})")
+
+rows = []
+n_ok = n_nosrc = n_empty = 0
+for i, (c, kind, w, h) in enumerate(problems, 1):
+ handle = c["handle"]; pc = c.get("products_count") or 0
+ cur = c["image"]["src"] if c.get("image") else None
+ cur_dim = f"{w}x{h}" if w else ("none" if kind == "MISSING" else "?")
+ if pc == 0:
+ rows.append({"handle": handle, "title": c["title"], "products": pc, "issue": kind,
+ "current_dim": cur_dim, "current_src": cur, "new_src": None,
+ "new_dim": None, "status": "EMPTY_SKIP"})
+ n_empty += 1
+ continue
+ prods = fetch_products(handle)
+ time.sleep(SLEEP)
+ if prods is None:
+ rows.append({"handle": handle, "title": c["title"], "products": pc, "issue": kind,
+ "current_dim": cur_dim, "current_src": cur, "new_src": None,
+ "new_dim": None, "status": "FETCH_FAIL"})
+ continue
+ best, best_any = best_image(prods)
+ if best:
+ rows.append({"handle": handle, "title": c["title"], "products": pc, "issue": kind,
+ "current_dim": cur_dim, "current_src": cur, "new_src": best[0],
+ "new_dim": f"{best[1]}x{best[2]}", "status": "READY"})
+ n_ok += 1
+ else:
+ ba = f"{best_any[1]}x{best_any[2]}" if best_any else "none"
+ rows.append({"handle": handle, "title": c["title"], "products": pc, "issue": kind,
+ "current_dim": cur_dim, "current_src": cur,
+ "new_src": best_any[0] if best_any else None, "new_dim": ba,
+ "status": "NO_HIRES_SOURCE"})
+ n_nosrc += 1
+ if i % 25 == 0:
+ print(f" ...{i}/{len(problems)} ready={n_ok} no-source={n_nosrc}")
+
+json.dump(rows, open(os.path.join(HERE, "proposal.json"), "w"), indent=1)
+with open(os.path.join(HERE, "proposal.csv"), "w", newline="") as f:
+ wcsv = csv.DictWriter(f, fieldnames=list(rows[0].keys()))
+ wcsv.writeheader(); wcsv.writerows(rows)
+
+print("\n=== DRY-RUN SUMMARY (NO LIVE WRITES) ===")
+print(f" READY (good >= {MIN_DIM}px in-collection image found): {n_ok}")
+print(f" NO_HIRES_SOURCE (needs hand-picked asset): {n_nosrc}")
+print(f" EMPTY_SKIP (0 products - hide/populate decision): {n_empty}")
+print(f" FETCH_FAIL: {sum(1 for r in rows if r['status']=='FETCH_FAIL')}")
+print(f" proposal.json / proposal.csv written to {HERE}")
diff --git a/dw_col_probe.json b/dw_col_probe.json
new file mode 100644
index 0000000..5805be6
--- /dev/null
+++ b/dw_col_probe.json
@@ -0,0 +1 @@
+[{"handle": "1838-wallcoverings", "title": "1838 Wallcoverings", "pc": 481, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2008-146-03-Ripple-Blue-Dusk-scaled_e4c020e3-d080-49ec-8b01-a7c3e592ceb4.jpg?v=1779282003", "w": 2490, "ht": 2560, "bytes": 1366019, "err": null}, {"handle": "authentic-1940s-reproduction-vintage-wallcoverings", "title": "1940's Vintage", "pc": 101, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-10-04at1.34.34PM_7bf17934-ece3-43bb-85ae-814af53eafa0.png?v=1776628710", "w": 924, "ht": 888, "bytes": 1132418, "err": null}, {"handle": "authentic-1950s-reproduction-vintage-wallcoverings", "title": "1950's Vintage", "pc": 335, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/mockup-Dig-5011663_black_04962cc8-ef6f-4388-b9f4-d53548320e86.jpg?v=1783290313", "w": 4000, "ht": 3820, "bytes": 2314851, "err": null}, {"handle": "authentic-1960s-reproduction-vintage-wallcoverings", "title": "1960's Vintage", "pc": 130, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG-62418_mockup.jpg?v=1783290315", "w": 3333, "ht": 3333, "bytes": 2106000, "err": null}, {"handle": "authentic-1970s-reproduction-vintage-wallcoverings", "title": "1970's Vintage", "pc": 203, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG_740036_f533e5bf-66bd-4a83-bf72-5b37e1c410ab.jpg?v=1774039919", "w": 2442, "ht": 3005, "bytes": 1347524, "err": null}, {"handle": "brands-at-designer-wallcoverings-a-c", "title": "A-C Wallcovering Brands", "pc": 11541, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/happy-hour-day_24a94341-a00e-46da-a65c-8cfa89f8b06c.webp?v=1776627427", "w": 1000, "ht": 1000, "bytes": 251934, "err": null}, {"handle": "abstract-durable-vinyl", "title": "Abstract Vinyl", "pc": 1290, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bellevue_A211-941-Upstream.jpg?v=1774494866", "w": 1000, "ht": 1000, "bytes": 260194, "err": null}, {"handle": "acoustical", "title": "Acoustical", "pc": 223, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2bd76bfac054ded030ad269641d7c683_c6c84801-f52f-42e0-aebd-9425e8c26d1a.jpg?v=1776628732", "w": 1000, "ht": 1000, "bytes": 142546, "err": null}, {"handle": "ajiro-wallpapers-by-maya-romanoff", "title": "Ajiro", "pc": 155, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-ah-4x02-maya-50098_0016091b-f421-42f7-b83c-8ff1f53a0d4f.jpg?v=1783290295", "w": 1248, "ht": 832, "bytes": 119892, "err": null}, {"handle": "alligator-skin-wallpaper-collection", "title": "Alligator Skin Wallcovering Collection (New)", "pc": 417, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room_7797733294131.png?v=1783290297", "w": 1056, "ht": 992, "bytes": 1273146, "err": null}, {"handle": "andrew-martin-wallcoverings", "title": "Andrew Martin", "pc": 129, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/35445-constantinoplewallpaper-nicklebysofaindusbrick-scattercushionsindusbrickoxusmultiandelbrusmulti_1a99724f-e1dc-41c5-9dc9-aaba9b625226.jpg?v=1783290299", "w": 1200, "ht": 1067, "bytes": 420271, "err": null}, {"handle": "animals-and-insects", "title": "Animal Collection", "pc": 12750, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/98803-1250a5b948db419c9d9be35796e91929.jpg?v=1776628569", "w": 1000, "ht": 1000, "bytes": 146834, "err": null}, {"handle": "animal-print-wallpaper", "title": "Animal Print", "pc": 895, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_FoliaDARK_03.jpg?v=1783290301", "w": 5352, "ht": 3582, "bytes": 2890794, "err": null}, {"handle": "animal-skin", "title": "Animal Skin", "pc": 1746, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-carlos-cheetah-wallpaper-skn-6807_e552c68e-5a13-4c37-94bd-24913e95837b.jpg?v=1783290303", "w": 1280, "ht": 800, "bytes": 159191, "err": null}, {"handle": "animal-wallpaper-collection", "title": "Animals Collection", "pc": 4018, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lDyRMxkKMg03WeBwyh4B6z9PddMyrJMAGEGIQAYP_5e00dd86-3f51-46e3-a5c8-953f327b7ec2.jpg?v=1776628566", "w": 200, "ht": 200, "bytes": 13379, "err": null}, {"handle": "anna-french-1", "title": "Anna French", "pc": 1219, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AT15140.jpg?v=1776628142", "w": 2000, "ht": 2000, "bytes": 868868, "err": null}, {"handle": "apartment-wallpaper", "title": "Apartment Wallcovering", "pc": 101, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PSW1165RL.jpg?v=1776402960", "w": 410, "ht": 410, "bytes": 56834, "err": null}, {"handle": "architectural-fabrics", "title": "Architectural", "pc": 483, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWRW-190006-sofa-room-setting_00b51bba-baaf-4673-a715-9399a04fcb9a.png?v=1783290305", "w": 1792, "ht": 1024, "bytes": 2921137, "err": null}, {"handle": "architectural-wallcoverings", "title": "Architectural Wallcoverings", "pc": 9, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PNT-04.jpg?v=1776433924", "w": 350, "ht": 350, "bytes": 37595, "err": null}, {"handle": "architectural-wallcoverings-commercial", "title": "Architectural Wallcoverings (Commercial)", "pc": 9, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PNT-04_d9d6d795-30f1-4a07-b1fd-66123164096d.jpg?v=1776433925", "w": 350, "ht": 350, "bytes": 37595, "err": null}, {"handle": "armani-casa-wallcoverings", "title": "Armani Casa", "pc": 243, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Montmartre_9222-room_13b38982-4c40-483f-afc0-7429a2435ac1.jpg?v=1776627915", "w": 1280, "ht": 1280, "bytes": 437868, "err": null}, {"handle": "decoglass-wallpaper", "title": "Art Deco", "pc": 485, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104299_ROOMSET_01__38109.1769761676.jpg?v=1776628447", "w": 219, "ht": 300, "bytes": 25991, "err": null}, {"handle": "art-deco-metallics-1", "title": "Art Deco Metallics", "pc": 47286, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/dcd3f86ee26d00455c5d9bfbde5d22e4.jpg?v=1776402249", "w": 4000, "ht": 4000, "bytes": 2048206, "err": null}, {"handle": "art-deco", "title": "Art Deco Wallcoverings", "pc": 2773, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258.jpg?v=1776433822", "w": 1024, "ht": 1024, "bytes": 154890, "err": null}, {"handle": "art-nouveau-wallpaper", "title": "Art Nouveau", "pc": 1288, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/50868088b2e1032b0a0f49706fc6ec5c_ff2f9577-dfa0-4af4-b6f8-59dba3daed43.jpg?v=1774040061", "w": 1005, "ht": 1012, "bytes": 248727, "err": null}, {"handle": "arte-international", "title": "Arte International", "pc": 631, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EssentialsLesNaturels_ReverieTropicale_26771_Roomshot_Web_LR-fullscreen_0affad57-0e90-45df-b179-be6bcd39474b.jpg?v=1776628221", "w": 400, "ht": 400, "bytes": 53768, "err": null}, {"handle": "arte", "title": "Arte Wallcoverings", "pc": 631, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Alaya_Banyan_11530_Roomshot_Web_HR-fullscreen_b5d113af-c22e-4903-9203-e98c53ba98af.jpg?v=1783290308", "w": 2382, "ht": 2000, "bytes": 1022949, "err": null}, {"handle": "artmura", "title": "Artmura", "pc": 161, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Crystal-room.jpg?v=1783290248", "w": 1280, "ht": 1280, "bytes": 295119, "err": null}, {"handle": "arts-and-crafts-wallpaper", "title": "Arts and Crafts", "pc": 1256, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e2eb6581455ab89447655b3053669aa3_56fd4eb3-f056-4493-9df8-50838b36278c.jpg?v=1783290310", "w": 1600, "ht": 1204, "bytes": 502035, "err": null}, {"handle": "as-creation-wallcoverings", "title": "AS Creation Wallcoverings", "pc": 505, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/as-creation-pintwalls-2_ee5f95ba-cade-4c34-842c-05068de81ef6.jpg?v=1776627758", "w": 589, "ht": 800, "bytes": 102171, "err": null}, {"handle": "as-seen-in-showrooms", "title": "As Seen in Showrooms", "pc": 42, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-777_5d645c1f-b5c1-4f41-9e00-9c4776f353e1.jpg?v=1776627560", "w": 680, "ht": 737, "bytes": 102388, "err": null}, {"handle": "backdrop", "title": "Backdrop", "pc": 9, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/tanbark-multi-2.jpg?v=1776627442", "w": 1200, "ht": 1200, "bytes": 191302, "err": null}, {"handle": "baker-lifestyle-1", "title": "Baker Lifestyle", "pc": 441, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LB50064_659_6ef2270f-65d8-4bd2-85d5-a44ec56b7e25.jpg?v=1774040067", "w": 1200, "ht": 1200, "bytes": 632356, "err": null}, {"handle": "baker-lifestyle", "title": "Baker Lifestyle Fabrics", "pc": 441, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PF50297_170_f25a9e8e-2e5f-4e91-a3b9-98ea3d609efc.jpg?v=1774040064", "w": 1200, "ht": 1200, "bytes": 726961, "err": null}, {"handle": "barclay-butera-collection-1", "title": "Barclay Butera Collection", "pc": 140, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WDW2101_WT_05281aeb-d392-4a8a-93c3-4459fecd5c84.jpg?v=1774040248", "w": 1200, "ht": 1200, "bytes": 291598, "err": null}, {"handle": "baroque-wallpaper", "title": "Baroque", "pc": 205, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17911_interior1_f7f7868d-9d7b-44a6-89dd-289ed05a853c.jpg?v=1783290317", "w": 1600, "ht": 1378, "bytes": 265649, "err": null}, {"handle": "basketweave-paper", "title": "Basket Weave", "pc": 1597, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/4571ee2e4ad1c0902d0af0a294d732c1.jpg?v=1776628682", "w": 229, "ht": 229, "bytes": 14933, "err": null}, {"handle": "beige-cream-wallpaper-collection", "title": "Beige & Cream Collection", "pc": 8936, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_cu_013052cd-7f63-4137-a6e0-25dd760ff23a.jpg?v=1783290319", "w": 1400, "ht": 1120, "bytes": 268528, "err": null}, {"handle": "beige-wallcoverings", "title": "Beige Wallcoverings", "pc": 41789, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_776e2131-afdd-4fd8-8f43-0fd7ab19699c.jpg?v=1783290320", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "bella-italiano", "title": "Bella Italiano", "pc": 87, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0289F08B-8DD9-4039-BE61-7D64C0DF99D5.jpg?v=1776627880", "w": 3024, "ht": 4032, "bytes": 2919169, "err": null}, {"handle": "berber", "title": "Berber", "pc": 8, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2017100_940_b21bf3fe-ef56-4de1-83ee-1a5a68ba9860.jpg?v=1776433913", "w": 1200, "ht": 1200, "bytes": 553742, "err": null}, {"handle": "bespoke", "title": "Bespoke", "pc": 1921, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/140646_ROOMSET_ETHEREAL_2520MARBLE_2520GOLDEN_01__57861.1769776890.jpg?v=1776628262", "w": 1769, "ht": 1686, "bytes": 398440, "err": null}, {"handle": "best-seller-internal-use", "title": "Best Seller (internal use)", "pc": 156187, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_33712d83-fec4-475d-a22b-0e97dddf2c18.jpg?v=1783290322", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "birds", "title": "Birds and Fowl", "pc": 4552, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64_d1cbd178-db67-46b4-9c58-6b90b503cd34.jpg?v=1776628313", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "black", "title": "Black Collection", "pc": 8226, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_149119f2-f9ba-4356-91b8-a2518d8bc486.jpg?v=1783290324", "w": 1800, "ht": 1200, "bytes": 376861, "err": null}, {"handle": "black-wallcoverings", "title": "Black Wallcoverings", "pc": 8085, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_bc408fc2-18bf-470e-9e8c-6e4b37672ad0.jpg?v=1783290325", "w": 1800, "ht": 1200, "bytes": 376861, "err": null}, {"handle": "blithfield-1", "title": "Blithfield", "pc": 303, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bfc-3692-123-0_e483f943-4061-4467-954a-6aa39506bfe2.jpg?v=1783290274", "w": 1024, "ht": 1024, "bytes": 244136, "err": null}, {"handle": "blithfield", "title": "Blithfield Fabric Collection", "pc": 344, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bfc-3692-123-0.jpg?v=1783290272", "w": 1024, "ht": 1024, "bytes": 244136, "err": null}, {"handle": "blue-wallpaper", "title": "Blue Collection", "pc": 18697, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ea2a4950d2e7442c958a3b20c677b65c_f7a1c32d-1596-439b-9da4-19ef007bf081.jpg?v=1776628676", "w": 600, "ht": 869, "bytes": 101316, "err": null}, {"handle": "turquoise", "title": "Blue Green", "pc": 9766, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/33255_1635_ccf4a54f-d367-4ed9-9b66-7dc7db2ed3e3.jpg?v=1776628597", "w": 575, "ht": 740, "bytes": 208182, "err": null}, {"handle": "blue-wallcoverings", "title": "Blue Wallcoverings", "pc": 14153, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64.jpg?v=1776433812", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "bohemian-wallpaper", "title": "Bohemian", "pc": 2366, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/balancing-act-nightfall_568e3b64-06ca-46dc-b876-7a27be95590b.jpg?v=1774039901", "w": 1000, "ht": 1000, "bytes": 289860, "err": null}, {"handle": "bohemian", "title": "Bohemian Wallcoverings", "pc": 2372, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/balancing-act-nightfall_eb874da9-8013-4147-b260-01bef6a28697.jpg?v=1776433826", "w": 1000, "ht": 1000, "bytes": 283754, "err": null}, {"handle": "borastapeter", "title": "Borastapeter", "pc": 100, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-conference_room-mary-mcdonald-chinoiserie-panel-green-pan-1930_4e1f014a-52dd-493f-ba61-196604495f57.jpg?v=1783290327", "w": 1632, "ht": 640, "bytes": 120112, "err": null}, {"handle": "borastapeter-scandinavian-wallpapers", "title": "Borastapeter Scandinavian Wallcoverings", "pc": 3, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7261_aef94544-e91d-4ec9-b8e9-6a48fc7b9f7a.jpg?v=1776433901", "w": 1200, "ht": 1200, "bytes": 531348, "err": null}, {"handle": "botanicals-and-florals", "title": "Botanicals & Florals Collections", "pc": 23245, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w3905-84.jpg?v=1776628441", "w": 500, "ht": 819, "bytes": 148503, "err": null}, {"handle": "braid-tape", "title": "Braid / Tape", "pc": 266, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TL10167_165_a680e04c-ba17-4bac-a45d-a632514576f0.jpg?v=1774494331", "w": 1200, "ht": 1200, "bytes": 154727, "err": null}, {"handle": "brand-mckenzie-wallpaper-collection", "title": "Brand McKenzie Collection", "pc": 165, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abstract-jungle-teal-blue_7_fe9c5a52-57be-4da2-a967-0268a89e83db.webp?v=1783290329", "w": 1000, "ht": 1000, "bytes": 265934, "err": null}, {"handle": "brazil", "title": "Brazil", "pc": 71, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWL-3406_40_0995e2f7-5702-4e98-b42e-d29df5e45a8f.jpg?v=1776433793", "w": 1200, "ht": 1200, "bytes": 465461, "err": null}, {"handle": "british-walls", "title": "British Invasion", "pc": 592, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2d765d423c431592d36f170c3cb6c2a2_c3e39d6c-bdb2-4550-baa4-4571d06e26e7.jpg?v=1774494103", "w": 960, "ht": 1396, "bytes": 293146, "err": null}, {"handle": "british-walls-1", "title": "British Walls", "pc": 506, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/808736ff445a8b9d9d5c647c1fb8f79e_68230d1d-e783-466c-bbef-7c6e899b0142.jpg?v=1783290331", "w": 1050, "ht": 1007, "bytes": 80808, "err": null}, {"handle": "brown-wallpaper-collection", "title": "Brown", "pc": 22848, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_ebb2fbfa-3bbd-4849-95ef-291c8db4fb47.jpg?v=1783290335", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "brown-wallcoverings", "title": "Brown Wallcoverings", "pc": 16559, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21452_Animal-Luxe_Brown_Rebel-Walls_interior1_w.webp?v=1783290333", "w": 1600, "ht": 1095, "bytes": 263638, "err": null}, {"handle": "brunschwig-fils", "title": "Brunschwig & Fils", "pc": 3402, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8015150_611_1190253b-805d-4b1e-8614-a26eacce991f.jpg?v=1776628380", "w": 400, "ht": 400, "bytes": 21082, "err": null}, {"handle": "camel-cognac-1", "title": "Camel & Cognac", "pc": 15973, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/forest_mustardfinal_2af08d59-d4a1-418b-8a0d-9870f9f56841.jpg?v=1776628716", "w": 4000, "ht": 4000, "bytes": 2089968, "err": null}, {"handle": "candice-olson-wallpaper", "title": "Candice Olson", "pc": 291, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/candice-olson-w3355-16.jpg?v=1774495595", "w": 2000, "ht": 2000, "bytes": 1052685, "err": null}, {"handle": "candice-olson-collection", "title": "Candice Olson Collection", "pc": 160, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W3353_15_a038dda4-02a8-4616-bdde-fde4f596248f.jpg?v=1776627938", "w": 400, "ht": 400, "bytes": 40621, "err": null}, {"handle": "candice-olson-collection-1", "title": "Candice Olson Wallcovering Collection", "pc": 70, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/34095_16_3fc0a854-f26d-4524-9241-30f8120fad8a.jpg?v=1776627936", "w": 1200, "ht": 1200, "bytes": 303754, "err": null}, {"handle": "carlisle-co", "title": "Carlisle & Co", "pc": 441, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WCC_LX1026_AbacaHorizon_Anchor_1000x_8687a623-aa11-4f77-9464-4efafaf05568.jpg?v=1783290337", "w": 1000, "ht": 1000, "bytes": 84890, "err": null}, {"handle": "catchii", "title": "Catchii", "pc": 1, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Catchii-behang-flying-cranes-blauw_08dd134b-b926-45f5-a0f4-7aa818a7cd04.jpg?v=1776627565", "w": 1590, "ht": 1840, "bytes": 414983, "err": null}, {"handle": "catchii-european-wallpaper", "title": "Catchii European", "pc": 1, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Catchii-behang-Animal-stripes-beige_70361cb9-50f0-4183-b17e-0aa0c229b2e8.jpg?v=1776627562", "w": 1590, "ht": 1840, "bytes": 414983, "err": null}, {"handle": "checks-plaids-and-stripes-1", "title": "Checks + Plaids", "pc": 104, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-09-01at11.58.20AM.png?v=1774494745", "w": 1152, "ht": 1154, "bytes": 973612, "err": null}, {"handle": "chenille-fabric", "title": "Chenille", "pc": 1073, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/37125_51_486c4d4e-9b24-4d7b-a46a-f0aad7425db0.jpg?v=1776628386", "w": 835, "ht": 702, "bytes": 211722, "err": null}, {"handle": "chevron-herringbone-wallpaper-collection", "title": "Chevron & Herringbone Collection", "pc": 2421, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3c2ac84cbe04bbe26d7c388b57ed702c.jpg?v=1776628228", "w": 782, "ht": 657, "bytes": 256040, "err": null}, {"handle": "kids-wallpaper", "title": "Children's Wallcovering Collections", "pc": 619, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/In_the_Undergrowth_95201c59-34e6-46da-9834-2d4f337a66bf.jpg?v=1776628547", "w": 1024, "ht": 768, "bytes": 80815, "err": null}, {"handle": "china-seas", "title": "China Seas", "pc": 1810, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cs-room-hero.jpg?v=1782337822", "w": 864, "ht": 560, "bytes": 86986, "err": null}, {"handle": "chinoiserie-collection", "title": "Chinoiserie Collection", "pc": 7792, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CH-150-MS-4T_0eff34be-5184-496d-bc32-cc4bcb623911.jpg?v=1776628310", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "chinoiserie", "title": "Chinoiserie Murals", "pc": 6660, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64_94e48856-4063-4e24-95fe-95f8489358d2.jpg?v=1776628307", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "dark-green", "title": "Chocolate Brown", "pc": 18716, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_1f6ac2f2-a729-4494-b3ff-709acea67f23.jpg?v=1783290366", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "christian-lacroix-wallcoverings", "title": "Christian Lacroix", "pc": 175, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/124117_05948b20-992f-4b2c-9e73-c6161e5eceae.webp?v=1776627864", "w": 986, "ht": 986, "bytes": 348952, "err": null}, {"handle": "circles", "title": "Circles", "pc": 30, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/50994796154a8a5a604e938c17070f4c.jpg?v=1776433915", "w": 385, "ht": 277, "bytes": 7737, "err": null}, {"handle": "clarke-clarke", "title": "Clarke & Clarke", "pc": 2977, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W0191_01_CAC_672f0fb7-0f98-48d3-b64f-ca813d6bfbf1.jpg?v=1774039644", "w": 1200, "ht": 1200, "bytes": 450057, "err": null}, {"handle": "clarke-and-clarke-1", "title": "Clarke and Clarke", "pc": 3927, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W0191_01_CAC_a59150b1-9ab5-4000-888a-1320178334e4.jpg?v=1774039595", "w": 1200, "ht": 1200, "bytes": 450057, "err": null}, {"handle": "coastal-nautical-1", "title": "Coastal & Nautical", "pc": 19914, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/33255_1635_d3f06385-f090-459c-92fe-c7cc519c12da.jpg?v=1776628594", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "coastal-haven", "title": "Coastal Haven", "pc": 103, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN40512-A_d9377bfa-f59d-462c-bfcf-c3143d90f61a.jpg?v=1776627493", "w": 1553, "ht": 1200, "bytes": 501905, "err": null}, {"handle": "coastal", "title": "Coastal Wallcoverings", "pc": 9589, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/heavy-madagascar-natural.jpg?v=1776433776", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "cole-son", "title": "Cole & Son", "pc": 1276, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/97_10030_CS_6aed177c-3d40-4074-85c5-d964ca5fb645.jpg?v=1774039816", "w": 1200, "ht": 1200, "bytes": 296260, "err": null}, {"handle": "cole-sons", "title": "Cole & Son Imported Wallcoverings", "pc": 1255, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/109_11052_CS_26c0ee26-cbfb-4f53-8649-4b3b1cad8a67.jpg?v=1776627784", "w": 1200, "ht": 1200, "bytes": 262114, "err": null}, {"handle": "cole-and-son-collections", "title": "Cole and Son Collections", "pc": 1254, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/97_10030_CS_109f96bb-2c36-42e7-9832-1f019ba10e54.jpg?v=1774039822", "w": 1200, "ht": 1200, "bytes": 296260, "err": null}, {"handle": "cole-and-son", "title": "Cole and Son UK", "pc": 1254, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/109_11052_CS_4c08bc6d-7642-43c4-b2df-96fb56c18e20.jpg?v=1776627779", "w": 1200, "ht": 1200, "bytes": 262114, "err": null}, {"handle": "colefax-fowler", "title": "Colefax & Fowler", "pc": 361, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7401-02_m_8b59215f-0e64-422f-80db-83fbb7bb99fb.jpg?v=1774040109", "w": 1000, "ht": 1000, "bytes": 91678, "err": null}, {"handle": "colefax-and-fowler", "title": "Colefax and Fowler", "pc": 361, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7963-02_m_58522484-7a09-4fa3-b921-2573c453020f.jpg?v=1774040106", "w": 1000, "ht": 1000, "bytes": 76269, "err": null}, {"handle": "collections", "title": "Collections", "pc": 165, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abstract-jungle-teal-blue_7_5ee4a479-d278-4fed-81c4-24ce647fb5a1.webp?v=1783290339", "w": 1000, "ht": 1000, "bytes": 265934, "err": null}, {"handle": "commercial", "title": "Commercial", "pc": 48449, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_125f4da7-44f0-4d33-b6e3-ec718e1b9fcb.jpg?v=1783290341", "w": 1184, "ht": 864, "bytes": 103252, "err": null}, {"handle": "commercial-contract", "title": "Commercial & Contract", "pc": 71985, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_54bab521-8f5a-4b4e-8b70-1977fb720de3.jpg?v=1783290342", "w": 1184, "ht": 864, "bytes": 103252, "err": null}, {"handle": "commercial-durable", "title": "Commercial & Durable", "pc": 4217, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM105-2195.jpg?v=1776628072", "w": 500, "ht": 500, "bytes": 40106, "err": null}, {"handle": "commercial-specialty", "title": "Commercial Specialty", "pc": 14786, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_ae6081cd-474c-4a0a-aea2-cebefb96be9a.jpg?v=1783290344", "w": 1024, "ht": 1024, "bytes": 196976, "err": null}, {"handle": "commercial-styles", "title": "Commercial Styles", "pc": 12834, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_6c3d214f-4030-4d44-b3a2-49a5a0b81c70.jpg?v=1783290346", "w": 1024, "ht": 1024, "bytes": 196976, "err": null}, {"handle": "contemporary", "title": "Contemporary Style Wallcovering Collections", "pc": 60072, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/966f47f3331d8361aee8f40240d6505c_3f45c759-636d-4584-9ddc-22df0abc5dba.jpg?v=1783290348", "w": 1600, "ht": 1467, "bytes": 184920, "err": null}, {"handle": "coordonne-spain-wallpaper-collection", "title": "Coordonne Spain", "pc": 53, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/eb7ee3daa9a42323046be7d5a6cf8642.jpg?v=1776628718", "w": 1280, "ht": 1280, "bytes": 514291, "err": null}, {"handle": "coordonne", "title": "Coordonn\u00e9", "pc": 1493, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/511458ba89d88d8ff2c16b359de550c2.jpg?v=1783290350", "w": 1280, "ht": 1280, "bytes": 286677, "err": null}, {"handle": "coral", "title": "Coral Collection", "pc": 4270, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c63b3edb44f569170b10116168ed1d99.jpg?v=1783290354", "w": 1600, "ht": 1067, "bytes": 220698, "err": null}, {"handle": "cork-wallpaper-collection", "title": "Cork Wallcovering Collection", "pc": 1433, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_55098e6b-4bab-4b9a-b052-f2c684a8f91f.jpg?v=1783290359", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "crypton", "title": "Crypton Durable", "pc": 319, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-36408-16-0_c0caf470-850b-4ba2-9cfd-6ef1e33acd03.jpg?v=1783290361", "w": 1024, "ht": 1024, "bytes": 273929, "err": null}, {"handle": "d-f-brands", "title": "D-L", "pc": 13982, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-2020212-916-0.jpg?v=1783290363", "w": 1024, "ht": 1024, "bytes": 245115, "err": null}, {"handle": "daisy-bennett", "title": "Daisy Bennett", "pc": 70, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AC9165ex_650x_716b1a89-6e14-46ce-a5f1-e60839b7df53.jpg?v=1776627729", "w": 1200, "ht": 927, "bytes": 234548, "err": null}, {"handle": "daisy-bennett-wallcoverings", "title": "Daisy Bennett Wallcoverings", "pc": 70, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/db10210_e27b0437-b0a0-4a0a-98c6-369cb4689224.jpg?v=1774494292", "w": 1200, "ht": 927, "bytes": 234548, "err": null}, {"handle": "damasks-1", "title": "Damask", "pc": 4296, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZPHA312620_1_ZOW0035_03_ZOFFANY_Acantha_WALLPAPER_14cb.jpg?v=1776628155", "w": 600, "ht": 869, "bytes": 101316, "err": null}, {"handle": "damask-traditional", "title": "Damask & Traditional", "pc": 42051, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_a79a8bfe-2989-49e7-888f-ce62455b4487.jpg?v=1783290364", "w": 1600, "ht": 1321, "bytes": 196855, "err": null}, {"handle": "damask", "title": "Damask Collection", "pc": 4112, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ea2a4950d2e7442c958a3b20c677b65c.jpg?v=1776433785", "w": 600, "ht": 869, "bytes": 101316, "err": null}, {"handle": "dedar", "title": "Dedar", "pc": 1, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1__74269.1773625470_e8142d38-fd8e-40c4-ac7c-d1f7a5173b54.jpg?v=1776433952", "w": 1084, "ht": 1280, "bytes": 569708, "err": null}, {"handle": "dedar-wallcovering", "title": "Dedar Wallcoverings", "pc": 1, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1__74269.1773625470.jpg?v=1776433922", "w": 1084, "ht": 1280, "bytes": 569708, "err": null}, {"handle": "designer-artist-series", "title": "Design Artist Series", "pc": 184, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/969d76916567772a7666d85a694c358c.jpg?v=1774494781", "w": 800, "ht": 593, "bytes": 144847, "err": null}, {"handle": "designer-pulse-2026-03-07", "title": "Designer Pulse: 2026-03-07", "pc": 122, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2e96a9017ae5423aac06355db0831666.jpg?v=1776627922", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "designer-pulse-2026-03-21", "title": "Designer Pulse: 2026-03-21", "pc": 13, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-yip-yip-yeah-horses-and-guns-wps-56515_42e6796a-a4d2-4056-bdb3-cd7a37cd42f5.jpg?v=1783290276", "w": 1024, "ht": 1024, "bytes": 227854, "err": null}, {"handle": "dolce-gabbana-casa-wallcoverings", "title": "Dolce & Gabbana Casa Wallcoverings", "pc": 36, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TCW007TCAI9UL003.jpg?v=1774494267", "w": 1479, "ht": 1200, "bytes": 534384, "err": null}, {"handle": "donghia-wallcoverings", "title": "Donghia", "pc": 161, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/P6021109_411.jpg?v=1774495161", "w": 5112, "ht": 5112, "bytes": 4091476, "err": null}, {"handle": "dots", "title": "Dots and Circle", "pc": 283, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21621_interior1_d650d4fa-f0f1-435e-b754-422c88b2259e.jpg?v=1783290373", "w": 1600, "ht": 1067, "bytes": 190605, "err": null}, {"handle": "dragon-motifs", "title": "Dragon Motifs", "pc": 156, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21324_interior1_fa7a1ac6-edee-4220-891e-741edece585e.jpg?v=1783290375", "w": 1600, "ht": 1428, "bytes": 339649, "err": null}, {"handle": "drapery-fabrics", "title": "Drapery", "pc": 1425, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GDT5749_001_0297652f-6887-4d5b-94a5-99a72fa0ca51.jpg?v=1776628540", "w": 400, "ht": 400, "bytes": 90762, "err": null}, {"handle": "dresses-phillipe-romano", "title": "Dresses | Phillipe Romano", "pc": 28, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PhillipJeffriesLogo_57384dd4-d4e3-4eee-a57f-1c8512b30521.png?v=1774495136", "w": 1332, "ht": 734, "bytes": 106701, "err": null}, {"handle": "durable-w-c", "title": "Durable", "pc": 18265, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_a07194f5-18c7-459d-8261-abfd9121ed8d.jpg?v=1776628654", "w": 1000, "ht": 1000, "bytes": 146834, "err": null}, {"handle": "dw-bespoke-studio-wallpaper-collection", "title": "DW Bespoke Studio To Go", "pc": 1144, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG_740036_235b3388-a49e-4285-ba09-fcc378dcf8fa.jpg?v=1776627853", "w": 1769, "ht": 1686, "bytes": 398440, "err": null}, {"handle": "dw-bespoke-studios", "title": "DW Bespoke Studios", "pc": 1038, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-04-01at9.05.20AM_9f8794b8-250d-4b7c-990e-04820994fed8.png?v=1774494983", "w": 1994, "ht": 1984, "bytes": 3499862, "err": null}, {"handle": "dw-staff-picks", "title": "DW Staff Picks", "pc": 102, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TTN-1502_d6de95ba-a68b-4234-bb17-30f41fcf38f1.jpg?v=1783290377", "w": 1286, "ht": 854, "bytes": 138696, "err": null}, {"handle": "eden", "title": "Eden", "pc": 109, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-dining_room-dwtt-70332-designer-wallcoverings-los-angeles_f9411fc8-6d13-49e7-8211-2658b627583e.jpg?v=1783290278", "w": 1024, "ht": 1024, "bytes": 156797, "err": null}, {"handle": "elements-ii-naturals", "title": "ELEMENTS II NATURALS", "pc": 111, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W4030_1_6f34e8fa-d309-4354-8817-85a31f7b782c.jpg?v=1774040344", "w": 1200, "ht": 1200, "bytes": 611773, "err": null}, {"handle": "elitis-wallcoverings", "title": "Elitis", "pc": 597, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/outdoor-tribus-wall-grasscloth-rm-1083-42-0022b1f368c5a97e9cdd4ebc0c_1cfc14b5-67b2-49fe-aabf-6e184492a459.jpg?v=1774040150", "w": 2400, "ht": 2400, "bytes": 682913, "err": null}, {"handle": "embossed", "title": "Embossed Texture", "pc": 1053, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8fe84641482c25fff20af8a577b92e67.jpg?v=1783290379", "w": 1600, "ht": 1200, "bytes": 279559, "err": null}, {"handle": "emiliana-parati-wallcoverings", "title": "Emiliana Parati Wallcoverings", "pc": 15, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/emiliana-parati-valentin-yudashkin-5-2_f039c9ca-a6f5-40f5-a8cd-0ee6de322827.jpg?v=1776627444", "w": 1946, "ht": 1946, "bytes": 449184, "err": null}, {"handle": "emma-shipley-wallpaper-collection", "title": "Emma J Shipley Collection", "pc": 191, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/F1107_01_CAC_b59b1aef-e547-48c2-b986-de556eb79a65.jpg?v=1774495020", "w": 1200, "ht": 1200, "bytes": 824683, "err": null}, {"handle": "european-wallpapers", "title": "European", "pc": 4177, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w7971-03_j38mfhvsedzty35k.jpg?v=1774037440", "w": 800, "ht": 1818, "bytes": 352848, "err": null}, {"handle": "european-import-wallpaper-collection", "title": "European Imported", "pc": 6025, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2024-12-17_at_1.20.59_PM.png?v=1776628360", "w": 1548, "ht": 1548, "bytes": 4204165, "err": null}, {"handle": "european-imports", "title": "European Imports", "pc": 617, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/b7322b7819053f1d38d2b49ee2e94149.jpg?v=1774494180", "w": 500, "ht": 783, "bytes": 190793, "err": null}, {"handle": "even-more-textures", "title": "Even More Textures", "pc": 242, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TS82103-A_08850600-60a2-4390-8d44-c9a93b31402e.jpg?v=1776627490", "w": 1503, "ht": 1150, "bytes": 104219, "err": null}, {"handle": "exclusive", "title": "Exclusive Showroom Collections", "pc": 3882, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e0b07f9db9cf672562f40714d09a70f.jpg?v=1783290380", "w": 1600, "ht": 1200, "bytes": 288743, "err": null}, {"handle": "fabric-trim", "title": "Fabric Trim", "pc": 973, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AE12344.jpg?v=1776628272", "w": 800, "ht": 800, "bytes": 77453, "err": null}, {"handle": "fabricut-fabrics", "title": "Fabricut Fabrics", "pc": 46, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5151803_2x_79e1d63a-e405-4ae1-92a1-7a1261699736.jpg?v=1774495691", "w": 300, "ht": 300, "bytes": 12725, "err": null}, {"handle": "fabricut-wallcoverings", "title": "Fabricut Wallcoverings", "pc": 46, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5151803_2x_0349f70e-d4ef-4f97-bf88-43d3f0e554ce.jpg?v=1776433917", "w": 300, "ht": 300, "bytes": 12725, "err": null}, {"handle": "fallingstar", "title": "FallingStar Studio", "pc": 42, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/product_conch_bermuda_cc_2.jpg?v=1783290251", "w": 4096, "ht": 5462, "bytes": 1239171, "err": null}, {"handle": "fantastic-frames", "title": "Fantastic Frames", "pc": 1284, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_04bb9193-02bd-4358-a400-7d98050dd168.jpg?v=1783290385", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "farmhouse-wallpaper", "title": "Farmhouse", "pc": 2946, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AT7910_4e60ec1a-03c7-4d86-86c7-7049582adfe1.jpg?v=1776628225", "w": 782, "ht": 657, "bytes": 256040, "err": null}, {"handle": "farrow-ball-wallcoverings", "title": "Farrow & Ball", "pc": 2, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/purnon-2.jpg?v=1776627545", "w": 2154, "ht": 3232, "bytes": 178937, "err": null}, {"handle": "faux-animal-skin", "title": "Faux Animal Patterns", "pc": 132, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CROCA-93031-sample-clean_cead575a-9cb5-4606-884d-8b7fdd3f22a0.jpg?v=1776627659", "w": 200, "ht": 200, "bytes": 13379, "err": null}, {"handle": "faux-collection", "title": "Faux Collection", "pc": 6295, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_c79d1cad-b064-485b-a2f4-674c45c73b7e.jpg?v=1783290387", "w": 1024, "ht": 914, "bytes": 194566, "err": null}, {"handle": "faux-gold-leaf-walls-54", "title": "Faux Gold Leaf Walls - 54\"", "pc": 544, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_60f9e0f8-b964-42c7-ab88-4671355193e3.jpg?v=1783290389", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "faux-grasscloth-wallpaper-collection", "title": "Faux Grasscloth", "pc": 315, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bb59071a9cc7dc1a6f4ff30837965537.jpg?v=1774494769", "w": 1000, "ht": 1000, "bytes": 328890, "err": null}, {"handle": "upholstery-vinyl", "title": "Faux Leather - Vegan Upholstery Vinyl", "pc": 2309, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_2c90364c-81aa-41cc-866d-4c4cd9d2a0ce.jpg?v=1782749239", "w": 1024, "ht": 1024, "bytes": 196976, "err": null}, {"handle": "faux-leather", "title": "Faux Leather Upholstery", "pc": 4845, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-08-08at7.24.44AM_b19698c0-5caa-4b38-8732-9dd65b52367f.png?v=1776628500", "w": 1280, "ht": 1188, "bytes": 2819497, "err": null}, {"handle": "faux-silk", "title": "Faux Silk + Linen", "pc": 235, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e5e352a44c76ced4973203ec19911963.jpg?v=1776628007", "w": 500, "ht": 500, "bytes": 44461, "err": null}, {"handle": "featured", "title": "Featured", "pc": 3515, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R20431_interior1.webp?v=1783290391", "w": 1600, "ht": 1305, "bytes": 244690, "err": null}, {"handle": "commercial-featured", "title": "Featured Commercial", "pc": 6214, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-08-08at7.24.44AM.png?v=1776628497", "w": 1280, "ht": 1188, "bytes": 2819497, "err": null}, {"handle": "fentucci", "title": "Fentucci", "pc": 4430, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2666bc189193c00fd5eb8cdca54b10b3.jpg?v=1776628344", "w": 409, "ht": 406, "bytes": 25622, "err": null}, {"handle": "fentucci-murals", "title": "Fentucci Murals", "pc": 40, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/9230_97WS131-01_2db7597f-bb99-4b20-ab49-f8b58496538a.jpg?v=1776627979", "w": 2000, "ht": 2000, "bytes": 368549, "err": null}, {"handle": "fentucci-naturals", "title": "Fentucci Naturals", "pc": 20, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/toscana-taupe-linen-grasscloth-wallcovering-fentucci-bedroom_1220f503-9a24-4dd5-b58e-fc99419fddf9.jpg?v=1783290246", "w": 1056, "ht": 886, "bytes": 118567, "err": null}, {"handle": "beverly-hills-stripe-wallpaper", "title": "Fentucci Stripe", "pc": 141, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-700014_53b0652e-f7fc-45d3-8507-f985392ca182.jpg?v=1774494334", "w": 1200, "ht": 1200, "bytes": 17280, "err": null}, {"handle": "fentucci-wallpaper", "title": "Fentucci Wallcovering", "pc": 759, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Blue_Wild_Meadow_23fe1cd8-8369-43cd-9e1b-2996068281b3.jpg?v=1776628340", "w": 409, "ht": 406, "bytes": 25622, "err": null}, {"handle": "fine-paintables-by-phillipe-romano", "title": "Fine Paintables by Phillipe Romano", "pc": 96, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1956FR-3-Amelia-bathroom-shot.jpg?v=1776627459", "w": 743, "ht": 531, "bytes": 34475, "err": null}, {"handle": "flocked-velvet-wallpaper-collection", "title": "Flocked Velvet Wallcovering Collection", "pc": 460, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/69a302b51d3ed05446036615c680c285.jpg?v=1717447671", "w": 996, "ht": 416, "bytes": 55968, "err": null}, {"handle": "florals-botanicals", "title": "Florals & Botanicals", "pc": 20919, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_76e89235-1ee5-4da3-a9bb-085381a43168.jpg?v=1776628377", "w": 371, "ht": 498, "bytes": 23456, "err": null}, {"handle": "florals-and-flowers", "title": "Florals & Flowers Collection", "pc": 4859, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_b0c8fe86-22b2-4a91-98a4-bf07e13d4045.jpg?v=1783290393", "w": 1806, "ht": 1500, "bytes": 237024, "err": null}, {"handle": "foil", "title": "Foil Wallcoverings", "pc": 102, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bella-parma-modern-metal-cork-print-prn-62330-bedroom_17180124-7378-496f-9731-633ce4242f57.jpg?v=1783290395", "w": 1120, "ht": 828, "bytes": 130142, "err": null}, {"handle": "fornasetti", "title": "Fornasetti Collection", "pc": 87, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114_28056_CS_6c018e4b-7608-414e-8335-51d302919964.jpg?v=1776627772", "w": 1200, "ht": 1200, "bytes": 154204, "err": null}, {"handle": "franquemont-london", "title": "Franquemont London Wallcoverings", "pc": 26, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-java-arctic-wallpaper_ccf4ded3-55e2-4491-953e-2b6dd48c23ab.jpg?v=1783290397", "w": 896, "ht": 1152, "bytes": 188770, "err": null}, {"handle": "french-country-wallpaper-collection", "title": "French Country", "pc": 1336, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ATWW15169_e0d33d09-0ff0-401d-80f3-255ef35d59e6.jpg?v=1776628301", "w": 500, "ht": 500, "bytes": 29675, "err": null}, {"handle": "fretwork-wallpaper", "title": "Fretwork Wallcovering", "pc": 716, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2232208-A_dcea0ea2-6bbb-452e-bf91-d5f199e18aeb.jpg?v=1783290399", "w": 1200, "ht": 950, "bytes": 299558, "err": null}, {"handle": "gaston-libreria", "title": "GASTON LIBRERIA", "pc": 215, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papel_pintado_gastonydaniela_trellis_blanco_azul_raquel_gonzalez_interiorismo_decoracion-150x150_5ea64e13-9d57-4de1-979c-7d9e049509f5.jpg?v=1774040184", "w": 150, "ht": 150, "bytes": 9941, "err": null}, {"handle": "gaston-nuevo-mundo", "title": "GASTON NUEVO MUNDO", "pc": 153, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GDT5566_002_d3fb549f-4240-40f0-bfcb-f0fa9c112fc1.jpg?v=1774040256", "w": 400, "ht": 400, "bytes": 87397, "err": null}, {"handle": "gaston-y-daniela", "title": "Gaston y Daniela", "pc": 2298, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW1018_005_d8580bc9-7201-4ec3-ab13-2999b15adea6.jpg?v=1774039711", "w": 1200, "ht": 1200, "bytes": 465191, "err": null}, {"handle": "geometric", "title": "Geometric Collections", "pc": 20852, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_036ec345-e731-407f-bddb-954e118e8f5d.jpg?v=1776628487", "w": 800, "ht": 800, "bytes": 107788, "err": null}, {"handle": "geometric-durable-vinyl", "title": "Geometric Patterns", "pc": 123, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/provacetero-posa-wallpaper-xe5-66800-bedroom_99d829df-365c-4dae-8395-61f8337b6d7f.jpg?v=1783290400", "w": 1120, "ht": 828, "bytes": 84521, "err": null}, {"handle": "glam-by-phillipe-romano", "title": "Glam By Phillipe Romano", "pc": 144, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/509ddb8852540dbef5288abd470e1334.jpg?v=1774494686", "w": 1000, "ht": 1000, "bytes": 186852, "err": null}, {"handle": "glass-bead", "title": "Glass Bead", "pc": 694, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105_096421f6-e773-4beb-b222-61c867b572a4.png?v=1776628060", "w": 383, "ht": 317, "bytes": 172716, "err": null}, {"handle": "glitter-wallpaper", "title": "Glitter + Sequins", "pc": 660, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_7895.jpg?v=1776628057", "w": 500, "ht": 500, "bytes": 76954, "err": null}, {"handle": "glitter-walls", "title": "Glitter Collection", "pc": 238, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GlitterWallsGLM-9315_585684d7-3224-4d0c-b37d-5d169b99b76a.jpg?v=1776627677", "w": 500, "ht": 500, "bytes": 76954, "err": null}, {"handle": "glitter-walls-1", "title": "Glitter Walls", "pc": 551, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_e352e6e4-5032-4ed7-8bb7-1140f75b5387.jpg?v=1776628054", "w": 500, "ht": 500, "bytes": 76954, "err": null}, {"handle": "gold-wallpaper", "title": "Gold Collection", "pc": 10328, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Chameleon_Tile_26x26in_JUICY2_79dbaed4-0423-4e00-a3c1-5712ea5566e4.jpg?v=1774494227", "w": 2200, "ht": 2200, "bytes": 484898, "err": null}, {"handle": "gold-wallcoverings", "title": "Gold Wallcoverings", "pc": 10282, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b_9e237855-5e71-4c91-9c9a-0fedf40a43af.jpg?v=1783290406", "w": 1600, "ht": 1071, "bytes": 203830, "err": null}, {"handle": "gp-j-baker", "title": "GP & J Baker", "pc": 1887, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bf11030-725-0_f96a2fb5-53a5-49ca-8381-aec027276d3b.jpg?v=1783290408", "w": 1024, "ht": 1024, "bytes": 226767, "err": null}, {"handle": "graham-brown", "title": "Graham & Brown", "pc": 1678, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/106289_2_0f0c4f8c-ccb5-42c1-a303-b65c3240732e.jpg?v=1776627850", "w": 1500, "ht": 1846, "bytes": 380743, "err": null}, {"handle": "graham-and-brown-exclusive-wallpaper", "title": "Graham and Brown", "pc": 1678, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/115361rol_ROOMSET_01.jpg__07861.1769698877.jpg?v=1776627847", "w": 1500, "ht": 1846, "bytes": 380743, "err": null}, {"handle": "grand-palace-wallpaper-collection", "title": "Grand Palace | Thibaut", "pc": 134, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_542a6175-d492-46d0-a9e8-7ce3a5613dcf.jpg?v=1783290280", "w": 1200, "ht": 799, "bytes": 242853, "err": null}, {"handle": "grasscloth-natural-fiber", "title": "Grasscloth & Natural Fiber", "pc": 14649, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_c212a01f-69e5-4453-a391-6ba757716e03.jpg?v=1783290410", "w": 1184, "ht": 864, "bytes": 103252, "err": null}, {"handle": "grasscloth-6", "title": "Grasscloth 6", "pc": 156, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GrassclothResource6-ClarksonWeave-slate_1187464d-ad5e-4deb-b562-acf8f70dbca5.jpg?v=1776627523", "w": 800, "ht": 800, "bytes": 209514, "err": null}, {"handle": "grasscloth-wallpaper-collection", "title": "Grasscloth Wallcovering", "pc": 12961, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abaca-tight-woven-grass-abaca-grs-43020-living_room.jpg?v=1776628647", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "grasscloth-wallpapers", "title": "Grasscloth Wallcovering Collections", "pc": 2874, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abaca-tight-woven-grass-abaca-grs-43020-dining_room.jpg?v=1776628402", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "gray-wallcoverings", "title": "Gray Wallcoverings", "pc": 20873, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a.jpg?v=1776433767", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "greek-key-wallpaper", "title": "Greek Key", "pc": 292, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/53aadeba49c428da2454517fe056c0a7.jpg?v=1776627969", "w": 800, "ht": 800, "bytes": 31920, "err": null}, {"handle": "green-wallpaper-collection", "title": "Green Collection", "pc": 18639, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_4bad89dd-2a52-4166-8c6e-3507c96742fd.webp?v=1783290412", "w": 1600, "ht": 1559, "bytes": 228754, "err": null}, {"handle": "green-wall-textures", "title": "Green Wall Textures", "pc": 130, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2a45ebc332c1f7e896e5aa7e4133c172.jpg?v=1776627456", "w": 720, "ht": 720, "bytes": 144761, "err": null}, {"handle": "green-wallcoverings", "title": "Green Wallcoverings", "pc": 12142, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/VER-43253.jpg?v=1776433744", "w": 800, "ht": 440, "bytes": 109692, "err": null}, {"handle": "grey-silver", "title": "Grey Collection", "pc": 36703, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_7aa4e965-9cf1-4029-bdc4-c264d911b667.jpg?v=1776628708", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "hand-made-wallcoverings", "title": "Hand Made", "pc": 117, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cfef8a782544b17a40482b386c34c93b_cdfe88ff-49d7-4f2a-b9e0-fa74f5482950.jpg?v=1774495574", "w": 600, "ht": 600, "bytes": 51147, "err": null}, {"handle": "hand-crafted", "title": "Handcrafted", "pc": 244, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EssentialsWashedLinen_WashedLinen_3_Roomshot_Web_LR-og_b46e5dd8-a42f-4414-96a0-fe7b81c73958.jpg?v=1783290414", "w": 1200, "ht": 630, "bytes": 57557, "err": null}, {"handle": "harlequin", "title": "Harlequin", "pc": 641, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R15571_interior1.webp?v=1783290418", "w": 1600, "ht": 1068, "bytes": 201643, "err": null}, {"handle": "harlequin-wallcoverings", "title": "Harlequin Wallcoverings", "pc": 528, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/HDMW113330_1_HAW0317_02_HARLEQUIN_Dolmens_WALLPAPER_ff38_9feaa691-6d76-4384-a05b-3d41f3bef079.jpg?v=1783290420", "w": 1400, "ht": 1400, "bytes": 488424, "err": null}, {"handle": "hermes", "title": "Hermes", "pc": 29, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e81a0a8ff4246bda6647995715e2fb0_4e92defe-8f2c-442d-8334-318e2d8467f1.jpg?v=1783290422", "w": 960, "ht": 650, "bytes": 198794, "err": null}, {"handle": "hinson", "title": "Hinson", "pc": 2, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/118228201_3249570748411748_1629082742788044617_o.jpg?v=1776433947", "w": 900, "ht": 1200, "bytes": 342897, "err": null}, {"handle": "holland-and-sherry", "title": "Holland and Sherry", "pc": 3, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWC-256046-DesignerWallcoverings-Los-Angeles-1_a5243fc8-8c5f-40e8-99c7-be1dda9d1ea6.jpg?v=1776433943", "w": 1536, "ht": 2048, "bytes": 928742, "err": null}, {"handle": "holly-hunt", "title": "Holly Hunt", "pc": 1260, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W4009_CumulusShimmer_Install_0_633c06e0-a8cb-437a-9c97-81e6d22fed22.jpg?v=1783290425", "w": 3000, "ht": 1731, "bytes": 452432, "err": null}, {"handle": "hollywood-wallcovering-collection", "title": "Hollywood", "pc": 6577, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_a130d1e5-d054-4505-93e7-141c09773362.jpg?v=1776628637", "w": 1000, "ht": 1000, "bytes": 146834, "err": null}, {"handle": "hollywood-wallpaper-commercial-wallpaper", "title": "Hollywood Hospitality", "pc": 896, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c08a6c70594d67a16a0a1dc181c4af8e.jpg?v=1776628244", "w": 390, "ht": 390, "bytes": 37043, "err": null}, {"handle": "hollywood-sunset-collection", "title": "Hollywood Sunset Vinyl Collection", "pc": 243, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cassina-swatch-CAS124-700x685_f59ef1cc-cd3c-41b3-8c0e-7e4668a7ec3a.jpg?v=1776627452", "w": 534, "ht": 534, "bytes": 85664, "err": null}, {"handle": "hollywood-type-2-wallpaper-collection", "title": "Hollywood Type 2", "pc": 5854, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_df7b3ca1-5a6b-43b0-b939-a5a4fbac0f8d.jpg?v=1776628634", "w": 500, "ht": 500, "bytes": 114424, "err": null}, {"handle": "quick-ship-hospitality", "title": "Hospitality Resource", "pc": 98, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/53862597b5963c0d410d47ddaf99615b.jpg?v=1774494878", "w": 3024, "ht": 4032, "bytes": 571933, "err": null}, {"handle": "hygge-and-west", "title": "Hygge & West Wallcoverings", "pc": 11, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2021-10-08at9.28.59AM.png?v=1783290427", "w": 1170, "ht": 1160, "bytes": 1885868, "err": null}, {"handle": "ikat-wallpaper", "title": "Ikat", "pc": 922, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DBW8002-A_ab7f74d3-ac35-4057-a40c-7fae6f38b4ce.jpg?v=1776628032", "w": 1000, "ht": 1333, "bytes": 486491, "err": null}, {"handle": "ikat", "title": "Ikat Collection", "pc": 922, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/China_Seas_DWC_Bali-Hai-Sage-Green-on-Tinted-Linen-2020L-114_jpg_d850b6b1-031f-48dc-9a8a-ffd3a68a36d3.jpg?v=1776433834", "w": 1000, "ht": 1333, "bytes": 486491, "err": null}, {"handle": "outdoor-fabric", "title": "Indoor / Outdoor Performance", "pc": 633, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SPARTAN_11_d8787904-817c-41dc-ae84-3756ede5e174.jpg?v=1776628469", "w": 1200, "ht": 1200, "bytes": 609766, "err": null}, {"handle": "industrial", "title": "Industrial Style", "pc": 800, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21180_interior1_fe0e3371-a6e0-4eb1-b859-7c0dab308d5a.jpg?v=1783290428", "w": 1600, "ht": 1361, "bytes": 270401, "err": null}, {"handle": "innovations", "title": "Innovations", "pc": 389, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Fuse-2.jpg?v=1783290430", "w": 1741, "ht": 1200, "bytes": 702349, "err": null}, {"handle": "innovations-usa", "title": "Innovations USA", "pc": 389, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Fuse-2_d70d6a00-9134-4c93-8075-a117ff559ad4.jpg?v=1783290432", "w": 1741, "ht": 1200, "bytes": 702349, "err": null}, {"handle": "innovative", "title": "Innovative", "pc": 3192, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105_7dfb1cba-205c-4e8d-8cdb-4a8e9b15ae22.png?v=1776628051", "w": 383, "ht": 317, "bytes": 172716, "err": null}, {"handle": "japonisme-wallpaper", "title": "Japonisme", "pc": 622, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/aab68be9e31e669d06b49aabac772adf.gif?v=1776627988", "w": 330, "ht": 430, "bytes": 122760, "err": null}, {"handle": "jeffrey-stevens", "title": "Jeffrey Stevens", "pc": 6178, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1a303c2255050787cea5043bf5baf9c1_a32cd4d7-ddc3-4d71-88b0-5e7d126ef1b6.jpg?v=1776628128", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "jeffrey-stevens-wallpaper-collection", "title": "Jeffrey Stevens - Budget Friendly", "pc": 6103, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2e96a9017ae5423aac06355db0831666_0c5821f1-81d7-434f-b222-c8695e100315.jpg?v=1776628125", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "juliet-travers-european-classics", "title": "Juliet Travers European Classics", "pc": 506, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cf617677ba8601c0ea684a74a07a8278.jpg?v=1776627991", "w": 850, "ht": 1105, "bytes": 205242, "err": null}, {"handle": "jute", "title": "Jute Wallcoverings", "pc": 347, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/tattiana-tightweave-jute-grs-9062-cropped.jpg?v=1776433866", "w": 720, "ht": 720, "bytes": 112731, "err": null}, {"handle": "kelly-wearstler-collections", "title": "Kelly Wearstler Collection", "pc": 484, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWF-3758_118_26cd6ee6-bd6f-4f7a-90dc-51aee062618a.jpg?v=1774040008", "w": 1200, "ht": 1200, "bytes": 466679, "err": null}, {"handle": "kids-nursery", "title": "Kids Nursery", "pc": 205, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WalkersRoom-2_0c69d58d-019d-41c9-ab86-f5f7acfc5747.jpg?v=1783290435", "w": 4986, "ht": 3324, "bytes": 1271496, "err": null}, {"handle": "kismet", "title": "Kismet", "pc": 100, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/T16241_349d16aa-dd04-4629-bbad-c72194379240.jpg?v=1776627648", "w": 2520, "ht": 2520, "bytes": 1192718, "err": null}, {"handle": "koroseal", "title": "Koroseal", "pc": 2548, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK.jpg?v=1783290437", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "koroseal-wallpaper-collection", "title": "Koroseal Wallcovering Collection", "pc": 2548, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_3f08c1bd-729a-4926-a20e-4f9e01aacc53.jpg?v=1783290438", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "kravet", "title": "Kravet", "pc": 5409, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/30514_16_dc123fca-64b3-4033-83a8-a2655a28ba04.jpg?v=1776628533", "w": 400, "ht": 400, "bytes": 94038, "err": null}, {"handle": "kravet-coillections", "title": "Kravet Collections", "pc": 4882, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114_2016033_CS_full_repeat.jpg?v=1776628529", "w": 1200, "ht": 1200, "bytes": 262114, "err": null}, {"handle": "kravet-couture-1", "title": "Kravet Couture", "pc": 649, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JMW1023_41_394e7537-703f-4051-a873-d7c6e22952cf.jpg?v=1774039836", "w": 1200, "ht": 1200, "bytes": 484821, "err": null}, {"handle": "kravet-design", "title": "KRAVET DESIGN", "pc": 2889, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/30514_16_98b327d2-66da-4235-a349-c99c88223c0e.jpg?v=1776628526", "w": 400, "ht": 400, "bytes": 94038, "err": null}, {"handle": "la-walls", "title": "LA Walls", "pc": 743, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0060313_anna-dark-blue-fern-trail-wallpaper.jpg?v=1782494724", "w": 1200, "ht": 1200, "bytes": 464549, "err": null}, {"handle": "lawalls-collection", "title": "LA Walls Collection", "pc": 744, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c850bf77abc6469437568741e78831e7.jpg?v=1776627476", "w": 329, "ht": 402, "bytes": 41037, "err": null}, {"handle": "lattice-and-trellis-patterns", "title": "Lattice & Trellis", "pc": 4062, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3547fe79068d43fd86725b501b7c7f01_c481cce8-73fe-4328-bb71-780e8d5b2566.jpg?v=1776628591", "w": 720, "ht": 960, "bytes": 91597, "err": null}, {"handle": "lattice-wallpaper", "title": "Lattice Wallcovering", "pc": 2589, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_9ed3ae7f-d530-4ca1-a88c-3b840cd0e7d0.jpg?v=1783290442", "w": 1400, "ht": 1120, "bytes": 95079, "err": null}, {"handle": "lattice", "title": "Lattice Wallcoverings", "pc": 2591, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/sexy-sequin-wallcovering--silver-mirror_161dfd81-3134-498e-a6cf-9f7188cf989b.jpg?v=1776433799", "w": 339, "ht": 384, "bytes": 61690, "err": null}, {"handle": "lattices", "title": "Lattices", "pc": 1340, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3547fe79068d43fd86725b501b7c7f01_d61c3c62-6da7-4f1d-b085-c06039a39479.jpg?v=1776628281", "w": 720, "ht": 960, "bytes": 91597, "err": null}, {"handle": "laura-ashley", "title": "Laura Ashley", "pc": 264, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-07-22at11.27.50AM.png?v=1776627610", "w": 932, "ht": 910, "bytes": 864630, "err": null}, {"handle": "le-embossed-croc-vinyl", "title": "Le Embossed Croc Vinyl", "pc": 70, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2B4E01E6-864B-4EA5-ABCD-D70B033A60C9.jpg?v=1776627656", "w": 654, "ht": 654, "bytes": 99216, "err": null}, {"handle": "lee-jofa", "title": "Lee Jofa", "pc": 3711, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-2020212-916-0_faa394db-ff3c-4c50-addd-fe017b1f1c55.jpg?v=1783290444", "w": 1024, "ht": 1024, "bytes": 245115, "err": null}, {"handle": "leed-walls-1", "title": "LEED Eco-Walls", "pc": 1561, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XWA-52000-cleaned_6f4c7bc4-b13e-4ccc-996d-e9187a738299.jpg?v=1776627960", "w": 800, "ht": 800, "bytes": 122111, "err": null}, {"handle": "leed-walls", "title": "LEED Walls", "pc": 129, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XWA-52000-cleaned.jpg?v=1776627957", "w": 800, "ht": 800, "bytes": 122111, "err": null}, {"handle": "lillian-august-grasscloth-binder", "title": "Lillian August Grasscloth Binder", "pc": 98, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN11891_a544837f-9aad-4628-b0c8-48ec762172f7.jpg?v=1774040389", "w": 1200, "ht": 1200, "bytes": 244878, "err": null}, {"handle": "linen", "title": "Linen Wallcoverings", "pc": 11163, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_47f726bb-b0ee-4ef9-899b-aba46378337f.jpg?v=1776433796", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "living-with-art", "title": "Living with Art", "pc": 101, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW51116-A_27f46026-e187-4982-9458-786496e3d400.jpg?v=1776627503", "w": 1304, "ht": 1000, "bytes": 316333, "err": null}, {"handle": "lizzo-1", "title": "LIZZO", "pc": 42, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LZW-30181_06_9a70d189-80a1-4a95-b8e4-e8ef2106d224.jpg?v=1774040347", "w": 1200, "ht": 1200, "bytes": 558353, "err": null}, {"handle": "lorenzo-castillo-collection", "title": "Lorenzo Castillo Collection", "pc": 694, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/sofa_adam_rojo_decoracion_gastonydaniela_lorenzocastillo_telas_rayas_tapizado.jpg?v=1776628241", "w": 1200, "ht": 1200, "bytes": 444288, "err": null}, {"handle": "lorenzo-castillo-iv", "title": "LORENZO CASTILLO IV", "pc": 93, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW5469_009_4d983f59-580f-4e95-8023-5967cec36540.jpg?v=1774040402", "w": 1200, "ht": 1200, "bytes": 749099, "err": null}, {"handle": "lorenzo-castillo-v", "title": "LORENZO CASTILLO V", "pc": 189, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW1018_002_cee0c2d1-8ef9-41ae-88af-925751a16f6c.jpg?v=1774040212", "w": 1200, "ht": 1200, "bytes": 444288, "err": null}, {"handle": "lounge", "title": "Lounge", "pc": 202, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-santa-fe-desir-sauvage-elitis_bce9756f-3b3a-4197-8fee-54fb2c473d9f.jpg?v=1783290446", "w": 1024, "ht": 1024, "bytes": 158824, "err": null}, {"handle": "luxe-retreat", "title": "Luxe Retreat", "pc": 107, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN10502-A_9669d092-0379-49f4-8cb8-57c01014f584.jpg?v=1783290282", "w": 1383, "ht": 1000, "bytes": 267974, "err": null}, {"handle": "luxuria-fine-textile-wallcoverings-by-phillipe-romano", "title": "Luxuria Fine Textile Wallcoverings by Phillipe Romano", "pc": 1303, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/desima_room.jpg?v=1776627884", "w": 525, "ht": 525, "bytes": 51723, "err": null}, {"handle": "m-o-wallpaper-brands", "title": "M-O", "pc": 3125, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW100-01-abaca-alabaster_02_dcc52a77-b56e-4ec9-92b4-d04a151e4cf6.jpg?v=1776628585", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "madagascar-cloth", "title": "Madagascar Raffia Wallcovering | Mill Direct", "pc": 357, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Milano_Madagascar_20016_Madagascar-Set10_1_1.jpg?v=1776628582", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "madeinitaly", "title": "Made in Italy Wallcovering", "pc": 3418, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5260_43W7631-01_1dc4f89c-380a-4274-9aba-0d883c631393.jpg?v=1776628631", "w": 1000, "ht": 1000, "bytes": 131397, "err": null}, {"handle": "malibu-wallpaper", "title": "Malibu", "pc": 4513, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AH40905_91979b3e-9192-40c2-9a85-0d3cc9d6c461.jpg?v=1776627902", "w": 500, "ht": 467, "bytes": 55336, "err": null}, {"handle": "malibu-knits", "title": "Malibu Knits", "pc": 5, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PhillipJeffriesLogo_6f09efd8-39c3-4300-9423-055a83fe7af0.png?v=1774494664", "w": 1332, "ht": 734, "bytes": 106701, "err": null}, {"handle": "malibu-walls-1", "title": "Malibu Wallcovering Collection | Budget Friendly", "pc": 121, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TS81802-A.jpg?v=1776627596", "w": 500, "ht": 467, "bytes": 55336, "err": null}, {"handle": "marble-wallcoverings", "title": "Marble Wallcoverings", "pc": 434, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TTN-1506_2_99d68e30-a0ca-45a2-90de-319e7e155e1d.jpg?v=1776433819", "w": 940, "ht": 1230, "bytes": 281496, "err": null}, {"handle": "marburg", "title": "Marburg", "pc": 121, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/marburg-loft-superior-2.jpg?v=1776627602", "w": 1400, "ht": 1280, "bytes": 632370, "err": null}, {"handle": "marimekko-exclusive-wallcoverings", "title": "Marimekko Exclusive Wallcoverings", "pc": 36, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/23367X_97020014-5f2b-47a5-8263-c8749a926a72.jpg?v=1776627592", "w": 992, "ht": 992, "bytes": 222923, "err": null}, {"handle": "mark-alexander", "title": "Mark Alexander", "pc": 2, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW139-02-abac-patchwork-wallcovering-gris_01_1a4fd18b-fa68-49d0-bc05-37ca212b1523.jpg?v=1776627567", "w": 720, "ht": 720, "bytes": 56172, "err": null}, {"handle": "martyn-lawrence-bullard", "title": "Martyn Lawrence Bullard", "pc": 120, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2d765d423c431592d36f170c3cb6c2a2_db90db2a-cf76-45c8-b48a-7905fbf411ec.jpg?v=1774040320", "w": 960, "ht": 1396, "bytes": 293146, "err": null}, {"handle": "maximalist-wallpaper", "title": "Maximalist", "pc": 1055, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Showgirls_MetallicPink_Black.jpg?v=1776627966", "w": 3543, "ht": 3543, "bytes": 1933644, "err": null}, {"handle": "maya-romanoff", "title": "Maya Romanoff Wallcovering", "pc": 690, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-bd-1521-maya-50165_32b4cab4-1e6c-43ae-9002-f44ccc872938.jpg?v=1783290451", "w": 1056, "ht": 992, "bytes": 183968, "err": null}, {"handle": "medallion-wallpaper", "title": "Medallion", "pc": 522, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/d52faced84a1aa136bf23de00017adf7_f86f4c9f-3359-410d-a274-bdaa5c4ef046.jpg?v=1776628019", "w": 800, "ht": 800, "bytes": 412309, "err": null}, {"handle": "medallion-wallcoverings", "title": "Medallion Collection", "pc": 522, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e0b07f9db9cf672562f40714d09a70f_2645af51-cb45-4f83-95cf-e77278e6b5b5.jpg?v=1783290453", "w": 1600, "ht": 1200, "bytes": 288743, "err": null}, {"handle": "medallions", "title": "Medallions", "pc": 202, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WUE2001_WT_1443efc6-87de-4fbe-8e30-75f1f4b6a8b8.jpg?v=1774494860", "w": 1200, "ht": 1200, "bytes": 119381, "err": null}, {"handle": "mediterranean-wallpaper", "title": "Mediterranean", "pc": 228, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MTG_403567_WP20055_-_Rufous_Tile_9ac90288-6c5a-4126-8501-cab11861e4ee.jpg?v=1776627754", "w": 480, "ht": 404, "bytes": 76035, "err": null}, {"handle": "metallic-wallpaper-collection", "title": "Metallic", "pc": 5212, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GleamingGlambeadsWhiteandSilverGlassBeadWallpaper.jpg?v=1776628432", "w": 500, "ht": 500, "bytes": 76954, "err": null}, {"handle": "shiny-mylar-mirror", "title": "Metallic Mylar", "pc": 145, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_2e24bbd7-8d7e-47a4-b2fd-f183310d3aed.jpg?v=1783290582", "w": 1400, "ht": 1120, "bytes": 118566, "err": null}, {"handle": "metallic-vinyl", "title": "Metallic Vinyl Wallcovering Collection", "pc": 735, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_f464f487-72e7-4814-aab5-643d66db211f.jpg?v=1776628048", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "metallic-wallpaper-collections", "title": "Metallic Wallcovering Collection| Designer", "pc": 24047, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/aforestfir_room_5cc7060f-0dfb-4ca2-bd46-e578c1240b84.jpg?v=1776628493", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "mica", "title": "Mica Wallcoverings", "pc": 634, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/86c999e57ca94ffa6d42d7b55020cc1c.jpg?v=1776433891", "w": 497, "ht": 332, "bytes": 53931, "err": null}, {"handle": "milton-and-king", "title": "Milton & King", "pc": 2, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/great-oak-wallpaper-2.jpg?v=1776627542", "w": 1100, "ht": 1320, "bytes": 139863, "err": null}, {"handle": "mind-the-gap", "title": "Mind the Gap\u2122", "pc": 1261, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2025-11-21at2.05.32PM.png?v=1776627837", "w": 1354, "ht": 1640, "bytes": 4537549, "err": null}, {"handle": "mini-moderns-wallpaper", "title": "Mini Moderns", "pc": 112, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/playrecordMUsitu_room_a8af0672-f8d4-4a0f-9148-4e5cbf697ede.jpg?v=1783290459", "w": 3744, "ht": 5564, "bytes": 828622, "err": null}, {"handle": "minimalist-1", "title": "Minimalist", "pc": 12573, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fgb-102-sample-faux-glass-bead-wallcovering_c5fe2966-1c71-4cee-901f-a52530ae15b9.jpg?v=1776628453", "w": 900, "ht": 900, "bytes": 325694, "err": null}, {"handle": "minimalist", "title": "Minimalist Chic", "pc": 3135, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c64192a6f12a22695d2b1009f7d8b7df.jpg?v=1776628399", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "missoni", "title": "Missoni", "pc": 231, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ande-wp_b5770642-5406-4299-bec9-bb41d65e0dd0.jpg?v=1774495293", "w": 2000, "ht": 2000, "bytes": 607515, "err": null}, {"handle": "missoni-home", "title": "Missoni Home", "pc": 119, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ande-wp.jpg?v=1774494801", "w": 2000, "ht": 2000, "bytes": 607515, "err": null}, {"handle": "modern-hamptons-1", "title": "Modern Hamptons", "pc": 1267, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_f327f7c2-4f53-4ad7-9366-509b4a066d90.jpg?v=1783290463", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "modern-originals-1", "title": "Modern Originals", "pc": 53375, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_5e2926be-bc61-4817-993e-5281184e3a19.jpg?v=1783290464", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "modern-1", "title": "Modern Wallcovering", "pc": 11592, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08.jpg?v=1783290461", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "modern", "title": "Modern Wallcovering Collection", "pc": 29680, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c2c47c4d2c2bfb1520563fa4a34f138c_e962ef8d-9996-489e-ac41-de411c603fcb.jpg?v=1776628481", "w": 575, "ht": 740, "bytes": 200640, "err": null}, {"handle": "moody-dark", "title": "Moody Dark", "pc": 11047, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_fd573d33-1675-48da-bee3-dbb977562955.jpg?v=1783290469", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "mulberry-wallcoverings", "title": "Mulberry", "pc": 630, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-WFLO-910C-sample.jpg?v=1776627951", "w": 600, "ht": 869, "bytes": 119935, "err": null}, {"handle": "multi", "title": "Multi", "pc": 3373, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_c84c5bb1-fc95-4d9a-9f5c-d6ae06ccf7e8.jpg?v=1783290471", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "murals", "title": "Murals", "pc": 6381, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CH-150-MS-4T_022a31e3-3a30-4739-acfd-24975b4cb193.jpg?v=1776628337", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "murals-scenics", "title": "Murals & Scenics", "pc": 8752, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/98803-7dadb08f3f61432895f59cd5b118af21.jpg?v=1776628176", "w": 1024, "ht": 1024, "bytes": 154890, "err": null}, {"handle": "et-cie-wall-panels", "title": "Murals, Chinoiserie & Scenics", "pc": 6735, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PN-300-VA-13T_649x474_5e483720-5082-4efe-a10b-2b2cae26a061.jpg?v=1776628333", "w": 1339, "ht": 1000, "bytes": 195964, "err": null}, {"handle": "mylar-wallpaper", "title": "Mylar", "pc": 137, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/csm_Avenir-Room-A204-323-15NL_fb0de2cbd8_fe26c6eb-a874-45cf-a153-f29c06422ece.jpg?v=1776628035", "w": 472, "ht": 473, "bytes": 48623, "err": null}, {"handle": "cork", "title": "Natural Cork", "pc": 1443, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_ba16ec43-f1cb-4e1e-b88b-dee0be51be6d.jpg?v=1783290356", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "grasscloth", "title": "Natural Grasscloth", "pc": 14927, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w3036-21.jpg?v=1776628625", "w": 2048, "ht": 1589, "bytes": 586806, "err": null}, {"handle": "natural-paint", "title": "Natural Paint", "pc": 26, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8628cb0b4037fea81c1544f85021859b_22e4706d-e231-4496-82bc-2e4d7a7884fa.jpg?v=1774495687", "w": 379, "ht": 342, "bytes": 9111, "err": null}, {"handle": "naturally-glamorous", "title": "Naturally Glamorous", "pc": 185, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/HLW-73008-cleaned.jpg?v=1776628621", "w": 800, "ht": 800, "bytes": 245518, "err": null}, {"handle": "navy-wallcoverings", "title": "Navy Wallcoverings", "pc": 6007, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W1028_Aztec_Install_0_0cfebebb-9779-40a6-9065-0764c0f7c2a6.jpg?v=1783290473", "w": 3000, "ht": 1715, "bytes": 1194040, "err": null}, {"handle": "neoclassical-wallpaper", "title": "Neoclassical", "pc": 371, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c70373312343c03fb40ed419463606ed.jpg?v=1776627761", "w": 800, "ht": 800, "bytes": 201583, "err": null}, {"handle": "new-arrivals", "title": "New Arrivals at Designer", "pc": 2481, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/happy-hour-day_e05d76e2-583f-46e0-b331-fc9cc36247e5.webp?v=1776627833", "w": 1000, "ht": 1000, "bytes": 251934, "err": null}, {"handle": "newmor-wallcoverings", "title": "Newmor", "pc": 542, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/NEWMOR_82391b06-04ec-4393-b48a-97e322ed4cf4.jpg?v=1776433904", "w": 464, "ht": 247, "bytes": 11275, "err": null}, {"handle": "newmor-wallcovering", "title": "Newmor Wallcovering", "pc": 542, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/NEWMOR_175a390f-0620-4d31-a290-4fed77565799.jpg?v=1774495586", "w": 464, "ht": 247, "bytes": 11275, "err": null}, {"handle": "nina-campbell", "title": "Nina Campbell", "pc": 901, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/beaurivage_ls_wp_5eaa37b4-7e12-44ec-90d5-988bba84a125.webp?v=1783290475", "w": 884, "ht": 760, "bytes": 137648, "err": null}, {"handle": "nlxl", "title": "NLXL", "pc": 10, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/36e2f81fed848c76197f640e106da259_16e700d8-8036-412e-9193-7e512b2e673a.jpg?v=1776627569", "w": 737, "ht": 1043, "bytes": 109251, "err": null}, {"handle": "nobilis-wallcoverings", "title": "Nobilis", "pc": 179, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SVR34.jpg?v=1774040222", "w": 1200, "ht": 1200, "bytes": 238414, "err": null}, {"handle": "non-woven", "title": "Non-Woven Wallcoverings", "pc": 18905, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_5b4594ff-b749-4ef1-9fc1-a53edbde5440.webp?v=1783290477", "w": 1600, "ht": 1559, "bytes": 228754, "err": null}, {"handle": "novasuede", "title": "Novasuede", "pc": 178, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/novasuede_-fabric-wallcovering-amber-bedroom.jpg?v=1783290479", "w": 1024, "ht": 914, "bytes": 129333, "err": null}, {"handle": "novasuede\u2122-microfiber-suede", "title": "Novasuede\u2122 Microfiber Suede", "pc": 178, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/novasuede_-fabric-wallcovering-amber-bedroom_651ff30c-a2af-453c-876d-b9feb562dbc9.jpg?v=1783290480", "w": 1024, "ht": 914, "bytes": 129333, "err": null}, {"handle": "novelty", "title": "Novelty", "pc": 1478, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/BelladonnaLight_Wallpaper_02.jpg?v=1783290482", "w": 5208, "ht": 3543, "bytes": 3780847, "err": null}, {"handle": "novelty-wallpaper-collection", "title": "Novelty Collection", "pc": 4518, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5005032-2.jpg?v=1776628287", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "ogee-wallpaper", "title": "Ogee", "pc": 309, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-7027-sample_d683027a-2d9e-49ce-b55a-42ccc371334f.jpg?v=1776627748", "w": 358, "ht": 499, "bytes": 31996, "err": null}, {"handle": "ombre", "title": "Ombre", "pc": 400, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R18753_interior1.jpg?v=1783290484", "w": 1600, "ht": 1200, "bytes": 331929, "err": null}, {"handle": "orange", "title": "Orange Collections", "pc": 6452, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW100-10-abaca-indigo_02_30750673-e139-4770-bfdf-6a8be07ac641.jpg?v=1776628475", "w": 600, "ht": 600, "bytes": 86725, "err": null}, {"handle": "orange-wallcoverings", "title": "Orange Wallcoverings", "pc": 4363, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0f1a751134e072c4fc1a2687139cce46.jpg?v=1776433748", "w": 600, "ht": 600, "bytes": 86725, "err": null}, {"handle": "vintage-patterns-on-demand", "title": "Original Vintage Wallcoverings", "pc": 794, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R12731_interior3.jpg?v=1782749247", "w": 1600, "ht": 1421, "bytes": 286359, "err": null}, {"handle": "osborne-little", "title": "Osborne & Little", "pc": 1041, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-EUR-71118-Sample.jpg?v=1776628354", "w": 2362, "ht": 3374, "bytes": 868659, "err": null}, {"handle": "p-z-wallpapers-by-designer", "title": "P-Z", "pc": 27608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5005032-2_3d3030cb-5b2f-4e28-8ebe-f0624d967409.jpg?v=1776628426", "w": 4000, "ht": 4000, "bytes": 2116769, "err": null}, {"handle": "paint", "title": "Paint", "pc": 1272, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_642c965a-c828-47a2-a1a6-b7646e5906c0.jpg?v=1783290489", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "paintable", "title": "Paintable Texture", "pc": 144, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1956FR-3-Amelia-bathroom-shot_b9dfa7ba-b379-473e-ab5c-6d9c867995a3.jpg?v=1776627674", "w": 329, "ht": 402, "bytes": 41037, "err": null}, {"handle": "paisley-wallpaper", "title": "Paisley", "pc": 747, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a_3243fe58-4720-4dc5-9576-ad0d46258b5d.jpg?v=1776628170", "w": 438, "ht": 502, "bytes": 54259, "err": null}, {"handle": "paisley", "title": "Paisley Collection", "pc": 747, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a.jpg?v=1776433735", "w": 438, "ht": 502, "bytes": 54259, "err": null}, {"handle": "paisleys-1", "title": "Paisleys", "pc": 799, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a_2bb4756b-10fc-4afe-b3f2-2aa9748e5188.jpg?v=1776628167", "w": 438, "ht": 502, "bytes": 54259, "err": null}, {"handle": "pantone-color-of-the-year-2022-veri-periwinkle", "title": "Pantone Color of the Year 2022 - Veri Periwinkle", "pc": 303, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DA60104-A.jpg?v=1783290491", "w": 1800, "ht": 1200, "bytes": 200507, "err": null}, {"handle": "paolo-moschino-collections", "title": "Paolo Moschino Collections", "pc": 288, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-Arezzo---Bracken-Olive-Green-By-Lee-Jofa_cde5cbfd-46cf-4f6a-bbfb-6d0d3aa2fa03.png?v=1783290493", "w": 1024, "ht": 1024, "bytes": 1537242, "err": null}, {"handle": "paper-backed-cotton-walls", "title": "Paper Backed Cotton Walls", "pc": 1289, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_03361fc6-c372-4881-a5b6-b150c742d830.jpg?v=1783290495", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "paper", "title": "Paper Wallcoverings", "pc": 29832, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_7b2c88ee-1c06-4063-8756-7fb533746e9a.jpg?v=1776433805", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "fine-paper", "title": "Paperweave", "pc": 952, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SG6039.jpg?v=1776627711", "w": 918, "ht": 807, "bytes": 240230, "err": null}, {"handle": "papis-lovejoy", "title": "Papis Loveday Wallcovering Collection", "pc": 116, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2025-10-22_at_10.49.24_AM.png?v=1761155391", "w": 1922, "ht": 612, "bytes": 2065952, "err": null}, {"handle": "pattern-design-lab-2", "title": "Pattern Design Lab", "pc": 1176, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ribbon_room_setting.jpg?v=1776627830", "w": 1769, "ht": 1686, "bytes": 398440, "err": null}, {"handle": "patterns", "title": "Patterns", "pc": 78384, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_c42d601c-e943-499e-9c44-afad0b859bf8.webp?v=1783290497", "w": 1600, "ht": 1305, "bytes": 198761, "err": null}, {"handle": "paul-montgomery-all-products", "title": "Paul Montgomery - All Products", "pc": 1538, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Adriana_Roomet2_1090px_x_1090px__22815.1710169005.jpg?v=1776628721", "w": 670, "ht": 904, "bytes": 230299, "err": null}, {"handle": "paul-montgomery-murals", "title": "Paul Montgomery Murals", "pc": 443, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Updated_Roomset_-_Derbyshire_Antiqued__33744.1710169007_27811bb9-a855-4d53-8fb3-853b63f2c8db.jpg?v=1776627575", "w": 997, "ht": 1280, "bytes": 384685, "err": null}, {"handle": "peel-stick", "title": "Peel & Stick", "pc": 551, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/multi-warm-kiki-shapes-peel-and-stick-3_56509c5e-2a6d-4216-bbf8-6bc67688bcc4.jpg?v=1783290499", "w": 100, "ht": 66, "bytes": 3236, "err": null}, {"handle": "peg-norriss-wallcoverings", "title": "Peg Norriss Wallcoverings", "pc": 3, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/flying-west-2_a0433b42-2dc5-4f2f-8211-f428fee846d8.jpg?v=1776627433", "w": 1200, "ht": 1200, "bytes": 67560, "err": null}, {"handle": "performance-linen-by-phillipe-romano", "title": "Performance Textile", "pc": 179, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/32db3e2a845ff876b3f1f3c7761c983f_1f743b6e-03b1-4509-8f16-3989e6c7f413.jpg?v=1783290500", "w": 800, "ht": 533, "bytes": 169003, "err": null}, {"handle": "phillipe-romano-1", "title": "Phillipe Romano", "pc": 29443, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_4463aff2-4fb6-4800-8e73-1d05a347929d.jpg?v=1783290504", "w": 1024, "ht": 914, "bytes": 194566, "err": null}, {"handle": "phillipe-romano-enlightenment", "title": "Phillipe Romano - Enlightenment", "pc": 20, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Wallcovering_PRW_920396_60247b3a-7765-41b1-beb1-e000288ed220.jpg?v=1774494275", "w": 574, "ht": 300, "bytes": 47543, "err": null}, {"handle": "phillipe-romano-faux-leather", "title": "Phillipe Romano - Faux Leather", "pc": 19, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TR-VT-01_0f374878-69d0-4656-9fc2-ba0b4e44bca4.jpg?v=1774493814", "w": 358, "ht": 540, "bytes": 66343, "err": null}, {"handle": "phillipe-romano-metro-collection", "title": "Phillipe Romano - Metro Collection", "pc": 100, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WBB5026_WT_b972c93b-9767-45d2-a804-84aa0f1f0c81.jpg?v=1774040384", "w": 1200, "ht": 1200, "bytes": 118055, "err": null}, {"handle": "phillipe-romano-monument-collection", "title": "Phillipe Romano - Monument Collection", "pc": 38, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0aa27704811998ea44f5411dbaae7d76_566f6b7e-86b0-4874-b45c-ab7fb258e8f0.jpg?v=1774041172", "w": 500, "ht": 500, "bytes": 47590, "err": null}, {"handle": "phillipe-romano-multi-use-fabrics", "title": "Phillipe Romano - Multi-Use", "pc": 93, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM112-2298.jpg?v=1774040399", "w": 2000, "ht": 2800, "bytes": 1553926, "err": null}, {"handle": "phillipe-romano-outdoor-faux-leather", "title": "Phillipe Romano - Outdoor Faux Leather", "pc": 19, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papalo-paper-grasscloth-prg-71087-bedroom.jpg?v=1783290284", "w": 1088, "ht": 857, "bytes": 266520, "err": null}, {"handle": "phillipe-romano-pattern-upholstery", "title": "Phillipe Romano - Pattern Upholstery", "pc": 34, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-antonia-basketweave-prg-47836-bedroom.jpg?v=1783290286", "w": 992, "ht": 943, "bytes": 121678, "err": null}, {"handle": "phillipe-romano-print-basecloths", "title": "Phillipe Romano - Print Basecloths", "pc": 27, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/T2-BL-11_a321a15d-f92e-4833-81e7-1559488db75c.jpg?v=1774041641", "w": 358, "ht": 540, "bytes": 63271, "err": null}, {"handle": "phillipe-romano-sante-collection", "title": "Phillipe Romano - Sant\u00e9 Collection", "pc": 32, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papalo-paper-grasscloth-prg-71087-bedroom_f582a460-15b2-4d8e-8387-eb3529d0fdb7.jpg?v=1783290288", "w": 1088, "ht": 857, "bytes": 266520, "err": null}, {"handle": "phillipe-romano-texture-upholstery", "title": "Phillipe Romano - Texture Upholstery", "pc": 100, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8b12793f47ef6173433fbae863be0486_fe34396a-6dd9-48b2-86cd-9d8f1f3c68dc.jpg?v=1774040387", "w": 500, "ht": 500, "bytes": 51223, "err": null}, {"handle": "phillipe-romano-wilderie-collection", "title": "Phillipe Romano - Wilderie Collection", "pc": 30, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-antonia-basketweave-prg-47836-bedroom_5cf2a608-55ea-45e9-bdbd-a5c090ed7354.jpg?v=1783290289", "w": 992, "ht": 943, "bytes": 121678, "err": null}, {"handle": "phillipe-romano-acoustical", "title": "Phillipe Romano Acoustical", "pc": 20, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/caron-tabac-wallpaper-xa6-66445-bedroom_29022165-503c-4cad-997a-9f3abbba69f5.jpg?v=1783290506", "w": 1120, "ht": 828, "bytes": 87005, "err": null}, {"handle": "phillipe-romano-asian-essence", "title": "Phillipe Romano ASIAN ESSENCE", "pc": 67, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WOS3471_WT_ba85ae6e-2aef-4f79-8bec-e8d28a5c4f34.jpg?v=1774040611", "w": 593, "ht": 590, "bytes": 133293, "err": null}, {"handle": "phillipe-romano-commercial", "title": "Phillipe Romano Commercial", "pc": 15982, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom.jpg?v=1783290507", "w": 1024, "ht": 914, "bytes": 194566, "err": null}, {"handle": "phillipe-romano-vinyls", "title": "Phillipe Romano Durable Vinyl", "pc": 1590, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2bd76bfac054ded030ad269641d7c683_fa24e69e-f6f2-4ed3-b60d-fdd9c0708b2d.jpg?v=1776628233", "w": 1000, "ht": 1000, "bytes": 142546, "err": null}, {"handle": "phillipe-romano-elegante", "title": "Phillipe Romano Elegante Collection", "pc": 121, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WTE6045_WT_f0f33024-2f0e-40f1-bbad-53ae3f2c721c.jpg?v=1774040317", "w": 593, "ht": 590, "bytes": 55945, "err": null}, {"handle": "phillipe-romano-essential-textures", "title": "Phillipe Romano Essential Textures", "pc": 1024, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/12edb155a6a9af20515cc417f1d2caff_8be81f42-fabe-413a-8804-a0ce35f0ba9a.jpg?v=1776628093", "w": 500, "ht": 500, "bytes": 40106, "err": null}, {"handle": "phillipe-romano-european-prints", "title": "Phillipe Romano European Prints", "pc": 227, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/pippy-s-peacock-wallpaper-silver-room-setting-pea-53619-bedroom_69511162-9bd3-4049-803d-90814ca539ea.jpg?v=1783290509", "w": 1088, "ht": 857, "bytes": 189045, "err": null}, {"handle": "phillipe-romano-exclusive", "title": "Phillipe Romano Exclusive", "pc": 1055, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104562_2_45bcb57a-262e-45e4-8642-782cb1b82993.jpg?v=1776627533", "w": 1000, "ht": 1000, "bytes": 115109, "err": null}, {"handle": "phillipe-romano-fabrics", "title": "Phillipe Romano Fabrics", "pc": 169, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e4a2a1e502187ba4650e797610a9eab3_6e20047c-70f6-47c9-8a48-1215d0240a5c.jpg?v=1774495617", "w": 505, "ht": 510, "bytes": 55982, "err": null}, {"handle": "phillipe-romano-faux-leathers-upholstery-more", "title": "Phillipe Romano Faux Leathers Upholstery & More", "pc": 1229, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/f781f66f04620d7619aca4a3776c1524.jpg?v=1776627976", "w": 601, "ht": 429, "bytes": 125980, "err": null}, {"handle": "phillipe-romano-faux-metals-collection", "title": "Phillipe Romano Faux Metals Collection", "pc": 192, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/red-circles-on-silver-mylar-myl-91011-bedroom.jpg?v=1783290511", "w": 1184, "ht": 771, "bytes": 141506, "err": null}, {"handle": "phillipe-romano-fine-textures", "title": "Phillipe Romano Fine Textures", "pc": 1287, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_a10deb54-9257-4a29-83bd-9a7e6613cc7a.jpg?v=1783290513", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "phillipe-romano-flock", "title": "Phillipe Romano Flock", "pc": 26, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-PRNC-26701-sample.jpg?v=1776627551", "w": 662, "ht": 800, "bytes": 173726, "err": null}, {"handle": "phillipe-romano-flocked-velvet-wallpaper", "title": "Phillipe Romano Flocked Velvet", "pc": 107, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_70376a38-7546-4786-aa9f-01d250f0de0c.jpg?v=1776627694", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "phillipe-romano-grasscloth", "title": "Phillipe Romano Grasscloth", "pc": 96, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8e4ee00065405fb6f9ca6197a378dc6b.jpg?v=1774494711", "w": 792, "ht": 612, "bytes": 154794, "err": null}, {"handle": "phillipe-romano-grasses-vol-3", "title": "Phillipe Romano Grasses Vol. 3", "pc": 135, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/atlantic-raffia-prg-71017-bedroom_8630898d-d5e3-46ba-a52b-5f7dd08eaf05.jpg?v=1783290514", "w": 1088, "ht": 857, "bytes": 174898, "err": null}, {"handle": "phillipe-romano-luxe-textures", "title": "Phillipe Romano Luxe Textures", "pc": 66, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/placido-pleated-grasscloth-dwt-54008-bedroom_5ae4fd5d-6c0a-4b38-882c-b4ee18b1fd0d.jpg?v=1783290516", "w": 1024, "ht": 914, "bytes": 120305, "err": null}, {"handle": "phillipe-romano-metals-1", "title": "Phillipe Romano Metals", "pc": 167, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/red-circles-on-silver-mylar-myl-91011-bedroom_88687207-0f5f-452d-a9a3-e97b723d5b4d.jpg?v=1783290518", "w": 1184, "ht": 771, "bytes": 141506, "err": null}, {"handle": "phillipe-romano-naturals", "title": "Phillipe Romano Naturals", "pc": 3127, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_1ea7a5eb-d181-4000-ab83-12b8c8648cb5.jpg?v=1783290520", "w": 1024, "ht": 914, "bytes": 194566, "err": null}, {"handle": "phillipe-romano-prints-1", "title": "Phillipe Romano Prints", "pc": 371, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/9e32503c0dc09f5cf4102ff910db4523_607ad4ff-e555-4ad4-a0d6-7b0742a22239.jpg?v=1774495628", "w": 600, "ht": 600, "bytes": 110396, "err": null}, {"handle": "phillipe-romano-screen-printed-fabric", "title": "Phillipe Romano Screen Printed Fabric", "pc": 73, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/KA-07_80623b41-00b1-4b2f-a764-93d670717774.jpg?v=1774040522", "w": 1400, "ht": 1178, "bytes": 589310, "err": null}, {"handle": "phillipe-romano-screen-printed-wallpaper", "title": "Phillipe Romano Screen Printed Wallcoverings", "pc": 116, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bahar-Sand-for-website_f68ab69e-ab2d-4072-b3bd-46e1cd5f881f.jpg?v=1774040339", "w": 2160, "ht": 2700, "bytes": 1221689, "err": null}, {"handle": "phillipe-romano-screen-prints", "title": "Phillipe Romano Screen Prints", "pc": 116, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bahar-Sand-for-website_16329c19-c33f-408b-b80b-9b910acd9236.jpg?v=1774040341", "w": 2160, "ht": 2700, "bytes": 1221689, "err": null}, {"handle": "phillipe-romano-textures", "title": "Phillipe Romano Textures", "pc": 64, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-arezzo-gauze-pleated-wallpaper-prt-47508-living_room_cd478abd-4300-4c77-a0d1-fbdff90e6e7b.jpg?v=1783290524", "w": 1120, "ht": 828, "bytes": 153584, "err": null}, {"handle": "phillipe-romano-textures-vol-4", "title": "Phillipe Romano Textures Vol. 4", "pc": 173, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/a6315a3b91580d7d48f21c7ce79e3afe.jpg?v=1774495787", "w": 800, "ht": 800, "bytes": 292047, "err": null}, {"handle": "phillipe-romano-textures-vol-5", "title": "Phillipe Romano Textures Vol. 5", "pc": 192, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Kharga_1_Roomshot_Web_LR-og_c02263b2-c098-4d4d-8720-f8f2f43b9f6e.jpg?v=1783290526", "w": 1200, "ht": 630, "bytes": 156394, "err": null}, {"handle": "phillipe-romano-type-2-vinyls", "title": "Phillipe Romano Type 2 Vinyls", "pc": 928, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Wallcovering_PRW_920340_2536aa47-0532-4fdc-9355-7cf1cca0d74e.jpg?v=1776627607", "w": 900, "ht": 900, "bytes": 150416, "err": null}, {"handle": "phillipe-romano-ultimo", "title": "Phillipe Romano Ultimo", "pc": 20, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w7615-01_dagpikpxt7lujlu0.jpg?v=1776627467", "w": 3024, "ht": 3024, "bytes": 1417373, "err": null}, {"handle": "phillipe-romano-vegan-leather", "title": "Phillipe Romano Vegan Leather", "pc": 969, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ee691103b0de680cc78fe68853e2fbd6_5b59bb87-f2f8-40b4-a008-e9987a7200ff.png?v=1783290527", "w": 1024, "ht": 1024, "bytes": 1321506, "err": null}, {"handle": "phillipe-romano-velvet-walls", "title": "Phillipe Romano Velvet Walls", "pc": 33, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104563_2_1d93aca8-66fc-4b9d-95eb-cbd588430dad.jpg?v=1783290529", "w": 1024, "ht": 1024, "bytes": 183977, "err": null}, {"handle": "phillipe-romano-vinyls-1", "title": "Phillipe Romano Vinyls", "pc": 1390, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/16a255c65a92fc906a8d462233b16bb7.jpg?v=1774495209", "w": 1000, "ht": 1000, "bytes": 337661, "err": null}, {"handle": "phillipe-romano-vol-4", "title": "Phillipe Romano Vol. 4", "pc": 131, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bella-calabria-mica-chevron-herringbone-prn-62342-bedroom_38d2a613-94a4-4fd5-b336-05bc2cf14c51.jpg?v=1783290531", "w": 1120, "ht": 828, "bytes": 169107, "err": null}, {"handle": "phillipe-romano", "title": "Phillipe Romano Wallcoverings", "pc": 25663, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_6766d246-8e6a-4f41-9f8b-0d2618cbad7e.jpg?v=1783290502", "w": 1024, "ht": 914, "bytes": 194566, "err": null}, {"handle": "phillipe-romano-wide-textures", "title": "Phillipe Romano Wide Textures", "pc": 1591, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM101-2132.jpg?v=1774039772", "w": 2000, "ht": 2800, "bytes": 1445866, "err": null}, {"handle": "phyllis-morris-classic-wallcovering", "title": "Phyllis Morris Classic Wallcovering", "pc": 28, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2019-12-09_10.52.39_aa79c128-0410-43f7-a381-3c74377eeab8.png?v=1783290535", "w": 974, "ht": 970, "bytes": 1068749, "err": null}, {"handle": "pierre-frey-wallcoverings", "title": "Pierre Frey Wallcoverings", "pc": 6477, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/les-feuillages-2.webp?v=1776627742", "w": 570, "ht": 760, "bytes": 127767, "err": null}, {"handle": "finished-pillows", "title": "Pillows", "pc": 1613, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20182854_214975df-a4a5-4b71-a949-2d35a3b08f3c.jpg?v=1776627705", "w": 800, "ht": 800, "bytes": 115894, "err": null}, {"handle": "exclusive-pillows-at-dw", "title": "Pillows at DW", "pc": 1595, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-af23116_7e026697-37af-4120-9594-f36475722101.jpg?v=1783290382", "w": 1024, "ht": 1024, "bytes": 304364, "err": null}, {"handle": "pink-wallcovering-collection", "title": "Pink Collection", "pc": 6548, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_7236268e-f634-4099-b73b-baf5c45a4285.jpg?v=1783290537", "w": 1806, "ht": 1500, "bytes": 237024, "err": null}, {"handle": "pink-wallcovering-2", "title": "Pink Wallcovering Collection", "pc": 7349, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114324_ROOMSET_01__39015.1769761143.jpg?v=1776628520", "w": 600, "ht": 869, "bytes": 101316, "err": null}, {"handle": "pink-wallcoverings", "title": "Pink Wallcoverings", "pc": 6318, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_5636323e-148c-442c-bab4-cfd4362092f0.jpg?v=1783290538", "w": 1806, "ht": 1500, "bytes": 237024, "err": null}, {"handle": "plaid-fabric", "title": "Plaid", "pc": 103, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-02at11.57.50AM.png?v=1774040381", "w": 1230, "ht": 1134, "bytes": 2632216, "err": null}, {"handle": "plaid", "title": "Plaid Wallcoverings", "pc": 500, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM.png?v=1776433848", "w": 876, "ht": 864, "bytes": 1370273, "err": null}, {"handle": "plum-aubergine-1", "title": "Plum & Aubergine", "pc": 4367, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bandeaux_RM_Nature_precieuse10.jpg?v=1776628514", "w": 600, "ht": 600, "bytes": 86725, "err": null}, {"handle": "powder-room-statements-1", "title": "Powder Room Statements", "pc": 4315, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cropped-1773881417622.jpg?v=1776628284", "w": 500, "ht": 418, "bytes": 74482, "err": null}, {"handle": "primary-suite-1", "title": "Primary Suite", "pc": 40870, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2_fe794aeb-369f-4c5c-b759-0472adcb21b6.jpg?v=1776628618", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "primo-european-leathers", "title": "Primo European Leathers", "pc": 135, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7974be08757c6239ecc318e20a1db15a_396fd84d-137d-42aa-90df-c4b705c70431.jpg?v=1774040274", "w": 1000, "ht": 1000, "bytes": 131397, "err": null}, {"handle": "primo-leathers", "title": "Primo Leathers", "pc": 135, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7974be08757c6239ecc318e20a1db15a_ab0e1655-fcf3-4216-b954-675a41a2a462.jpg?v=1774040276", "w": 1000, "ht": 1000, "bytes": 131397, "err": null}, {"handle": "purple-wallcovering-collection", "title": "Purple Collection", "pc": 2100, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/99820eee2405de6cb535e9fe98a51554_d74181a9-6d8a-4b65-a5f7-e996d0a24614.jpg?v=1776628366", "w": 720, "ht": 960, "bytes": 194588, "err": null}, {"handle": "purple", "title": "Purple Patterns", "pc": 2629, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior2_cd5f1a0e-8230-40ea-b05e-111ba1d88745.jpg?v=1783290540", "w": 1800, "ht": 1200, "bytes": 285737, "err": null}, {"handle": "purple-wallcoverings", "title": "Purple Wallcoverings", "pc": 2004, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_e0afda1d-a8c8-49e8-a958-29a239bea642.jpg?v=1783290542", "w": 1800, "ht": 1200, "bytes": 376861, "err": null}, {"handle": "quadrille-wallcoverings", "title": "Quadrille Wallcoverings", "pc": 473, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lilac-on-light-tint-1947_1_150857.jpg?v=1782494741", "w": 1920, "ht": 1200, "bytes": 632081, "err": null}, {"handle": "quatrefoil-wallpaper", "title": "Quatrefoil", "pc": 247, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-7005-sample.jpg?v=1776627751", "w": 265, "ht": 499, "bytes": 19686, "err": null}, {"handle": "ralph-lauren", "title": "Ralph Lauren", "pc": 496, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_b852efed-d253-4d58-b6e2-2de501ee880a.png?v=1776627800", "w": 876, "ht": 864, "bytes": 1370273, "err": null}, {"handle": "champs-elysees-chenille", "title": "Ralph Lauren Fabric", "pc": 121, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-02at11.57.50AM_3d248ddd-585b-450d-a7d3-21bb8a422dea.png?v=1776627725", "w": 1230, "ht": 1134, "bytes": 2632216, "err": null}, {"handle": "ralph-lauren-home", "title": "Ralph Lauren Home", "pc": 496, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_3d9a94ca-34ad-466b-9a47-b08d292e3f38.png?v=1776627796", "w": 876, "ht": 864, "bytes": 1370273, "err": null}, {"handle": "ralph-lauren-wallpaper", "title": "Ralph Lauren Wallcovering", "pc": 277, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_535c812f-0ec2-44bb-ab2c-4142b08c621a.png?v=1776433851", "w": 876, "ht": 864, "bytes": 1370273, "err": null}, {"handle": "real-scala-silk", "title": "Real Scala Silk", "pc": 2105, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_2487_68dcd122-23fa-4454-984f-0290a38a5256.jpg?v=1776628131", "w": 800, "ht": 800, "bytes": 122111, "err": null}, {"handle": "rebel-walls", "title": "Rebel Walls", "pc": 3901, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17421_image1.jpg?v=1776627827", "w": 800, "ht": 1121, "bytes": 244269, "err": null}, {"handle": "rebel-walls-murals", "title": "Rebel Walls Wallcovering & Murals", "pc": 3870, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1.webp?v=1783290546", "w": 1600, "ht": 1559, "bytes": 228754, "err": null}, {"handle": "red-wallpaper-collection", "title": "Red Collection", "pc": 7346, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_6dbc1cf6-3b2c-4497-8344-4ad5241c4008.jpg?v=1783290552", "w": 1806, "ht": 1500, "bytes": 237024, "err": null}, {"handle": "red-wallcoverings", "title": "Red Wallcoverings", "pc": 6238, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21509_interior1_152dbbdc-216d-4c94-a0da-0bd29193f97c.webp?v=1783290550", "w": 1600, "ht": 1108, "bytes": 414760, "err": null}, {"handle": "reflective", "title": "Reflective", "pc": 1918, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105.png?v=1776628045", "w": 383, "ht": 317, "bytes": 172716, "err": null}, {"handle": "regal-trellis-and-lattice", "title": "Regal Trellis and Lattice", "pc": 433, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ribbon_room_setting_7db4571d-931e-402d-b967-7a6dc42c46ad.jpg?v=1783290553", "w": 1769, "ht": 1686, "bytes": 398440, "err": null}, {"handle": "renaissance-wallpaper", "title": "Renaissance", "pc": 274, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/M2601-1_interior1_cd01e312-197c-4859-ac24-fd6577822bc3.jpg?v=1783290557", "w": 1822, "ht": 1200, "bytes": 301483, "err": null}, {"handle": "renaissance-metal-leaf", "title": "Renaissance Metal Leaf", "pc": 540, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_8c0faa8c-30ea-4803-8cc6-d33bcedb00b4.jpg?v=1783290555", "w": 2000, "ht": 1644, "bytes": 560150, "err": null}, {"handle": "phillipe-romano-renaissance-metal-leaf-collection", "title": "Renaissance Metal Leaf by Phillipe Romano", "pc": 176, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Antigua_Tropicali_33000_Roomshot_Web_LR-og_68fcc2bf-0d20-4e26-ba99-b4fc5a82c4da.jpg?v=1783290522", "w": 1200, "ht": 630, "bytes": 328635, "err": null}, {"handle": "residential", "title": "Residential", "pc": 3330, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_36b9bc4c-7923-4500-bb3e-1a943c12413a.jpg?v=1783290558", "w": 1806, "ht": 1500, "bytes": 237024, "err": null}, {"handle": "restoration-wallpaper", "title": "Restoration", "pc": 785, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R13821_interior1_3e800905-3872-46a5-bac4-04aa9ba3bfd4.jpg?v=1783290560", "w": 1600, "ht": 1362, "bytes": 280609, "err": null}, {"handle": "retro-walls-1", "title": "Retro Walls", "pc": 1177, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-boudoir-ladies-antique-24-x-22-repeat-mar-500_1e631c37-f126-487b-8a4a-492b147c8076.jpg?v=1783290564", "w": 1056, "ht": 992, "bytes": 184302, "err": null}, {"handle": "retro-walls", "title": "Retrowalls", "pc": 1998, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21584_interior1.webp?v=1783290563", "w": 1600, "ht": 1067, "bytes": 310774, "err": null}, {"handle": "roberto-cavalli", "title": "Roberto Cavalli", "pc": 181, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/RC21041_6aa787af-e64e-4250-9519-4f329360b60a.jpg?v=1776628016", "w": 450, "ht": 450, "bytes": 46756, "err": null}, {"handle": "romo", "title": "Romo", "pc": 631, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W944-01-makona-wallcovering-shadow_02.jpg?v=1776628098", "w": 720, "ht": 720, "bytes": 146555, "err": null}, {"handle": "romo-europe-wallpapaper-collections", "title": "Romo Wallcovering Collections", "pc": 595, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W441-02-chiraco-wallcovering-sorbet_01_7da41b9b-5a79-433d-95a0-09be4fc2c805.jpg?v=1776402261", "w": 720, "ht": 720, "bytes": 146555, "err": null}, {"handle": "ron-redding-classic-walls", "title": "Ron Redding Classic Walls", "pc": 676, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-za8011_cb319986-811e-439d-a6c7-cf4211f2d0d6.jpg?v=1783290566", "w": 1056, "ht": 992, "bytes": 125182, "err": null}, {"handle": "ronald-redding", "title": "RONALD REDDING", "pc": 157, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W3744_5_5b39a56c-7391-4d7c-b421-2c7ac397d32b.jpg?v=1774040251", "w": 400, "ht": 400, "bytes": 79034, "err": null}, {"handle": "roses-wallpaper", "title": "Roses", "pc": 800, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c620cbf9f121dc02dce407d12f80742a.jpg?v=1783290570", "w": 1600, "ht": 1131, "bytes": 492375, "err": null}, {"handle": "rustic-charm-wallpaper-collection", "title": "Rustic Charm", "pc": 10283, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R20199_interior1_21308332-4ea4-45cd-98a4-585b70c54463.jpg?v=1783290571", "w": 1600, "ht": 1200, "bytes": 199593, "err": null}, {"handle": "sacha-walckhoff-wallcoverings", "title": "Sacha Walckhoff Wallcoverings", "pc": 3, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/party-land-mustard-wallpaper-2.jpg?v=1776627436", "w": 1024, "ht": 1024, "bytes": 277863, "err": null}, {"handle": "sage-olive-1", "title": "Sage & Olive", "pc": 7197, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17542_interior1.jpg?v=1783290573", "w": 1800, "ht": 1200, "bytes": 482163, "err": null}, {"handle": "sancar", "title": "Sancar", "pc": 42, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/marburg-memento.jpg?v=1776433945", "w": 1671, "ht": 2000, "bytes": 1040632, "err": null}, {"handle": "sandberg", "title": "Sandberg", "pc": 991, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/400-96_image2_134870d7-c9a6-4b6a-bb34-6030bc4ef8dc.jpg?v=1783290575", "w": 800, "ht": 667, "bytes": 119711, "err": null}, {"handle": "sarah-rowland-wallpaper-collection", "title": "Sarah Rowland Wallcovering Collection", "pc": 111, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MAX_ROOMSET_SRD-MAX-01__SARAH_ROWLAND_FOR_KOROSEAL.jpg?v=1774040355", "w": 2000, "ht": 1500, "bytes": 274226, "err": null}, {"handle": "scalamandre-fabrics", "title": "SCALAMANDRE", "pc": 12615, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WH000013325_2494d341-1449-4b27-b442-4d2a367431c3.jpg?v=1776628182", "w": 400, "ht": 533, "bytes": 52594, "err": null}, {"handle": "scandinavian-wallpaper", "title": "Scandinavian", "pc": 5732, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZW139-01-abercrombie-wallcovering-buff_02_5d5bf7b1-b82d-4dbf-ae17-ce711dd6dc9f.jpg?v=1776628450", "w": 500, "ht": 500, "bytes": 40227, "err": null}, {"handle": "scenic-wallpaper", "title": "Scenic", "pc": 4093, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258_782cd5e4-9366-4ae3-be6c-6c5395243dad.jpg?v=1776628134", "w": 1024, "ht": 1024, "bytes": 154890, "err": null}, {"handle": "scenic-wallcoverings", "title": "Scenic Wallcoverings", "pc": 4124, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258_db078bf1-e360-47dd-9caf-3465cfe4fb1f.jpg?v=1776433839", "w": 1024, "ht": 1024, "bytes": 154890, "err": null}, {"handle": "scenics", "title": "Scenics", "pc": 8709, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden.jpg?v=1776628173", "w": 1024, "ht": 1024, "bytes": 154890, "err": null}, {"handle": "scroll", "title": "Scroll", "pc": 328, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/366923_8_5fe6f347-c10b-4e8c-b8d9-1c1c62a490f8.jpg?v=1783290578", "w": 1100, "ht": 925, "bytes": 108756, "err": null}, {"handle": "sequin-wallpapers", "title": "Sequin", "pc": 403, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_663e539a-bd80-435f-bdd5-e55316d1f2ac.jpg?v=1776628042", "w": 500, "ht": 500, "bytes": 76954, "err": null}, {"handle": "shiny-mylar-3d-foils", "title": "Shiny Mylar & 3d Foils", "pc": 209, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-74757_room_setting_030039a2-341c-4ef8-a484-e4bbfdec3044.jpg?v=1783290580", "w": 1600, "ht": 1067, "bytes": 576518, "err": null}, {"handle": "showroom-lines", "title": "Showroom Lines", "pc": 30683, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_7e33c69a-3309-493b-bbd6-37de223a8356.jpg?v=1783290268", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "silk", "title": "Silk Wallcoverings", "pc": 2103, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/89115f2140d65bc1231c65e4bc5a59b3.jpg?v=1776433863", "w": 800, "ht": 800, "bytes": 122111, "err": null}, {"handle": "silver-wallcoverings", "title": "Silver Wallcoverings", "pc": 19146, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lec-5013-sample-le-embossed-disco.jpg?v=1776433770", "w": 1000, "ht": 1000, "bytes": 146891, "err": null}, {"handle": "sisal", "title": "Sisal Wallcoverings", "pc": 1249, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bel-air-damasco-sisal-bec-51538-bedroom_1291c8dd-d6cb-43ac-8ceb-e11e6ea1e549.jpg?v=1783290584", "w": 1024, "ht": 914, "bytes": 147301, "err": null}, {"handle": "slate-charcoal-1", "title": "Slate & Charcoal", "pc": 11991, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/finalsitustoneforestfinal_room_d57e8a55-dac8-48b7-9be0-797ab2507d81.jpg?v=1776628612", "w": 4000, "ht": 4000, "bytes": 2116769, "err": null}, {"handle": "solid-wallcoverings", "title": "Solid Wallcoverings", "pc": 18322, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/74e9473bba448707feb112d32a741e73_1bc2dba2-de01-45ea-a09e-9ff9ecf0b94d.jpg?v=1783290586", "w": 1600, "ht": 1072, "bytes": 116201, "err": null}, {"handle": "specialty-wall-textures-styles-1", "title": "Specialty Wall Textures & Styles", "pc": 1275, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_1c439cbe-7688-4167-8d64-d71c48282c69.jpg?v=1783290587", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "the-gardens-by-phillipe-romano", "title": "Staff Favorites", "pc": 1365, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20211215_095720.jpg?v=1776627820", "w": 500, "ht": 500, "bytes": 114424, "err": null}, {"handle": "steel-blue-1", "title": "Steel Blue", "pc": 4532, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W1011_Bali_Install_1_aac07486-1186-46b3-98f5-7d3e087b729f.jpg?v=1783290590", "w": 3000, "ht": 1717, "bytes": 1151147, "err": null}, {"handle": "steve-abrams-studios", "title": "Steve Abrams Studios", "pc": 57, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/colt-gun-a-blazing-steve-abrams_54377b5f-737d-4174-b47d-6f14b8e903b7.jpg?v=1776433911", "w": 600, "ht": 880, "bytes": 54446, "err": null}, {"handle": "steve-abrams-whimsy", "title": "Steve Abrams Whimsy Collections", "pc": 544, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1960FR-3-Acanthus-Bedroom-in-copper-close-up.jpg?v=1774039961", "w": 1280, "ht": 1821, "bytes": 812416, "err": null}, {"handle": "string", "title": "String", "pc": 217, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_2487_7f26008a-3651-4ace-97ef-8bfe311c3d03.jpg?v=1774495093", "w": 3024, "ht": 4032, "bytes": 1974229, "err": null}, {"handle": "stripe", "title": "Stripe Collections", "pc": 15177, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/A_FABLE_Evergreen_52x1000cm_WP30002.jpg?v=1776628609", "w": 362, "ht": 403, "bytes": 37919, "err": null}, {"handle": "stripes", "title": "Stripes", "pc": 13705, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/A_FABLE_Evergreen_52x1000cm_WP30002_6915c7a8-0d7f-4a7e-b1d3-17ecde86e60b.jpg?v=1776628606", "w": 600, "ht": 600, "bytes": 119125, "err": null}, {"handle": "stripes-geometrics", "title": "Stripes & Geometrics", "pc": 33390, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_398ac116-38f5-4274-83ac-416851bd068b.webp?v=1783290591", "w": 1600, "ht": 1559, "bytes": 228754, "err": null}, {"handle": "stripe-plaid", "title": "Stripes + Plaids", "pc": 6260, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/db5f0db91bea1cb001af57da71070fb8.jpg?v=1776628603", "w": 362, "ht": 403, "bytes": 37919, "err": null}, {"handle": "study-library-1", "title": "Study & Library", "pc": 42164, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_0a57d9f3-2a03-4e4d-a7b6-2f30e3db0016.jpg?v=1783290593", "w": 1600, "ht": 1321, "bytes": 196855, "err": null}, {"handle": "suede", "title": "Suede", "pc": 1346, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TG60033-A_90bb239f-8ca5-4371-b523-8e1bff5483c7.jpg?v=1783290595", "w": 1497, "ht": 1200, "bytes": 242491, "err": null}, {"handle": "suede-faux-suede-fabric", "title": "Suede + Faux Suede", "pc": 643, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EW10900-A_bbfad2ba-8326-4eab-aae2-38d0152d56ee.jpg?v=1782749203", "w": 1357, "ht": 1200, "bytes": 109690, "err": null}, {"handle": "sugarboo", "title": "SUGARBOO", "pc": 10, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-09-25at10.27.38PM.png?v=1776627431", "w": 730, "ht": 810, "bytes": 1108712, "err": null}, {"handle": "surface-stick", "title": "Surface Stick", "pc": 751, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fa21fa59bf0a269895a073efd17f3e4a.jpg?v=1774495250", "w": 800, "ht": 532, "bytes": 132638, "err": null}, {"handle": "surface-stick-3m-self-adhesive", "title": "Surface Stick 3M Self Adhesive", "pc": 751, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/d216698b45ba75f8aedc2455b951664e.jpg?v=1538248333", "w": 800, "ht": 523, "bytes": 15893, "err": null}, {"handle": "sustainable-eco", "title": "Sustainable & Eco", "pc": 795, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWRW-190006-sofa-room-setting_3c6b6a8b-6efb-4a62-848b-559769516dee.png?v=1782749205", "w": 1792, "ht": 1024, "bytes": 2921137, "err": null}, {"handle": "tables", "title": "Tables", "pc": 2, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWWD-60545-DesignerWallcoverings-Los-Angeles-1_6d86037c-42ff-4232-bab2-a59fcc218e33.png?v=1774494658", "w": 842, "ht": 1074, "bytes": 2276149, "err": null}, {"handle": "teal-wallcoverings", "title": "Teal Wallcoverings", "pc": 8218, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_697abf12-80e1-4c23-a739-9fb00996bb79.jpg?v=1782749207", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "terracotta-clay-1", "title": "Terracotta & Clay", "pc": 4354, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2_47f6d15f-e3ff-4e86-be3e-9eed3947ec0e.jpg?v=1776628472", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "texture-gallery", "title": "Texture Gallery", "pc": 96, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-dwqw-56388-handle_5ff49508-59f3-4837-aa0c-e55d376cce39.jpg?v=1783290291", "w": 1152, "ht": 896, "bytes": 135071, "err": null}, {"handle": "textured-wallpaper", "title": "Textured", "pc": 43405, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1.webp?v=1782749209", "w": 1600, "ht": 1305, "bytes": 198761, "err": null}, {"handle": "textured-wallcoverings", "title": "Textured Wallcoverings", "pc": 43467, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_0fbfbcba-ee1c-40f4-99de-490b26783a09.webp?v=1782749208", "w": 1600, "ht": 1305, "bytes": 198761, "err": null}, {"handle": "textures-solids", "title": "Textures & Solids", "pc": 57727, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_169165a2-cdc8-4c04-90bd-8ddaa84969dd.webp?v=1782749211", "w": 1600, "ht": 1305, "bytes": 198761, "err": null}, {"handle": "equestrian-collection", "title": "The Equestrian Wallcovering Collection", "pc": 359, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Vintage_Wallpaper_Reproduction1952_Dig-5211109.jpg?v=1774495114", "w": 2953, "ht": 2362, "bytes": 862397, "err": null}, {"handle": "the-graduate-collection", "title": "The Graduate Collection", "pc": 50, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Graduate_Collection_Leoaprd_Luxe_CHARCOAL_Roomset_1_dc9ea3c7-13ba-465b-8e8d-b73fb3731820.jpg?v=1782749212", "w": 4500, "ht": 2793, "bytes": 2888862, "err": null}, {"handle": "the-kelly-wearstler-collection", "title": "The Kelly Wearstler Collection", "pc": 484, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWF-3758_118_1c353db7-1eff-4313-8a7f-09b7102c5168.jpg?v=1774495110", "w": 1200, "ht": 1200, "bytes": 466679, "err": null}, {"handle": "themes", "title": "Themes", "pc": 1796, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/884ea8394e4d6d3574bb0d7860129104.jpg?v=1776628013", "w": 800, "ht": 440, "bytes": 109692, "err": null}, {"handle": "thibaut-wallcoverings", "title": "Thibaut", "pc": 5090, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_70dac28a-6133-45b1-90e4-738785234148.jpg?v=1782749214", "w": 1200, "ht": 799, "bytes": 242853, "err": null}, {"handle": "thibaut-wallpaper-and-fabrics", "title": "Thibaut Wallcovering and Fabrics", "pc": 4924, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_b7086ecf-a3b0-426a-ade0-bd2a5905ed86.jpg?v=1782749216", "w": 1200, "ht": 799, "bytes": 242853, "err": null}, {"handle": "thick-natural-sisal", "title": "Thick Natural Sisal", "pc": 1277, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_e9f00ce4-f12d-4bde-a5e1-c1327c0a5521.jpg?v=1782749217", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "threads", "title": "Threads", "pc": 170, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/glitter-threads-fabric-wallcovering-white-silver-iris-swatch-spin.gif?v=1776627947", "w": 350, "ht": 350, "bytes": 4090906, "err": null}, {"handle": "threads-wallcoverings", "title": "Threads Wallcoverings", "pc": 80, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EW15018_680_be24807a-38b3-4955-ad63-5ca67ba40f67.jpg?v=1776433893", "w": 1200, "ht": 1200, "bytes": 348447, "err": null}, {"handle": "throw-blanket", "title": "Throw Blanket", "pc": 124, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/11837038-art-breasts-v2-by-designerwallcoverings_19-1112_7ea48495-cba3-46a9-bd2e-739d1d377b52.jpg?v=1774495590", "w": 500, "ht": 500, "bytes": 44193, "err": null}, {"handle": "toile-wallpaper", "title": "Toile", "pc": 1129, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-bedroom-shanghai-chinoiserie-grasscoth-print-blue-on-natural-cream-grp-74000.jpg?v=1776628297", "w": 700, "ht": 624, "bytes": 104129, "err": null}, {"handle": "toile-de-juoy-1", "title": "Toile de Juoy", "pc": 606, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN40907-A.jpg?v=1782749219", "w": 1798, "ht": 1200, "bytes": 354229, "err": null}, {"handle": "toile", "title": "Toile Wallcoverings", "pc": 1129, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fdc3ed9b160840cdab57f28b2d467ded.jpg?v=1776433857", "w": 700, "ht": 624, "bytes": 104129, "err": null}, {"handle": "traditional", "title": "Traditional", "pc": 43562, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d.jpg?v=1782749221", "w": 1600, "ht": 1321, "bytes": 196855, "err": null}, {"handle": "traditional-durable-vinyl", "title": "Traditional Durable Vinyl", "pc": 130, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/jolie-madam-wallpaper-xa1-66400-bedroom.jpg?v=1782749222", "w": 1120, "ht": 828, "bytes": 143893, "err": null}, {"handle": "traditional-wimsy", "title": "Traditional Whimsy", "pc": 350, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_6607d537-ce8d-4467-801c-9f42f7977378.png?v=1782749228", "w": 2048, "ht": 512, "bytes": 1894575, "err": null}, {"handle": "traditional-whimsy-v-3", "title": "Traditional Whimsy V.3", "pc": 214, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_d1eb5e39-c86a-497d-9d2b-1b294b76ad0a.png?v=1782749226", "w": 2048, "ht": 512, "bytes": 1894575, "err": null}, {"handle": "transitional-wallpaper", "title": "Transitional", "pc": 15447, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/million-dollar-mica-chip-wallpaper-mdm-64007-living_room.jpg?v=1776628557", "w": 782, "ht": 657, "bytes": 256040, "err": null}, {"handle": "leaves-wallpaper-collection", "title": "Trees & Leaves", "pc": 1451, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e272902c4487304d78fbe1d44384775f.jpg?v=1776628350", "w": 500, "ht": 500, "bytes": 72751, "err": null}, {"handle": "trees-and-twigs-1", "title": "Trees and Twigs", "pc": 1279, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_2a0295d6-7d1c-4a94-b80f-73e807aa960b.jpg?v=1782749230", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "trellis", "title": "Trellis", "pc": 4060, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21027_interior1_3bf0086b-3e48-4690-967b-67b6239a0bc1.jpg?v=1782749231", "w": 1600, "ht": 1283, "bytes": 346654, "err": null}, {"handle": "trellis-wallcoverings", "title": "Trellis Wallcoverings", "pc": 1270, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21027_interior1_f4cdba1c-4e51-400a-a236-ab2e44573fb3.jpg?v=1782749233", "w": 1600, "ht": 1283, "bytes": 346654, "err": null}, {"handle": "trending-wallpaper-collection-2026", "title": "Trending Wallcovering Collection 2026", "pc": 2021, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Crystal-room_bfe1ce17-eca0-41f6-b909-9e526831bc98.jpg?v=1784306668", "w": 1280, "ht": 1280, "bytes": 295119, "err": null}, {"handle": "tres-tintas", "title": "Tres Tintas", "pc": 605, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JO2703-2_interior1_929433a8-ceda-4900-9f7a-3febada8ae89.jpg?v=1783290270", "w": 1798, "ht": 1200, "bytes": 293160, "err": null}, {"handle": "tres-tintas-wallcoverings", "title": "Tres Tintas Wallcoverings", "pc": 605, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JO1010-3_interior1_688444a1-2650-4870-a13f-784390ed2606.jpg?v=1776627580", "w": 1418, "ht": 1200, "bytes": 344000, "err": null}, {"handle": "tropical-and-leaves", "title": "Tropical and Leaves", "pc": 5968, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/acff9cc93051085628f5017bd0bcc15b.jpg?v=1538248213", "w": 650, "ht": 400, "bytes": 49243, "err": null}, {"handle": "tropical", "title": "Tropical Collections", "pc": 5454, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_8173073b-4eeb-49a7-a867-c73a92e50276.jpg?v=1782749236", "w": 4632, "ht": 3504, "bytes": 3239764, "err": null}, {"handle": "tropicana-durable-textures", "title": "Tropicana Durable Textures", "pc": 127, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/f9e4d54530a31a9859518f0502ca985a.jpg?v=1776628150", "w": 390, "ht": 390, "bytes": 69606, "err": null}, {"handle": "type-2-durable", "title": "Type 2 Durable", "pc": 28, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DE522_4b1880ed-d18c-44b6-9980-876401ddd5d2.jpg?v=1776628164", "w": 1000, "ht": 1000, "bytes": 200738, "err": null}, {"handle": "type-2-commercial-wallcovering", "title": "Type 2 Wallcovering Collection", "pc": 6429, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_1541fbf4-b475-4cb3-b2ec-5526a2f5bea1.jpg?v=1776628248", "w": 900, "ht": 900, "bytes": 150416, "err": null}, {"handle": "type-2-wallpaper-collection", "title": "Type II Commercial", "pc": 9190, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_b370a1d7-9aff-455b-b515-3bcc174389e7.jpg?v=1776628327", "w": 390, "ht": 390, "bytes": 41183, "err": null}, {"handle": "ultrasuede", "title": "Ultrasuede", "pc": 265, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Ultrasuede_DesignerWallcoverings_5538-5709_7e30e7e9-1b33-4e10-a7e9-110f93cdaffc.jpg?v=1776627620", "w": 418, "ht": 418, "bytes": 12799, "err": null}, {"handle": "upholstery-fabrics", "title": "Upholstery", "pc": 13379, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2666bc189193c00fd5eb8cdca54b10b3_313e4088-508f-450c-ba82-b8c3d1a30cb9.jpg?v=1776628697", "w": 409, "ht": 406, "bytes": 25622, "err": null}, {"handle": "vahallan-wallcoverings", "title": "Vahallan Wallcoverings", "pc": 390, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/unearthed-saluda.jpg?v=1774494637", "w": 3264, "ht": 3672, "bytes": 1840543, "err": null}, {"handle": "vegan-crocodile-wallpaper", "title": "Vegan Crocodile", "pc": 465, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lec-5010-le-embossed-disco_be8e1139-85a7-411f-bed0-3e8734ff2925.jpg?v=1776627998", "w": 1000, "ht": 1000, "bytes": 146834, "err": null}, {"handle": "vegan-leathers", "title": "Vegan Leathers", "pc": 3383, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_d3e5c57c-19db-4fbd-8bf2-4ede0db75d31.jpg?v=1782749241", "w": 1024, "ht": 1024, "bytes": 196976, "err": null}, {"handle": "velvet-upholstery", "title": "Velvet Upholstery", "pc": 3104, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/alexia-art-deco-hotel_room_17648e77-9f3e-4313-af7c-6e530c578d15.png?v=1782749242", "w": 1024, "ht": 1024, "bytes": 1559135, "err": null}, {"handle": "versa-designed-surfaces-wallcoverings", "title": "Versa Designed Surfaces Wallcoverings", "pc": 173, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Avenir_A204-131-Champagne.jpg?v=1774493704", "w": 1000, "ht": 1000, "bytes": 124861, "err": null}, {"handle": "versace-wallpaper", "title": "Versace Wallcovering", "pc": 543, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/VER-43253_3c63761e-b24c-4ef2-807b-f96d55a2cc08.jpg?v=1776628010", "w": 800, "ht": 440, "bytes": 109692, "err": null}, {"handle": "victorian-wallpaper", "title": "Victorian", "pc": 2719, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mx9691.jpg?v=1782749244", "w": 1056, "ht": 992, "bytes": 146333, "err": null}, {"handle": "villa-nova", "title": "Villa Nova", "pc": 3, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W517-05-Malmo-Wallpaper-Lotus.jpg?v=1776433876", "w": 720, "ht": 720, "bytes": 147325, "err": null}, {"handle": "vine-pattern-wallpaper", "title": "Vine", "pc": 1273, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7cf22a2d36882db7f6262f05280f884b.jpg?v=1782749245", "w": 1600, "ht": 1205, "bytes": 279958, "err": null}, {"handle": "vintage", "title": "Vintage Reproductions", "pc": 197, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-540002-roomsetting_62674c3c-b59d-4d36-aa8a-b7a696cbbb51.jpg?v=1774040040", "w": 2048, "ht": 2048, "bytes": 695734, "err": null}, {"handle": "vinyl-type-ii", "title": "Vinyl Type II", "pc": 83, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XHW-2010220-sample-clean.jpg?v=1776628781", "w": 1000, "ht": 1000, "bytes": 380778, "err": null}, {"handle": "wall-murals-for-kids", "title": "Wall Murals for Kids", "pc": 1278, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_bbdd5daa-7801-47da-933c-0073f4c89f6b.jpg?v=1782749248", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "wall-murals-on-demand", "title": "Wall Murals on Demand", "pc": 1271, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_90502dfe-46e7-41f4-8476-22d9614e32f0.jpg?v=1782749250", "w": 3000, "ht": 1714, "bytes": 1063417, "err": null}, {"handle": "wallpaper-nyc", "title": "Wallcovering NYC", "pc": 91, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/efd9459de110c2527c3bbde19c7329fb.jpg?v=1774495433", "w": 1000, "ht": 1000, "bytes": 176939, "err": null}, {"handle": "warm-taupe", "title": "Warm Taupe", "pc": 25608, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2.jpg?v=1776628553", "w": 764, "ht": 544, "bytes": 74103, "err": null}, {"handle": "warm-whites-ivory-1", "title": "Warm Whites & Ivory", "pc": 45994, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_fbf7f041-02c7-4279-81ac-4bc1c358aaf4.jpg?v=1782749252", "w": 1600, "ht": 1321, "bytes": 196855, "err": null}, {"handle": "whimsical-traditional", "title": "Whimsical Traditional", "pc": 267, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_6fd486f0-3fbf-4305-a9d6-4b01b61a0297.png?v=1782749253", "w": 2048, "ht": 512, "bytes": 1894575, "err": null}, {"handle": "white-wallpaper-collection", "title": "White Collection", "pc": 35149, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_783f1fa8-7165-4014-9a5d-b53fe5d6ff67.jpg?v=1782749255", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "white-wallcoverings", "title": "White Wallcoverings", "pc": 34531, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_e66be482-9476-4659-9d7d-48dd8cd9482c.jpg?v=1782749256", "w": 1600, "ht": 1480, "bytes": 87509, "err": null}, {"handle": "william-morris-1", "title": "William Morris", "pc": 583, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWWM-14011-living_room-8ft.png?v=1782749259", "w": 1024, "ht": 1024, "bytes": 1809426, "err": null}, {"handle": "wolf-gordon", "title": "Wolf Gordon", "pc": 1527, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_ffa485a1-4fd2-4586-ac92-23968e68317a.jpg?v=1782749261", "w": 1500, "ht": 1200, "bytes": 200157, "err": null}, {"handle": "wolf-gordon-wallcoverings", "title": "Wolf Gordon Wallcoverings", "pc": 1527, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WolfGordonWallcovering_DWWG_st11387.jpg?v=1776433899", "w": 624, "ht": 624, "bytes": 15448, "err": null}, {"handle": "yellow-wallpaper-collection", "title": "Yellow Collection", "pc": 19782, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b.jpg?v=1782749266", "w": 1600, "ht": 1071, "bytes": 203830, "err": null}, {"handle": "yellow-wallcoverings", "title": "Yellow Wallcoverings", "pc": 12798, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b_569c4908-01f9-4d3a-923a-97b3c4e7ceae.jpg?v=1782749264", "w": 1600, "ht": 1071, "bytes": 203830, "err": null}, {"handle": "zeuxis-parrhasius-wallpaper-collection", "title": "Zeuxis Parrhasius Wallcovering Collection", "pc": 32, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-05-22at8.44.21AM.png?v=1776627893", "w": 1548, "ht": 1548, "bytes": 4204165, "err": null}, {"handle": "zoffany-wallcoverings", "title": "Zoffany", "pc": 367, "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZTOT312732_2_ZOW0072_02_ZOFFANY_Wray_WALLPAPER_a040_c843a96c-7eaa-4e07-9bdd-e0ab70c131db.jpg?v=1776627528", "w": 1386, "ht": 1386, "bytes": 371336, "err": null}]
\ No newline at end of file
diff --git a/dw_col_remediation.json b/dw_col_remediation.json
new file mode 100644
index 0000000..80c0cfe
--- /dev/null
+++ b/dw_col_remediation.json
@@ -0,0 +1 @@
+[{"handle": "authentic-1940s-reproduction-vintage-wallcoverings", "title": "1940's Vintage", "pc": 101, "issue": "LOWRES 924x888", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "abruzzo-natural-collection", "title": "Abruzzo Natural Collection", "pc": 364, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "animal-wallpaper-collection", "title": "Animals Collection", "pc": 4018, "issue": "LOWRES 200x200", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "anthology-wallcoverings", "title": "Anthology Wallcoverings", "pc": 106, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "apartment-wallpaper", "title": "Apartment Wallcovering", "pc": 101, "issue": "LOWRES 410x410", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "architectural-wallcoverings", "title": "Architectural Wallcoverings", "pc": 9, "issue": "LOWRES 350x350", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "architectural-wallcoverings-commercial", "title": "Architectural Wallcoverings (Commercial)", "pc": 9, "issue": "LOWRES 350x350", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "decoglass-wallpaper", "title": "Art Deco", "pc": 485, "issue": "LOWRES 219x300", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "arte-international", "title": "Arte International", "pc": 631, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "as-creation-wallcoverings", "title": "AS Creation Wallcoverings", "pc": 505, "issue": "LOWRES 589x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "as-seen-in-showrooms", "title": "As Seen in Showrooms", "pc": 42, "issue": "LOWRES 680x737", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "basketweave-paper", "title": "Basket Weave", "pc": 1597, "issue": "LOWRES 229x229", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "benu-recycled", "title": "Benu Recycled", "pc": 10, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "blue-wallpaper", "title": "Blue Collection", "pc": 18697, "issue": "LOWRES 600x869", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "turquoise", "title": "Blue Green", "pc": 9766, "issue": "LOWRES 575x740", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "botanicals-and-florals", "title": "Botanicals & Florals Collections", "pc": 23245, "issue": "LOWRES 500x819", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "british-walls", "title": "British Invasion", "pc": 592, "issue": "LOWRES 960x1396", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "brunschwig-fils", "title": "Brunschwig & Fils", "pc": 3402, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "candice-olson-collection", "title": "Candice Olson Collection", "pc": 160, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "carnegie-textiles", "title": "Carnegie Textiles", "pc": 301, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "carnegie-wall-panels", "title": "Carnegie Wall Panels", "pc": 126, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "carnegie-wallcoverings", "title": "Carnegie Wallcoverings", "pc": 124, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "chenille-fabric", "title": "Chenille", "pc": 1073, "issue": "LOWRES 835x702", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "chevron-herringbone-wallpaper-collection", "title": "Chevron & Herringbone Collection", "pc": 2421, "issue": "LOWRES 782x657", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "china-seas", "title": "China Seas", "pc": 1810, "issue": "LOWRES 864x560", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "christian-lacroix-wallcoverings", "title": "Christian Lacroix", "pc": 175, "issue": "LOWRES 986x986", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "circles", "title": "Circles", "pc": 30, "issue": "LOWRES 385x277", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "collezione-italia", "title": "Collezione Italia", "pc": 412, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "commercial-durable", "title": "Commercial & Durable", "pc": 4217, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-cork", "title": "Cork Wallcoverings", "pc": 26, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "damasks-1", "title": "Damask", "pc": 4296, "issue": "LOWRES 600x869", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "damask", "title": "Damask Collection", "pc": 4112, "issue": "LOWRES 600x869", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "designer-artist-series", "title": "Design Artist Series", "pc": 184, "issue": "LOWRES 800x593", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "designer-pulse-2026-03-07", "title": "Designer Pulse: 2026-03-07", "pc": 122, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "designers-guild-wallpaper", "title": "Designers Guild Wallcovering Collection", "pc": 878, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "designers-guild-wallcoverings", "title": "Designers Guild Wallcoverings", "pc": 878, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "drapery-fabrics", "title": "Drapery", "pc": 1425, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "european-wallpapers", "title": "European", "pc": 4177, "issue": "LOWRES 800x1818", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "european-imports", "title": "European Imports", "pc": 617, "issue": "LOWRES 500x783", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fabric-trim", "title": "Fabric Trim", "pc": 973, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fabricut-fabrics", "title": "Fabricut Fabrics", "pc": 46, "issue": "LOWRES 300x300", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fabricut-wallcoverings", "title": "Fabricut Wallcoverings", "pc": 46, "issue": "LOWRES 300x300", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "farmhouse-wallpaper", "title": "Farmhouse", "pc": 2946, "issue": "LOWRES 782x657", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "faux-animal-skin", "title": "Faux Animal Patterns", "pc": 132, "issue": "LOWRES 200x200", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "faux-silk", "title": "Faux Silk + Linen", "pc": 235, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fentucci", "title": "Fentucci", "pc": 4430, "issue": "LOWRES 409x406", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fentucci-wallpaper", "title": "Fentucci Wallcovering", "pc": 759, "issue": "LOWRES 409x406", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fine-paintables-by-phillipe-romano", "title": "Fine Paintables by Phillipe Romano", "pc": 96, "issue": "LOWRES 743x531", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-flock-velvet", "title": "Flock / Velvet Wallcoverings", "pc": 72, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "flocked-velvet-wallpaper-collection", "title": "Flocked Velvet Wallcovering Collection", "pc": 460, "issue": "LOWRES 996x416", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "florals-botanicals", "title": "Florals & Botanicals", "pc": 20919, "issue": "LOWRES 371x498", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "franquemont-london", "title": "Franquemont London Wallcoverings", "pc": 26, "issue": "LOWRES 896x1152", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "french-country-wallpaper-collection", "title": "French Country", "pc": 1336, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "gaston-libreria", "title": "GASTON LIBRERIA", "pc": 215, "issue": "LOWRES 150x150", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "gaston-nuevo-mundo", "title": "GASTON NUEVO MUNDO", "pc": 153, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "geometric", "title": "Geometric Collections", "pc": 20852, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "glass-bead", "title": "Glass Bead", "pc": 694, "issue": "LOWRES 383x317", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-glass-bead", "title": "Glass Bead Wallcoverings", "pc": 28, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "glitter-wallpaper", "title": "Glitter + Sequins", "pc": 660, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "glitter-walls", "title": "Glitter Collection", "pc": 238, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "glitter-walls-1", "title": "Glitter Walls", "pc": 551, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "grasscloth-6", "title": "Grasscloth 6", "pc": 156, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "grasscloth-wallpapers", "title": "Grasscloth Wallcovering Collections", "pc": 2874, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-grasscloth", "title": "Grasscloth Wallcoverings", "pc": 894, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "gray-wallcoverings", "title": "Gray Wallcoverings", "pc": 20873, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "greek-key-wallpaper", "title": "Greek Key", "pc": 292, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "green-wall-textures", "title": "Green Wall Textures", "pc": 130, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "green-wallcoverings", "title": "Green Wallcoverings", "pc": 12142, "issue": "LOWRES 800x440", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "grey-silver", "title": "Grey Collection", "pc": 36703, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "groundworks-wallcoverings", "title": "Groundworks Wallcoverings", "pc": 230, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hand-made-wallcoverings", "title": "Hand Made", "pc": 117, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hermes", "title": "Hermes", "pc": 29, "issue": "LOWRES 960x650", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hinson", "title": "Hinson", "pc": 2, "issue": "LOWRES 900x1200", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hollywood-wallpaper-commercial-wallpaper", "title": "Hollywood Hospitality", "pc": 896, "issue": "LOWRES 390x390", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hollywood-sunset-collection", "title": "Hollywood Sunset Vinyl Collection", "pc": 243, "issue": "LOWRES 534x534", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "hollywood-type-2-wallpaper-collection", "title": "Hollywood Type 2", "pc": 5854, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "innovative", "title": "Innovative", "pc": 3192, "issue": "LOWRES 383x317", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "japonisme-wallpaper", "title": "Japonisme", "pc": 622, "issue": "LOWRES 330x430", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "jeffrey-stevens", "title": "Jeffrey Stevens", "pc": 6178, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "jeffrey-stevens-wallpaper-collection", "title": "Jeffrey Stevens - Budget Friendly", "pc": 6103, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "juliet-travers-european-classics", "title": "Juliet Travers European Classics", "pc": 506, "issue": "LOWRES 850x1105", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "jute", "title": "Jute Wallcoverings", "pc": 347, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "kravet", "title": "Kravet", "pc": 5409, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "kravet-design", "title": "KRAVET DESIGN", "pc": 2889, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "lawalls-collection", "title": "LA Walls Collection", "pc": 744, "issue": "LOWRES 329x402", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "lattice-and-trellis-patterns", "title": "Lattice & Trellis", "pc": 4062, "issue": "LOWRES 720x960", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "lattice", "title": "Lattice Wallcoverings", "pc": 2591, "issue": "LOWRES 339x384", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "lattices", "title": "Lattices", "pc": 1340, "issue": "LOWRES 720x960", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "laura-ashley", "title": "Laura Ashley", "pc": 264, "issue": "LOWRES 932x910", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "le-embossed-croc-vinyl", "title": "Le Embossed Croc Vinyl", "pc": 70, "issue": "LOWRES 654x654", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-leather", "title": "Leather Wallcoverings", "pc": 6, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "leed-walls-1", "title": "LEED Eco-Walls", "pc": 1561, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "leed-walls", "title": "LEED Walls", "pc": 129, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "linen", "title": "Linen Wallcoverings", "pc": 11163, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-linen", "title": "Linen Wallcoverings", "pc": 417, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "luxuria-fine-textile-wallcoverings-by-phillipe-romano", "title": "Luxuria Fine Textile Wallcoverings by Phillipe Romano", "pc": 1303, "issue": "LOWRES 525x525", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "maharam-wallcoverings", "title": "Maharam Wallcoverings", "pc": 310, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "malibu-wallpaper", "title": "Malibu", "pc": 4513, "issue": "LOWRES 500x467", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "malibu-walls-1", "title": "Malibu Wallcovering Collection | Budget Friendly", "pc": 121, "issue": "LOWRES 500x467", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "marble-wallcoverings", "title": "Marble Wallcoverings", "pc": 434, "issue": "LOWRES 940x1230", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "marimekko-exclusive-wallcoverings", "title": "Marimekko Exclusive Wallcoverings", "pc": 36, "issue": "LOWRES 992x992", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "mark-alexander", "title": "Mark Alexander", "pc": 2, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "martyn-lawrence-bullard", "title": "Martyn Lawrence Bullard", "pc": 120, "issue": "LOWRES 960x1396", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "medallion-wallpaper", "title": "Medallion", "pc": 522, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "mediterranean-wallpaper", "title": "Mediterranean", "pc": 228, "issue": "LOWRES 480x404", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "metallic-wallpaper-collection", "title": "Metallic", "pc": 5212, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-metallic-foil", "title": "Metallic / Foil Wallcoverings", "pc": 542, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "metallic-vinyl", "title": "Metallic Vinyl Wallcovering Collection", "pc": 735, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "metallic-wallpaper-collections", "title": "Metallic Wallcovering Collection| Designer", "pc": 24047, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "mica", "title": "Mica Wallcoverings", "pc": 634, "issue": "LOWRES 497x332", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "minimalist-1", "title": "Minimalist", "pc": 12573, "issue": "LOWRES 900x900", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "minimalist", "title": "Minimalist Chic", "pc": 3135, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "modern", "title": "Modern Wallcovering Collection", "pc": 29680, "issue": "LOWRES 575x740", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "mulberry-wallcoverings", "title": "Mulberry", "pc": 630, "issue": "LOWRES 600x869", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "mylar-wallpaper", "title": "Mylar", "pc": 137, "issue": "LOWRES 472x473", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-natural-fiber", "title": "Natural Fiber Wallcoverings", "pc": 616, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "natural-paint", "title": "Natural Paint", "pc": 26, "issue": "LOWRES 379x342", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "naturally-glamorous", "title": "Naturally Glamorous", "pc": 185, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "neoclassical-wallpaper", "title": "Neoclassical", "pc": 371, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "newmor-wallcoverings", "title": "Newmor", "pc": 542, "issue": "LOWRES 464x247", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "newmor-wallcovering", "title": "Newmor Wallcovering", "pc": 542, "issue": "LOWRES 464x247", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "nina-campbell", "title": "Nina Campbell", "pc": 901, "issue": "LOWRES 884x760", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "nlxl", "title": "NLXL", "pc": 10, "issue": "LOWRES 737x1043", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-non-woven", "title": "Non-Woven Wallcoverings", "pc": 4942, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "novelty-wallpaper-collection", "title": "Novelty Collection", "pc": 4518, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ogee-wallpaper", "title": "Ogee", "pc": 309, "issue": "LOWRES 358x499", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "orange", "title": "Orange Collections", "pc": 6452, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "orange-wallcoverings", "title": "Orange Wallcoverings", "pc": 4363, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paintable", "title": "Paintable Texture", "pc": 144, "issue": "LOWRES 329x402", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paisley-wallpaper", "title": "Paisley", "pc": 747, "issue": "LOWRES 438x502", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paisley", "title": "Paisley Collection", "pc": 747, "issue": "LOWRES 438x502", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paisleys-1", "title": "Paisleys", "pc": 799, "issue": "LOWRES 438x502", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paper", "title": "Paper Wallcoverings", "pc": 29832, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "fine-paper", "title": "Paperweave", "pc": 952, "issue": "LOWRES 918x807", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-paperweave", "title": "Paperweave Wallcoverings", "pc": 594, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paul-montgomery-all-products", "title": "Paul Montgomery - All Products", "pc": 1538, "issue": "LOWRES 670x904", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "paul-montgomery-murals", "title": "Paul Montgomery Murals", "pc": 443, "issue": "LOWRES 997x1280", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "peel-stick", "title": "Peel & Stick", "pc": 551, "issue": "LOWRES 100x66", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "performance-linen-by-phillipe-romano", "title": "Performance Textile", "pc": 179, "issue": "LOWRES 800x533", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillip-jeffries", "title": "Phillip Jeffries", "pc": 3186, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-enlightenment", "title": "Phillipe Romano - Enlightenment", "pc": 20, "issue": "LOWRES 574x300", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-faux-leather", "title": "Phillipe Romano - Faux Leather", "pc": 19, "issue": "LOWRES 358x540", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-monument-collection", "title": "Phillipe Romano - Monument Collection", "pc": 38, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-pattern-upholstery", "title": "Phillipe Romano - Pattern Upholstery", "pc": 34, "issue": "LOWRES 992x943", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-print-basecloths", "title": "Phillipe Romano - Print Basecloths", "pc": 27, "issue": "LOWRES 358x540", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-texture-upholstery", "title": "Phillipe Romano - Texture Upholstery", "pc": 100, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-wilderie-collection", "title": "Phillipe Romano - Wilderie Collection", "pc": 30, "issue": "LOWRES 992x943", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-abaca", "title": "Phillipe Romano Abaca", "pc": 56, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-arrowroot", "title": "Phillipe Romano Arrowroot", "pc": 11, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-style-art-deco", "title": "Phillipe Romano Art Deco", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "phillipe-romano-asian-essence", "title": "Phillipe Romano ASIAN ESSENCE", "pc": 67, "issue": "LOWRES 593x590", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-black", "title": "Phillipe Romano Black", "pc": 10, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-blue", "title": "Phillipe Romano Blue", "pc": 24, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-charcoal", "title": "Phillipe Romano Charcoal", "pc": 137, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-chartreuse", "title": "Phillipe Romano Chartreuse", "pc": 14, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-style-coastal", "title": "Phillipe Romano Coastal", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "pr-style-contemporary", "title": "Phillipe Romano Contemporary", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "pr-style-eclectic", "title": "Phillipe Romano Eclectic", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "phillipe-romano-elegante", "title": "Phillipe Romano Elegante Collection", "pc": 121, "issue": "LOWRES 593x590", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-essential-textures", "title": "Phillipe Romano Essential Textures", "pc": 1024, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-fabrics", "title": "Phillipe Romano Fabrics", "pc": 169, "issue": "LOWRES 505x510", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-faux-leathers-upholstery-more", "title": "Phillipe Romano Faux Leathers Upholstery & More", "pc": 1229, "issue": "LOWRES 601x429", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-flock", "title": "Phillipe Romano Flock", "pc": 26, "issue": "LOWRES 662x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-flocked-velvet-wallpaper", "title": "Phillipe Romano Flocked Velvet", "pc": 107, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-style-glam", "title": "Phillipe Romano Glam", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "phillipe-romano-grasscloth", "title": "Phillipe Romano Grasscloth", "pc": 96, "issue": "LOWRES 792x612", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-green", "title": "Phillipe Romano Green", "pc": 19, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-greige", "title": "Phillipe Romano Greige", "pc": 193, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hemp", "title": "Phillipe Romano Hemp", "pc": 52, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-jacquard", "title": "Phillipe Romano Jacquard", "pc": 14, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-jute", "title": "Phillipe Romano Jute", "pc": 10, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-linen", "title": "Phillipe Romano Linen", "pc": 61, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-metal-leaf", "title": "Phillipe Romano Metal Leaf", "pc": 13, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-mixed-media", "title": "Phillipe Romano Mixed Media", "pc": 2, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-orange", "title": "Phillipe Romano Orange", "pc": 272, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-style-organic-modern", "title": "Phillipe Romano Organic Modern", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "pr-paper-weave", "title": "Phillipe Romano Paper Weave", "pc": 101, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-prints-1", "title": "Phillipe Romano Prints", "pc": 371, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-raffia", "title": "Phillipe Romano Raffia", "pc": 4, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-red", "title": "Phillipe Romano Red", "pc": 40, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-signature", "title": "Phillipe Romano Signature", "pc": 231, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-silk", "title": "Phillipe Romano Silk", "pc": 89, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-sisal", "title": "Phillipe Romano Sisal", "pc": 19, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-suede", "title": "Phillipe Romano Suede", "pc": 59, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-teal", "title": "Phillipe Romano Teal", "pc": 26, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phillipe-romano-textures-vol-4", "title": "Phillipe Romano Textures Vol. 4", "pc": 173, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-style-traditional", "title": "Phillipe Romano Traditional", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "pr-style-transitional", "title": "Phillipe Romano Transitional", "pc": 0, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "EMPTY-0-products"}, {"handle": "phillipe-romano-type-2-vinyls", "title": "Phillipe Romano Type 2 Vinyls", "pc": 928, "issue": "LOWRES 900x900", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-velvet", "title": "Phillipe Romano Velvet", "pc": 24, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-water-hyacinth", "title": "Phillipe Romano Water Hyacinth", "pc": 4, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-white", "title": "Phillipe Romano White", "pc": 34, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-wood-veneer", "title": "Phillipe Romano Wood Veneer", "pc": 126, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-wool", "title": "Phillipe Romano Wool", "pc": 3, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-woven", "title": "Phillipe Romano Woven", "pc": 43, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pr-hue-yellow", "title": "Phillipe Romano Yellow", "pc": 135, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "phyllis-morris-classic-wallcovering", "title": "Phyllis Morris Classic Wallcovering", "pc": 28, "issue": "LOWRES 974x970", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pierre-frey-wallcoverings", "title": "Pierre Frey Wallcoverings", "pc": 6477, "issue": "LOWRES 570x760", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "finished-pillows", "title": "Pillows", "pc": 1613, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "pink-wallcovering-2", "title": "Pink Wallcovering Collection", "pc": 7349, "issue": "LOWRES 600x869", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "plaid", "title": "Plaid Wallcoverings", "pc": 500, "issue": "LOWRES 876x864", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "plum-aubergine-1", "title": "Plum & Aubergine", "pc": 4367, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "powder-room-statements-1", "title": "Powder Room Statements", "pc": 4315, "issue": "LOWRES 500x418", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "primary-suite-1", "title": "Primary Suite", "pc": 40870, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "purple-wallcovering-collection", "title": "Purple Collection", "pc": 2100, "issue": "LOWRES 720x960", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "quatrefoil-wallpaper", "title": "Quatrefoil", "pc": 247, "issue": "LOWRES 265x499", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ralph-lauren", "title": "Ralph Lauren", "pc": 496, "issue": "LOWRES 876x864", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ralph-lauren-home", "title": "Ralph Lauren Home", "pc": 496, "issue": "LOWRES 876x864", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ralph-lauren-wallpaper", "title": "Ralph Lauren Wallcovering", "pc": 277, "issue": "LOWRES 876x864", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "real-scala-silk", "title": "Real Scala Silk", "pc": 2105, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "rebel-walls", "title": "Rebel Walls", "pc": 3901, "issue": "LOWRES 800x1121", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "reflective", "title": "Reflective", "pc": 1918, "issue": "LOWRES 383x317", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "roberto-cavalli", "title": "Roberto Cavalli", "pc": 181, "issue": "LOWRES 450x450", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "romo", "title": "Romo", "pc": 631, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "romo-europe-wallpapaper-collections", "title": "Romo Wallcovering Collections", "pc": 595, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ronald-redding", "title": "RONALD REDDING", "pc": 157, "issue": "LOWRES 400x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "sandberg", "title": "Sandberg", "pc": 991, "issue": "LOWRES 800x667", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "scalamandre-fabrics", "title": "SCALAMANDRE", "pc": 12615, "issue": "LOWRES 400x533", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "scandinavian-wallpaper", "title": "Scandinavian", "pc": 5732, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "sequin-wallpapers", "title": "Sequin", "pc": 403, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "silk", "title": "Silk Wallcoverings", "pc": 2103, "issue": "LOWRES 800x800", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-silk", "title": "Silk Wallcoverings", "pc": 63, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "the-gardens-by-phillipe-romano", "title": "Staff Favorites", "pc": 1365, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "steve-abrams-studios", "title": "Steve Abrams Studios", "pc": 57, "issue": "LOWRES 600x880", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "stripe", "title": "Stripe Collections", "pc": 15177, "issue": "LOWRES 362x403", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "stripes", "title": "Stripes", "pc": 13705, "issue": "LOWRES 600x600", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "stripe-plaid", "title": "Stripes + Plaids", "pc": 6260, "issue": "LOWRES 362x403", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "sugarboo", "title": "SUGARBOO", "pc": 10, "issue": "LOWRES 730x810", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "surface-stick", "title": "Surface Stick", "pc": 751, "issue": "LOWRES 800x532", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "surface-stick-3m-self-adhesive", "title": "Surface Stick 3M Self Adhesive", "pc": 751, "issue": "LOWRES 800x523", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "tables", "title": "Tables", "pc": 2, "issue": "LOWRES 842x1074", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "terracotta-clay-1", "title": "Terracotta & Clay", "pc": 4354, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "themes", "title": "Themes", "pc": 1796, "issue": "LOWRES 800x440", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "threads", "title": "Threads", "pc": 170, "issue": "LOWRES 350x350", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "throw-blanket", "title": "Throw Blanket", "pc": 124, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "toile-wallpaper", "title": "Toile", "pc": 1129, "issue": "LOWRES 700x624", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "toile", "title": "Toile Wallcoverings", "pc": 1129, "issue": "LOWRES 700x624", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "traditional-wimsy", "title": "Traditional Whimsy", "pc": 350, "issue": "LOWRES 2048x512", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "traditional-whimsy-v-3", "title": "Traditional Whimsy V.3", "pc": 214, "issue": "LOWRES 2048x512", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "transitional-wallpaper", "title": "Transitional", "pc": 15447, "issue": "LOWRES 782x657", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "leaves-wallpaper-collection", "title": "Trees & Leaves", "pc": 1451, "issue": "LOWRES 500x500", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "tropical-and-leaves", "title": "Tropical and Leaves", "pc": 5968, "issue": "LOWRES 650x400", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "tropicana-durable-textures", "title": "Tropicana Durable Textures", "pc": 127, "issue": "LOWRES 390x390", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "type-2-commercial-wallcovering", "title": "Type 2 Wallcovering Collection", "pc": 6429, "issue": "LOWRES 900x900", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "type-2-wallpaper-collection", "title": "Type II Commercial", "pc": 9190, "issue": "LOWRES 390x390", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "ultrasuede", "title": "Ultrasuede", "pc": 265, "issue": "LOWRES 418x418", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "upholstery-fabrics", "title": "Upholstery", "pc": 13379, "issue": "LOWRES 409x406", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "vahallan", "title": "Vahallan", "pc": 390, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "versace-wallpaper", "title": "Versace Wallcovering", "pc": 543, "issue": "LOWRES 800x440", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "villa-nova", "title": "Villa Nova", "pc": 3, "issue": "LOWRES 720x720", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-vinyl-type-ii", "title": "Vinyl / Type II Wallcoverings", "pc": 253, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "warm-taupe", "title": "Warm Taupe", "pc": 25608, "issue": "LOWRES 764x544", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "whimsical-traditional", "title": "Whimsical Traditional", "pc": 267, "issue": "LOWRES 2048x512", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "whimsical-wallcoverings", "title": "Whimsical Wallcoverings", "pc": 21, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "wolf-gordon-wallcoverings", "title": "Wolf Gordon Wallcoverings", "pc": 1527, "issue": "LOWRES 624x624", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}, {"handle": "material-wood-veneer", "title": "Wood Veneer Wallcoverings", "pc": 300, "issue": "MISSING", "suggest_src": null, "suggest_dim": null, "note": "err:HTTP Error 403: Forbidden"}]
\ No newline at end of file
diff --git a/dw_collections.json b/dw_collections.json
new file mode 100644
index 0000000..d3931fb
--- /dev/null
+++ b/dw_collections.json
@@ -0,0 +1 @@
+[{"id": 299212734515, "title": "1838 Wallcoverings", "handle": "1838-wallcoverings", "description": "<p>1838 Wallcoverings presents a comprehensive range of designs, showcasing their dedication to quality and craftsmanship from their English mill. Explore diverse textures and colorways across various substrates, ideal for both residential and commercial projects. With attention to detail in pattern match and durability, these wallcoverings offer enduring style and performance.</p>", "published_at": "2026-03-31T17:37:41-07:00", "updated_at": "2026-07-18T04:05:01-07:00", "image": {"id": 1640700706867, "created_at": "2026-03-30T07:07:15-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2008-146-03-Ripple-Blue-Dusk-scaled_e4c020e3-d080-49ec-8b01-a7c3e592ceb4.jpg?v=1779282003", "alt": "1838 Wallcoverings"}, "products_count": 481}, {"id": 168073723955, "title": "1940's Vintage", "handle": "authentic-1940s-reproduction-vintage-wallcoverings", "description": "<meta charset=\"utf-8\"><span data-mce-fragment=\"1\">1940s vintage wallcovering reproduction patterns offer a nostalgic journey into the post-war era, characterized by resilience, optimism, and a shift in design aesthetics. These wallcoverings capture the essence of the 1940s with charming motifs that reflect the era's distinctive style. Designs often showcase a blend of traditional and modern elements, featuring florals, stripes, and geometric patterns in muted yet comforting colors. The 1940s marked a time of rebuilding and rejuvenation, influencing wallcovering designs with a sense of hope and simplicity. Reproduction patterns from this era often incorporate wartime influences, displaying a mix of patriotism, utility, and a touch of glamour. Whether recreating the look of a vintage home or adding a retro touch to a contemporary space, these wallcoverings allow for a nostalgic nod to the past while infusing rooms with the timeless charm of 1940s design.</span>", "published_at": "2021-02-17T13:47:12-08:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1640655945779, "created_at": "2026-03-22T05:02:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-10-04at1.34.34PM_7bf17934-ece3-43bb-85ae-814af53eafa0.png?v=1776628710", "alt": null}, "products_count": 101}, {"id": 137354805313, "title": "1950's Vintage", "handle": "authentic-1950s-reproduction-vintage-wallcoverings", "description": "<meta charset=\"utf-8\"><meta charset=\"utf-8\"><span data-mce-fragment=\"1\">1950s vintage wallcovering reproduction patterns capture the exuberance and optimism of the post-World War II era, reflecting a shift towards modernism and a celebration of newfound prosperity. These wallcoverings showcase iconic mid-century motifs, such as atomic patterns, boomerangs, and abstract geometric designs, all infused with a burst of vibrant colors. The 1950s marked a departure from wartime austerity, embracing a more playful and experimental approach to design. Reproduction patterns from this era often embody the spirit of the time, with pastel hues, bold contrasts, and whimsical illustrations. Whether adorning accent walls or entire rooms, these wallcoverings evoke the retro charm of the 1950s, bringing a touch of nostalgia and a sense of mid-century modern style to contemporary interiors.</span><br>", "published_at": "2019-08-23T14:12:29-07:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1641209659443, "created_at": "2026-07-05T15:25:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/mockup-Dig-5011663_black_04962cc8-ef6f-4388-b9f4-d53548320e86.jpg?v=1783290313", "alt": "1950's Vintage"}, "products_count": 335}, {"id": 137354870849, "title": "1960's Vintage", "handle": "authentic-1960s-reproduction-vintage-wallcoverings", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-23\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"40412720-9c7f-4034-9d53-406c14235bad\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>1960s vintage wallcovering reproduction patterns transport interior spaces back to the vibrant and revolutionary era that defined a cultural shift. Reflecting the spirit of the Swinging Sixties, these wallcoverings capture the essence of mid-century modern design with bold geometric shapes, whimsical patterns, and a playful color palette. Reproduction patterns often feature iconic motifs like mod florals, op art-inspired graphics, and psychedelic swirls, showcasing the era's embrace of experimentation and individualism. The 1960s marked a departure from the subdued aesthetics of the previous decade, and these wallcoverings exemplify the newfound sense of freedom and creativity that characterized the era. Whether used to create a focal point or to envelop an entire room, these vintage wallcovering reproductions transport spaces into a time of cultural revolution and design innovation, allowing homeowners to infuse their interiors with the vibrant and dynamic style of the 1960s.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-08-23T14:12:29-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1641209692211, "created_at": "2026-07-05T15:25:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG-62418_mockup.jpg?v=1783290315", "alt": "1960's Vintage"}, "products_count": 130}, {"id": 260437311539, "title": "1970's Vintage", "handle": "authentic-1970s-reproduction-vintage-wallcoverings", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-21\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"ad1206ad-6b01-438a-847c-91f865522bcc\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>1970s vintage wallcovering reproduction patterns encapsulate the bold and eclectic spirit of this iconic era, marked by a fusion of diverse design influences. These wallcoverings channel the distinctive aesthetics of the '70s with vibrant colors, psychedelic patterns, and geometric shapes that reflect the era's penchant for self-expression and individuality. Reproduction patterns often feature bold florals, oversized motifs, and a playful mix of earthy tones and bright hues. The 1970s was a time of cultural and design experimentation, and these wallcoverings capture the essence of that period, offering a dynamic and nostalgic nod to disco vibes, bohemian chic, and the free-spirited energy that defined the era. Whether adorning an entire room or used as an accent wall, these vintage wallcovering reproductions bring the groovy and eclectic style of the 1970s back to life, allowing homeowners to infuse their spaces with a retro, yet timeless, vibe.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2021-03-02T12:39:19-08:00", "updated_at": "2026-07-28T16:34:40-07:00", "image": {"id": 1640618262579, "created_at": "2026-03-20T13:51:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG_740036_f533e5bf-66bd-4a83-bf72-5b37e1c410ab.jpg?v=1774039919", "alt": "1970's Vintage Wallpaper"}, "products_count": 203}, {"id": 289751138355, "title": "A-C Wallcovering Brands", "handle": "brands-at-designer-wallcoverings-a-c", "description": "<p>A-C Brands at Designer Wallcoverings</p>", "published_at": "2025-05-16T15:38:17-07:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640614690867, "created_at": "2026-03-20T13:09:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/happy-hour-day_24a94341-a00e-46da-a65c-8cfa89f8b06c.webp?v=1776627427", "alt": null}, "products_count": 11541}, {"id": 302174830643, "title": "Abruzzo Natural Collection", "handle": "abruzzo-natural-collection", "description": "<p>A curated Phillipe Romano collection of natural woven textiles \u2014 grasscloth, sisal, paperweave, raffia, abaca, jute and cork \u2014 sold per yard in 8-yard bolts.</p>", "published_at": "2026-07-06T16:00:51-07:00", "updated_at": "2026-07-24T14:30:55-07:00", "image": null, "products_count": 364}, {"id": 95010816065, "title": "Abstract Vinyl", "handle": "abstract-durable-vinyl", "description": "<p>The <em>Abstract Durable Vinyl Collection</em> combines striking abstract designs with exceptional durability. Perfect for high-traffic areas in both residential and commercial spaces, these wallcoverings feature bold patterns, sleek textures, and a contemporary aesthetic. Designed to be easy to clean and long-lasting, they bring style and function together seamlessly.</p>\n<p>Ideal for creating modern feature walls or adding a sophisticated edge to interiors, this collection ensures your walls stand out\u2014and stand up to life.</p>", "published_at": "2019-02-21T18:48:00-08:00", "updated_at": "2026-07-24T16:31:26-07:00", "image": {"id": 1640675508275, "created_at": "2026-03-25T20:14:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bellevue_A211-941-Upstream.jpg?v=1774494866", "alt": null}, "products_count": 1290}, {"id": 93445619777, "title": "Acoustical", "handle": "acoustical", "description": "<p>\u00a0</p>\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-25\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"25478bd3-b1a9-4dcd-8371-b4ec4ab9fcbd\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Enhance both form and function with the <em>Acoustical Wallcovering Collection</em>. Designed to reduce noise while elevating your space's aesthetic, these wallcoverings combine superior sound absorption with contemporary textures and patterns. Perfect for offices, homes, or commercial spaces needing both quiet and style.</p>\n<p>Achieve a harmonious balance of sound control and design sophistication with acoustical wallcoverings that perform as beautifully as they look.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-11-19T22:44:00-08:00", "updated_at": "2026-07-22T09:47:05-07:00", "image": {"id": 1640671477811, "created_at": "2026-03-25T20:00:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2bd76bfac054ded030ad269641d7c683_c6c84801-f52f-42e0-aebd-9425e8c26d1a.jpg?v=1776628732", "alt": "Acoustical"}, "products_count": 223}, {"id": 286631297075, "title": "Ajiro", "handle": "ajiro-wallpapers-by-maya-romanoff", "description": "<p>Maya Romanoff's Ajiro Wallcoverings showcase meticulously handcrafted wood veneers on flexible substrates, providing unparalleled texture and dimension. Renowned for their exquisite craftsmanship in their Chicago mill, these wallcoverings offer a luxurious hand and exceptional durability suitable for high-end residential and commercial interiors. The collection features intricate geometric patterns with varying repeats, allowing for seamless installations and sophisticated design schemes.</p>", "published_at": "2025-01-13T08:56:42-08:00", "updated_at": "2026-07-16T11:31:07-07:00", "image": {"id": 1641209397299, "created_at": "2026-07-05T15:24:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-ah-4x02-maya-50098_0016091b-f421-42f7-b83c-8ff1f53a0d4f.jpg?v=1783290295", "alt": "Ajiro"}, "products_count": 155}, {"id": 298841899059, "title": "Alligator Skin Wallcovering Collection (New)", "handle": "alligator-skin-wallpaper-collection", "description": "<p>Add texture and luxury to your space with the <em>Alligator Skin Wallcovering Collection</em>. Featuring embossed patterns and faux alligator finishes, these wallcoverings exude opulence and refined style. Perfect for creating statement walls in living areas, offices, or upscale interiors, they bring a bold yet elegant touch that mimics exotic leather.</p>\n<p>Transform your walls into a symbol of sophistication and high design\u2014because every room deserves a little edge.</p>", "published_at": "2026-03-18T10:29:49-07:00", "updated_at": "2026-07-28T11:36:52-07:00", "image": {"id": 1641209430067, "created_at": "2026-07-05T15:24:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room_7797733294131.png?v=1783290297", "alt": "Alligator Skin Wallcovering Collection (New)"}, "products_count": 417}, {"id": 298270261299, "title": "Andrew Martin", "handle": "andrew-martin-wallcoverings", "description": "<div style=\"background: #ffffff; padding: 40px 50px; margin: 20px auto; max-width: 1200px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.08);\">\n <h2 style=\"font-family: Georgia, serif; font-size: 28px; color: #1a1a1a; margin: 0 0 16px 0; letter-spacing: 0.5px;\">Andrew Martin</h2>\n <p style=\"font-family: Georgia, serif; font-size: 16px; line-height: 1.7; color: #444; margin: 0;\">Iconic British design house known for bold, eclectic interiors. Andrew Martin wallcoverings and fabrics bring together global influences \u2014 from safari-inspired textures to architectural geometrics \u2014 with a distinctly luxurious sensibility.</p>\n</div>", "published_at": "2026-03-20T13:12:49-07:00", "updated_at": "2026-07-15T04:05:27-07:00", "image": {"id": 1641209462835, "created_at": "2026-07-05T15:24:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/35445-constantinoplewallpaper-nicklebysofaindusbrick-scattercushionsindusbrickoxusmultiandelbrusmulti_1a99724f-e1dc-41c5-9dc9-aaba9b625226.jpg?v=1783290299", "alt": "Andrew Martin"}, "products_count": 129}, {"id": 283285585971, "title": "Animal Collection", "handle": "animals-and-insects", "description": "<p>Incorporating animals and insects into wallcovering and fabrics is a timeless way to bring life, energy, and character to interior spaces. Here\u2019s why these nature-inspired motifs are a favorite among designers.</p>", "published_at": "2024-09-16T16:52:44-07:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640615051315, "created_at": "2026-03-20T13:09:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/98803-1250a5b948db419c9d9be35796e91929.jpg?v=1776628569", "alt": null}, "products_count": 12750}, {"id": 298512285747, "title": "Animal Print", "handle": "animal-print-wallpaper", "description": "<p>Animal Print Wallcovering offers a compelling range of scales and textures, suitable for diverse interiors demanding visual interest. This collection features designs from classic interpretations to bold contemporary stylings, with varied repeats and installation methods. Coordinate these durable, high-performance wallcoverings with solid grounds or complementary patterns for sophisticated, layered schemes.</p>", "published_at": "2026-03-04T23:52:37-08:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1641209495603, "created_at": "2026-07-05T15:25:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_FoliaDARK_03.jpg?v=1783290301", "alt": "Animal Print"}, "products_count": 895}, {"id": 283367211059, "title": "Animal Skin", "handle": "animal-skin", "description": "<p>Add bold texture and exotic elegance to your interiors with the <em>Animal Skin Wallcovering Collection</em>. Featuring striking faux animal prints and embossed textures, this collection brings a luxurious, adventurous feel to any space. From crocodile-inspired patterns to sleek leopard prints, these wallcoverings are perfect for statement walls that demand attention.</p>\n<p>Transform your home into a sanctuary of wild sophistication\u2014where texture, style, and nature converge.</p>", "published_at": "2024-09-19T10:24:44-07:00", "updated_at": "2026-07-30T06:52:04-07:00", "image": {"id": 1641209528371, "created_at": "2026-07-05T15:25:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-carlos-cheetah-wallpaper-skn-6807_e552c68e-5a13-4c37-94bd-24913e95837b.jpg?v=1783290303", "alt": "Animal Skin"}, "products_count": 1746}, {"id": 93446504513, "title": "Animals Collection", "handle": "animal-wallpaper-collection", "description": "<p>Animal theme wallcovering celebrates the beauty and diversity of the natural world, featuring captivating designs inspired by wildlife. These wallcoverings showcase a wide range of animals, from exotic jungle creatures to familiar woodland fauna, rendered in stunning detail and vibrant colors. Whether it's majestic lions, graceful deer, or playful dolphins, animal theme wallcoverings bring a sense of wonder and adventure to any room. The designs can vary from realistic portrayals to whimsical illustrations, catering to different tastes and interior styles. Perfect for children's bedrooms, nurseries, or nature-inspired living spaces, animal theme wallcovering creates a captivating and imaginative environment that sparks curiosity and creativity.</p>\n<!---->", "published_at": "2018-11-19T23:37:17-08:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640671510579, "created_at": "2026-03-25T20:00:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lDyRMxkKMg03WeBwyh4B6z9PddMyrJMAGEGIQAYP_5e00dd86-3f51-46e3-a5c8-953f327b7ec2.jpg?v=1776628566", "alt": "Animals Wallcovering Collection"}, "products_count": 4018}, {"id": 298506059827, "title": "Anna French", "handle": "anna-french-1", "description": "<div class=\"vendor-about\">\n<h2>About Anna French</h2>\n<p>Anna French brings English design heritage to a celebrated collection of wallcoverings and fabrics. Founded in the spirit of the finest textile ateliers, the brand began with a love of lace before growing into an internationally recognized luxury house. Every print is designed in London and rooted in history, drawing on classical toile, romantic florals, and antique documents reinterpreted with fresh, modern palettes. The signature aesthetic is unmistakable: delicate, lace-inspired prints, botanical motifs that feel drawn from a Kew Gardens plant book, and artisanal embroideries that lend depth and craft.</p>\n<p>Each Anna French collection follows a curated theme inspired by art and travel, balancing English countryside scenes, refined florals, and global influences. Now part of the Thibaut Design group, Anna French pairs that storied heritage with enduring quality and craftsmanship, creating wallcoverings that feel both timeless and current.</p>\n<p class=\"dw-collab\"><em>Anna French is available in collaboration with Designer Wallcoverings.</em></p>\n</div>\n<p>Anna French wallcoverings offer a vibrant spectrum of color and pattern, renowned for their bold designs and quality substrates. This collection presents a diverse range of non-woven and paper grounds, suitable for residential and light commercial applications. Specify Anna French for impactful statements with exceptional color saturation and varied pattern repeats.</p>", "published_at": "2026-03-04T19:13:41-08:00", "updated_at": "2026-07-27T15:11:49-07:00", "image": {"id": 1640618623027, "created_at": "2026-03-20T13:52:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AT15140.jpg?v=1776628142", "alt": "Anna French"}, "products_count": 1219}, {"id": 299575148595, "title": "Anthology Wallcoverings", "handle": "anthology-wallcoverings", "description": null, "published_at": "2026-07-22T07:32:44-07:00", "updated_at": "2026-07-22T09:01:40-07:00", "image": null, "products_count": 106}, {"id": 299533828147, "title": "Apartment Wallcovering", "handle": "apartment-wallpaper", "description": null, "published_at": "2026-04-16T22:16:03-07:00", "updated_at": "2026-07-16T10:53:59-07:00", "image": {"id": 1640811823155, "created_at": "2026-04-16T22:16:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PSW1165RL.jpg?v=1776402960", "alt": null}, "products_count": 101}, {"id": 298270294067, "title": "Architectural", "handle": "architectural-fabrics", "description": "<p>Architectural Fabrics presents a versatile collection of durable, natural textile wallcoverings suitable for high-traffic commercial interiors. Woven for superior weight and tactile interest, these Type II materials offer a refined alternative to traditional vinyl. Available in a range of weights and textures, the collection can be specified railroaded for continuous application and minimal waste.</p>", "published_at": "2026-02-25T08:56:50-08:00", "updated_at": "2026-07-05T15:25:05-07:00", "image": {"id": 1641209561139, "created_at": "2026-07-05T15:25:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWRW-190006-sofa-room-setting_00b51bba-baaf-4673-a715-9399a04fcb9a.png?v=1783290305", "alt": "Architectural"}, "products_count": 483}, {"id": 299574755379, "title": "Architectural Wallcoverings", "handle": "architectural-wallcoverings", "description": null, "published_at": "2026-04-09T21:03:01-07:00", "updated_at": "2026-07-07T13:30:41-07:00", "image": {"id": 1640814772275, "created_at": "2026-04-17T06:52:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PNT-04.jpg?v=1776433924", "alt": null}, "products_count": 9}, {"id": 299574722611, "title": "Architectural Wallcoverings (Commercial)", "handle": "architectural-wallcoverings-commercial", "description": null, "published_at": "2026-04-09T21:03:00-07:00", "updated_at": "2026-07-07T13:30:40-07:00", "image": {"id": 1640814805043, "created_at": "2026-04-17T06:52:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PNT-04_d9d6d795-30f1-4a07-b1fd-66123164096d.jpg?v=1776433925", "alt": null}, "products_count": 9}, {"id": 298270326835, "title": "Armani Casa", "handle": "armani-casa-wallcoverings", "description": "<p>Armani Casa wallcoverings offer a sophisticated range of textures and subtle patterns synonymous with the brand's refined Italian aesthetic. Known for their meticulous attention to detail and luxurious materials, these selections feature varied grounds and weights suitable for high-end residential and commercial projects. Browse the book to specify refined shagreen textures, natural jutes on mylar, and other elegant wallcoverings for discerning clients.</p>", "published_at": "2026-03-23T23:01:45-07:00", "updated_at": "2026-07-22T23:30:33-07:00", "image": {"id": 1640621441075, "created_at": "2026-03-20T13:56:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Montmartre_9222-room_13b38982-4c40-483f-afc0-7429a2435ac1.jpg?v=1776627915", "alt": "Armani Casa"}, "products_count": 243}, {"id": 79873441904, "title": "Art Deco", "handle": "decoglass-wallpaper", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-ysimd-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-ysimd-1n7m0yu\">\n<div class=\"flex flex-col text-sm pb-9\">\n<div data-testid=\"conversation-turn-19\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"f743d09c-b705-4d4b-8de5-a7e9f2a50c8b\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Step into the glamorous world of the Jazz Age with our Art Deco wallcovering collection, a celebration of opulence, sophistication, and geometric elegance. Inspired by the iconic design movement of the 1920s and 1930s, each wallcovering in this collection exudes the distinctive charm of Art Deco with its bold lines, lavish motifs, and shimmering metallic accents. From intricate fan shapes to luxurious gold foils and sleek geometric patterns, these wallcoverings evoke the spirit of the Roaring Twenties, infusing interiors with timeless allure and drama. Whether adorning the walls of a chic boutique hotel, a stylish cocktail lounge, or a sophisticated urban apartment, this collection pays homage to an era of exuberance and creativity, transforming any space into a captivating showcase of Art Deco grandeur.</p>\n<p>\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-09-29T12:02:09-07:00", "updated_at": "2026-07-28T21:32:38-07:00", "image": {"id": 1640674295859, "created_at": "2026-03-25T20:11:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104299_ROOMSET_01__38109.1769761676.jpg?v=1776628447", "alt": null}, "products_count": 485}, {"id": 298886037555, "title": "Art Deco Metallics", "handle": "art-deco-metallics-1", "description": "<p>Geometric patterns and metallic finishes inspired by the decorative arts movement of the 1920s and 1930s, combining architectural precision with surface luster. This palette brings together gold leaf, silver, bronze, and copper in structured, repeating motifs. Specified for lobbies, bars, entertainment spaces, and anywhere that calls for controlled glamour rooted in design history.</p>", "published_at": "2026-03-20T13:10:31-07:00", "updated_at": "2026-07-30T09:04:07-07:00", "image": {"id": 1640678555699, "created_at": "2026-03-25T20:22:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/dcd3f86ee26d00455c5d9bfbde5d22e4.jpg?v=1776402249", "alt": null}, "products_count": 47286}, {"id": 299575836723, "title": "Art Deco Wallcoverings", "handle": "art-deco", "description": null, "published_at": "2026-04-09T21:34:28-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1640813494323, "created_at": "2026-04-17T06:50:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258.jpg?v=1776433822", "alt": null}, "products_count": 2773}, {"id": 298512515123, "title": "Art Nouveau", "handle": "art-nouveau-wallpaper", "description": "<p>The Art Nouveau Wallcovering collection presents 475 designs that embody the flowing lines and organic motifs of the era. Ranging from delicate floral repeats to bold, architectural damasks, these wallcoverings offer a variety of colorways and substrates suitable for residential and commercial applications. Consider half-drop matches and railroaded options to minimize waste and achieve seamless installations.</p>", "published_at": "2026-03-04T23:52:45-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640619311155, "created_at": "2026-03-20T13:54:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/50868088b2e1032b0a0f49706fc6ec5c_ff2f9577-dfa0-4af4-b6f8-59dba3daed43.jpg?v=1774040061", "alt": "Art Nouveau Wallpaper"}, "products_count": 1288}, {"id": 298507075635, "title": "Arte International", "handle": "arte-international", "description": "<p>Arte International offers high-end wallcoverings known for their innovative textures and sophisticated color palettes, produced in their Belgian mill. This extensive collection features a range of specialty wallcoverings and architectural wallcoverings suitable for upscale residential and commercial projects. Specifiers will appreciate the gravure printing, intricate embossing, and unique natural fiber substrates found throughout the Arte International book.</p>", "published_at": "2026-03-04T19:15:10-08:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640618033203, "created_at": "2026-03-20T13:51:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EssentialsLesNaturels_ReverieTropicale_26771_Roomshot_Web_LR-fullscreen_0affad57-0e90-45df-b179-be6bcd39474b.jpg?v=1776628221", "alt": "Arte International"}, "products_count": 631}, {"id": 299575181363, "title": "Arte Wallcoverings", "handle": "arte", "description": null, "published_at": "2026-04-09T21:34:07-07:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1641209593907, "created_at": "2026-07-05T15:25:07-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Alaya_Banyan_11530_Roomshot_Web_HR-fullscreen_b5d113af-c22e-4903-9203-e98c53ba98af.jpg?v=1783290308", "alt": "Arte Wallcoverings"}, "products_count": 631}, {"id": 301429850163, "title": "Artmura", "handle": "artmura", "description": "<div class=\"vendor-about\">\n<h2>About Artmura</h2>\n<p>Artmura is a family-owned atelier based in Turin, Italy, originally established in 2008 as La Scala Milano Wallcovering. The house specializes in decorative relief art, a signature style that blends geometric form with rich, tactile texture. Each piece is hand-finished by skilled artisans, with an ongoing commitment to materials research and the development of new production techniques.</p>\n<p>Working exclusively with natural raw materials and water-based colors through eco-friendly production processes, Artmura produces contemporary handcrafted wallcoverings and murals. Every collection can be customized for pattern, color, and effect, and the studio collaborates with architects, designers, and decorators to bring bespoke concepts to life, marrying time-honored craft with a distinctly modern sensibility.</p>\n<p class=\"dw-collab\"><em>Artmura is available in the United States in collaboration with Designer Wallcoverings.</em></p>\n</div>\n<p>The <strong>Artmura</strong> collection at Designer Wallcoverings \u2014 architectural, hand-finished Italian non-woven wallcoverings across the Opera & La Scala Milano books, sold by the yard, to the trade.</p>", "published_at": "2026-06-12T11:35:47-07:00", "updated_at": "2026-07-05T15:24:08-07:00", "image": {"id": 1641208643635, "created_at": "2026-07-05T15:24:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Crystal-room.jpg?v=1783290248", "alt": "Artmura"}, "products_count": 161}, {"id": 285885792307, "title": "Arts and Crafts", "handle": "arts-and-crafts-wallpaper", "description": "<p>Arts & Crafts style wallcovering draws inspiration from the late 19th and early 20th-century movement known for its emphasis on craftsmanship and natural materials. These wallcoverings often feature intricate patterns inspired by nature, such as floral motifs, vines, and geometric shapes. Reflecting the movement's emphasis on simplicity and functionality, Arts & Crafts wallcoverings typically utilize earthy tones and muted colors, creating a cozy and inviting atmosphere. With its timeless designs and attention to detail, Arts & Crafts wallcovering is a popular choice for both traditional and contemporary interiors seeking to capture the essence of craftsmanship and authenticity. Whether used in a Craftsman-style home or to add character to a modern space, Arts & Crafts style wallcovering brings a sense of heritage and charm to any room.</p>\n<p><!----></p>", "published_at": "2024-12-18T13:40:47-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641209626675, "created_at": "2026-07-05T15:25:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e2eb6581455ab89447655b3053669aa3_56fd4eb3-f056-4493-9df8-50838b36278c.jpg?v=1783290310", "alt": "Arts and Crafts"}, "products_count": 1256}, {"id": 298971398195, "title": "AS Creation Wallcoverings", "handle": "as-creation-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:09-07:00", "updated_at": "2026-06-19T04:05:12-07:00", "image": {"id": 1640679145523, "created_at": "2026-03-25T20:23:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/as-creation-pintwalls-2_ee5f95ba-cade-4c34-842c-05068de81ef6.jpg?v=1776627758", "alt": null}, "products_count": 505}, {"id": 264266088499, "title": "As Seen in Showrooms", "handle": "as-seen-in-showrooms", "description": "<p>As Seen in Showrooms\" presents coveted wallcoverings selected from top-tier vendor showroom books. Discover diverse textures, colorways, and substrates suitable for specification across varied projects. Browse durable Type II options, unique patterns, and specialty grounds preferred by leading designers.</p>", "published_at": "2026-03-20T13:12:54-07:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 1640621211699, "created_at": "2026-03-20T13:55:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-777_5d645c1f-b5c1-4f41-9e00-9c4776f353e1.jpg?v=1776627560", "alt": "As Seen in Showrooms"}, "products_count": 42}, {"id": 298971365427, "title": "Backdrop", "handle": "backdrop", "description": null, "published_at": "2026-03-23T19:40:08-07:00", "updated_at": "2026-06-16T17:59:45-07:00", "image": {"id": 1640672919603, "created_at": "2026-03-25T20:06:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/tanbark-multi-2.jpg?v=1776627442", "alt": "Backdrop"}, "products_count": 9}, {"id": 298506256435, "title": "Baker Lifestyle", "handle": "baker-lifestyle-1", "description": "<p>Baker Lifestyle wallcoverings offer diverse design solutions, showcasing GP & J Baker's esteemed heritage in print and weave. The collection presents versatile multipurpose velvets and prints with considerations for texture, weight, and durability across a broad colorway selection. Architects and designers will appreciate the comprehensive book format for specifying these refined wallcoverings with confidence.</p>", "published_at": "2026-03-04T19:13:46-08:00", "updated_at": "2026-06-21T21:35:49-07:00", "image": {"id": 1640619376691, "created_at": "2026-03-20T13:54:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LB50064_659_6ef2270f-65d8-4bd2-85d5-a44ec56b7e25.jpg?v=1774040067", "alt": "Baker Lifestyle"}, "products_count": 441}, {"id": 283203633203, "title": "Baker Lifestyle Fabrics", "handle": "baker-lifestyle", "description": "<p>Baker Lifestyle Fabrics offer a versatile collection of multipurpose materials renowned for their quality and timeless designs. These textiles present a range of solid textures and unique ottoman weaves ideal for durable wallcovering applications. Consider these materials for projects where a refined hand and lasting performance are paramount.</p>", "published_at": "2025-01-16T11:25:05-08:00", "updated_at": "2026-06-21T21:35:49-07:00", "image": {"id": 1640619343923, "created_at": "2026-03-20T13:54:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PF50297_170_f25a9e8e-2e5f-4e91-a3b9-98ea3d609efc.jpg?v=1774040064", "alt": "Baker Lifestyle Fabrics"}, "products_count": 441}, {"id": 283201372211, "title": "Barclay Butera Collection", "handle": "barclay-butera-collection-1", "description": "<p>The Barclay Butera Collection is renowned for its sophisticated blend of coastal and classic styles, featuring a harmonious mix of elegant patterns, luxurious textures, and serene color palettes. This collection creates refined, inviting interiors with a relaxed yet polished aesthetic, ideal for both timeless and contemporary spaces.</p>", "published_at": "2025-06-06T10:34:26-07:00", "updated_at": "2026-06-17T14:17:26-07:00", "image": {"id": 1640623570995, "created_at": "2026-03-20T13:57:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WDW2101_WT_05281aeb-d392-4a8a-93c3-4459fecd5c84.jpg?v=1774040248", "alt": "Barclay Butera Collection"}, "products_count": 140}, {"id": 298512678963, "title": "Baroque", "handle": "baroque-wallpaper", "description": "<p>Baroque Wallcovering offers opulent designs suited to traditional and maximalist interiors, ideal for discerning clients seeking lavish detail. This collection features large-scale damasks and scrolling acanthus leaves in rich colorways, demanding expert installation for precise pattern match. Specified for grand residences and hospitality spaces, each bolt provides a luxurious hand and durable Type II performance.</p>", "published_at": "2026-03-04T23:52:50-08:00", "updated_at": "2026-07-28T13:01:32-07:00", "image": {"id": 1641209724979, "created_at": "2026-07-05T15:25:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17911_interior1_f7f7868d-9d7b-44a6-89dd-289ed05a853c.jpg?v=1783290317", "alt": "Baroque"}, "products_count": 205}, {"id": 79889629296, "title": "Basket Weave", "handle": "basketweave-paper", "description": "<p>Basket Weave paper features a textured design that mimics the intricate, interlaced pattern of traditional basket weaving. This wallcovering style adds depth and a tactile quality to walls, making it an ideal choice for adding subtle dimension and interest to both modern and traditional interiors. The woven look brings a sense of natural warmth and craftsmanship, often available in neutral tones or rich, earthy colors, perfect for creating a cozy and sophisticated atmosphere.</p>", "published_at": "2018-09-29T12:12:29-07:00", "updated_at": "2026-07-28T13:00:55-07:00", "image": {"id": 1640672067635, "created_at": "2026-03-25T20:03:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/4571ee2e4ad1c0902d0af0a294d732c1.jpg?v=1776628682", "alt": "Basket Weave"}, "products_count": 1597}, {"id": 283307343923, "title": "Beige & Cream Collection", "handle": "beige-cream-wallpaper-collection", "description": "<div class=\"flex-1 overflow-hidden @container/thread\">\n<div class=\"h-full\">\n<div class=\"react-scroll-to-bottom--css-kjwja-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-kjwja-1n7m0yu\">\n<div class=\"flex flex-col text-sm md:pb-9\">\n<article class=\"w-full scroll-mb-[var(--thread-trailing-height,150px)] text-token-text-primary focus-visible:outline-2 focus-visible:outline-offset-[-4px]\" dir=\"auto\" data-testid=\"conversation-turn-19\" data-scroll-anchor=\"true\">\n<div class=\"m-auto text-base py-[18px] px-3 md:px-4 w-full md:px-5 lg:px-4 xl:px-5\">\n<div class=\"mx-auto flex flex-1 gap-4 text-base md:gap-5 lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\">\n<div class=\"group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex max-w-full flex-col flex-grow\">\n<div data-message-author-role=\"assistant\" data-message-id=\"d4c0a041-66c4-4657-bf43-b2be202bf068\" https: class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&]:mt-5\" data-message-model-slug=\"gpt-4o\">\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Transform your space with the <em>Beige and Cream Wallcovering Collection</em>. Featuring soft neutrals, soothing tones, and timeless designs, this collection exudes effortless elegance and versatility. Perfect for creating a calming atmosphere, these wallcoverings blend seamlessly with any interior style\u2014modern, traditional, or minimalist.\n</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div></article>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2024-09-17T10:50:45-07:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1641209757747, "created_at": "2026-07-05T15:25:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_cu_013052cd-7f63-4137-a6e0-25dd760ff23a.jpg?v=1783290319", "alt": "Beige & Cream Wallcovering Collection"}, "products_count": 8936}, {"id": 299574329395, "title": "Beige Wallcoverings", "handle": "beige-wallcoverings", "description": "<p>Beige wallcoverings \u2014 the quiet-luxury neutral. Designer Wallcoverings curates beige wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of beige. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:28-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641209790515, "created_at": "2026-07-05T15:25:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_776e2131-afdd-4fd8-8f43-0fd7ab19699c.jpg?v=1783290320", "alt": "Beige Wallcoverings"}, "products_count": 41789}, {"id": 271352922163, "title": "Bella Italiano", "handle": "bella-italiano", "description": "<p>Bella Italiano wallcoverings evoke the sun-drenched textures of the Italian countryside, realized in natural substrates. These grasscloths and paperweaves from Phillipe Romano offer nuanced colorways with exceptional hand and Type II durability. Spec the collection for residential and hospitality interiors seeking old-world charm with modern mill standards.</p>", "published_at": "2026-03-20T13:17:33-07:00", "updated_at": "2026-07-24T04:05:18-07:00", "image": {"id": 1640613904435, "created_at": "2026-03-20T11:00:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0289F08B-8DD9-4039-BE61-7D64C0DF99D5.jpg?v=1776627880", "alt": null}, "products_count": 87}, {"id": 303020736563, "title": "Benu Recycled", "handle": "benu-recycled", "description": null, "published_at": "2026-07-22T09:35:46-07:00", "updated_at": "2026-07-22T09:39:45-07:00", "image": null, "products_count": 10}, {"id": 299577049139, "title": "Berber", "handle": "berber", "description": null, "published_at": "2026-04-09T21:39:14-07:00", "updated_at": "2026-06-21T20:57:46-07:00", "image": {"id": 1640814608435, "created_at": "2026-04-17T06:51:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2017100_940_b21bf3fe-ef56-4de1-83ee-1a5a68ba9860.jpg?v=1776433913", "alt": null}, "products_count": 8}, {"id": 298505601075, "title": "Bespoke", "handle": "bespoke", "description": "<p>This Bespoke collection from esteemed mill, Arthouse Wallcoverings, offers a diverse range of contract-grade wallcoverings across various grounds. Known for their exceptional hand and broad colorway options, these Type II vinyls feature both standard and half-drop repeats, with select patterns available railroaded on a durable substrate. Each bolt meets specification-grade standards, carefully crafted from selvage to selvage.</p>", "published_at": "2026-03-04T19:13:29-08:00", "updated_at": "2026-07-28T21:32:38-07:00", "image": {"id": 1640677736499, "created_at": "2026-03-25T20:20:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/140646_ROOMSET_ETHEREAL_2520MARBLE_2520GOLDEN_01__57861.1769776890.jpg?v=1776628262", "alt": null}, "products_count": 1921}, {"id": 271903621171, "title": "Best Seller (internal use)", "handle": "best-seller-internal-use", "description": "<p>This Art Deco-inspired wallcovering offers a sophisticated ground and intricate geometric repeat ideal for upscale hospitality and commercial interiors. Woven on a Type II, contract-grade substrate, this collection presents a durable and visually compelling solution, specified for high-traffic areas. Available in multiple colorways, each bolt is mill-produced and can be railroaded, with selvage edges ensuring a clean, half-drop installation.</p>", "published_at": "2024-12-17T09:33:04-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641209823283, "created_at": "2026-07-05T15:25:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_33712d83-fec4-475d-a22b-0e97dddf2c18.jpg?v=1783290322", "alt": "Best Seller (internal use)"}, "products_count": 156187}, {"id": 286353227827, "title": "Birds and Fowl", "handle": "birds", "description": "<p><meta charset=\"utf-8\">Bring your walls to life with our curated selection of bird and fowl wallcovering designs. From elegant swans and playful flamingos to exotic toucans and flying ducks, this collection celebrates nature's most graceful creatures. Ideal for powder rooms, dining spaces, nurseries, or feature walls, these patterns range from whimsical to sophisticated.</p>", "published_at": "2025-01-06T08:36:38-08:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1629442703411, "created_at": "2025-01-13T12:55:27-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64_d1cbd178-db67-46b4-9c58-6b90b503cd34.jpg?v=1776628313", "alt": null}, "products_count": 4552}, {"id": 283285651507, "title": "Black Collection", "handle": "black", "description": "<p>Black wallcoverings \u2014 for dramatic, high-contrast interiors. Designer Wallcoverings curates black wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of black. Order memo samples online; available to the trade and retail.</p>", "published_at": "2024-09-16T16:58:45-07:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1641209856051, "created_at": "2026-07-05T15:25:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_149119f2-f9ba-4356-91b8-a2518d8bc486.jpg?v=1783290324", "alt": "Black Wallcovering Collection"}, "products_count": 8226}, {"id": 299574263859, "title": "Black Wallcoverings", "handle": "black-wallcoverings", "description": null, "published_at": "2026-04-09T21:02:26-07:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1641209888819, "created_at": "2026-07-05T15:25:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_bc408fc2-18bf-470e-9e8c-6e4b37672ad0.jpg?v=1783290325", "alt": "Black Wallcoverings"}, "products_count": 8085}, {"id": 283176140851, "title": "Blithfield", "handle": "blithfield-1", "description": "<p>The <em>Blithfield Fabric Collection</em> celebrates timeless design with classic prints, soft textures, and elegant color palettes. Inspired by traditional craftsmanship, these fabrics blend vintage charm with modern versatility, making them perfect for upholstery, drapery, and decorative accents.</p>\n<p>Add warmth and sophistication to any room with patterns that exude heritage and style. Whether your d\u00e9cor is classic or contemporary, Blithfield fabrics elevate interiors with effortless elegance and refined beauty.</p>", "published_at": "2026-03-20T13:17:44-07:00", "updated_at": "2026-07-05T15:24:34-07:00", "image": {"id": 1641209036851, "created_at": "2026-07-05T15:24:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bfc-3692-123-0_e483f943-4061-4467-954a-6aa39506bfe2.jpg?v=1783290274", "alt": "Blithfield"}, "products_count": 303}, {"id": 260853104691, "title": "Blithfield Fabric Collection", "handle": "blithfield", "description": "<p>The <em>Blithfield Fabric Collection</em> combines timeless patterns with a fresh, modern twist. Featuring elegant prints, intricate designs, and soft color palettes, this collection is perfect for drapery, upholstery, and decorative accents. Inspired by heritage and craftsmanship, Blithfield fabrics bring understated beauty and sophistication to any interior.</p>\n<p>Ideal for both traditional and contemporary spaces, these fabrics infuse warmth and character into your home. Elevate your d\u00e9cor with the enduring elegance of Blithfield</p>", "published_at": "2026-03-20T13:17:45-07:00", "updated_at": "2026-07-05T15:24:32-07:00", "image": {"id": 1641209004083, "created_at": "2026-07-05T15:24:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bfc-3692-123-0.jpg?v=1783290272", "alt": "Blithfield Fabric Collection"}, "products_count": 344}, {"id": 95278104641, "title": "Blue Collection", "handle": "blue-wallpaper", "description": "<p class=\"p1\">Blue offers a serene and versatile aesthetic, ranging from deep, rich hues to soft, calming shades. These designs can evoke tranquility and sophistication, making them suitable for creating both bold statements and subtle elegance in various interior spaces.</p>", "published_at": "2019-03-12T18:45:15-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640655519795, "created_at": "2026-03-22T05:00:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ea2a4950d2e7442c958a3b20c677b65c_f7a1c32d-1596-439b-9da4-19ef007bf081.jpg?v=1776628676", "alt": null}, "products_count": 18697}, {"id": 283307638835, "title": "Blue Green", "handle": "turquoise", "description": "<p class=\"p1\">Using blue green palette in home interiors can create a vibrant and refreshing atmosphere. This color evokes feelings of tranquility and serenity, reminiscent of tropical waters, which can enhance relaxation in spaces such as living rooms and bedrooms. Blue green pairs well with a variety of other colors, making it versatile for different design styles, from coastal to modern. Additionally, it can serve as an accent color, bringing energy and brightness to neutral palettes, while also fostering a sense of creativity and inspiration in areas like home offices or art studios.</p>", "published_at": "2024-09-17T10:54:58-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640614920243, "created_at": "2026-03-20T13:09:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/33255_1635_ccf4a54f-d367-4ed9-9b66-7dc7db2ed3e3.jpg?v=1776628597", "alt": null}, "products_count": 9766}, {"id": 299574067251, "title": "Blue Wallcoverings", "handle": "blue-wallcoverings", "description": null, "published_at": "2026-04-09T21:02:20-07:00", "updated_at": "2026-07-30T08:31:16-07:00", "image": {"id": 1640813396019, "created_at": "2026-04-17T06:50:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64.jpg?v=1776433812", "alt": null}, "products_count": 14153}, {"id": 298512187443, "title": "Bohemian", "handle": "bohemian-wallpaper", "description": "<p>Bohemian Wallcovering offers worldly eclecticism for free-spirited clientele and informal architectural settings. This collection features diverse patterns, from large-scale florals to globally-inspired geometrics, with varying repeats and half-drop matches. Consider textured grounds, natural fiber substrates, and non-woven options for ease of installation and a relaxed hand.</p>", "published_at": "2026-03-04T23:52:34-08:00", "updated_at": "2026-07-29T22:38:50-07:00", "image": {"id": 1640618164275, "created_at": "2026-03-20T13:51:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/balancing-act-nightfall_568e3b64-06ca-46dc-b876-7a27be95590b.jpg?v=1774039901", "alt": "Bohemian Wallpaper"}, "products_count": 2366}, {"id": 299575935027, "title": "Bohemian Wallcoverings", "handle": "bohemian", "description": null, "published_at": "2026-04-09T21:34:31-07:00", "updated_at": "2026-07-29T22:38:50-07:00", "image": {"id": 1640813527091, "created_at": "2026-04-17T06:50:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/balancing-act-nightfall_eb874da9-8013-4147-b260-01bef6a28697.jpg?v=1776433826", "alt": null}, "products_count": 2372}, {"id": 298506911795, "title": "Borastapeter", "handle": "borastapeter", "description": "<p>Borastapeter wallcoverings offer a breadth of sophisticated designs, from traditional florals to contemporary geometrics, printed in Sweden. Known for exceptional print quality and durable constructions, their Type II vinyl and non-woven grounds ensure longevity and ease of installation. This extensive collection provides a range of pattern repeats and colorways suitable for residential and commercial projects.</p>", "published_at": "2026-03-04T19:14:03-08:00", "updated_at": "2026-07-16T09:29:20-07:00", "image": {"id": 1641209921587, "created_at": "2026-07-05T15:25:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-conference_room-mary-mcdonald-chinoiserie-panel-green-pan-1930_4e1f014a-52dd-493f-ba61-196604495f57.jpg?v=1783290327", "alt": "Borastapeter"}, "products_count": 100}, {"id": 299575214131, "title": "Borastapeter Scandinavian Wallcoverings", "handle": "borastapeter-scandinavian-wallpapers", "description": null, "published_at": "2026-04-09T21:34:08-07:00", "updated_at": "2026-07-15T11:25:15-07:00", "image": {"id": 1640814444595, "created_at": "2026-04-17T06:51:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7261_aef94544-e91d-4ec9-b8e9-6a48fc7b9f7a.jpg?v=1776433901", "alt": null}, "products_count": 3}, {"id": 283205599283, "title": "Botanicals & Florals Collections", "handle": "botanicals-and-florals", "description": "<p>Celebrate nature\u2019s finest with the <em>Botanicals and Florals Wallcovering Collection</em>. Featuring lush florals, delicate foliage, and vibrant botanicals, this collection brings life and elegance to your walls. From soft, romantic blossoms to bold, tropical prints, these wallcoverings are perfect for transforming any space into a garden-inspired oasis.</p>\n<p>Whether you\u2019re creating a refreshing living area, a serene bedroom, or an inviting hallway, this collection adds natural charm and timeless beauty to your interiors. Let your walls bloom year-round!</p>", "published_at": "2025-02-12T10:16:09-08:00", "updated_at": "2026-07-30T09:06:03-07:00", "image": {"id": 1640614625331, "created_at": "2026-03-20T13:09:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w3905-84.jpg?v=1776628441", "alt": null}, "products_count": 23245}, {"id": 261070258227, "title": "Braid / Tape", "handle": "braid-tape", "description": "<p class=\"p1\">Braid or tape in interior design refers to decorative trims used to enhance the aesthetic of soft furnishings like curtains, cushions, or upholstery. Braid is typically woven or braided in intricate patterns, often adding texture or a subtle accent to the fabric, while tape is a flat, woven trim that can provide a more streamlined or modern look. Both are versatile elements, commonly used to add a finishing touch or contrast to textile designs in high-end interior spaces.</p>", "published_at": "2026-03-20T13:13:02-07:00", "updated_at": "2026-07-28T10:35:36-07:00", "image": {"id": 1640672854067, "created_at": "2026-03-25T20:05:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TL10167_165_a680e04c-ba17-4bac-a45d-a632514576f0.jpg?v=1774494331", "alt": "Braid / Tape"}, "products_count": 266}, {"id": 279402545203, "title": "Brand McKenzie Collection", "handle": "brand-mckenzie-wallpaper-collection", "description": "<p>What we lack in longevity, we more than make up for in creativity. Our hand-drawn papers are unapologetically bold \u2013 and unquestionably beautiful. They dare you to be different; to step outside your comfort zone into a fabulous world inhabited by a cast of quirky characters. You\u2019ll meet eccentric sea creatures riding bikes and puffing pipes; beautiful, bejewelled butterflies; and dapper leopards in bow ties and top hats.</p>\n<p>Suffice to say, Brand McKenzie doesn\u2019t conform to the norm. We forgo fickle trends in favour of papers that are truly different and truly individual. We understand it takes courage to be a shade braver \u2013 to go against the grain. If this sounds like you, we\u2019re excited to welcome you on our journey.</p>", "published_at": "2024-05-23T14:27:26-07:00", "updated_at": "2026-07-24T20:30:44-07:00", "image": {"id": 1641209954355, "created_at": "2026-07-05T15:25:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abstract-jungle-teal-blue_7_fe9c5a52-57be-4da2-a967-0268a89e83db.webp?v=1783290329", "alt": "Brand McKenzie Collection"}, "products_count": 165}, {"id": 299577114675, "title": "Brazil", "handle": "brazil", "description": null, "published_at": "2026-04-09T21:39:16-07:00", "updated_at": "2026-06-21T20:54:36-07:00", "image": {"id": 1640813199411, "created_at": "2026-04-17T06:49:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWL-3406_40_0995e2f7-5702-4e98-b42e-d29df5e45a8f.jpg?v=1776433793", "alt": null}, "products_count": 71}, {"id": 94202429505, "title": "British Invasion", "handle": "british-walls", "description": "<p>Celebrate heritage design with the <em>British Invasion Wallcovering Collection</em>. Showcasing timeless patterns, intricate textures, and classic motifs, this collection combines traditional British charm with modern sophistication. From elegant florals to refined geometrics, these wallcoverings exude a sense of history and style.</p>\n<p>Perfect for creating cozy living spaces, stately feature walls, or refined interiors, the British Invasion Collection brings a touch of British elegance to any room. Classic never goes out of style!</p>\n<!---->", "published_at": "2019-01-08T12:44:17-08:00", "updated_at": "2026-07-26T12:28:23-07:00", "image": {"id": 1640671608883, "created_at": "2026-03-25T20:01:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2d765d423c431592d36f170c3cb6c2a2_c3e39d6c-bdb2-4550-baa4-4571d06e26e7.jpg?v=1774494103", "alt": "British Invasion"}, "products_count": 592}, {"id": 298506190899, "title": "British Walls", "handle": "british-walls-1", "description": "<p>British Walls offers a diverse range of wallcoverings, from traditional patterns to contemporary textures, suitable for high-end residential and commercial projects. Known for their superior craftsmanship and innovative designs, these Type II wallcoverings feature intricate repeats and varied substrates, ensuring lasting impact. Explore the book for unique colorways and diverse grounds, all milled to meet the demands of discerning designers.</p>", "published_at": "2026-03-04T19:13:45-08:00", "updated_at": "2026-07-25T01:32:49-07:00", "image": {"id": 1641209987123, "created_at": "2026-07-05T15:25:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/808736ff445a8b9d9d5c647c1fb8f79e_68230d1d-e783-466c-bbef-7c6e899b0142.jpg?v=1783290331", "alt": "British Walls"}, "products_count": 506}, {"id": 283307868211, "title": "Brown", "handle": "brown-wallpaper-collection", "description": "<p class=\"p1\">Using brown in home interiors brings warmth and earthiness to a space, creating a cozy and inviting atmosphere. This versatile color complements a variety of design styles, from rustic to modern, and pairs well with both bold and neutral palettes. Brown can evoke a sense of stability and comfort, making it ideal for living areas and bedrooms. Additionally, it works beautifully in layering with textures like wood, leather, and fabrics, enhancing the overall richness and depth of the interior.</p>", "published_at": "2024-09-17T11:09:02-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641210052659, "created_at": "2026-07-05T15:25:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_ebb2fbfa-3bbd-4849-95ef-291c8db4fb47.jpg?v=1783290335", "alt": "Brown"}, "products_count": 22848}, {"id": 299574493235, "title": "Brown Wallcoverings", "handle": "brown-wallcoverings", "description": "<p>Brown wallcoverings \u2014 earthy, grounding, and tactile. Designer Wallcoverings curates brown wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of brown. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:33-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641210019891, "created_at": "2026-07-05T15:25:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21452_Animal-Luxe_Brown_Rebel-Walls_interior1_w.webp?v=1783290333", "alt": "Brown Wallcoverings"}, "products_count": 16559}, {"id": 298505633843, "title": "Brunschwig & Fils", "handle": "brunschwig-fils", "description": "<p>Brunschwig & Fils offers a legacy of exquisite design, renowned within the trade for their timeless patterns and sophisticated colorways printed at their own mill. Their breadth of offerings includes both residential and contract-grade options, primarily on paper and non-woven substrates with meticulous attention to detail in repeat and half-drop matching. Specification-grade and Type II options are available, with select wide-width grounds designed to be railroaded, arriving by the bolt with clean selvage for ease of installation and exceptional hand.</p>", "published_at": "2026-03-04T19:13:30-08:00", "updated_at": "2026-07-28T11:37:29-07:00", "image": {"id": 1640680423475, "created_at": "2026-03-25T20:27:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8015150_611_1190253b-805d-4b1e-8614-a26eacce991f.jpg?v=1776628380", "alt": null}, "products_count": 3402}, {"id": 298886234163, "title": "Camel & Cognac", "handle": "camel-cognac-1", "description": "<p>Rich amber-to-brown tones drawn from saddle leather, aged spirits, and natural hide. This palette works as a sophisticated warm neutral that bridges the gap between beige and brown without falling into either category. Particularly effective in studies, dining rooms, and any space where warmth and gravitas need to coexist.</p>", "published_at": "2026-03-20T13:11:31-07:00", "updated_at": "2026-07-30T08:30:09-07:00", "image": {"id": 1640678621235, "created_at": "2026-03-25T20:22:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/forest_mustardfinal_2af08d59-d4a1-418b-8a0d-9870f9f56841.jpg?v=1776628716", "alt": null}, "products_count": 15973}, {"id": 286668390451, "title": "Candice Olson", "handle": "candice-olson-wallpaper", "description": "<p>The Candice Olson wallcovering collection from Kravet Design offers sophisticated patterns and textures printed on high-performance grounds. Known for their residential design heritage, these wallcoverings feature intricate botanical prints, grasscloth textures, and subtle chinoiserie details. Specified by the bolt, these durable Type II wallcoverings provide a timeless aesthetic for discerning clients.</p>", "published_at": "2025-01-14T13:56:49-08:00", "updated_at": "2026-07-22T20:27:46-07:00", "image": {"id": 1640680095795, "created_at": "2026-03-25T20:26:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/candice-olson-w3355-16.jpg?v=1774495595", "alt": null}, "products_count": 291}, {"id": 260653613107, "title": "Candice Olson Collection", "handle": "candice-olson-collection", "description": "<p class=\"p1\">The <i>Candice Olson Collection</i> is known for its sophisticated yet approachable designs, blending timeless elegance with modern sensibilities. This collection features luxurious fabrics, wallcoverings, and furnishings, often characterized by subtle textures, soft palettes, and refined patterns that add a touch of glamour to any space. Candice Olson\u2019s attention to detail and commitment to comfort make this collection a favorite for creating stylish, inviting interiors that exude warmth and understated luxury.</p>", "published_at": "2021-03-31T16:28:32-07:00", "updated_at": "2026-07-07T09:15:31-07:00", "image": {"id": 1624741085235, "created_at": "2024-09-12T16:56:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W3353_15_a038dda4-02a8-4616-bdde-fde4f596248f.jpg?v=1776627938", "alt": null}, "products_count": 160}, {"id": 283201765427, "title": "Candice Olson Wallcovering Collection", "handle": "candice-olson-collection-1", "description": "<p>Discover the <em>Candice Olson Wallcovering Collection</em>, a stunning blend of contemporary design and luxurious elegance. Known for soft textures, graceful patterns, and refined palettes, these wallcoverings bring understated beauty to modern and traditional interiors alike. From chic geometrics to nature-inspired motifs, each design exudes sophistication and style.</p>\n<p>Perfect for creating serene bedrooms, polished living spaces, or standout feature walls, Candice Olson's collection transforms homes into havens of timeless luxury. \u2728</p>", "published_at": "2024-09-13T07:40:44-07:00", "updated_at": "2026-07-07T09:15:31-07:00", "image": {"id": 1640671674419, "created_at": "2026-03-25T20:01:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/34095_16_3fc0a854-f26d-4524-9241-30f8120fad8a.jpg?v=1776627936", "alt": "Candice Olson Wallcovering Collection"}, "products_count": 70}, {"id": 298506321971, "title": "Carlisle & Co", "handle": "carlisle-co", "description": "<p>Carlisle & Co offers a diverse range of wallcoverings suitable for high-end residential and commercial interiors, known for their quality and design. This collection presents a wide array of textures, colors, and substrates, including natural cork and durable Type II vinyls. Architects and designers will appreciate the comprehensive selection, considering the pattern repeats and installation methods for each bolt.</p>", "published_at": "2026-03-04T19:13:48-08:00", "updated_at": "2026-07-05T15:25:37-07:00", "image": {"id": 1641210085427, "created_at": "2026-07-05T15:25:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WCC_LX1026_AbacaHorizon_Anchor_1000x_8687a623-aa11-4f77-9464-4efafaf05568.jpg?v=1783290337", "alt": "Carlisle & Co"}, "products_count": 441}, {"id": 303020179507, "title": "Carnegie Textiles", "handle": "carnegie-textiles", "description": null, "published_at": "2026-07-22T10:34:40-07:00", "updated_at": "2026-07-22T10:34:40-07:00", "image": null, "products_count": 301}, {"id": 303020146739, "title": "Carnegie Wall Panels", "handle": "carnegie-wall-panels", "description": null, "published_at": "2026-07-22T10:34:39-07:00", "updated_at": "2026-07-22T10:34:39-07:00", "image": null, "products_count": 126}, {"id": 299575246899, "title": "Carnegie Wallcoverings", "handle": "carnegie-wallcoverings", "description": null, "published_at": "2026-07-22T10:30:54-07:00", "updated_at": "2026-07-22T10:30:55-07:00", "image": null, "products_count": 124}, {"id": 298506387507, "title": "Catchii", "handle": "catchii", "description": "<p>Catchii wallcoverings offer designs from murals to textures, printed by their Netherlands mill on durable substrates. This book presents a range of bold colorways and globally-inspired patterns suitable for hospitality and residential projects. Consider the half-drop repeats and Type II performance for high-traffic areas requiring a sophisticated hand.</p>", "published_at": "2026-03-04T19:13:50-08:00", "updated_at": "2026-06-16T17:59:37-07:00", "image": {"id": 1640619737139, "created_at": "2026-03-20T13:54:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Catchii-behang-flying-cranes-blauw_08dd134b-b926-45f5-a0f4-7aa818a7cd04.jpg?v=1776627565", "alt": "Catchii"}, "products_count": 1}, {"id": 289118879795, "title": "Catchii European", "handle": "catchii-european-wallpaper", "description": "<div><span style=\"font-family: arial, sans-serif;\"><b>Discover Catchii\u2019s luxurious and eclectic wallcovering collection</b><br>Create a striking statement wall or add a luxurious finish to your entire room. Our creative wallcovering offers an original way to enliven your home.<br><br><b>Non-woven wallcovering</b><br>Our patterned wallcovering gives any room that refreshing aspect and refining look. From bamboo leaves and painterly exotic florals to playful animal and birds motifs, take inspiration from our eclectic wallcovering collection.\u00a0</span></div>\n<div><span style=\"font-family: arial, sans-serif;\"><br></span></div>\n<div><span style=\"font-family: arial, sans-serif;\"><b>Mix & Match</b><br>As an interior designer and illustrator, Femke loves to mix and match. Our wallcoverings offer lots of opportunities to reinvent your interior - through combinations and contrasts of colours, patterns and materials. Go for a combination of wallcoverings in one room; a patterned statement wall, combined with our natural wallcovering to add charm. Femke is happy to select a colour scheme for you.</span></div>\n<div><span><br></span></div>\n<div><b>About Femke</b></div>\n<div>Femke, founder and illustrator of Dutch homeware label Catchii, loves to travel. Elegant imagery, with exceptional attention to detail, of flora and fauna of various cultures create animated conversations. All designs are originally hand-painted by Femke.</div>\n<div></div>", "published_at": "2025-04-17T14:43:12-07:00", "updated_at": "2026-06-16T17:59:30-07:00", "image": {"id": 1640619704371, "created_at": "2026-03-20T13:54:52-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Catchii-behang-Animal-stripes-beige_70361cb9-50f0-4183-b17e-0aa0c229b2e8.jpg?v=1776627562", "alt": "Catchii European Wallpaper"}, "products_count": 1}, {"id": 79885402224, "title": "Checks + Plaids", "handle": "checks-plaids-and-stripes-1", "description": "<div class=\"flex-1 overflow-hidden @container/thread\">\n<div class=\"h-full\">\n<div class=\"react-scroll-to-bottom--css-kjwja-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-kjwja-1n7m0yu\">\n<div class=\"flex flex-col text-sm md:pb-9\">\n<article class=\"w-full scroll-mb-[var(--thread-trailing-height,150px)] text-token-text-primary focus-visible:outline-2 focus-visible:outline-offset-[-4px]\" dir=\"auto\" data-testid=\"conversation-turn-127\" data-scroll-anchor=\"true\">\n<div class=\"m-auto text-base py-[18px] px-3 md:px-4 w-full md:px-5 lg:px-4 xl:px-5\">\n<div class=\"mx-auto flex flex-1 gap-4 text-base md:gap-5 lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\">\n<div class=\"group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex max-w-full flex-col flex-grow\">\n<div data-message-author-role=\"assistant\" data-message-id=\"83676e5e-9666-41d9-84cf-f42790d25115\" dir=\"auto\" class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&]:mt-5\" data-message-model-slug=\"gpt-4o\">\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Bring classic design to your walls with the <em>Checks, Plaids, and Stripes Wallcovering Collection</em>. Featuring versatile patterns, crisp lines, and a variety of styles, this collection offers everything from tailored sophistication to playful charm. Whether you favor traditional plaids, bold stripes, or modern interpretations, these designs suit any interior.</p>\n<p>Perfect for adding structure, warmth, or visual interest to your space, these timeless patterns ensure your walls are always in style. Classic, chic, and endlessly versatile! \u2728</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</article>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-09-29T12:08:39-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640674689075, "created_at": "2026-03-25T20:12:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-09-01at11.58.20AM.png?v=1774494745", "alt": null}, "products_count": 104}, {"id": 79864627312, "title": "Chenille", "handle": "chenille-fabric", "description": "The original soft fluffy fabric.", "published_at": "2026-03-20T13:13:07-07:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 1640674164787, "created_at": "2026-03-25T20:11:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/37125_51_486c4d4e-9b24-4d7b-a46a-f0aad7425db0.jpg?v=1776628386", "alt": null}, "products_count": 1073}, {"id": 93446701121, "title": "Chevron & Herringbone Collection", "handle": "chevron-herringbone-wallpaper-collection", "description": "<p>Chevron patterns feature a distinctive V-shaped pattern, lending a modern and dynamic aesthetic to any space. Its clean lines and bold angles create a sense of movement and energy, making it a popular choice for contemporary interiors. On the other hand, herringbone wallcovering showcases a timeless zigzag pattern reminiscent of the bones of a herring fish. Its classic design adds a touch of sophistication and elegance to walls, offering a versatile option for both traditional and modern decor schemes. Whether opting for chevron or herringbone, both wallcoverings can elevate a room's visual appeal with their unique patterns and textures.</p>\n<!---->", "published_at": "2018-11-19T23:48:00-08:00", "updated_at": "2026-07-29T10:12:16-07:00", "image": {"id": 1640672329779, "created_at": "2026-03-25T20:04:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3c2ac84cbe04bbe26d7c388b57ed702c.jpg?v=1776628228", "alt": "Chevron & Herringbone Wallcovering Collection"}, "products_count": 2421}, {"id": 279638999091, "title": "Children's Wallcovering Collections", "handle": "kids-wallpaper", "description": "<p>This wallcovering collection is a whimsical and playful ensemble designed to spark imagination and creativity in young minds. Featuring charming motifs such as colorful animals, fairy tale characters, and outer space adventures, this collection brings joy and wonder to children's bedrooms and playrooms. With a palette of vibrant hues, soft pastels, and cheerful patterns, these wallcoverings create a lively and engaging environment perfect for little ones to explore and grow. From adorable nursery themes to adventurous designs for older children, the collection offers a range of options to suit every age and personality.\u00a0</p>\n<!---->", "published_at": "2024-05-31T01:46:01-07:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1640676458547, "created_at": "2026-03-25T20:16:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/In_the_Undergrowth_95201c59-34e6-46da-9834-2d4f337a66bf.jpg?v=1776628547", "alt": null}, "products_count": 619}, {"id": 298505830451, "title": "China Seas", "handle": "china-seas", "description": "<p>China Seas presents iconic textile designs translated to luxurious wallcoverings, known for their vibrant color palettes and distinctive hand-screened aesthetic. This extensive book offers a range of patterns, from small-scale geometrics to bold botanicals, ideal for creating sophisticated residential and commercial interiors. Specify China Seas for unique colorways on durable grounds, ensuring a high-end finish with meticulous pattern matching.</p>", "published_at": "2026-03-04T19:13:35-08:00", "updated_at": "2026-07-24T04:05:18-07:00", "image": {"id": 1640617115699, "created_at": "2026-03-20T13:48:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cs-room-hero.jpg?v=1782337822", "alt": "China Seas Clementine pink room setting"}, "products_count": 1810}, {"id": 298886004787, "title": "Chinoiserie Collection", "handle": "chinoiserie-collection", "description": "<p>Wallcoverings rooted in the European interpretation of East Asian decorative arts -- hand-painted botanicals, bird-and-branch motifs, pagoda scenes, and willow patterns on silk and paper grounds. Chinoiserie remains one of the most enduring and requested decorative traditions in high-end residential work. Suitable for formal living rooms, entry halls, and dining rooms where narrative pattern sets the tone.</p>", "published_at": "2026-03-20T13:10:27-07:00", "updated_at": "2026-07-30T08:59:37-07:00", "image": {"id": 1640616132659, "created_at": "2026-03-20T13:46:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CH-150-MS-4T_0eff34be-5184-496d-bc32-cc4bcb623911.jpg?v=1776628310", "alt": "Chinoiserie Collection"}, "products_count": 7792}, {"id": 79872917616, "title": "Chinoiserie Murals", "handle": "chinoiserie", "description": "<div id=\"bc-sf-filter-collection-description\" class=\"collection-description rte\">\n<p>These picturesque Chinoiseries and decorative murals are fine reproductions of the hand-painted originals, gathered from the most talented and exclusive studios of Asia. Scenes on these mural panels include wonderful gardens and natural environments populated with lovely birds, butterflies, and insects. These selections offer a variety of color schemes to meet most interior needs.</p>\n</div>", "published_at": "2018-09-29T12:02:03-07:00", "updated_at": "2026-07-30T08:59:36-07:00", "image": {"id": 1620084785203, "created_at": "2024-06-11T14:33:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/768728c53535e9159f8a0d9b0115ec64_94e48856-4063-4e24-95fe-95f8489358d2.jpg?v=1776628307", "alt": null}, "products_count": 6660}, {"id": 276062437427, "title": "Chocolate Brown", "handle": "dark-green", "description": "<p class=\"p1\">Chocolate brown wallcovering and fabrics offer a rich, sophisticated tone that brings warmth and depth to any space. This earthy, versatile color can create a cozy, inviting atmosphere, whether used in modern or traditional interiors. Chocolate brown wallcoverings often feature textures like grasscloth or luxurious patterns, while fabrics in this shade bring elegance to upholstery, drapery, or cushions. The deep hue pairs beautifully with metallic accents, neutrals, or bold colors, making it a timeless choice for adding a touch of refinement to your d\u00e9cor</p>", "published_at": "2024-02-13T10:43:33-08:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641210576947, "created_at": "2026-07-05T15:26:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_1f6ac2f2-a729-4494-b3ff-709acea67f23.jpg?v=1783290366", "alt": "Chocolate Brown"}, "products_count": 18716}, {"id": 298268000307, "title": "Christian Lacroix", "handle": "christian-lacroix-wallcoverings", "description": "<p>Experience the theatrical brilliance of Christian Lacroix wallcoverings. From the storied Parisian couture house, these designs bring runway-level artistry to interiors with exuberant color, baroque motifs, and fearless pattern mixing. A bold choice for architects and designers seeking dramatic, collectible surfaces.</p>", "published_at": "2026-02-25T07:22:58-08:00", "updated_at": "2026-07-21T04:05:36-07:00", "image": {"id": 1640677244979, "created_at": "2026-03-25T20:19:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/124117_05948b20-992f-4b2c-9e73-c6161e5eceae.webp?v=1776627864", "alt": null}, "products_count": 175}, {"id": 299576524851, "title": "Circles", "handle": "circles", "description": null, "published_at": "2026-04-09T21:38:58-07:00", "updated_at": "2026-07-26T04:36:52-07:00", "image": {"id": 1640814641203, "created_at": "2026-04-17T06:51:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/50994796154a8a5a604e938c17070f4c.jpg?v=1776433915", "alt": null}, "products_count": 30}, {"id": 286668849203, "title": "Clarke & Clarke", "handle": "clarke-clarke", "description": "<p>Clarke & Clarke</p>", "published_at": "2025-01-14T14:27:30-08:00", "updated_at": "2026-07-22T12:01:24-07:00", "image": {"id": 1640616525875, "created_at": "2026-03-20T13:47:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W0191_01_CAC_672f0fb7-0f98-48d3-b64f-ca813d6bfbf1.jpg?v=1774039644", "alt": "Clarke & Clarke"}, "products_count": 2977}, {"id": 289751072819, "title": "Clarke and Clarke", "handle": "clarke-and-clarke-1", "description": "<p>Clarke and Clarke, a heritage mill known for vibrant colorways and sophisticated design, presents this extensive collection of specification-grade wallcoverings. Featuring contract-grade Type II vinyl and a range of textured grounds, these 54\" wide bolts offer options for both railroaded and standard installations, with attention to repeat and half-drop matches clearly indicated. Review selvage details and substrate specifications to ensure suitability for your project.</p>", "published_at": "2025-05-16T15:31:17-07:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1640616165427, "created_at": "2026-03-20T13:46:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W0191_01_CAC_a59150b1-9ab5-4000-888a-1320178334e4.jpg?v=1774039595", "alt": "Clarke and Clarke"}, "products_count": 3927}, {"id": 298886103091, "title": "Coastal & Nautical", "handle": "coastal-nautical-1", "description": "<p>Wallcoverings that reference maritime and shoreline environments through both material and motif -- seagrass textures, driftwood weaves, shell patterns, and nautical stripe compositions. This is not themed decor; it is a material palette that connects interiors to coastal geography through texture, color, and pattern restraint. Appropriate for beach residences, resort properties, and any space oriented toward water.</p>", "published_at": "2026-03-20T13:10:38-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640678588467, "created_at": "2026-03-25T20:22:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/33255_1635_d3f06385-f090-459c-92fe-c7cc519c12da.jpg?v=1776628594", "alt": null}, "products_count": 19914}, {"id": 279683760179, "title": "Coastal Haven", "handle": "coastal-haven", "description": "<p>Coastal Haven offers a range of serene wallcoverings suited to refined seaside architecture and discerning clientele. The collection emphasizes natural textures and tranquil colorways designed to enhance light in airy, sophisticated interiors. Featuring versatile repeats and durable grounds, these selections provide a foundation for elegant, relaxed design schemes.</p>", "published_at": "2026-03-20T13:21:10-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1640626651187, "created_at": "2026-03-20T13:59:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN40512-A_d9377bfa-f59d-462c-bfcf-c3143d90f61a.jpg?v=1776627493", "alt": "Coastal Haven"}, "products_count": 103}, {"id": 299575902259, "title": "Coastal Wallcoverings", "handle": "coastal", "description": null, "published_at": "2026-04-09T21:34:30-07:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1640813002803, "created_at": "2026-04-17T06:49:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/heavy-madagascar-natural.jpg?v=1776433776", "alt": null}, "products_count": 9589}, {"id": 298507108403, "title": "Cole & Son", "handle": "cole-son", "description": "<p>Cole & Son's wallcoverings, renowned for their iconic designs and British heritage, offer a range of patterns from historical archives to contemporary collaborations. Their gravure and surface prints on quality grounds provide unique texture and visual interest for discerning projects. Spec books showcase diverse colorways and scales, suitable for various installation methods and repeat requirements.</p>", "published_at": "2026-03-04T19:15:11-08:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640617574451, "created_at": "2026-03-20T13:50:15-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/97_10030_CS_6aed177c-3d40-4074-85c5-d964ca5fb645.jpg?v=1774039816", "alt": "Cole & Son"}, "products_count": 1276}, {"id": 260510842931, "title": "Cole & Son Imported Wallcoverings", "handle": "cole-sons", "description": "<p><br></p>\n<p><br></p>", "published_at": "2026-03-20T13:13:11-07:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640673050675, "created_at": "2026-03-25T20:07:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/109_11052_CS_26c0ee26-cbfb-4f53-8649-4b3b1cad8a67.jpg?v=1776627784", "alt": "Cole & Son Imported Wallcoverings"}, "products_count": 1255}, {"id": 286691655731, "title": "Cole and Son Collections", "handle": "cole-and-son-collections", "description": "<p>Cole & Son's wallcovering collections showcase their celebrated British heritage and distinctive screen-printing techniques. Known for whimsical motifs and historical reproductions, their designs offer unique colorways and pattern scales. Specified by designers worldwide, these wallcoverings provide exceptional quality and visual interest for high-end residential and commercial projects.</p>", "published_at": "2025-01-15T10:58:02-08:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640617607219, "created_at": "2026-03-20T13:50:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/97_10030_CS_109f96bb-2c36-42e7-9832-1f019ba10e54.jpg?v=1774039822", "alt": "Cole and Son Collections"}, "products_count": 1254}, {"id": 260886954035, "title": "Cole and Son UK", "handle": "cole-and-son", "description": "<p><span data-mce-fragment=\"1\">From charming floral prints to sophisticated geometric patterns, Cole and Son offer a wide array of choices to suit various interior styles. Whether you're seeking to create a cozy and inviting ambiance or to add a touch of luxury to your room, their wallcovering collections have something for everyone.</span></p>", "published_at": "2021-04-11T22:07:54-07:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640672460851, "created_at": "2026-03-25T20:04:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/109_11052_CS_4c08bc6d-7642-43c4-b2df-96fb56c18e20.jpg?v=1776627779", "alt": "Cole and Son UK"}, "products_count": 1254}, {"id": 298506453043, "title": "Colefax & Fowler", "handle": "colefax-fowler", "description": "<p>Colefax & Fowler wallcoverings present timeless English designs, renowned for their graceful florals and sophisticated color palettes. These selections are gravure-printed on durable grounds with meticulous attention to detail, ensuring a refined hand and exceptional lightfastness. Specifiers can explore a range of traditional motifs with manageable repeats, suitable for classic residential and hospitality interiors.</p>", "published_at": "2026-03-04T19:13:51-08:00", "updated_at": "2026-06-16T17:59:37-07:00", "image": {"id": 1640619900979, "created_at": "2026-03-20T13:55:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7401-02_m_8b59215f-0e64-422f-80db-83fbb7bb99fb.jpg?v=1774040109", "alt": "Colefax & Fowler"}, "products_count": 361}, {"id": 289727184947, "title": "Colefax and Fowler", "handle": "colefax-and-fowler", "description": "<p>Colefax and Fowler</p>", "published_at": "2025-05-15T10:49:35-07:00", "updated_at": "2026-06-16T17:59:30-07:00", "image": {"id": 1640619868211, "created_at": "2026-03-20T13:55:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7963-02_m_58522484-7a09-4fa3-b921-2573c453020f.jpg?v=1774040106", "alt": "Colefax and Fowler"}, "products_count": 361}, {"id": 286630674483, "title": "Collections", "handle": "collections", "description": "<p>Collections offers a broad spectrum of wallcovering options, catering to diverse design visions and technical specifications. From intricate patterns with meticulous half-drop repeats to durable Type II vinyls suitable for high-traffic areas, this selection provides a comprehensive resource for discerning professionals. Explore a range of substrates, colorways, and textures within Collections to meet the unique demands of any project.</p>", "published_at": "2025-01-13T08:43:27-08:00", "updated_at": "2026-07-24T20:30:44-07:00", "image": {"id": 1641210118195, "created_at": "2026-07-05T15:25:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abstract-jungle-teal-blue_7_5ee4a479-d278-4fed-81c4-24ce647fb5a1.webp?v=1783290339", "alt": "Collections"}, "products_count": 165}, {"id": 303020703795, "title": "Collezione Italia", "handle": "collezione-italia", "description": null, "published_at": "2026-07-22T09:35:45-07:00", "updated_at": "2026-07-22T09:53:57-07:00", "image": null, "products_count": 412}, {"id": 94652366913, "title": "Commercial", "handle": "commercial", "description": "<p class=\"p1\">Commercial wallcovering serves as a versatile and durable solution that enhances the aesthetic appeal and functionality of spaces, offering a wide range of textures, patterns, and colors that cater to various design themes while providing robust performance to withstand high-traffic environments and meet specific commercial standards.</p>\n<!---->", "published_at": "2019-02-02T21:58:41-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641210150963, "created_at": "2026-07-05T15:25:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_125f4da7-44f0-4d33-b6e3-ec718e1b9fcb.jpg?v=1783290341", "alt": "Commercial"}, "products_count": 48449}, {"id": 298894557235, "title": "Commercial & Contract", "handle": "commercial-contract", "description": "<p>Type II and Type III vinyl wallcoverings engineered for high-traffic commercial interiors. Rated for abrasion resistance, flame spread, and stain repellency per ASTM and CFFA standards. Specified by architects and designers for hospitality, healthcare, corporate, and institutional projects.</p>", "published_at": "2026-03-20T23:07:31-07:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641210183731, "created_at": "2026-07-05T15:25:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_54bab521-8f5a-4b4e-8b70-1977fb720de3.jpg?v=1783290342", "alt": "Commercial & Contract"}, "products_count": 71985}, {"id": 79890153584, "title": "Commercial & Durable", "handle": "commercial-durable", "description": "<p>The <em>Commercial & Durable Wallcovering Collection</em> combines high performance with exceptional style. Designed to stand up to the demands of high-traffic spaces, these wallcoverings feature wear-resistant materials, bold textures, and sleek finishes that don\u2019t compromise on aesthetics.</p>\n<p>Perfect for commercial interiors, hospitality projects, or active homes, this collection ensures durability while adding sophistication to any space. Form meets function beautifully.</p>", "published_at": "2018-09-29T12:13:04-07:00", "updated_at": "2026-07-28T11:25:09-07:00", "image": {"id": 1640674951219, "created_at": "2026-03-25T20:13:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM105-2195.jpg?v=1776628072", "alt": null}, "products_count": 4217}, {"id": 95297994817, "title": "Commercial Specialty", "handle": "commercial-specialty", "description": "<p>This collection interprets the bold geometry of Art Deco, ideal for enhancing contemporary hospitality and corporate interiors. Our 10257 colorway is a specification-grade, Type II vinyl on a non-woven substrate, offering superior durability and a refined hand. Available by the bolt, this contract-grade wallcovering can be railroaded to minimize seams, with a manageable repeat and half-drop match; selvage is trimmed at the mill.</p>", "published_at": "2019-03-13T13:49:30-07:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641210216499, "created_at": "2026-07-05T15:25:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_ae6081cd-474c-4a0a-aea2-cebefb96be9a.jpg?v=1783290344", "alt": "Commercial Specialty"}, "products_count": 14786}, {"id": 95297830977, "title": "Commercial Styles", "handle": "commercial-styles", "description": "<p>This contract-grade collection of Type II vinyl wallcoverings echoes the clean lines of the Bauhaus movement, suitable for contemporary corporate interiors. The diverse colorway options and durable substrate meet specification-grade standards, offering both visual interest and longevity across high-traffic areas. Available by the bolt, many patterns can be railroaded to minimize seams and feature a half-drop repeat, optimizing mill efficiency while reducing waste.</p>", "published_at": "2019-03-13T13:49:30-07:00", "updated_at": "2026-07-30T08:03:02-07:00", "image": {"id": 1641210249267, "created_at": "2026-07-05T15:25:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_6c3d214f-4030-4d44-b3a2-49a5a0b81c70.jpg?v=1783290346", "alt": "Commercial Styles"}, "products_count": 12834}, {"id": 95014715457, "title": "Contemporary Style Wallcovering Collections", "handle": "contemporary", "description": "<p>Contemporary wallcoverings embrace modern design principles, offering sleek, stylish, and often minimalist patterns that cater to current aesthetic trends. These wallcoverings showcase a wide range of designs, from geometric shapes and abstract motifs to bold color blocks and subtle textures. Utilizing innovative materials and printing techniques, contemporary wallcoverings often feature metallic finishes, embossed patterns, and eco-friendly options, ensuring both visual appeal and sustainability.\u00a0</p>\n<!---->", "published_at": "2025-02-11T09:12:35-08:00", "updated_at": "2026-07-30T09:04:06-07:00", "image": {"id": 1641210282035, "created_at": "2026-07-05T15:25:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/966f47f3331d8361aee8f40240d6505c_3f45c759-636d-4584-9ddc-22df0abc5dba.jpg?v=1783290348", "alt": "Contemporary Style Wallcovering Collections"}, "products_count": 60072}, {"id": 79890350192, "title": "Coordonne Spain", "handle": "coordonne-spain-wallpaper-collection", "description": "<p><meta charset=\"utf-8\"><span>Treating interior design as fashion for the home, Coordonn\u00e9 creates wall coverings that elevate traditional applications by embracing innovation, emotion and passion in design. Based in Barcelona with over forty years of experience, this family-run company holds a Greenguard certification, ensuring that each wallcovering is free of harmful chemical emissions and uses sustainable dyes. Working in collaboration with like-minded artists and creatives, Coordonn\u00e9 is proud to produce luxury wallcoverings that bring inspiration, comfort and personality to the spaces they live in.</span></p>", "published_at": "2026-03-20T13:13:13-07:00", "updated_at": "2026-07-26T02:37:09-07:00", "image": {"id": 52030636097, "created_at": "2018-11-26T09:05:00-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/eb7ee3daa9a42323046be7d5a6cf8642.jpg?v=1776628718", "alt": null}, "products_count": 53}, {"id": 298505863219, "title": "Coordonn\u00e9", "handle": "coordonne", "description": "<p>Coordonn\u00e9 wallcoverings offer a diverse range of designs, known for their bold color palettes and innovative printing techniques from their Spanish mill. Their extensive library includes intricate Chinoiserie patterns and textural grounds suitable for high-end residential and commercial projects. Available in various substrates and weights, Coordonn\u00e9 provides options for diverse installation requirements, including straight match and half-drop repeats.</p>", "published_at": "2026-03-04T19:13:36-08:00", "updated_at": "2026-07-25T01:31:40-07:00", "image": {"id": 1641210314803, "created_at": "2026-07-05T15:25:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/511458ba89d88d8ff2c16b359de550c2.jpg?v=1783290350", "alt": "Coordonn\u00e9"}, "products_count": 1493}, {"id": 282281377843, "title": "Coral Collection", "handle": "coral", "description": "<p class=\"p1\">The color coral in wallcovering and fabrics is a warm, vibrant hue that blends elements of pink, orange, and red. It often evokes a tropical or coastal feel, adding a lively and cheerful ambiance to spaces. Coral can range from soft, muted tones to more intense, saturated shades, making it versatile for various design styles. When used in wallcovering or fabrics, coral can serve as an eye-catching accent color or a bold primary shade, depending on the overall palette and the desired effect in the room.</p>\n<!---->", "published_at": "2024-08-16T15:52:59-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641210380339, "created_at": "2026-07-05T15:25:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c63b3edb44f569170b10116168ed1d99.jpg?v=1783290354", "alt": "Coral Wallcovering Collection"}, "products_count": 4270}, {"id": 283365015603, "title": "Cork Wallcovering Collection", "handle": "cork-wallpaper-collection", "description": "<p><meta charset=\"utf-8\"><meta charset=\"utf-8\">Crafted from genuine cork, these wallcoverings celebrate the unique grain and texture inherent to the material. Sourced sustainably from cork oak bark, they provide an eco-conscious decor option with a refined, natural look. Each panel offers a distinctive tactile quality and organic aesthetic, available in a range of colors and finishes to suit diverse interiors.<br></p>", "published_at": "2024-09-19T09:21:44-07:00", "updated_at": "2026-07-30T08:09:21-07:00", "image": {"id": 1641210445875, "created_at": "2026-07-05T15:25:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_55098e6b-4bab-4b9a-b052-f2c684a8f91f.jpg?v=1783290359", "alt": "Cork Wallcovering Collection"}, "products_count": 1433}, {"id": 303023521843, "title": "Cork Wallcoverings", "handle": "material-cork", "description": "<p>Cork wallcoverings.</p>", "published_at": "2026-07-22T11:56:42-07:00", "updated_at": "2026-07-22T16:09:42-07:00", "image": null, "products_count": 26}, {"id": 283365834803, "title": "Crypton Durable", "handle": "crypton", "description": "<p>Experience the ultimate in performance and design with the <em>Crypton Collection</em>. Featuring high-performance fabrics, Crypton delivers unmatched durability, stain resistance, and easy maintenance without sacrificing style. Perfect for upholstery, drapery, and high-traffic areas, these fabrics are ideal for homes, businesses, and hospitality spaces.</p>\n<p>Combine beauty with functionality\u2014Crypton ensures your interiors stay stylish and resilient for years to come.</p>", "published_at": "2026-03-20T13:13:18-07:00", "updated_at": "2026-07-28T11:37:15-07:00", "image": {"id": 1641210478643, "created_at": "2026-07-05T15:26:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-36408-16-0_c0caf470-850b-4ba2-9cfd-6ef1e33acd03.jpg?v=1783290361", "alt": "Crypton Durable"}, "products_count": 319}, {"id": 289748942899, "title": "D-L", "handle": "d-f-brands", "description": "<p>D-I Wallcovering Brands</p>", "published_at": "2025-05-16T12:37:50-07:00", "updated_at": "2026-07-30T08:03:03-07:00", "image": {"id": 1641210511411, "created_at": "2026-07-05T15:26:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-2020212-916-0.jpg?v=1783290363", "alt": "D-L"}, "products_count": 13982}, {"id": 298506354739, "title": "Daisy Bennett", "handle": "daisy-bennett", "description": "<p>Brewster & York presents a comprehensive library of wallcoverings, known for quality and breadth since 1892. Their diverse offering ranges from classic residential patterns to robust Type II vinyls suitable for high-traffic commercial applications. Architects and designers will appreciate the extensive selection of grounds, colors, and weights available through their exhaustive pattern books.</p>", "published_at": "2026-03-04T19:13:49-08:00", "updated_at": "2026-07-08T10:17:59-07:00", "image": {"id": 1640617050163, "created_at": "2026-03-20T13:48:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AC9165ex_650x_716b1a89-6e14-46ce-a5f1-e60839b7df53.jpg?v=1776627729", "alt": "Brewster & York"}, "products_count": 70}, {"id": 298971004979, "title": "Daisy Bennett Wallcoverings", "handle": "daisy-bennett-wallcoverings", "description": null, "published_at": "2026-03-23T19:39:59-07:00", "updated_at": "2026-07-08T10:17:59-07:00", "image": {"id": 1640672690227, "created_at": "2026-03-25T20:04:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/db10210_e27b0437-b0a0-4a0a-98c6-369cb4689224.jpg?v=1774494292", "alt": "Daisy Bennett Wallcoverings"}, "products_count": 70}, {"id": 94165696577, "title": "Damask", "handle": "damasks-1", "description": "<p>Damask wallcoverings are renowned for their intricate patterns and luxurious textures, originating from the ancient city of Damascus. These wallcoverings often feature elaborate designs inspired by historical motifs, such as floral patterns, geometric shapes, or intricate scrolls. The richly woven fabric-like appearance of damask wallcoverings adds depth and elegance to any room, creating a sense of opulence and sophistication. With a wide range of color palettes and styles available, damask wallcoverings can suit various interior design themes, from classic and traditional to modern and eclectic. Whether adorning a grand ballroom or a cozy living space, damask wallcoverings exude timeless charm and style.</p>\n<!---->", "published_at": "2019-01-06T23:11:44-08:00", "updated_at": "2026-07-30T08:31:11-07:00", "image": {"id": 1640675409971, "created_at": "2026-03-25T20:14:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZPHA312620_1_ZOW0035_03_ZOFFANY_Acantha_WALLPAPER_14cb.jpg?v=1776628155", "alt": null}, "products_count": 4296}, {"id": 298894852147, "title": "Damask & Traditional", "handle": "damask-traditional", "description": "<p>Heritage pattern wallcoverings rooted in European decorative traditions \u2014 symmetrical damasks, scenic toiles, medallion ogees, and acanthus scrollwork. Sourced from mills with archived pattern libraries dating to the 19th century. Coordinating borders and ceiling papers available on select document patterns.</p>", "published_at": "2026-03-20T23:08:01-07:00", "updated_at": "2026-07-30T08:33:51-07:00", "image": {"id": 1641210544179, "created_at": "2026-07-05T15:26:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_a79a8bfe-2989-49e7-888f-ce62455b4487.jpg?v=1783290364", "alt": "Damask & Traditional"}, "products_count": 42051}, {"id": 299576033331, "title": "Damask Collection", "handle": "damask", "description": null, "published_at": "2026-04-09T21:34:34-07:00", "updated_at": "2026-07-30T08:31:11-07:00", "image": {"id": 1640813101107, "created_at": "2026-04-17T06:49:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ea2a4950d2e7442c958a3b20c677b65c.jpg?v=1776433785", "alt": null}, "products_count": 4112}, {"id": 299486085171, "title": "Dedar", "handle": "dedar", "description": null, "published_at": "2026-04-07T14:19:29-07:00", "updated_at": "2026-06-16T17:59:48-07:00", "image": {"id": 1640815165491, "created_at": "2026-04-17T06:52:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1__74269.1773625470_e8142d38-fd8e-40c4-ac7c-d1f7a5173b54.jpg?v=1776433952", "alt": null}, "products_count": 1}, {"id": 299574624307, "title": "Dedar Wallcoverings", "handle": "dedar-wallcovering", "description": null, "published_at": "2026-04-09T21:02:57-07:00", "updated_at": "2026-06-16T17:59:50-07:00", "image": {"id": 1640814739507, "created_at": "2026-04-17T06:52:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1__74269.1773625470.jpg?v=1776433922", "alt": null}, "products_count": 1}, {"id": 79889891440, "title": "Design Artist Series", "handle": "designer-artist-series", "description": "<p>The Design Artist Series presents exclusive wallcoverings born from collaborations with leading artists and studios, offering unique and expressive designs for high-end interiors. Each pattern explores innovative colorways, textures, and scales, expertly rendered on durable Type II substrates suitable for a range of commercial and residential applications. This collection provides specifiers with distinctive wallcovering options, characterized by exceptional artistry and superior mill quality, sourced globally.</p>", "published_at": "2018-09-29T12:12:43-07:00", "updated_at": "2026-06-24T12:27:47-07:00", "image": {"id": 1640674918451, "created_at": "2026-03-25T20:13:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/969d76916567772a7666d85a694c358c.jpg?v=1774494781", "alt": null}, "products_count": 184}, {"id": 298585358387, "title": "Designer Pulse: 2026-03-07", "handle": "designer-pulse-2026-03-07", "description": "<p>**Designer Pulse: 2026-03-07** offers a curated snapshot of tomorrow's trends in wallcoverings. Explore 123 hand-picked designs from leading vendors like Malibu Wallcovering, Phillipe Romano, and Kravet Couture, showcasing textures and styles poised to define interiors, including a focus on natural textures like grasscloth and jute.</p>", "published_at": "2026-03-20T13:21:58-07:00", "updated_at": "2026-07-21T21:25:47-07:00", "image": {"id": 1640625012787, "created_at": "2026-03-20T13:58:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2e96a9017ae5423aac06355db0831666.jpg?v=1776627922", "alt": "Designer Pulse: 2026-03-07"}, "products_count": 122}, {"id": 298914218035, "title": "Designer Pulse: 2026-03-21", "handle": "designer-pulse-2026-03-21", "description": "<p>Stay ahead of the curve with Designer Pulse: 2026-03-21, a curated daily collection showcasing tomorrow's trends in wallcoverings. Featuring 13 striking designs from leading vendors like China Seas, Romo, and Phillip Jeffries, discover inspiring textures, vibrant colors, and innovative patterns to elevate any space.</p>", "published_at": "2026-03-22T01:13:17-07:00", "updated_at": "2026-07-07T09:15:20-07:00", "image": {"id": 1641209069619, "created_at": "2026-07-05T15:24:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-yip-yip-yeah-horses-and-guns-wps-56515_42e6796a-a4d2-4056-bdb3-cd7a37cd42f5.jpg?v=1783290276", "alt": "Designer Pulse: 2026-03-21"}, "products_count": 13}, {"id": 262288703539, "title": "Designers Guild Wallcovering Collection", "handle": "designers-guild-wallpaper", "description": "<p>\u00a0</p>\n<p>Transform your walls with the <em>Designers Guild Wallcovering Collection</em>, where bold color meets timeless elegance. Featuring vibrant florals, rich textures, and striking geometrics, this collection celebrates creativity and craftsmanship. Perfect for modern and eclectic spaces, each design brings energy, sophistication, and artistry to your interiors.</p>\n<p>Whether you\u2019re creating statement walls or adding subtle charm, Designers Guild delivers a unique blend of style and flair. Elevate your home with wallcoverings that are as bold as they are beautiful!</p>", "published_at": "2026-03-20T13:13:22-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": null, "products_count": 878}, {"id": 299575312435, "title": "Designers Guild Wallcoverings", "handle": "designers-guild-wallcoverings", "description": null, "published_at": "2026-04-09T21:34:11-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": null, "products_count": 878}, {"id": 298971168819, "title": "Dolce & Gabbana Casa Wallcoverings", "handle": "dolce-gabbana-casa-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:03-07:00", "updated_at": "2026-06-16T17:59:45-07:00", "image": {"id": 1640672428083, "created_at": "2026-03-25T20:04:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TCW007TCAI9UL003.jpg?v=1774494267", "alt": "Dolce & Gabbana Casa Wallcoverings"}, "products_count": 36}, {"id": 298270359603, "title": "Donghia", "handle": "donghia-wallcoverings", "description": "<p>Donghia wallcoverings offer a sophisticated range of textures and colorways, reflecting the brand's heritage of refined Italian design. Known for their luxurious hand and exceptional durability, these Type II wallcoverings are suitable for high-end residential and commercial applications. Explore the collection's diverse patterns and grounds, available by the bolt through our trade showroom.</p>", "published_at": "2026-02-25T08:56:52-08:00", "updated_at": "2026-07-04T13:51:10-07:00", "image": {"id": 1640677277747, "created_at": "2026-03-25T20:19:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/P6021109_411.jpg?v=1774495161", "alt": null}, "products_count": 161}, {"id": 94340022337, "title": "Dots and Circle", "handle": "dots", "description": "<p>Dots and Circle wallcovering and fabrics bring a playful yet sophisticated touch to interior design, featuring simple geometric shapes that create rhythm and movement in a space. Whether small and subtle or large and bold, dot and circle patterns can add a sense of whimsy or modernity, depending on the design. These versatile patterns work well in both contemporary and traditional settings, making them ideal for accent walls, upholstery, or drapery, adding a stylish and energetic element to any room.</p>", "published_at": "2019-01-17T02:01:21-08:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1641210609715, "created_at": "2026-07-05T15:26:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21621_interior1_d650d4fa-f0f1-435e-b754-422c88b2259e.jpg?v=1783290373", "alt": "Dots and Circle"}, "products_count": 283}, {"id": 279773544499, "title": "Dragon Motifs", "handle": "dragon-motifs", "description": "<p>The Dragon Motifs collection presents 119 patterned wallcoverings, each interpreting the mythical creature across a variety of scales and colorways. Offered on Type II commercial-grade substrates, these designs feature both straight and half-drop repeats, allowing for versatile application. Coordinate complementary textures and grounds from across our book to achieve a bespoke installation.</p>", "published_at": "2025-02-13T13:37:19-08:00", "updated_at": "2026-07-28T09:49:04-07:00", "image": {"id": 1641210642483, "created_at": "2026-07-05T15:26:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21324_interior1_fa7a1ac6-edee-4220-891e-741edece585e.jpg?v=1783290375", "alt": "Dragon Motifs"}, "products_count": 156}, {"id": 283285848115, "title": "Drapery", "handle": "drapery-fabrics", "description": "<p>The Drapery Fabrics collection offers a comprehensive range of woven materials designed for contract and residential applications. From solid, textural weaves to patterned jacquards, these fabrics provide exceptional drape and durability for window treatments and soft furnishings. Specified by the bolt, this collection features a variety of weights and constructions suitable for demanding projects.</p>", "published_at": "2026-03-20T13:13:24-07:00", "updated_at": "2026-07-16T10:08:21-07:00", "image": {"id": 1640617410611, "created_at": "2026-03-20T13:49:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GDT5749_001_0297652f-6887-4d5b-94a5-99a72fa0ca51.jpg?v=1776628540", "alt": "Drapery Fabrics"}, "products_count": 1425}, {"id": 287861178419, "title": "Dresses | Phillipe Romano", "handle": "dresses-phillipe-romano", "description": "<p>Dresses | Phillipe Romano</p>", "published_at": "2025-03-05T16:01:21-08:00", "updated_at": "2026-07-26T10:54:11-07:00", "image": {"id": 1640677113907, "created_at": "2026-03-25T20:18:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PhillipJeffriesLogo_57384dd4-d4e3-4eee-a57f-1c8512b30521.png?v=1774495136", "alt": null}, "products_count": 28}, {"id": 283303968819, "title": "Durable", "handle": "durable-w-c", "description": "<p>For walls that work as hard as they look, explore the <em>Durable Wallcovering Collection</em>. Perfectly crafted to combine resilience with stunning design, these wallcoverings are ideal for high-traffic areas like hallways, kitchens, and commercial spaces. Featuring wear-resistant materials and timeless patterns, durability doesn\u2019t come at the cost of beauty.</p>\n<p>Whether you need functionality for your busy home or business, this collection ensures your walls stand up to life\u2019s demands while staying effortlessly stylish. Form and function at its finest! \ud83d\udcaa\u2728</p>", "published_at": "2024-09-17T08:19:42-07:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1640676655155, "created_at": "2026-03-25T20:17:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_a07194f5-18c7-459d-8261-abfd9121ed8d.jpg?v=1776628654", "alt": null}, "products_count": 18265}, {"id": 272172482611, "title": "DW Bespoke Studio To Go", "handle": "dw-bespoke-studio-wallpaper-collection", "description": "<p>DW Bespoke Studio To Go\u2122 are ready to order and \"good to go\".</p>\n<p>Most patterns can be made into A LARGE SCALE\u00a0MURAL detailing any element in our exclusive wallcovering into an any scale, any color, any size bespoke graphic for the entire wall with no repeating design.</p>\n<p>A great option for hotels, restaurants, and lobbies.</p>", "published_at": "2023-08-24T06:45:53-07:00", "updated_at": "2026-07-28T21:32:38-07:00", "image": {"id": 1640676294707, "created_at": "2026-03-25T20:16:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DIG_740036_235b3388-a49e-4285-ba09-fcc378dcf8fa.jpg?v=1776627853", "alt": null}, "products_count": 1144}, {"id": 272170680371, "title": "DW Bespoke Studios", "handle": "dw-bespoke-studios", "description": "Design and Print on Demand by Designer Wallcoverings", "published_at": "2026-03-20T15:23:52-07:00", "updated_at": "2026-07-28T21:32:38-07:00", "image": {"id": 1640676261939, "created_at": "2026-03-25T20:16:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-04-01at9.05.20AM_9f8794b8-250d-4b7c-990e-04820994fed8.png?v=1774494983", "alt": null}, "products_count": 1038}, {"id": 271855976499, "title": "DW Staff Picks", "handle": "dw-staff-picks", "description": "<meta charset=\"utf-8\">\n<div class=\"flex flex-grow flex-col gap-3\">\n<div class=\"min-h-[20px] flex flex-col items-start gap-4 whitespace-pre-wrap break-words\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>This collection of wallcoverings and fabrics has been expertly curated by a team of knowledgeable staff with a keen eye for design and quality. Each piece has been carefully selected for its unique aesthetic and ability to transform a room. From bold and colorful patterns to subtle and sophisticated textures, this collection offers a wide range of options to suit any style or preference.</p>\n</div>\n</div>\n</div>\n<div class=\"flex justify-between lg:block\"></div>", "published_at": "2025-02-13T13:51:45-08:00", "updated_at": "2026-07-28T08:02:53-07:00", "image": {"id": 1641210675251, "created_at": "2026-07-05T15:26:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TTN-1502_d6de95ba-a68b-4234-bb17-30f41fcf38f1.jpg?v=1783290377", "alt": "DW Staff Picks"}, "products_count": 102}, {"id": 272250667059, "title": "Eden", "handle": "eden", "description": "<p>Eden presents a serene landscape of nature-inspired wallcoverings in a soothing color palette ideal for hospitality and residential interiors. The collection features intricate patterns with a straight or half-drop repeat, allowing for seamless installation and visual continuity. Durable grounds and exquisite detailing from established mills ensure lasting quality for discerning designers.</p>", "published_at": "2026-03-20T13:26:51-07:00", "updated_at": "2026-07-07T09:18:58-07:00", "image": {"id": 1641209102387, "created_at": "2026-07-05T15:24:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-dining_room-dwtt-70332-designer-wallcoverings-los-angeles_f9411fc8-6d13-49e7-8211-2658b627583e.jpg?v=1783290278", "alt": "Eden"}, "products_count": 109}, {"id": 282336559155, "title": "ELEMENTS II NATURALS", "handle": "elements-ii-naturals", "description": "<p>Elements II Naturals offers a range of grasscloth wallcoverings, known for their inherent texture and organic hand. These durable, solid and subtly metallic Type II options provide versatile grounds for a variety of interiors. Specified by the bolt, each colorway promises ease of installation and lasting performance.</p>", "published_at": "2026-03-20T13:26:54-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640625930291, "created_at": "2026-03-20T13:59:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W4030_1_6f34e8fa-d309-4354-8817-85a31f7b782c.jpg?v=1774040344", "alt": "ELEMENTS II NATURALS"}, "products_count": 111}, {"id": 298270392371, "title": "Elitis", "handle": "elitis-wallcoverings", "description": "<p>Elitis wallcoverings offer a range of sophisticated textures and innovative materials, known for their French design heritage and quality millwork. Explore natural grasscloths, textured vinyls, and wide-width options suitable for high-end residential and commercial projects. Specifiers appreciate the brand's attention to color, unique substrates, and diverse pattern scales within each book.</p>", "published_at": "2026-02-25T08:56:53-08:00", "updated_at": "2026-07-22T10:56:17-07:00", "image": {"id": 1640620949555, "created_at": "2026-03-20T13:55:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/outdoor-tribus-wall-grasscloth-rm-1083-42-0022b1f368c5a97e9cdd4ebc0c_1cfc14b5-67b2-49fe-aabf-6e184492a459.jpg?v=1774040150", "alt": "Elitis"}, "products_count": 597}, {"id": 93444866113, "title": "Embossed Texture", "handle": "embossed", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"66b815d7-ceaf-440b-b43e-331eca6c4e61\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Embossed textured wallcoverings are a popular choice for interior design, adding depth and visual interest to walls. The embossing process involves creating raised patterns or textures on the vinyl surface, providing a tactile and three-dimensional effect. These wallcoverings not only enhance the aesthetic appeal of a space but also contribute to the overall sensory experience. With a variety of embossed patterns available, these wallcoverings offer a versatile and customizable solution to achieve a unique and sophisticated interior design.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2018-11-19T21:38:00-08:00", "updated_at": "2026-07-28T14:13:13-07:00", "image": {"id": 1641210708019, "created_at": "2026-07-05T15:26:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8fe84641482c25fff20af8a577b92e67.jpg?v=1783290379", "alt": "Embossed Texture"}, "products_count": 1053}, {"id": 298971267123, "title": "Emiliana Parati Wallcoverings", "handle": "emiliana-parati-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:06-07:00", "updated_at": "2026-06-16T17:59:45-07:00", "image": {"id": 1640671805491, "created_at": "2026-03-25T20:02:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/emiliana-parati-valentin-yudashkin-5-2_f039c9ca-a6f5-40f5-a8cd-0ee6de322827.jpg?v=1776627444", "alt": "Emiliana Parati Wallcoverings"}, "products_count": 15}, {"id": 282813530163, "title": "Emma J Shipley Collection", "handle": "emma-shipley-wallpaper-collection", "description": "<p>Emma J Shipley is a British artist and designer renowned for her intricate, hand-drawn illustrations that blend fantasy and nature into luxurious textiles, wallcoverings, and home accessories. Her collections often feature exotic animals, mythical creatures, and surreal landscapes, all brought to life with vivid colors and fine detailing. Known for her bold, imaginative designs, Emma J Shipley\u2019s work adds a whimsical yet sophisticated touch to interiors, making her a favorite in both contemporary and eclectic design spaces.</p>", "published_at": "2024-09-04T11:32:24-07:00", "updated_at": "2026-07-22T11:28:40-07:00", "image": {"id": 1640676491315, "created_at": "2026-03-25T20:16:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/F1107_01_CAC_b59b1aef-e547-48c2-b986-de556eb79a65.jpg?v=1774495020", "alt": null}, "products_count": 191}, {"id": 164060692531, "title": "European", "handle": "european-wallpapers", "description": "<p>Experience the finest in design with the <em>European Wallcovering Collection</em>. Celebrating rich artistic traditions and craftsmanship, this collection brings timeless sophistication, intricate patterns, and refined textures straight from Europe\u2019s design capitals. From classic damasks to modern geometrics, each wallcovering tells a story of style and heritage.</p>\n<p>Perfect for both contemporary and traditional spaces, these wallcoverings are designed to elevate your interiors with a touch of European charm. Bring global elegance to your home\u2014because luxury is always in the details!</p>", "published_at": "2026-03-20T13:13:35-07:00", "updated_at": "2026-07-29T10:08:45-07:00", "image": {"id": 1640615378995, "created_at": "2026-03-20T13:10:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w7971-03_j38mfhvsedzty35k.jpg?v=1774037440", "alt": null}, "products_count": 4177}, {"id": 79874097264, "title": "European Imported", "handle": "european-import-wallpaper-collection", "description": "<p data-start=\"106\" data-end=\"267\">Explore refined European wallcovering imports, from classic damasks to modern prints.<br data-start=\"188\" data-end=\"191\">Free samples and designer trade pricing available at Designer Wallcoverings.</p>", "published_at": "2018-09-29T12:02:16-07:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1628652208179, "created_at": "2024-12-17T13:21:14-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2024-12-17_at_1.20.59_PM.png?v=1776628360", "alt": null}, "products_count": 6025}, {"id": 298857529395, "title": "European Imports", "handle": "european-imports", "description": "<p>European Imports presents a comprehensive range of globally sourced wallcoverings, featuring designs from heritage mills specializing in gravure and rotary screen printing. This collection includes a diverse array of grounds, from deeply textured vinyls to delicate paper-backed options, catering to both residential and Type II commercial applications. Architects and designers will appreciate the varied repeats and installation methods, allowing for seamless integration into diverse project specifications.</p>", "published_at": "2026-03-19T05:36:31-07:00", "updated_at": "2026-07-24T22:30:51-07:00", "image": {"id": 1640671838259, "created_at": "2026-03-25T20:03:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/b7322b7819053f1d38d2b49ee2e94149.jpg?v=1774494180", "alt": "European Imports"}, "products_count": 617}, {"id": 279640080435, "title": "Even More Textures", "handle": "even-more-textures", "description": "<p>Even More Textures presents a robust selection of Type II vinyl wallcoverings known for their durability and ease of installation. Malibu Walls, a California mill specializing in architectural textures, offers these designs in a range of colorways on a non-woven substrate. This collection features pronounced textures with varied repeats, providing designers with versatile options for high-traffic commercial spaces.</p>", "published_at": "2026-03-20T13:27:10-07:00", "updated_at": "2026-07-22T22:30:49-07:00", "image": {"id": 1640625143859, "created_at": "2026-03-20T13:58:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TS82103-A_08850600-60a2-4390-8d44-c9a93b31402e.jpg?v=1776627490", "alt": "Even More Textures"}, "products_count": 242}, {"id": 94648172609, "title": "Exclusive Showroom Collections", "handle": "exclusive", "description": "<p>Exclusive Showroom Collections presents 3751, a contract-grade wallcovering recalling Art Deco\u2019s geometric precision, ideal for hospitality and commercial interiors. This Type II vinyl features a robust substrate, available in multiple colorways, with a standard repeat and mill-cut selvage on every bolt. Railroaded options ensure seamless application, while the durable hand and specification-grade construction meet the demands of high-traffic spaces.</p>", "published_at": "2026-03-20T13:13:37-07:00", "updated_at": "2026-07-30T08:30:28-07:00", "image": {"id": 1641210740787, "created_at": "2026-07-05T15:26:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e0b07f9db9cf672562f40714d09a70f.jpg?v=1783290380", "alt": "Exclusive Showroom Collections"}, "products_count": 3882}, {"id": 161286127667, "title": "Fabric Trim", "handle": "fabric-trim", "description": "<p>Fabric trim offers a versatile array of decorative elements designed to complement and enhance textiles and upholstery. These trims feature intricate designs, including braids, cords, fringes, and tassels, which add texture and visual interest to any project. Available in a spectrum of colors and materials such as silk, cotton, and metallic threads, they cater to a wide range of design aesthetics from traditional to contemporary. Fabric trims are not only used for edging curtains and pillows but also for embellishing furniture, lampshades, and even clothing, offering endless creative possibilities. Their craftsmanship and attention to detail make them a staple in interior design for adding a luxurious finishing touch to any space.</p>\n<!---->", "published_at": "2025-02-11T09:45:44-08:00", "updated_at": "2026-07-28T10:35:36-07:00", "image": {"id": 1620478525491, "created_at": "2024-06-24T11:39:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AE12344.jpg?v=1776628272", "alt": null}, "products_count": 973}, {"id": 298971496499, "title": "Fabricut Fabrics", "handle": "fabricut-fabrics", "description": null, "published_at": "2026-03-23T19:40:12-07:00", "updated_at": "2026-06-16T17:59:46-07:00", "image": {"id": 1640680718387, "created_at": "2026-03-25T20:28:10-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5151803_2x_79e1d63a-e405-4ae1-92a1-7a1261699736.jpg?v=1774495691", "alt": null}, "products_count": 46}, {"id": 299575345203, "title": "Fabricut Wallcoverings", "handle": "fabricut-wallcoverings", "description": null, "published_at": "2026-04-09T21:34:12-07:00", "updated_at": "2026-06-16T17:59:51-07:00", "image": {"id": 1640814673971, "created_at": "2026-04-17T06:51:57-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5151803_2x_0349f70e-d4ef-4f97-bf88-43d3f0e554ce.jpg?v=1776433917", "alt": null}, "products_count": 46}, {"id": 301565804595, "title": "FallingStar Studio", "handle": "fallingstar", "description": "<div class=\"vendor-about\">\n<h2>About FallingStar Studio</h2>\n<p>FallingStar Studio is a New York design house that translates the work of fine artists into richly layered wallcoverings. Its collaboration with painter Mitch Ferrin brings his canvases \u2014 studies in light, color, and the intimate interaction between people and the natural world \u2014 onto the wall. A single pattern may be composed of several of his original paintings, layered and repeated so the finished wallcovering reads as serene yet dynamic.</p>\n<p>What distinguishes the line is its origin in real, painted art rather than digital pattern-making. Each design begins as Ferrin's brushwork and is carefully developed into a wallcovering that preserves the depth, atmosphere, and painterly hand of the source work \u2014 luxury surfaces built from genuine fine art.</p>\n<p class=\"dw-collab\"><em>FallingStar Studio, in collaboration with artist Mitch Ferrin, is available through Designer Wallcoverings.</em></p>\n</div>\n<p>The <strong>FallingStar Studio</strong> collection at Designer Wallcoverings \u2014 to the trade.</p>", "published_at": "2026-06-17T10:34:55-07:00", "updated_at": "2026-07-05T15:24:11-07:00", "image": {"id": 1641208676403, "created_at": "2026-07-05T15:24:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/product_conch_bermuda_cc_2.jpg?v=1783290251", "alt": "FallingStar Studio"}, "products_count": 42}, {"id": 79870722160, "title": "Fantastic Frames", "handle": "fantastic-frames", "description": "<p>This *Fantastic Frames* collection presents a graphic exploration of geometric forms, offered in a range of colorways on a durable, contract-grade Type II substrate. The patterns, with repeats spanning from 12\" to 36\" and some designs suitable for railroaded installation, lend visual interest to both large-scale commercial and specification-grade residential projects. Available by the bolt from the mill, this collection offers a sophisticated hand and precise half-drop matching, ensuring minimal selvage waste.</p>", "published_at": "2026-03-20T13:13:40-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641210806323, "created_at": "2026-07-05T15:26:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_04bb9193-02bd-4358-a400-7d98050dd168.jpg?v=1783290385", "alt": "Fantastic Frames"}, "products_count": 1284}, {"id": 298512416819, "title": "Farmhouse", "handle": "farmhouse-wallpaper", "description": "<p>Farmhouse Wallcovering offers a range of rustic textures and inviting colorways suited to modern and traditional interiors. These selections feature natural materials and relaxed patterns with varying repeats, catering to diverse project scales. Consider this collection for residences and hospitality spaces seeking warmth and approachable sophistication.</p>", "published_at": "2026-03-04T23:52:42-08:00", "updated_at": "2026-07-30T08:10:54-07:00", "image": {"id": 1640678391859, "created_at": "2026-03-25T20:22:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AT7910_4e60ec1a-03c7-4d86-86c7-7049582adfe1.jpg?v=1776628225", "alt": null}, "products_count": 2946}, {"id": 298974478387, "title": "Farrow & Ball", "handle": "farrow-ball-wallcoverings", "description": null, "published_at": "2026-03-23T23:02:01-07:00", "updated_at": "2026-06-16T17:59:46-07:00", "image": {"id": 1640673902643, "created_at": "2026-03-25T20:10:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/purnon-2.jpg?v=1776627545", "alt": null}, "products_count": 2}, {"id": 79865380976, "title": "Faux Animal Patterns", "handle": "faux-animal-skin", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-tnblr-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-tnblr-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"d74cd557-39a1-4469-a76c-a593761c7bb9\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Vinyl wallcoverings embossed with faux animal skins, such as crocodile and snake prints, bring a touch of exotic luxury to interior spaces. These textured\u00a0wallcoverings\u00a0not only replicate the intricate details of real animal hides but also provide a cruelty-free alternative for those who appreciate the aesthetic without using\u00a0animal products. The embossed patterns add depth and tactile interest to walls, creating a visual and sensory experience. Whether adorning a chic urban apartment or a stylish office space, these vinyl wallcoverings imbue a space with a sense of sophistication, offering a subtle nod to the wild while maintaining a contemporary and cruelty-free design aesthetic.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-12-20T12:10:35-08:00", "updated_at": "2026-07-09T04:04:55-07:00", "image": {"id": 1616688545843, "created_at": "2023-12-18T14:49:51-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CROCA-93031-sample-clean_cead575a-9cb5-4606-884d-8b7fdd3f22a0.jpg?v=1776627659", "alt": null}, "products_count": 132}, {"id": 164060758067, "title": "Faux Collection", "handle": "faux-collection", "description": "<p>Our Faux Collection offers trade clients a curated selection of convincingly textured wallcoverings across diverse substrates and versatile colorways. Explore a range of repeats and half-drops, considering each material's hand and selvage for seamless installation. Sourced for depth and sophistication, these designs provide rich grounds that influence the mood of dining rooms, studies, and boutique hotels.</p>", "published_at": "2025-02-11T09:13:51-08:00", "updated_at": "2026-07-28T14:13:13-07:00", "image": {"id": 1641210839091, "created_at": "2026-07-05T15:26:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_c79d1cad-b064-485b-a2f4-674c45c73b7e.jpg?v=1783290387", "alt": "Faux Collection"}, "products_count": 6295}, {"id": 79893233776, "title": "Faux Gold Leaf Walls - 54\"", "handle": "faux-gold-leaf-walls-54", "description": "Faux Gold Leaf Walls - 54\"", "published_at": "2026-03-20T13:26:23-07:00", "updated_at": "2026-07-28T10:28:16-07:00", "image": {"id": 1641210871859, "created_at": "2026-07-05T15:26:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_60f9e0f8-b964-42c7-ab88-4671355193e3.jpg?v=1783290389", "alt": "Faux Gold Leaf Walls - 54\""}, "products_count": 544}, {"id": 79888973936, "title": "Faux Grasscloth", "handle": "faux-grasscloth-wallpaper-collection", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iwxny-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iwxny-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"d8a0c755-378e-4ebd-9a66-5b9d5eaf7005\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Faux grasscloth wallcoverings are a popular interior design choice that provides the aesthetic appeal of natural grasscloth without the maintenance challenges.\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-11-19T20:20:00-08:00", "updated_at": "2026-07-28T11:30:24-07:00", "image": {"id": 1640674852915, "created_at": "2026-03-25T20:12:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bb59071a9cc7dc1a6f4ff30837965537.jpg?v=1774494769", "alt": null}, "products_count": 315}, {"id": 161287143475, "title": "Faux Leather - Vegan Upholstery Vinyl", "handle": "upholstery-vinyl", "description": "<p>The Upholstery Vinyl fabric collection is designed for durability and practicality, making it ideal for high-traffic areas and environments that require easy maintenance. These fabrics mimic the look and feel of leather or suede but offer enhanced resistance to stains, spills, and abrasion.\u00a0</p>\n<!---->", "published_at": "2024-12-17T10:06:50-08:00", "updated_at": "2026-07-21T17:45:18-07:00", "image": {"id": 1641186656307, "created_at": "2026-06-29T09:07:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_2c90364c-81aa-41cc-866d-4c4cd9d2a0ce.jpg?v=1782749239", "alt": "Faux Leather - Vegan Upholstery Vinyl"}, "products_count": 2309}, {"id": 95011799105, "title": "Faux Leather Upholstery", "handle": "faux-leather", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iwxny-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iwxny-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"757adf8d-7216-4b09-a3cc-4c8069cd848c\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Faux leather, often in the form of vinyl, serves as an excellent alternative to real leather, especially in commercial projects where durability is paramount. Engineered to mimic the luxurious look and feel of genuine leather, faux leather offers a cruelty-free and more sustainable option as it is not derived from animal products. Its enhanced durability makes it well-suited for high-traffic areas, making it a popular choice for commercial upholstery and furnishings. The synthetic nature of faux leather also makes it resistant to moisture and easy to clean, ensuring longevity and low maintenance. This ethical and practical solution allows designers and businesses to achieve the desired aesthetic of leather without compromising on environmental or ethical considerations in their projects. These products can often be used as upholstery or wallcovering due to the thickness and durability of these materials.\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\"><span style=\"color: rgb(255, 42, 0);\"><em><b>Please check with a member\u00a0of our team if you are unsure if a product is intended for upholstery or wallcovering use</b></em>\u00a0</span></div>\n</form></div>", "published_at": "2026-03-20T13:13:42-07:00", "updated_at": "2026-07-21T17:45:16-07:00", "image": {"id": 1640675541043, "created_at": "2026-03-25T20:14:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-08-08at7.24.44AM_b19698c0-5caa-4b38-8732-9dd65b52367f.png?v=1776628500", "alt": null}, "products_count": 4845}, {"id": 93443981377, "title": "Faux Silk + Linen", "handle": "faux-silk", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-11\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"f8eb2e8a-ad17-4430-b182-6a8e2a55bd13\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Faux silk and faux linen vinyl wallcoverings emerge as indispensable design solutions for commercial hospitality projects, such as restaurants, hotels, and hospitals, seamlessly blending aesthetic appeal with practicality. The synthetic composition of these wallcoverings ensures durability and easy maintenance, making them well-suited for high-traffic areas where cleanliness and longevity are paramount. Mimicking the luxurious sheen of silk and the textured appearance of linen, these vinyl wallcoverings offer a cost-effective alternative without compromising on visual sophistication. Their resistance to stains, moisture, and wear makes them ideal for the demanding environments of hospitality settings, providing not only an attractive backdrop but also a resilient and practical solution for creating inviting and hygienic spaces that endure the rigors of daily use.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2018-11-19T20:59:04-08:00", "updated_at": "2026-07-28T14:13:13-07:00", "image": {"id": 1640679702579, "created_at": "2026-03-25T20:25:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e5e352a44c76ced4973203ec19911963.jpg?v=1776628007", "alt": null}, "products_count": 235}, {"id": 95247499329, "title": "Featured", "handle": "featured", "description": "<p>Explore our Featured color wallcovering collection, an essential resource for establishing atmosphere and supporting material palettes. This selection offers a spectrum of colorways suitable for diverse lighting conditions and spatial applications, sourced from across our vendor library. Consider the interplay of texture and finish when specifying these designs, confirming pattern match and substrate compatibility for each unique installation.</p>", "published_at": "2026-03-20T13:13:43-07:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1641210904627, "created_at": "2026-07-05T15:26:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R20431_interior1.webp?v=1783290391", "alt": "Featured"}, "products_count": 3515}, {"id": 95298453569, "title": "Featured Commercial", "handle": "commercial-featured", "description": "<p>This collection offers a sophisticated range of cool to warm neutrals on a durable Type II substrate, ideal for corridors and low-light offices. The contract-grade ground ensures lasting performance, while the versatile colorway complements brushed metal hardware and light wood millwork. Available by the bolt, with railroaded options and half-drop repeats, these specification-grade wallcoverings offer ease of installation, minimal selvage waste, and consistent hand across the entire mill run.</p>", "published_at": "2019-03-13T16:07:12-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1640675803187, "created_at": "2026-03-25T20:15:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2023-08-08at7.24.44AM.png?v=1776628497", "alt": null}, "products_count": 6214}, {"id": 274447368243, "title": "Fentucci", "handle": "fentucci", "description": "<p class=\"p1\"><b>The Lore of the Fentucci Family</b></p>\n<p class=\"p3\"><b>Origins and Ancient Beginnings</b></p>\n<p class=\"p4\">In the heart of Italy, nestled among the rolling hills of Tuscany, lies the quaint village of Montemerano. It is here, in the 13th century, that the illustrious Fentucci family began their storied legacy of craftsmanship. Legend has it that the founder, Leonardo Fentucci, was visited in a dream by the ancient Roman god Vulcan, who bestowed upon him the divine gift of artistry and craftsmanship. Inspired by this vision, Leonardo dedicated his life to mastering the art of handcrafted designs.</p>\n<p class=\"p3\"><b>The Renaissance Flourish</b></p>\n<p class=\"p4\">During the Renaissance, the Fentucci family became renowned across Italy for their intricate designs in metalwork, pottery, and textiles. It was said that their pieces, imbued with the essence of Vulcan\u2019s blessing, possessed an otherworldly beauty and durability. Patrons from far and wide, including the Medici family, sought out Fentucci creations to adorn their homes and palaces. The family\u2019s workshop, Il Laboratorio Fentucci, became a center of innovation and excellence, where each piece was crafted with meticulous care and artistry.</p>\n<p class=\"p2\"><br></p>\n<p class=\"p3\"><b>The Enchanted Forge</b></p>\n<p class=\"p4\">Central to the Fentucci legacy is the tale of the Enchanted Forge, a mystical place where the finest materials were transformed into masterpieces. According to legend, the forge was hidden deep within the family\u2019s estate, accessible only to those of Fentucci blood.\u00a0</p>\n<!---->", "published_at": "2026-03-20T13:13:45-07:00", "updated_at": "2026-07-29T10:12:35-07:00", "image": {"id": 1619982319667, "created_at": "2024-06-07T10:42:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2666bc189193c00fd5eb8cdca54b10b3.jpg?v=1776628344", "alt": null}, "products_count": 4430}, {"id": 298989715507, "title": "Fentucci Murals", "handle": "fentucci-murals", "description": null, "published_at": "2026-03-24T11:15:17-07:00", "updated_at": "2026-06-16T17:59:47-07:00", "image": {"id": 1640671215667, "created_at": "2026-03-25T19:56:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/9230_97WS131-01_2db7597f-bb99-4b20-ab49-f8b58496538a.jpg?v=1776627979", "alt": "Fentucci Murals"}, "products_count": 40}, {"id": 299921047603, "title": "Fentucci Naturals", "handle": "fentucci-naturals", "description": "<p>Grasscloth textures by Fentucci \u2014 private label naturals collection.</p>", "published_at": "2026-04-22T11:33:19-07:00", "updated_at": "2026-07-21T17:45:03-07:00", "image": {"id": 1641208610867, "created_at": "2026-07-05T15:24:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/toscana-taupe-linen-grasscloth-wallcovering-fentucci-bedroom_1220f503-9a24-4dd5-b58e-fc99419fddf9.jpg?v=1783290246", "alt": "Fentucci Naturals"}, "products_count": 20}, {"id": 279808081971, "title": "Fentucci Stripe", "handle": "beverly-hills-stripe-wallpaper", "description": "<p>Fentucci Stripe wallcovering offers a diverse selection of classic and modern striped patterns suitable for various design schemes. This collection features multiple scales and colorways, printed on durable Type II vinyl grounds for high-traffic areas. Consider the straight match repeat when coordinating with other patterns in the Fentucci book.</p>", "published_at": "2024-06-05T09:58:48-07:00", "updated_at": "2026-06-16T17:59:23-07:00", "image": {"id": 1640672886835, "created_at": "2026-03-25T20:05:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-700014_53b0652e-f7fc-45d3-8507-f985392ca182.jpg?v=1774494334", "alt": "Fentucci Stripe"}, "products_count": 141}, {"id": 298989944883, "title": "Fentucci Wallcovering", "handle": "fentucci-wallpaper", "description": null, "published_at": "2026-03-24T11:15:34-07:00", "updated_at": "2026-07-21T17:58:01-07:00", "image": {"id": 1640679243827, "created_at": "2026-03-25T20:24:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Blue_Wild_Meadow_23fe1cd8-8369-43cd-9e1b-2996068281b3.jpg?v=1776628340", "alt": null}, "products_count": 759}, {"id": 79913222256, "title": "Fine Paintables by Phillipe Romano", "handle": "fine-paintables-by-phillipe-romano", "description": "<p>Fine Paintables by Phillipe Romano offers deeply textured wallcoverings with the timeless quality and durability expected from this heritage mill. These paintable grounds provide a customizable solution for designers seeking bespoke color palettes and subtle pattern in high-end residential and commercial projects. Specified for their ease of installation and ability to conceal wall imperfections, these embossed wallcoverings offer enduring style.</p>", "published_at": "2018-09-29T12:44:33-07:00", "updated_at": "2026-07-18T04:05:01-07:00", "image": {"id": 1640652800051, "created_at": "2026-03-21T23:00:17-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1956FR-3-Amelia-bathroom-shot.jpg?v=1776627459", "alt": null}, "products_count": 96}, {"id": 303023751219, "title": "Flock / Velvet Wallcoverings", "handle": "material-flock-velvet", "description": "<p>Flock / Velvet wallcoverings.</p>", "published_at": "2026-07-22T11:56:48-07:00", "updated_at": "2026-07-22T17:36:27-07:00", "image": null, "products_count": 72}, {"id": 79865839728, "title": "Flocked Velvet Wallcovering Collection", "handle": "flocked-velvet-wallpaper-collection", "description": "<p>\u00a0</p>\n<div class=\"sir-trevor-text\">\n<p><strong></strong>Flock wallcovering was originally invented to imitate expensive cut-velvet hangings. Traditionally it was created by adding 'flock' \u2013 a waste product of the woollen cloth industry, which came in powdered form \u2013 to an adhesive coated cloth to create a raised velvet-like textured pattern or design. Today 'flock' has been replaced by man-made fibres such as polyester, nylon or rayon.</p>\n</div>\n<div class=\"sir-trevor-text\">\n<p>It is not clear when the first flock wallcoverings were produced, but trade cards and advertisements show they were available by the late 17th century. By the 1730s many flock papers that were direct imitations of damask (a rich, heavy silk or linen fabric with a pattern woven into it) or velvet began to appear. The range of patterns available at this time seems to have been relatively limited. One particularly magnificent design has been found in several locations. This was a crimson flock on a deep pink background, which has faded to yellow on most surviving examples. This pattern was hung in the offices of His Majesty's Privy Council, Whitehall, London, around 1735, as well as in the Queen's Drawing Room in Hampton Court Palace and in several town and country houses, also in the 1730s. Citation: V&A Museum</p>\n</div>", "published_at": "2025-02-13T13:37:01-08:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 49744609392, "created_at": "2018-09-29T11:54:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/69a302b51d3ed05446036615c680c285.jpg?v=1717447671", "alt": null}, "products_count": 460}, {"id": 298894819379, "title": "Florals & Botanicals", "handle": "florals-botanicals", "description": "<p>Floral and botanical wallcoverings ranging from documentary reproductions of 18th-century block prints to contemporary oversized bloom compositions. Patterns include trailing vines, tropical fronds, garden florals, and pressed-leaf motifs rendered in screen print, digital print, and hand-applied techniques across multiple substrates.</p>", "published_at": "2026-03-20T23:08:00-07:00", "updated_at": "2026-07-30T09:06:03-07:00", "image": {"id": 1640678916147, "created_at": "2026-03-25T20:23:15-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_76e89235-1ee5-4da3-a9bb-085381a43168.jpg?v=1776628377", "alt": null}, "products_count": 20919}, {"id": 289751531571, "title": "Florals & Flowers Collection", "handle": "florals-and-flowers", "description": "<p data-start=\"285\" data-end=\"441\">Discover luxury floral and flower-themed wallcoverings. Shop elegant, botanical wallcoverings for timeless interiors from top brands at Designer Wallcoverings.</p>\n<p data-start=\"285\" data-end=\"441\">\u00a0</p>\n<p data-start=\"285\" data-end=\"441\">floral wallcovering, flower wallcovering, botanical wallcovering, designer wallcoverings, luxury wallcovering, florals, modern floral wallcovering<br></p>", "published_at": "2025-05-16T16:28:24-07:00", "updated_at": "2026-07-30T08:31:01-07:00", "image": {"id": 1641210937395, "created_at": "2026-07-05T15:26:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_b0c8fe86-22b2-4a91-98a4-bf07e13d4045.jpg?v=1783290393", "alt": "Florals & Flowers Wallcovering Collection"}, "products_count": 4859}, {"id": 299576426547, "title": "Foil Wallcoverings", "handle": "foil", "description": null, "published_at": "2026-04-09T21:34:46-07:00", "updated_at": "2026-07-28T16:40:26-07:00", "image": {"id": 1641210970163, "created_at": "2026-07-05T15:26:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bella-parma-modern-metal-cork-print-prn-62330-bedroom_17180124-7378-496f-9731-633ce4242f57.jpg?v=1783290395", "alt": "Foil Wallcoverings"}, "products_count": 102}, {"id": 283203960883, "title": "Fornasetti Collection", "handle": "fornasetti", "description": "<p>Fornasetti is renowned for its whimsical and artistic approach to design, featuring distinctive, often surreal patterns and motifs. Known for its elaborate and imaginative prints, the brand creates luxurious wallcoverings and textiles that infuse interiors with a unique blend of artistry and sophistication.</p>", "published_at": "2024-09-13T08:52:50-07:00", "updated_at": "2026-07-28T12:47:26-07:00", "image": {"id": 1624964268083, "created_at": "2024-09-16T13:45:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114_28056_CS_6c018e4b-7608-414e-8335-51d302919964.jpg?v=1776627772", "alt": null}, "products_count": 87}, {"id": 298971201587, "title": "Franquemont London Wallcoverings", "handle": "franquemont-london", "description": null, "published_at": "2026-03-23T19:40:04-07:00", "updated_at": "2026-07-05T15:26:37-07:00", "image": {"id": 1641211002931, "created_at": "2026-07-05T15:26:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-java-arctic-wallpaper_ccf4ded3-55e2-4491-953e-2b6dd48c23ab.jpg?v=1783290397", "alt": "Franquemont London Wallcoverings"}, "products_count": 26}, {"id": 95015370817, "title": "French Country", "handle": "french-country-wallpaper-collection", "description": "<p>French Country wallcovering exudes rustic charm and timeless elegance, drawing inspiration from the idyllic countryside of Provence. Characterized by motifs such as delicate florals, pastoral scenes, and classic toile patterns, these wallcoverings often feature a soft, muted color palette with hues of lavender, sage, cream, and sky blue. The designs evoke a sense of warmth and comfort, creating a cozy, inviting atmosphere reminiscent of a quaint French farmhouse. High-quality materials and intricate detailing ensure that French Country wallcoverings bring a touch of refinement to any space. Perfect for kitchens, bedrooms, or living areas, they effortlessly blend old-world charm with contemporary comfort.</p>\n<!---->", "published_at": "2025-06-24T10:59:49-07:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1640675704883, "created_at": "2026-03-25T20:14:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ATWW15169_e0d33d09-0ff0-401d-80f3-255ef35d59e6.jpg?v=1776628301", "alt": null}, "products_count": 1336}, {"id": 298512810035, "title": "Fretwork Wallcovering", "handle": "fretwork-wallpaper", "description": "<p>The Fretwork Wallcovering collection offers a diverse selection of geometric lattice patterns, ideal for adding architectural interest. These designs range from small-scale, tight repeats to bold, large-format trellises, providing options for various wall dimensions and design schemes. Consider half-drop matches and coordinating plains for a cohesive millwork effect in classic or contemporary interiors.</p>", "published_at": "2026-03-04T23:52:55-08:00", "updated_at": "2026-07-28T13:05:08-07:00", "image": {"id": 1641211035699, "created_at": "2026-07-05T15:26:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2232208-A_dcea0ea2-6bbb-452e-bf91-d5f199e18aeb.jpg?v=1783290399", "alt": "Fretwork Wallcovering"}, "products_count": 716}, {"id": 283080327219, "title": "GASTON LIBRERIA", "handle": "gaston-libreria", "description": "<p>Gaston Libreria presents a diverse range of wallcoverings from the esteemed Spanish mill, Gaston y Daniela, renowned for their vibrant colorways and luxurious textiles. This collection offers intricate botanical prints, classic damasks, and geometric lattices, each carefully rendered on high-quality grounds for exceptional drape and durability. Featuring both straight and half-drop repeats, Gaston Libreria provides designers with versatile options for creating sophisticated interiors.</p>", "published_at": "2026-03-20T13:27:53-07:00", "updated_at": "2026-07-07T02:10:56-07:00", "image": {"id": 1640621899827, "created_at": "2026-03-20T13:56:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papel_pintado_gastonydaniela_trellis_blanco_azul_raquel_gonzalez_interiorismo_decoracion-150x150_5ea64e13-9d57-4de1-979c-7d9e049509f5.jpg?v=1774040184", "alt": "GASTON LIBRERIA"}, "products_count": 215}, {"id": 282327220275, "title": "GASTON NUEVO MUNDO", "handle": "gaston-nuevo-mundo", "description": "<p>Gaston Nuevo Mundo offers a vibrant exploration of global textile traditions translated for sophisticated interiors. This collection features luxurious upholstery and drapery fabrics with intricate ikat, kilim, and embroidery designs, referencing the rich heritage of Gaston Y Daniela. Diverse colorways and durable constructions make this book an essential resource for designers seeking distinctive textures and patterns with enduring quality.</p>", "published_at": "2026-03-20T13:27:57-07:00", "updated_at": "2026-06-21T20:40:03-07:00", "image": {"id": 1640623767603, "created_at": "2026-03-20T13:57:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GDT5566_002_d3fb549f-4240-40f0-bfcb-f0fa9c112fc1.jpg?v=1774040256", "alt": "GASTON NUEVO MUNDO"}, "products_count": 153}, {"id": 260649975859, "title": "Gaston y Daniela", "handle": "gaston-y-daniela", "description": "<p>Gaston y Daniela's wallcoverings offer sophisticated patterns and superior quality, reflecting the brand's rich Spanish heritage and dedication to textile innovation. Renowned for vibrant color palettes and intricate designs, these wallcoverings provide a range of options for residential and commercial interiors. Explore their extensive book of traditional and contemporary prints, ideal for adding a touch of European elegance to any project.</p>", "published_at": "2026-03-20T13:13:52-07:00", "updated_at": "2026-07-28T12:37:59-07:00", "image": {"id": 1640616951859, "created_at": "2026-03-20T13:48:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW1018_005_d8580bc9-7201-4ec3-ab13-2999b15adea6.jpg?v=1774039711", "alt": "Gaston y Daniela"}, "products_count": 2298}, {"id": 93576888385, "title": "Geometric Collections", "handle": "geometric", "description": "<p><meta charset=\"utf-8\">Geometric pattern wallcoverings have become increasingly popular in interior design, offering a modern and stylish aesthetic to any space. These wallcoverings often feature a variety of geometric shapes such as triangles, hexagons, or diamonds, creating visually appealing and dynamic patterns. The use of geometric designs adds a sense of order and symmetry to a room, making it visually engaging and balanced. Additionally, these patterns can be versatile, suiting a range of design styles from contemporary to retro. Whether used as an accent wall or covering an entire room, geometric pattern wallcoverings contribute to a chic and sophisticated ambiance in interior spaces.</p>\n<!---->", "published_at": "2018-11-25T23:37:17-08:00", "updated_at": "2026-07-30T09:01:12-07:00", "image": {"id": 1640653094963, "created_at": "2026-03-21T23:01:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_036ec345-e731-407f-bddb-954e118e8f5d.jpg?v=1776628487", "alt": null}, "products_count": 20852}, {"id": 95011831873, "title": "Geometric Patterns", "handle": "geometric-durable-vinyl", "description": "<meta charset=\"utf-8\">\n<div data-testid=\"conversation-turn-7\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"b83d201f-3f8a-47bf-b350-61a6f9698e2e\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-vzvrs-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-vzvrs-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"c95cd428-885c-4907-bea4-008c4d4f0ed1\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Geometric pattern wallcoverings have become increasingly popular in interior design, offering a modern and stylish aesthetic to any space. These wallcoverings often feature a variety of geometric shapes such as triangles, hexagons, or diamonds, creating visually appealing and dynamic patterns. The use of geometric designs adds a sense of order and symmetry to a room, making it visually engaging and balanced. Additionally, these patterns can be versatile, suiting a range of design styles from contemporary to retro. Whether used as an accent wall or covering an entire room, geometric pattern wallcoverings contribute to a chic and sophisticated ambiance in interior spaces.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2026-03-20T13:13:56-07:00", "updated_at": "2026-07-21T17:45:17-07:00", "image": {"id": 1641211068467, "created_at": "2026-07-05T15:26:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/provacetero-posa-wallpaper-xe5-66800-bedroom_99d829df-365c-4dae-8395-61f8337b6d7f.jpg?v=1783290400", "alt": "Geometric Patterns"}, "products_count": 123}, {"id": 79874588784, "title": "Glam By Phillipe Romano", "handle": "glam-by-phillipe-romano", "description": "<p>Phillipe Romano's \"Glam\" collection showcases their expertise in high-end textured wallcoverings, suitable for sophisticated residential and hospitality projects. The line features intricate pleats and luxurious shagreen effects on durable Type II grounds, offering exceptional depth and tactile interest. Specify these wallcoverings to add a touch of couture elegance with meticulous craftsmanship and unique colorways.</p>", "published_at": "2018-09-29T12:02:22-07:00", "updated_at": "2026-07-07T09:43:49-07:00", "image": {"id": 1640674328627, "created_at": "2026-03-25T20:11:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/509ddb8852540dbef5288abd470e1334.jpg?v=1774494686", "alt": null}, "products_count": 144}, {"id": 298506584115, "title": "Glass Bead", "handle": "glass-bead", "description": "<p>The Glass Bead collection features wallcoverings with meticulously applied glass beads on flexible substrates, offering a unique tactile dimension and subtle shimmer. These durable wallcoverings are ideal for high-end residential and hospitality projects, providing a luxurious alternative to traditional textures. Available in a range of colorways, the bead application ensures a sophisticated hand and ease of installation with a non-woven backing.</p>", "published_at": "2026-03-04T19:13:55-08:00", "updated_at": "2026-07-24T21:30:30-07:00", "image": {"id": 1640618459187, "created_at": "2026-03-20T13:52:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105_096421f6-e773-4beb-b222-61c867b572a4.png?v=1776628060", "alt": "Glass Bead"}, "products_count": 694}, {"id": 303023718451, "title": "Glass Bead Wallcoverings", "handle": "material-glass-bead", "description": "<p>Glass Bead wallcoverings.</p>", "published_at": "2026-07-22T11:56:47-07:00", "updated_at": "2026-07-22T16:41:01-07:00", "image": null, "products_count": 28}, {"id": 79888908400, "title": "Glitter + Sequins", "handle": "glitter-wallpaper", "description": "<div style=\"text-align: center;\">\n<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-37\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"d281b010-5619-4694-a4a6-972f89441833\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Glitter wallcoverings infuse spaces with a dazzling and whimsical allure by incorporating fine glitter particles into the wallcovering's surface. This sparkling effect adds a touch of glamour and drama, making glitter wallcoverings a popular choice for accent walls in bedrooms, living rooms, or entertainment spaces. The reflective quality of the glitter enhances the play of light in the room, creating a dynamic and visually striking atmosphere. These wallcoverings come in a variety of colors and patterns, allowing for versatile design options that suit different aesthetics. While glitter wallcoverings contribute to a sense of luxury, they are also designed to be durable and easy to maintain, providing a balance between style and practicality in interior design.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div style=\"text-align: center;\"></div>\n<div style=\"text-align: center;\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/WoyXL6vvE3c\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"></iframe></div>\n<div style=\"text-align: center;\"></div>\n<div style=\"text-align: center;\">Glitter Wallcovering for Home and Office Use</div>", "published_at": "2026-03-20T13:13:59-07:00", "updated_at": "2026-07-26T10:41:25-07:00", "image": {"id": 1640674820147, "created_at": "2026-03-25T20:12:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_7895.jpg?v=1776628057", "alt": null}, "products_count": 660}, {"id": 137328820289, "title": "Glitter Collection", "handle": "glitter-walls", "description": "<p>Fabric-backed glitter is a glamorous material that adds sparkle and sophistication to upholstery and wallcoverings. It features glitter particles embedded within a durable fabric backing, ensuring both durability and ease of application. This decorative material is available in a wide range of colors and textures, from subtle shimmer to bold metallic hues, allowing for creative customization in interior design projects. Fabric-backed glitter is versatile, suitable for accentuating furniture pieces, creating accent walls, or adding a touch of glam to any space. Its ability to catch and reflect light enhances visual interest and creates a luxurious ambiance in both residential and commercial settings.</p>\n<!---->", "published_at": "2019-08-21T14:27:13-07:00", "updated_at": "2026-07-09T04:04:55-07:00", "image": {"id": 1640675835955, "created_at": "2026-03-25T20:15:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GlitterWallsGLM-9315_585684d7-3224-4d0c-b37d-5d169b99b76a.jpg?v=1776627677", "alt": null}, "products_count": 238}, {"id": 298506125363, "title": "Glitter Walls", "handle": "glitter-walls-1", "description": "<p>Glitter Walls offers a dazzling array of shimmering wallcoverings, ideal for adding high-impact texture and light reflection to hospitality or residential projects. This collection features a diverse range of substrates, from sequined grounds to glass bead embellishments, ensuring a luxurious hand and substantial weight. Consider specifying these Type II wallcoverings for feature walls or accent spaces where a touch of Hollywood glamour is desired.</p>", "published_at": "2026-03-04T19:13:43-08:00", "updated_at": "2026-07-24T22:32:30-07:00", "image": {"id": 1640618885171, "created_at": "2026-03-20T13:53:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_e352e6e4-5032-4ed7-8bb7-1140f75b5387.jpg?v=1776628054", "alt": "Glitter Walls"}, "products_count": 551}, {"id": 164059906099, "title": "Gold Collection", "handle": "gold-wallpaper", "description": "<p>Add a touch of opulence and timeless luxury to your walls with the <em>Gold Wallcovering Collection</em>. Featuring shimmering metallics, elegant patterns, and reflective textures, these wallcoverings transform any space into a radiant masterpiece. Whether you choose intricate designs or sleek finishes, gold brings warmth, light, and sophistication to your interiors.</p>\n<p>Perfect for statement walls, dining rooms, or glamorous living spaces, this collection ensures your home shines with unparalleled style and refinement. Let your d\u00e9cor glow with golden elegance!</p>", "published_at": "2026-06-16T18:36:33-07:00", "updated_at": "2026-07-30T08:30:11-07:00", "image": {"id": 1640672100403, "created_at": "2026-03-25T20:03:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Chameleon_Tile_26x26in_JUICY2_79dbaed4-0423-4e00-a3c1-5712ea5566e4.jpg?v=1774494227", "alt": "Gold Wallcovering Collection"}, "products_count": 10328}, {"id": 299574132787, "title": "Gold Wallcoverings", "handle": "gold-wallcoverings", "description": "<p>Gold wallcoverings \u2014 metallic warmth and quiet glamour. Designer Wallcoverings curates gold wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of gold. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:22-07:00", "updated_at": "2026-07-30T08:30:11-07:00", "image": {"id": 1641211166771, "created_at": "2026-07-05T15:26:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b_9e237855-5e71-4c91-9c9a-0fedf40a43af.jpg?v=1783290406", "alt": "Gold Wallcoverings"}, "products_count": 10282}, {"id": 298507206707, "title": "GP & J Baker", "handle": "gp-j-baker", "description": "<p>GP & J Baker wallcoverings offer a legacy of distinguished British design, renowned for exceptional color and intricate patterns printed at their historic mill. The collection features a range of grounds, from delicate non-wovens to durable Type II vinyls suitable for high-traffic areas. Explore their signature florals and timeless toiles, considering the pattern repeat and half-drop match for seamless installation across diverse project scopes.</p>", "published_at": "2026-03-04T19:15:14-08:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1641211199539, "created_at": "2026-07-05T15:26:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-bf11030-725-0_f96a2fb5-53a5-49ca-8381-aec027276d3b.jpg?v=1783290408", "alt": "GP & J Baker"}, "products_count": 1887}, {"id": 298506092595, "title": "Graham & Brown", "handle": "graham-brown", "description": "<p>Graham & Brown wallcoverings offer a diverse range of designs, renowned for their quality and innovation in the wallcovering industry. Their extensive collection spans traditional patterns to contemporary textures, suitable for various commercial and residential applications. Specifiers can find a wide selection of grounds, colorways, and pattern matches within the Graham & Brown book.</p>", "published_at": "2026-03-04T19:13:42-08:00", "updated_at": "2026-07-12T08:26:02-07:00", "image": {"id": 1640616689715, "created_at": "2026-03-20T13:47:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/106289_2_0f0c4f8c-ccb5-42c1-a303-b65c3240732e.jpg?v=1776627850", "alt": "Graham & Brown"}, "products_count": 1678}, {"id": 263035486259, "title": "Graham and Brown", "handle": "graham-and-brown-exclusive-wallpaper", "description": "<p>Graham and Brown Exclusive</p>", "published_at": "2021-11-22T14:20:19-08:00", "updated_at": "2026-07-12T08:26:02-07:00", "image": {"id": 1640656863283, "created_at": "2026-03-22T11:01:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/115361rol_ROOMSET_01.jpg__07861.1769698877.jpg?v=1776627847", "alt": null}, "products_count": 1678}, {"id": 272250077235, "title": "Grand Palace | Thibaut", "handle": "grand-palace-wallpaper-collection", "description": "<div class=\"vendor-about\">\n<h2>About Thibaut</h2>\n<p>Founded in 1886 by Richard E. Thibaut in New York City, Thibaut is the oldest continuously operating wallpaper company in the United States. From its earliest days the firm was built on a commitment to fine design and the choicest colorings, a guiding principle that still shapes its collections nearly 140 years later. Across the 20th century its wallcoverings became fixtures of American interiors, with celebrated patterns like Memory Lane and Magnolia Hill defining a distinctly American decorative tradition.</p>\n<p>Today Thibaut pairs that heritage with a deep design archive and a steadily expanding portfolio of wallcoverings, fabrics, and trimmings. Its patterns range from classic florals, damasks, and toiles to fresh geometrics and textures, prized for their richly considered colorways, refined drawing, and enduring style. It is this balance of archival depth and contemporary sensibility that makes a Thibaut wallcovering instantly recognizable.</p>\n<p class=\"dw-collab\"><em>Thibaut is available in collaboration with Designer Wallcoverings.</em></p>\n</div>\n<p>\u00a0</p>\n<section class=\"page page__collection\" data-mce-fragment=\"1\"><header class=\"element element-lead page__collection--header\" data-mce-fragment=\"1\">\n<p data-mce-fragment=\"1\">The Grand Palace collection introduces 100 SKUs that evoke a traditional elegance with chinoiserie inspired designs, a style created in Europe from influences of tales and travels to the Far East. These wallcoverings with coordinating print, woven, and embroidered fabrics offer a unique juxtaposition of fanciful patterns featuring pagodas and Asian scenics with geometric companions and unexpected colors.</p>\n</header></section>\n<section class=\"page__collection\" data-mce-fragment=\"1\">\n<section class=\"element element-secondary page__collection--block\" data-mce-fragment=\"1\"><header data-mce-fragment=\"1\"></header></section>\n</section>", "published_at": "2025-06-16T09:02:30-07:00", "updated_at": "2026-07-09T04:04:54-07:00", "image": {"id": 1641209135155, "created_at": "2026-07-05T15:24:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_542a6175-d492-46d0-a9e8-7ce3a5613dcf.jpg?v=1783290280", "alt": "Grand Palace | Thibaut"}, "products_count": 134}, {"id": 298894655539, "title": "Grasscloth & Natural Fiber", "handle": "grasscloth-natural-fiber", "description": "<p>Hand-woven and machine-laminated wallcoverings crafted from sisal, jute, seagrass, abaca, arrowroot, and hemp on paper or non-woven backings. Each bolt carries inherent color and texture variation characteristic of natural materials. Recommended for low-moisture residential and light-commercial installations.</p>", "published_at": "2026-03-20T23:07:34-07:00", "updated_at": "2026-07-30T09:04:07-07:00", "image": {"id": 1641211232307, "created_at": "2026-07-05T15:26:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mw100-06_c212a01f-69e5-4453-a391-6ba757716e03.jpg?v=1783290410", "alt": "Grasscloth & Natural Fiber"}, "products_count": 14649}, {"id": 288590692403, "title": "Grasscloth 6", "handle": "grasscloth-6", "description": "<p>Grasscloth 6 offers a range of natural fiber wallcoverings known for their rich texture and organic variation. These durable grasscloths are applied vertically, concealing seams and adding a tactile dimension to interiors. Featuring a paper substrate, each bolt provides a unique, handcrafted quality suitable for residential and commercial spaces.</p>", "published_at": "2025-03-28T10:31:19-07:00", "updated_at": "2026-07-21T17:45:01-07:00", "image": {"id": 1640674197555, "created_at": "2026-03-25T20:11:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GrassclothResource6-ClarksonWeave-slate_1187464d-ad5e-4deb-b562-acf8f70dbca5.jpg?v=1776627523", "alt": null}, "products_count": 156}, {"id": 293288476723, "title": "Grasscloth Wallcovering", "handle": "grasscloth-wallpaper-collection", "description": "<p data-start=\"130\" data-end=\"482\">Bring natural sophistication into any space with our curated collection of designer grasscloth wallcoverings. Woven from fine jute, hemp, and seagrass, each panel adds subtle depth and organic texture. Designers prize grasscloth for its timeless appeal, turning plain walls into tactile statements of understated luxury.</p>\n<p data-start=\"484\" data-end=\"613\" data-is-last-node=\"\" data-is-only-node=\"\">\u00a0</p>", "published_at": "2025-09-11T08:26:51-07:00", "updated_at": "2026-07-30T09:05:34-07:00", "image": {"id": 1640700903475, "created_at": "2026-03-30T10:25:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abaca-tight-woven-grass-abaca-grs-43020-living_room.jpg?v=1776628647", "alt": "Grasscloth wallcovering in a living room setting"}, "products_count": 12961}, {"id": 287331975219, "title": "Grasscloth Wallcovering Collections", "handle": "grasscloth-wallpapers", "description": "<ul data-start=\"834\" data-end=\"1083\">\n<li data-start=\"957\" data-end=\"1016\" class=\"\">\n<p data-start=\"141\" data-end=\"181\" class=\"\">Elevate your space with timeless texture</p>\n<p data-start=\"183\" data-end=\"470\" class=\"\">Our curated collection of Grasscloth Wallcoverings brings organic elegance and natural warmth to any room. Handcrafted from finely woven grasses, jute, hemp, sisal, and other sustainable fibers, these wallcoverings add depth, dimension, and a tactile richness that paint simply can\u2019t replicate</p>\n<p data-start=\"472\" data-end=\"740\" class=\"\">Whether you\u2019re styling a serene coastal retreat or a bold modern interior, grasscloth offers a sophisticated backdrop with subtle variations in color and weave that make each roll one-of-a-kind. From classic neutrals to richly dyed hues, every wall becomes a statement</p>\n<p data-start=\"742\" data-end=\"1011\" class=\"\">Grasscloth is chosen for its natural beauty, as each piece is handwoven from real plant fibers. It adds depth and warmth to your walls, provides an eco-conscious design choice made from renewable resources, and features slight irregularities that create artisanal charm</p>\n<p data-start=\"1013\" data-end=\"1161\" class=\"\">Please note that due to the natural materials, seams are visible and color variations may occur \u2014 part of the charm that makes grasscloth so special</p>\n</li>\n</ul>", "published_at": "2025-02-10T11:30:42-08:00", "updated_at": "2026-07-30T08:30:11-07:00", "image": {"id": 1640700936243, "created_at": "2026-03-30T10:26:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/abaca-tight-woven-grass-abaca-grs-43020-dining_room.jpg?v=1776628402", "alt": "Grasscloth wallcovering in a dining room setting"}, "products_count": 2874}, {"id": 303023456307, "title": "Grasscloth Wallcoverings", "handle": "material-grasscloth", "description": "<p>Grasscloth wallcoverings.</p>", "published_at": "2026-07-22T11:56:40-07:00", "updated_at": "2026-07-28T13:05:42-07:00", "image": null, "products_count": 894}, {"id": 299574231091, "title": "Gray Wallcoverings", "handle": "gray-wallcoverings", "description": "<p>Gray wallcoverings \u2014 the versatile neutral that anchors any palette. Designer Wallcoverings curates gray wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of gray. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:25-07:00", "updated_at": "2026-07-30T08:31:05-07:00", "image": {"id": 1640812904499, "created_at": "2026-04-17T06:49:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a.jpg?v=1776433767", "alt": null}, "products_count": 20873}, {"id": 298512613427, "title": "Greek Key", "handle": "greek-key-wallpaper", "description": "<p>The Greek Key wallcovering collection presents a timeless motif, meticulously rendered across a range of scales and colorways suitable for diverse applications. These designs offer versatile coordination potential, with options available in various substrates and weights for optimal drape and durability. Specified at half-drop repeat, these wallcoverings provide a sophisticated foundation for classical and contemporary interiors.</p>", "published_at": "2026-03-04T23:52:48-08:00", "updated_at": "2026-07-28T11:31:52-07:00", "image": {"id": 1640621637683, "created_at": "2026-03-20T13:56:15-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/53aadeba49c428da2454517fe056c0a7.jpg?v=1776627969", "alt": "Greek Key Wallpaper"}, "products_count": 292}, {"id": 164060037171, "title": "Green Collection", "handle": "green-wallpaper-collection", "description": "<p><meta charset=\"utf-8\"><span>Green brings a touch of nature indoors, promoting feelings of balance and renewal. It\u2019s ideal for any room where you want to create a soothing environment. From vibrant emeralds to soft sage, green fabrics can add a refreshing touch to your decor.</span></p>", "published_at": "2020-06-17T15:06:25-07:00", "updated_at": "2026-07-30T08:30:50-07:00", "image": {"id": 1641211265075, "created_at": "2026-07-05T15:26:52-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_4bad89dd-2a52-4166-8c6e-3507c96742fd.webp?v=1783290412", "alt": "Green Wallcovering Collection"}, "products_count": 18639}, {"id": 79874949232, "title": "Green Wall Textures", "handle": "green-wall-textures", "description": "<p>Green Wall Textures offers a verdant spectrum for contract interiors, ideal for specifying serene and biophilic designs. This palette ranges from deep forest to subtle sage, complementing natural materials and diffused lighting schemes. Type II durability and varied grounds accommodate high-traffic areas, ensuring lasting color integrity on every bolt.</p>", "published_at": "2026-03-20T13:14:00-07:00", "updated_at": "2026-07-07T09:48:23-07:00", "image": {"id": 1640624488499, "created_at": "2026-03-20T13:58:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2a45ebc332c1f7e896e5aa7e4133c172.jpg?v=1776627456", "alt": "Green Wall Textures"}, "products_count": 130}, {"id": 299574100019, "title": "Green Wallcoverings", "handle": "green-wallcoverings", "description": "<p>Green wallcoverings \u2014 from restful sage to jewel-box emerald. Designer Wallcoverings curates green wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of green. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:21-07:00", "updated_at": "2026-07-30T08:30:50-07:00", "image": {"id": 1640812642355, "created_at": "2026-04-17T06:49:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/VER-43253.jpg?v=1776433744", "alt": null}, "products_count": 12142}, {"id": 164059938867, "title": "Grey Collection", "handle": "grey-silver", "description": "<p>Grey wallcoverings \u2014 the versatile neutral that anchors any palette. Designer Wallcoverings curates grey wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of grey. Order memo samples online; available to the trade and retail.</p>", "published_at": "2024-12-18T13:14:41-08:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640655814707, "created_at": "2026-03-22T05:01:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_7aa4e965-9cf1-4029-bdc4-c264d911b667.jpg?v=1776628708", "alt": null}, "products_count": 36703}, {"id": 299575410739, "title": "Groundworks Wallcoverings", "handle": "groundworks-wallcoverings", "description": null, "published_at": "2026-07-22T08:07:09-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": null, "products_count": 230}, {"id": 164059971635, "title": "Hand Made", "handle": "hand-made-wallcoverings", "description": "Hand Made Wallcoverings", "published_at": "2020-06-17T15:06:25-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1640679931955, "created_at": "2026-03-25T20:26:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cfef8a782544b17a40482b386c34c93b_cdfe88ff-49d7-4f2a-b9e0-fa74f5482950.jpg?v=1774495574", "alt": null}, "products_count": 117}, {"id": 93445357633, "title": "Handcrafted", "handle": "hand-crafted", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-ijlbq-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-ijlbq-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-27\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"9e4cc56f-ff56-49cc-b2c4-a1af19ceca02\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Handcrafted wallcoverings, born from a meticulous blend of natural and synthetic fibers, along with metal film and plaster-surface effects, embody a harmonious fusion of tradition and innovation. The artisanal craftsmanship brings a unique texture and depth to these wallcoverings, making each piece a work of art in itself. The combination of natural fibers infuses warmth and authenticity, while the introduction of metal film and plaster-surface effects adds a contemporary and visually captivating element. The careful interplay of these materials results in a versatile wallcovering that can seamlessly adapt to various interior styles, from industrial chic to rustic elegance. The handcrafted nature of these wallcoverings ensures a one-of-a-kind aesthetic, offering a bespoke solution for those who appreciate the artistry and individuality that comes with handmade design.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2018-11-19T22:14:00-08:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1641211297843, "created_at": "2026-07-05T15:26:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EssentialsWashedLinen_WashedLinen_3_Roomshot_Web_LR-og_b46e5dd8-a42f-4414-96a0-fe7b81c73958.jpg?v=1783290414", "alt": "Handcrafted"}, "products_count": 244}, {"id": 298507239475, "title": "Harlequin", "handle": "harlequin", "description": "<p>Harlequin offers a diverse compendium of wallcoverings, known for exceptional quality and design innovation since their inception. This collection encompasses a range of substrates, from traditional non-wovens to durable Type II vinyls suitable for high-traffic commercial spaces. Designers will appreciate the breadth of patterns and colorways, facilitating seamless coordination across diverse project specifications.</p>", "published_at": "2026-03-20T13:14:02-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641211363379, "created_at": "2026-07-05T15:26:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R15571_interior1.webp?v=1783290418", "alt": "Harlequin"}, "products_count": 641}, {"id": 299575443507, "title": "Harlequin Wallcoverings", "handle": "harlequin-wallcoverings", "description": null, "published_at": "2026-04-09T21:34:15-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641211396147, "created_at": "2026-07-05T15:27:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/HDMW113330_1_HAW0317_02_HARLEQUIN_Dolmens_WALLPAPER_ff38_9feaa691-6d76-4384-a05b-3d41f3bef079.jpg?v=1783290420", "alt": "Harlequin Wallcoverings"}, "products_count": 528}, {"id": 299486117939, "title": "Hermes", "handle": "hermes", "description": null, "published_at": "2026-04-07T14:19:30-07:00", "updated_at": "2026-07-05T15:27:02-07:00", "image": {"id": 1641211428915, "created_at": "2026-07-05T15:27:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e81a0a8ff4246bda6647995715e2fb0_4e92defe-8f2c-442d-8334-318e2d8467f1.jpg?v=1783290422", "alt": "Hermes"}, "products_count": 29}, {"id": 299486150707, "title": "Hinson", "handle": "hinson", "description": null, "published_at": "2026-04-07T14:19:31-07:00", "updated_at": "2026-06-16T17:59:48-07:00", "image": {"id": 1640815099955, "created_at": "2026-04-17T06:52:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/118228201_3249570748411748_1629082742788044617_o.jpg?v=1776433947", "alt": null}, "products_count": 2}, {"id": 299486183475, "title": "Holland and Sherry", "handle": "holland-and-sherry", "description": null, "published_at": "2026-04-07T14:19:31-07:00", "updated_at": "2026-06-16T17:59:48-07:00", "image": {"id": 1640815034419, "created_at": "2026-04-17T06:52:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWC-256046-DesignerWallcoverings-Los-Angeles-1_a5243fc8-8c5f-40e8-99c7-be1dda9d1ea6.jpg?v=1776433943", "alt": null}, "products_count": 3}, {"id": 298507272243, "title": "Holly Hunt", "handle": "holly-hunt", "description": "<p>Holly Hunt wallcoverings offer sophisticated textures, innovative substrates, and timeless patterns suitable for high-end residential and commercial interiors. Known for their exceptional quality and meticulous attention to detail, these designs provide a refined hand and superior drape. Explore a range of colorways, grounds, and pattern repeats within this comprehensive collection.</p>", "published_at": "2026-03-04T19:15:15-08:00", "updated_at": "2026-07-05T15:27:05-07:00", "image": {"id": 1641211461683, "created_at": "2026-07-05T15:27:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W4009_CumulusShimmer_Install_0_633c06e0-a8cb-437a-9c97-81e6d22fed22.jpg?v=1783290425", "alt": "Holly Hunt"}, "products_count": 1260}, {"id": 164060463155, "title": "Hollywood", "handle": "hollywood-wallcovering-collection", "description": "<p data-start=\"0\" data-end=\"594\">Elevate your interiors with the Hollywood Wallcoverings collection\u2014a curated suite of luxurious, high-performance wallcoverings designed to bring the glamour of the silver screen into any space. From the sleek sophistication of Faux Silk Weave and Crystal-sheen vinyls to the tactile allure of Shagreen and Faux Leather textures, each pattern captures a unique facet of Hollywood\u2019s storied style.\u00a0Whether you\u2019re specifying for commercial lobbies, hospitality environments, or residential retreats, you\u2019ll find a harmony of visual drama and refined elegance.</p>\n<p data-start=\"596\" data-end=\"1146\">Engineered for lasting beauty, all Hollywood Wallcoverings are crafted as Type II vinyl or polyester substrates\u2014offering exceptional durability, easy maintenance, and random-match repeats for seamless installations.\u00a0Many patterns carry sustainable credentials, featuring recycled content and LEED-friendly materials, so your projects can achieve both aesthetic and environmental goals. With a standard 54\" width and US-based manufacturing, these wallcoverings simplify logistics while ensuring consistent quality.</p>", "published_at": "2020-06-17T15:32:46-07:00", "updated_at": "2026-07-30T08:03:02-07:00", "image": {"id": 1640679964723, "created_at": "2026-03-25T20:26:17-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_a130d1e5-d054-4505-93e7-141c09773362.jpg?v=1776628637", "alt": null}, "products_count": 6577}, {"id": 79875276912, "title": "Hollywood Hospitality", "handle": "hollywood-wallpaper-commercial-wallpaper", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-mjdwc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-mjdwc-1n7m0yu\">\n<div class=\"flex flex-col text-sm pb-9\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"86be1fc1-13d4-4ec6-9d2b-3057b3d6ac7e\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>The Hollywood Hospitality collection presents a captivating fusion of contemporary design and durable functionality in type II vinyl commercial wallcoverings. Characterized by striking geometric patterns, lustrous metallic finishes, and sleek modern designs, this collection embodies sophistication and style, ideal for upscale hospitality environments. The geometric motifs add depth and visual interest to interior spaces, while the metallic accents infuse a touch of glamour and luxury. Crafted to withstand the rigors of high-traffic areas, these wallcoverings not only elevate the aesthetic appeal of hotels, restaurants, and entertainment venues but also offer long-lasting performance and easy maintenance, ensuring enduring elegance and charm in any hospitality setting.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2018-09-29T12:02:30-07:00", "updated_at": "2026-07-15T11:01:50-07:00", "image": {"id": 1640680751155, "created_at": "2026-03-25T20:29:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c08a6c70594d67a16a0a1dc181c4af8e.jpg?v=1776628244", "alt": null}, "products_count": 896}, {"id": 132654366785, "title": "Hollywood Sunset Vinyl Collection", "handle": "hollywood-sunset-collection", "description": "<p>The Hollywood Sunset Vinyl Collection offers high-performance Type II wallcovering suitable for demanding commercial interiors. These durable vinyls feature a tactile ground and are available in a wide range of colorways to complement various design schemes. Specified for its cleanability and ease of installation, this collection provides a cost-effective solution without sacrificing aesthetic appeal.</p>", "published_at": "2024-12-18T14:07:45-08:00", "updated_at": "2026-07-21T17:44:56-07:00", "image": {"id": 1640674099251, "created_at": "2026-03-25T20:11:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cassina-swatch-CAS124-700x685_f59ef1cc-cd3c-41b3-8c0e-7e4668a7ec3a.jpg?v=1776627452", "alt": null}, "products_count": 243}, {"id": 79904473200, "title": "Hollywood Type 2", "handle": "hollywood-type-2-wallpaper-collection", "description": "<p><meta charset=\"utf-8\"><em>Hollywood Wallcoverings Collection</em>. Meets all commercial durability and fire ratings specs. <meta charset=\"utf-8\">Bring star-quality style to your interiors.</p>", "published_at": "2018-09-29T12:32:23-07:00", "updated_at": "2026-07-30T08:03:02-07:00", "image": {"id": 1640680980531, "created_at": "2026-03-25T20:29:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_df7b3ca1-5a6b-43b0-b939-a5a4fbac0f8d.jpg?v=1776628634", "alt": null}, "products_count": 5854}, {"id": 95012880449, "title": "Hospitality Resource", "handle": "quick-ship-hospitality", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-mjdwc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-mjdwc-1n7m0yu\">\n<div class=\"flex flex-col text-sm pb-9\">\n<div data-testid=\"conversation-turn-7\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"754d0443-8705-449b-a735-4553fb23e7ab\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>The Hospitality Resource collection offers a practical solution for commercial spaces seeking budget-friendly and efficient wallcovering options without compromising on quality or style. Featuring quick ship vinyl commercial wallcoverings, this collection caters to the fast-paced demands of hospitality projects, providing timely delivery without sacrificing design versatility. Designed with durability in mind, these wallcoverings are crafted to withstand the rigors of high-traffic environments while offering a range of attractive patterns, colors, and textures to suit various interior aesthetics. Whether renovating a hotel lobby, restaurant, or retail space, the Hospitality Resource collection delivers cost-effective and reliable solutions, ensuring timely project completion and customer satisfaction without exceeding budget constraints.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-02-21T22:05:33-08:00", "updated_at": "2026-07-24T21:30:37-07:00", "image": {"id": 1640675606579, "created_at": "2026-03-25T20:14:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/53862597b5963c0d410d47ddaf99615b.jpg?v=1774494878", "alt": null}, "products_count": 98}, {"id": 299574788147, "title": "Hygge & West Wallcoverings", "handle": "hygge-and-west", "description": null, "published_at": "2026-04-09T21:03:03-07:00", "updated_at": "2026-07-16T17:27:44-07:00", "image": {"id": 1641211494451, "created_at": "2026-07-05T15:27:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2021-10-08at9.28.59AM.png?v=1783290427", "alt": "Hygge & West Wallcoverings"}, "products_count": 11}, {"id": 298512056371, "title": "Ikat", "handle": "ikat-wallpaper", "description": "<p>Ikat wallcovering presents globally-sourced patterns on a variety of grounds, from linen to Type II vinyl. Consider the half-drop repeat and scale for continuity in large installations and coordinating with solid textures. These designs offer a sophisticated hand and enduring durability for high-end residential and commercial projects.</p>", "published_at": "2026-03-04T23:52:30-08:00", "updated_at": "2026-07-30T09:00:12-07:00", "image": {"id": 1640620294195, "created_at": "2026-03-20T13:55:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DBW8002-A_ab7f74d3-ac35-4057-a40c-7fae6f38b4ce.jpg?v=1776628032", "alt": "Ikat Wallpaper"}, "products_count": 922}, {"id": 299576066099, "title": "Ikat Collection", "handle": "ikat", "description": null, "published_at": "2026-04-09T21:34:35-07:00", "updated_at": "2026-07-30T09:00:12-07:00", "image": {"id": 1640813625395, "created_at": "2026-04-17T06:50:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/China_Seas_DWC_Bali-Hai-Sage-Green-on-Tinted-Linen-2020L-114_jpg_d850b6b1-031f-48dc-9a8a-ffd3a68a36d3.jpg?v=1776433834", "alt": null}, "products_count": 922}, {"id": 161286914099, "title": "Indoor / Outdoor Performance", "handle": "outdoor-fabric", "description": "<meta charset=\"utf-8\"><span data-mce-fragment=\"1\">The high-performance fabrics in this vibrant collection are lightfast and stain resistant, offering long-lasting beauty and durability. These fabrics can withstand intense light, so while they are great for poolsides and terraces., They can also be used in indoor spaces like sun-filled porches and window seats.</span>", "published_at": "2026-03-20T13:14:08-07:00", "updated_at": "2026-07-28T10:31:41-07:00", "image": {"id": 1640655749171, "created_at": "2026-03-22T05:01:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SPARTAN_11_d8787904-817c-41dc-ae84-3756ede5e174.jpg?v=1776628469", "alt": null}, "products_count": 633}, {"id": 95015796801, "title": "Industrial Style", "handle": "industrial", "description": "<p>Industrial style wallcoverings capture the raw and edgy aesthetic of urban lofts and repurposed factories, often featuring designs that mimic exposed brick, weathered concrete, and distressed metal. These wallcoverings typically employ a monochromatic or neutral color palette, with shades of gray, brown, and black dominating, sometimes accented with hints of rust or metallic finishes. Textures play a crucial role, with patterns that replicate the look and feel of aged materials, adding depth and authenticity to the decor. Ideal for creating a bold, modern atmosphere, industrial style wallcoverings pair well with minimalist furniture and contemporary art pieces. They bring a rugged yet sophisticated touch to living rooms, offices, and commercial spaces, making a striking statement while maintaining a functional and stylish environment.</p>\n<!---->", "published_at": "2026-03-09T15:49:36-07:00", "updated_at": "2026-07-30T00:12:21-07:00", "image": {"id": 1641211527219, "created_at": "2026-07-05T15:27:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21180_interior1_fe0e3371-a6e0-4eb1-b859-7c0dab308d5a.jpg?v=1783290428", "alt": "Industrial Style"}, "products_count": 800}, {"id": 298506223667, "title": "Innovations", "handle": "innovations", "description": "<p>Innovations wallcovering offers a diverse range of designs known for their unique textures and forward-thinking material explorations. This comprehensive book presents a wide selection of grounds, from subtly textured Type II vinyls to innovative natural fiber substrates. Architects and designers will appreciate the breadth of colorways and pattern scales, suitable for a variety of high-end commercial and residential projects.</p>", "published_at": "2026-03-04T19:13:46-08:00", "updated_at": "2026-07-28T11:55:14-07:00", "image": {"id": 1641211559987, "created_at": "2026-07-05T15:27:10-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Fuse-2.jpg?v=1783290430", "alt": "Innovations"}, "products_count": 389}, {"id": 158981193779, "title": "Innovations USA", "handle": "innovations-usa", "description": "<p>Innovations USA offers a broad range of Type II wallcoverings known for their distinctive textures and progressive colorways. This comprehensive book features diverse substrates, including paper, vinyl, and natural fibers, catering to high-traffic commercial interiors. Architects and designers will appreciate the precise pattern matches and durable construction facilitating ease of installation.</p>", "published_at": "2020-03-09T14:03:53-07:00", "updated_at": "2026-07-28T11:55:14-07:00", "image": {"id": 1641211592755, "created_at": "2026-07-05T15:27:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Fuse-2_d70d6a00-9134-4c93-8075-a117ff559ad4.jpg?v=1783290432", "alt": "Innovations USA"}, "products_count": 389}, {"id": 94652235841, "title": "Innovative", "handle": "innovative", "description": "<p>The Innovative collection from Glass Beaded showcases their mastery of applying glass beads to flexible wallcovering. Known for their sophisticated textures and durable Type II performance, these wallcoverings offer unique solutions for high-end interiors. Offered in a variety of colorways, the Glambeads collection provides a luxurious hand and subtle shimmer, ideal for hospitality and residential applications.</p>", "published_at": "2026-03-20T13:14:10-07:00", "updated_at": "2026-07-30T08:30:45-07:00", "image": {"id": 1640653357107, "created_at": "2026-03-21T23:01:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105_7dfb1cba-205c-4e8d-8cdb-4a8e9b15ae22.png?v=1776628051", "alt": null}, "products_count": 3192}, {"id": 298512908339, "title": "Japonisme", "handle": "japonisme-wallpaper", "description": "<p>Japonisme wallcovering from Retro Walls presents a serene collection of Asian-inspired motifs rendered in luxurious colorways. Known for their Type II vinyl and meticulous attention to detail, Retro Walls offers this pattern on a durable, scrubbable ground with a straight match for ease of installation. This book provides designers with refined options for hospitality and residential projects seeking sophisticated, timeless aesthetics.</p>", "published_at": "2026-03-04T23:52:58-08:00", "updated_at": "2026-07-28T12:58:27-07:00", "image": {"id": 1640620523571, "created_at": "2026-03-20T13:55:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/aab68be9e31e669d06b49aabac772adf.gif?v=1776627988", "alt": "Japonisme Wallpaper"}, "products_count": 622}, {"id": 298505666611, "title": "Jeffrey Stevens", "handle": "jeffrey-stevens", "description": "<p>Jeffrey Stevens brings decades of heritage in high-end wallcoverings to the trade, renowned for complex colorways and sophisticated design. This collection features contract-grade Type II vinyl and natural grounds, with many patterns available railroaded for continuous application and offering both standard and half-drop repeats. Each bolt showcases the mill's commitment to specification-grade quality, evident in the impeccable hand and clean selvage across every substrate.</p>", "published_at": "2026-03-04T19:13:31-08:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1640680456243, "created_at": "2026-03-25T20:27:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/1a303c2255050787cea5043bf5baf9c1_a32cd4d7-ddc3-4d71-88b0-5e7d126ef1b6.jpg?v=1776628128", "alt": null}, "products_count": 6178}, {"id": 287741018163, "title": "Jeffrey Stevens - Budget Friendly", "handle": "jeffrey-stevens-wallpaper-collection", "description": "<p><meta charset=\"utf-8\">Discover Jeffrey Stevens\u2019 refined wallcoverings at surprisingly attainable prices. Enjoy complimentary samples and elevate your space with affordable luxury.</p>", "published_at": "2025-02-28T08:23:33-08:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1634326118451, "created_at": "2025-06-24T11:32:19-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2e96a9017ae5423aac06355db0831666_0c5821f1-81d7-434f-b222-c8695e100315.jpg?v=1776628125", "alt": null}, "products_count": 6103}, {"id": 79911551088, "title": "Juliet Travers European Classics", "handle": "juliet-travers-european-classics", "description": "<p>Juliet Travers European Classics presents a comprehensive selection of sophisticated wallcoverings known for their refined British heritage and timeless patterns. This expansive book offers a diverse range of grounds and colorways suitable for high-end residential and commercial projects seeking a touch of understated elegance. Architects and designers will appreciate the collection's emphasis on quality, durability, and ease of installation, with many options available in Type II for demanding applications.</p>", "published_at": "2018-09-29T12:41:47-07:00", "updated_at": "2026-07-25T01:32:49-07:00", "image": {"id": 49770233968, "created_at": "2018-09-29T12:41:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cf617677ba8601c0ea684a74a07a8278.jpg?v=1776627991", "alt": null}, "products_count": 506}, {"id": 299576328243, "title": "Jute Wallcoverings", "handle": "jute", "description": null, "published_at": "2026-04-09T21:34:43-07:00", "updated_at": "2026-07-30T08:10:24-07:00", "image": {"id": 1640813985843, "created_at": "2026-04-17T06:51:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/tattiana-tightweave-jute-grs-9062-cropped.jpg?v=1776433866", "alt": null}, "products_count": 347}, {"id": 283697643571, "title": "Kelly Wearstler Collection", "handle": "kelly-wearstler-collections", "description": "<p>The Kelly Wearstler Collection showcases the designer's signature blend of modern geometries and luxurious textures. These wallcoverings, produced by Lee Jofa, offer sophisticated colorways and exceptional durability suitable for high-end residential and commercial applications. Explore the collection's diverse range of patterns and substrates, ideal for creating distinctive and impactful interior schemes.</p>", "published_at": "2024-10-02T11:05:59-07:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1640618917939, "created_at": "2026-03-20T13:53:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWF-3758_118_26cd6ee6-bd6f-4f7a-90dc-51aee062618a.jpg?v=1774040008", "alt": "Kelly Wearstler Collection"}, "products_count": 484}, {"id": 299574820915, "title": "Kids Nursery", "handle": "kids-nursery", "description": null, "published_at": "2026-04-09T21:03:04-07:00", "updated_at": "2026-07-27T18:18:14-07:00", "image": {"id": 1641211625523, "created_at": "2026-07-05T15:27:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WalkersRoom-2_0c69d58d-019d-41c9-ab86-f5f7acfc5747.jpg?v=1783290435", "alt": "Kids Nursery"}, "products_count": 205}, {"id": 272250437683, "title": "Kismet", "handle": "kismet", "description": "<meta charset=\"utf-8\">\n<section class=\"page page__collection\" data-mce-fragment=\"1\"><header class=\"element element-lead page__collection--header\" data-mce-fragment=\"1\">\n<p data-mce-fragment=\"1\">Inspired by life's moments of sweet serendipity and the spontaneous happening that was meant to be, the Kismet collection brings an unmistakable positive force, sparking joy and openness. This colorful collection of coordinating fabric and wallcovering has a sunny disposition,in a kaleidoscopic color palette of brights, pastels, and earth tones.</p>\n</header></section>\n<section class=\"page__collection\" data-mce-fragment=\"1\">\n<section class=\"element element-secondary page__collection--block\" data-mce-fragment=\"1\"><header data-mce-fragment=\"1\"></header></section>\n</section>", "published_at": "2025-06-16T09:02:55-07:00", "updated_at": "2026-07-07T09:18:57-07:00", "image": {"id": 1616365387827, "created_at": "2023-09-06T15:32:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/T16241_349d16aa-dd04-4629-bbad-c72194379240.jpg?v=1776627648", "alt": null}, "products_count": 100}, {"id": 298505699379, "title": "Koroseal", "handle": "koroseal", "description": "<p>Koroseal offers a broad range of commercial-grade wallcoverings known for their durability and extensive color options. Their \"Moire Sauvage\" line presents a subtle, textured ground suitable for high-traffic areas, available in multiple colorways. This Type II wallcovering provides reliable performance and ease of installation for large-scale projects.</p>", "published_at": "2026-03-20T13:14:19-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641211658291, "created_at": "2026-07-05T15:27:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK.jpg?v=1783290437", "alt": "Koroseal"}, "products_count": 2548}, {"id": 289646968883, "title": "Koroseal Wallcovering Collection", "handle": "koroseal-wallpaper-collection", "description": "<p style=\"text-align: center;\">Koroseal Commercial Wallcoverings available at Designer Wallcoverings.</p>\n<p style=\"text-align: center;\"><meta charset=\"utf-8\"><span>If you would like a quote for your current project, please fill out the\u00a0</span><span>form </span></p>\n<p style=\"text-align: center;\"><span>on the attached page.\u00a0<a href=\"https://www.designerwallcoverings.com/pages/koroseal\">Click Here to Fill Out Inquiry Form.</a></span></p>", "published_at": "2025-05-12T11:42:57-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641211691059, "created_at": "2026-07-05T15:27:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_3f08c1bd-729a-4926-a20e-4f9e01aacc53.jpg?v=1783290438", "alt": "Koroseal Wallcovering Collection"}, "products_count": 2548}, {"id": 283203731507, "title": "Kravet", "handle": "kravet", "description": "<p class=\"p1\">Kravet is renowned for its extensive collection of high-quality textiles and wallcoverings, combining classic elegance with contemporary design. Known for its luxurious materials, innovative patterns, and refined color palettes, Kravet offers sophisticated and versatile solutions that enhance a wide range of interior styles.</p>", "published_at": "2025-07-21T09:49:00-07:00", "updated_at": "2026-07-29T16:32:27-07:00", "image": {"id": 1640676556851, "created_at": "2026-03-25T20:17:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/30514_16_dc123fca-64b3-4033-83a8-a2655a28ba04.jpg?v=1776628533", "alt": null}, "products_count": 5409}, {"id": 260510908467, "title": "Kravet Collections", "handle": "kravet-coillections", "description": "<p>Kravet Collections offers a breadth of specification-grade wallcoverings, renowned in the trade for sophisticated colorways and enduring quality. Their extensive line includes contract-grade Type II vinyls, grasscloths, and paper-backed options, often with intricate repeats and half-drop matches. Available by the bolt, many patterns can be railroaded to minimize selvage waste on large-scale installations.</p>", "published_at": "2025-02-13T13:51:44-08:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640656011315, "created_at": "2026-03-22T05:02:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114_2016033_CS_full_repeat.jpg?v=1776628529", "alt": null}, "products_count": 4882}, {"id": 289751466035, "title": "Kravet Couture", "handle": "kravet-couture-1", "description": "<p>Kravet Couture</p>", "published_at": "2025-05-16T16:20:29-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640617672755, "created_at": "2026-03-20T13:50:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JMW1023_41_394e7537-703f-4051-a873-d7c6e22952cf.jpg?v=1774039836", "alt": "Kravet Couture"}, "products_count": 649}, {"id": 263859306547, "title": "KRAVET DESIGN", "handle": "kravet-design", "description": "<p>Kravet Design, a legacy name synonymous with high-end textiles, now offers specification-grade wallcoverings across a variety of grounds. Known for sophisticated colorways and durable constructions, many selections are contract-grade Type II on non-woven or vinyl substrates, with select patterns offered railroaded for seamless application. Each bolt reflects the mill's commitment to quality, with attention to repeat, half-drop, and selvage detail in every design.</p>", "published_at": "2026-03-20T13:14:25-07:00", "updated_at": "2026-07-21T04:05:36-07:00", "image": {"id": 1640676229171, "created_at": "2026-03-25T20:16:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/30514_16_98b327d2-66da-4235-a349-c99c88223c0e.jpg?v=1776628526", "alt": null}, "products_count": 2889}, {"id": 301587922995, "title": "LA Walls", "handle": "la-walls", "description": "<p>The <strong>LA Walls</strong> collection at Designer Wallcoverings \u2014 to the trade.</p>", "published_at": "2026-06-18T09:52:13-07:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1641148088371, "created_at": "2026-06-26T10:25:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0060313_anna-dark-blue-fern-trail-wallpaper.jpg?v=1782494724", "alt": null}, "products_count": 743}, {"id": 261023465523, "title": "LA Walls Collection", "handle": "lawalls-collection", "description": "<p>LA Walls Collection features diverse Type II wallcoverings ranging from paintable textures to intricate mosaic foils. This comprehensive book offers a broad spectrum of colorways and substrates suitable for high-end residential and commercial projects. Architects and designers will appreciate the range of pattern repeats and installation methods available.</p>", "published_at": "2021-04-24T15:32:46-07:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1640656633907, "created_at": "2026-03-22T11:00:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c850bf77abc6469437568741e78831e7.jpg?v=1776627476", "alt": null}, "products_count": 744}, {"id": 79887859824, "title": "Lattice & Trellis", "handle": "lattice-and-trellis-patterns", "description": "<p>Lattice & Trellis offers a diverse range of patterned wallcoverings, from classic screen-printed lattices to shimmering sequin designs. This collection features varying scales and repeat types, allowing designers to coordinate complementary patterns within a space. Suitable for a range of applications, these wallcoverings provide options for both traditional and contemporary interiors.</p>", "published_at": "2025-02-13T13:51:43-08:00", "updated_at": "2026-07-30T08:30:26-07:00", "image": {"id": 1640674754611, "created_at": "2026-03-25T20:12:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3547fe79068d43fd86725b501b7c7f01_c481cce8-73fe-4328-bb71-780e8d5b2566.jpg?v=1776628591", "alt": null}, "products_count": 4062}, {"id": 298512089139, "title": "Lattice Wallcovering", "handle": "lattice-wallpaper", "description": "<p>The Lattice Wallcovering collection presents a diverse array of geometric interpretations, from classic fretwork to modern abstractions, suitable for a range of design aesthetics. Offered in an expansive colorway selection with varying scales and repeat options, these wallcoverings provide ample opportunity for coordination and customization. Specified on durable Type II substrates, the collection ensures longevity and ease of installation for high-traffic commercial and residential projects.</p>", "published_at": "2026-03-20T13:14:27-07:00", "updated_at": "2026-07-30T08:30:26-07:00", "image": {"id": 1641211756595, "created_at": "2026-07-05T15:27:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_9ed3ae7f-d530-4ca1-a88c-3b840cd0e7d0.jpg?v=1783290442", "alt": "Lattice Wallcovering"}, "products_count": 2589}, {"id": 299576197171, "title": "Lattice Wallcoverings", "handle": "lattice", "description": null, "published_at": "2026-04-09T21:34:39-07:00", "updated_at": "2026-07-30T08:30:26-07:00", "image": {"id": 1640813264947, "created_at": "2026-04-17T06:49:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/sexy-sequin-wallcovering--silver-mirror_161dfd81-3134-498e-a6cf-9f7188cf989b.jpg?v=1776433799", "alt": null}, "products_count": 2591}, {"id": 93445980225, "title": "Lattices", "handle": "lattices", "description": "<p>The Lattices collection presents a comprehensive range of geometric wallcoverings, ideal for adding structured elegance to diverse interiors. Featuring a variety of scales and repeat types, these designs offer versatility in application and seamless pattern matches. Consider this expansive selection for projects seeking a timeless yet modern aesthetic across a range of colorways.</p>", "published_at": "2026-03-20T13:14:28-07:00", "updated_at": "2026-07-28T11:31:03-07:00", "image": {"id": 1616285728819, "created_at": "2023-07-19T10:05:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3547fe79068d43fd86725b501b7c7f01_d61c3c62-6da7-4f1d-b085-c06039a39479.jpg?v=1776628281", "alt": null}, "products_count": 1340}, {"id": 298507337779, "title": "Laura Ashley", "handle": "laura-ashley", "description": "<p>Laura Ashley wallcoverings present a range of classic English designs known for their romantic florals and comforting palettes, now available in updated colorways. The collection features both traditional and removable substrates, offering options for diverse residential projects with varying installation needs. Designers can source coordinating fabrics and trims directly from the Laura Ashley book to complete a cohesive scheme.</p>", "published_at": "2026-03-04T19:15:17-08:00", "updated_at": "2026-07-05T04:04:36-07:00", "image": {"id": 1640678129715, "created_at": "2026-03-25T20:21:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-07-22at11.27.50AM.png?v=1776627610", "alt": null}, "products_count": 264}, {"id": 298989781043, "title": "Le Embossed Croc Vinyl", "handle": "le-embossed-croc-vinyl", "description": null, "published_at": "2026-03-24T11:15:20-07:00", "updated_at": "2026-07-09T04:04:55-07:00", "image": {"id": 1640672526387, "created_at": "2026-03-25T20:04:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2B4E01E6-864B-4EA5-ABCD-D70B033A60C9.jpg?v=1776627656", "alt": "Le Embossed Croc Vinyl"}, "products_count": 70}, {"id": 303023685683, "title": "Leather Wallcoverings", "handle": "material-leather", "description": "<p>Leather wallcoverings.</p>", "published_at": "2026-07-22T11:56:46-07:00", "updated_at": "2026-07-30T08:10:48-07:00", "image": null, "products_count": 6}, {"id": 260549181491, "title": "Lee Jofa", "handle": "lee-jofa", "description": "<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/4ZzF7CsRXSI?autoplay=yes;loop=yes;playsinline=Yes\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; loop;autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>Founded in 1823, Lee Jofa continues its legacy of English design with refined, fresh interpretations of documentary-based fabrics incorporating a wide range of styles, including contemporary designs from Groundworks, as well as classic offerings from GP &amp; J Baker, Threads and Mulberry Home.", "published_at": "2025-02-11T09:30:14-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641211789363, "created_at": "2026-07-05T15:27:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-2020212-916-0_faa394db-ff3c-4c50-addd-fe017b1f1c55.jpg?v=1783290444", "alt": "Lee Jofa"}, "products_count": 3711}, {"id": 94165598273, "title": "LEED Eco-Walls", "handle": "leed-walls-1", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-7\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"58266cb3-170a-4734-97fc-6876fe0994eb\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>LEED certified eco wallcoverings are environmentally friendly options that contribute to sustainable building practices. These wallcoverings are designed and manufactured with a focus on minimizing environmental impact throughout their lifecycle. Typically, they use materials sourced from sustainable and responsibly managed forests, ensuring responsible forestry practices. The production processes of LEED certified eco wallcoverings prioritize energy efficiency and the reduction of harmful emissions. These wallcoverings often contribute to earning LEED (Leadership in Energy and Environmental Design) credits for projects seeking green building certification, promoting the use of eco-friendly materials in construction and design projects.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2019-01-06T23:11:44-08:00", "updated_at": "2026-07-28T14:13:13-07:00", "image": {"id": 1640679768115, "created_at": "2026-03-25T20:25:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XWA-52000-cleaned_6f4c7bc4-b13e-4ccc-996d-e9187a738299.jpg?v=1776627960", "alt": null}, "products_count": 1561}, {"id": 298506747955, "title": "LEED Walls", "handle": "leed-walls", "description": "<p>LEED Walls offers a comprehensive selection of commercial-grade wallcoverings suitable for high-traffic interiors. This extensive collection features diverse textures, from faux cotton linen to stain-repellent real silk, available in a broad spectrum of colorways. Specify LEED Walls for durable, Type II wallcovering solutions with varying weights and installation methods.</p>", "published_at": "2026-03-04T19:13:59-08:00", "updated_at": "2026-07-07T09:31:13-07:00", "image": {"id": 1640680554547, "created_at": "2026-03-25T20:27:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XWA-52000-cleaned.jpg?v=1776627957", "alt": null}, "products_count": 129}, {"id": 279639818291, "title": "Lillian August Grasscloth Binder", "handle": "lillian-august-grasscloth-binder", "description": "<p>The Lillian August Grasscloth Binder showcases the vendor's mastery of natural fiber wallcoverings, known for their textural depth and sophisticated colorways. This collection presents a range of grasscloths including raffia, cork, and abaca, each offering unique hand and visual interest. Ideal for adding warmth and dimension, these wallcoverings provide a durable and refined solution for high-end residential and commercial projects.</p>", "published_at": "2024-05-31T02:19:12-07:00", "updated_at": "2026-07-21T17:44:56-07:00", "image": {"id": 1640627044403, "created_at": "2026-03-20T13:59:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN11891_a544837f-9aad-4628-b0c8-48ec762172f7.jpg?v=1774040389", "alt": "Lillian August Grasscloth Binder"}, "products_count": 98}, {"id": 299576361011, "title": "Linen Wallcoverings", "handle": "linen", "description": null, "published_at": "2026-04-09T21:34:44-07:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1640813232179, "created_at": "2026-04-17T06:49:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_47f726bb-b0ee-4ef9-899b-aba46378337f.jpg?v=1776433796", "alt": null}, "products_count": 11163}, {"id": 303023489075, "title": "Linen Wallcoverings", "handle": "material-linen", "description": "<p>Linen wallcoverings.</p>", "published_at": "2026-07-22T11:56:41-07:00", "updated_at": "2026-07-28T13:04:30-07:00", "image": null, "products_count": 417}, {"id": 279638310963, "title": "Living with Art", "handle": "living-with-art", "description": "<p>Living with Art offers Type II vinyl and non-woven wallcoverings featuring sophisticated textures and contemporary abstract patterns for high-traffic interiors. Malibu Walls' Hopsack embosses provide a durable, scrubbable ground in versatile colorways, while Brush Marks presents a large-scale, half-drop repeat design. Specify these wallcoverings to bring a gallery-inspired aesthetic with commercial-grade performance to your next project.</p>", "published_at": "2024-12-17T10:53:13-08:00", "updated_at": "2026-07-18T04:05:01-07:00", "image": {"id": 1640648343603, "created_at": "2026-03-20T23:01:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW51116-A_27f46026-e187-4982-9458-786496e3d400.jpg?v=1776627503", "alt": null}, "products_count": 101}, {"id": 283175190579, "title": "LIZZO", "handle": "lizzo-1", "description": "<p>Lizzo wallcoverings offer a breadth of sophisticated designs, from subtle textures to bold botanicals, catering to diverse project needs. Known for exceptional quality and innovative use of color, Lizzo's patterns are expertly printed on durable grounds with meticulous attention to detail. Their extensive range includes both residential and Type II commercial options, ensuring suitability for high-end interiors seeking lasting elegance.</p>", "published_at": "2026-03-20T13:30:59-07:00", "updated_at": "2026-06-17T14:10:23-07:00", "image": {"id": 1640625995827, "created_at": "2026-03-20T13:59:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LZW-30181_06_9a70d189-80a1-4a95-b8e4-e8ef2106d224.jpg?v=1774040347", "alt": "LIZZO"}, "products_count": 42}, {"id": 283202224179, "title": "Lorenzo Castillo Collection", "handle": "lorenzo-castillo-collection", "description": "<p>Lorenzo Castillo is acclaimed for his sophisticated and eclectic design sensibility, combining classic elements with bold, contemporary accents. His work features a rich mix of textures, patterns, and colors, creating opulent and stylish interiors that are both visually striking and elegantly curated.</p>", "published_at": "2026-03-20T13:14:36-07:00", "updated_at": "2026-07-28T12:37:59-07:00", "image": {"id": 1640676524083, "created_at": "2026-03-25T20:17:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/sofa_adam_rojo_decoracion_gastonydaniela_lorenzocastillo_telas_rayas_tapizado.jpg?v=1776628241", "alt": null}, "products_count": 694}, {"id": 282329808947, "title": "LORENZO CASTILLO IV", "handle": "lorenzo-castillo-iv", "description": "<p>Gaston y Daniela's \"Lorenzo Castillo IV\" wallcovering collection offers a range of solid colorways renowned for their saturated pigments and exceptional lightfastness. These durable Type II vinyls are ideal for high-traffic areas, providing a robust and cleanable surface. Specified by the bolt, this collection provides a foundational ground for sophisticated interiors.</p>", "published_at": "2026-03-20T13:31:06-07:00", "updated_at": "2026-07-07T02:12:35-07:00", "image": {"id": 1640627372083, "created_at": "2026-03-20T14:00:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW5469_009_4d983f59-580f-4e95-8023-5967cec36540.jpg?v=1774040402", "alt": "LORENZO CASTILLO IV"}, "products_count": 93}, {"id": 282329350195, "title": "LORENZO CASTILLO V", "handle": "lorenzo-castillo-v", "description": "<p>Lorenzo Castillo V from Gaston y Daniela presents vibrant botanical and floral prints, reflecting the mill's renowned Spanish heritage and mastery of color. These wallcoverings offer a sophisticated hand and excellent drape, ideal for residential and hospitality interiors seeking a touch of Iberian flair. Consider coordinating colorways and half-drop repeats to achieve dynamic, layered schemes.</p>", "published_at": "2026-03-20T13:31:09-07:00", "updated_at": "2026-07-28T12:37:59-07:00", "image": {"id": 1640622653491, "created_at": "2026-03-20T13:56:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LCW1018_002_cee0c2d1-8ef9-41ae-88af-925751a16f6c.jpg?v=1774040212", "alt": "LORENZO CASTILLO V"}, "products_count": 189}, {"id": 79876587632, "title": "Lounge", "handle": "lounge", "description": "<p>Lounge offers a diverse range of wallcoverings suited for hospitality and residential interiors seeking relaxed sophistication. Explore textures from classic bamboo lattice to vintage Mylar, with options for bespoke designs and bold 1970s patterns. Consider half-drop repeats and the suitability of railroaded installation for continuous, impactful expanses.</p>", "published_at": "2026-03-20T13:14:38-07:00", "updated_at": "2026-07-10T21:34:51-07:00", "image": {"id": 1641211822131, "created_at": "2026-07-05T15:27:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-santa-fe-desir-sauvage-elitis_bce9756f-3b3a-4197-8fee-54fb2c473d9f.jpg?v=1783290446", "alt": "Lounge"}, "products_count": 202}, {"id": 279638933555, "title": "Luxe Retreat", "handle": "luxe-retreat", "description": "<p>Luxe Retreat offers wallcoverings with an emphasis on textured, natural materials in serene colorways suitable for residential and hospitality applications. Explore a range of grasscloths and abaca on durable Type II substrates, providing tactile interest and organic elegance. Consider specifying these for projects requiring easy installation, minimal pattern repeat, and a relaxed aesthetic.</p>", "published_at": "2026-03-20T13:31:21-07:00", "updated_at": "2026-07-06T18:38:20-07:00", "image": {"id": 1641209167923, "created_at": "2026-07-05T15:24:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN10502-A_9669d092-0379-49f4-8cb8-57c01014f584.jpg?v=1783290282", "alt": "Luxe Retreat"}, "products_count": 107}, {"id": 157148119091, "title": "Luxuria Fine Textile Wallcoverings by Phillipe Romano", "handle": "luxuria-fine-textile-wallcoverings-by-phillipe-romano", "description": "<meta charset=\"utf-8\"><span>Decorating your walls with timeless, classical, and beautiful textile wallcoverings hand-made by Phillipe Romano in Europe. Luxuria Fine Textile Wallcoverings by Phillipe Romano. Exclusively at Designer Wallcoverings.</span>", "published_at": "2026-03-20T15:24:18-07:00", "updated_at": "2026-07-28T11:26:22-07:00", "image": {"id": 923022327859, "created_at": "2019-12-12T09:25:22-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/desima_room.jpg?v=1776627884", "alt": null}, "products_count": 1303}, {"id": 289750745139, "title": "M-O", "handle": "m-o-wallpaper-brands", "description": "<p>M-O Wallcovering Brands</p>", "published_at": "2025-05-16T15:08:33-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1640677146675, "created_at": "2026-03-25T20:19:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW100-01-abaca-alabaster_02_dcc52a77-b56e-4ec9-92b4-d04a151e4cf6.jpg?v=1776628585", "alt": null}, "products_count": 3125}, {"id": 79865479280, "title": "Madagascar Raffia Wallcovering | Mill Direct", "handle": "madagascar-cloth", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-7\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"1bf559a0-b7aa-4cff-824f-9c5741c58b2a\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Madagascar grasscloth wallcovering brings the allure of exotic textures and natural elegance into interior spaces. Crafted from the durable fibers of the Madagascar reed plant, this wallcovering radiates a tropical and organic vibe. The handwoven process highlights the authenticity of each strand, showcasing a rich tapestry of colors and patterns that mimic the lush landscapes of Madagascar. The grasscloth's inherent imperfections and variations contribute to its unique charm, creating a tactile and visually appealing surface. With a commitment to sustainability, Madagascar grasscloth often represents an eco-conscious choice in interior design, utilizing renewable materials and traditional craftsmanship. As a result, spaces adorned with Madagascar grasscloth wallcovering exude a warm, earthy ambiance, inviting a touch of the exotic and a connection to nature within the confines of interior d\u00e9cor.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-09-29T11:54:50-07:00", "updated_at": "2026-07-26T12:11:55-07:00", "image": {"id": 1640674230323, "created_at": "2026-03-25T20:11:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Milano_Madagascar_20016_Madagascar-Set10_1_1.jpg?v=1776628582", "alt": null}, "products_count": 357}, {"id": 261070290995, "title": "Made in Italy Wallcovering", "handle": "madeinitaly", "description": "<p class=\"p1\">\u201cMade in Italy\u201d is a globally recognized mark of excellence, symbolizing the country\u2019s rich heritage in craftsmanship, design, and quality across various industries, including fashion, furniture, and textiles. Italian products are celebrated for their superior materials, attention to detail, and artistic flair, blending tradition with innovation. This label has become synonymous with luxury and prestige, reflecting Italy\u2019s deep-rooted legacy in producing some of the finest goods in the world.</p>", "published_at": "2021-04-28T13:34:01-07:00", "updated_at": "2026-07-28T11:37:28-07:00", "image": {"id": 1640656699443, "created_at": "2026-03-22T11:00:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5260_43W7631-01_1dc4f89c-380a-4274-9aba-0d883c631393.jpg?v=1776628631", "alt": null}, "products_count": 3418}, {"id": 299575476275, "title": "Maharam Wallcoverings", "handle": "maharam-wallcoverings", "description": null, "published_at": "2026-07-26T20:22:58-07:00", "updated_at": "2026-07-30T08:32:14-07:00", "image": null, "products_count": 310}, {"id": 298507403315, "title": "Malibu", "handle": "malibu-wallpaper", "description": "<p>Malibu Wallcovering's extensive \"Malibu wallcovering\" book offers diverse designs printed on high-performance Type II vinyl, ideal for hospitality and commercial interiors. Explore organic textures, contemporary geometrics, and large-scale murals in a wide array of colorways, all with excellent scrubbability and ease of installation. Consider half-drop repeats and railroaded options for seamless applications across expansive walls.</p>", "published_at": "2026-03-04T19:15:19-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1640678162483, "created_at": "2026-03-25T20:21:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/AH40905_91979b3e-9192-40c2-9a85-0d3cc9d6c461.jpg?v=1776627902", "alt": null}, "products_count": 4513}, {"id": 281581420595, "title": "Malibu Knits", "handle": "malibu-knits", "description": null, "published_at": "2026-03-21T12:17:09-07:00", "updated_at": "2026-06-16T17:59:23-07:00", "image": {"id": 1640674132019, "created_at": "2026-03-25T20:11:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PhillipJeffriesLogo_6f09efd8-39c3-4300-9423-055a83fe7af0.png?v=1774494664", "alt": null}, "products_count": 5}, {"id": 287740985395, "title": "Malibu Wallcovering Collection | Budget Friendly", "handle": "malibu-walls-1", "description": "<p>Malibu Wallcovering Collection | \u00a0Budget Friendly</p>", "published_at": "2025-02-28T08:22:09-08:00", "updated_at": "2026-06-24T09:27:42-07:00", "image": {"id": 1640680128563, "created_at": "2026-03-25T20:26:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TS81802-A.jpg?v=1776627596", "alt": null}, "products_count": 121}, {"id": 299591237683, "title": "Marble Wallcoverings", "handle": "marble-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:24-07:00", "updated_at": "2026-07-28T13:00:47-07:00", "image": {"id": 1640813461555, "created_at": "2026-04-17T06:50:19-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TTN-1506_2_99d68e30-a0ca-45a2-90de-319e7e155e1d.jpg?v=1776433819", "alt": null}, "products_count": 434}, {"id": 298506780723, "title": "Marburg", "handle": "marburg", "description": "<p>Marburg wallcoverings offer designers a range of sophisticated textures and durable constructions, known for their quality German millwork. Their extensive book of Type II vinyls features diverse colorways and intricate patterns suitable for high-traffic commercial interiors. Consider Marburg for projects requiring reliable performance and refined aesthetic detail.</p>", "published_at": "2026-03-04T19:14:00-08:00", "updated_at": "2026-06-16T17:59:38-07:00", "image": {"id": 1640678096947, "created_at": "2026-03-25T20:21:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/marburg-loft-superior-2.jpg?v=1776627602", "alt": null}, "products_count": 121}, {"id": 298971103283, "title": "Marimekko Exclusive Wallcoverings", "handle": "marimekko-exclusive-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:02-07:00", "updated_at": "2026-07-16T11:30:27-07:00", "image": {"id": 1640671182899, "created_at": "2026-03-25T19:56:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/23367X_97020014-5f2b-47a5-8263-c8749a926a72.jpg?v=1776627592", "alt": "Marimekko Exclusive Wallcoverings"}, "products_count": 36}, {"id": 289750843443, "title": "Mark Alexander", "handle": "mark-alexander", "description": "<p>Mark Alexander</p>", "published_at": "2025-05-16T15:12:53-07:00", "updated_at": "2026-06-16T17:59:31-07:00", "image": {"id": 1640621375539, "created_at": "2026-03-20T13:56:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW139-02-abac-patchwork-wallcovering-gris_01_1a4fd18b-fa68-49d0-bc05-37ca212b1523.jpg?v=1776627567", "alt": "Mark Alexander"}, "products_count": 2}, {"id": 289750876211, "title": "Martyn Lawrence Bullard", "handle": "martyn-lawrence-bullard", "description": "<p>Martyn Lawrence Bullard</p>", "published_at": "2026-03-20T13:14:41-07:00", "updated_at": "2026-07-28T12:46:49-07:00", "image": {"id": 1640625340467, "created_at": "2026-03-20T13:58:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2d765d423c431592d36f170c3cb6c2a2_db90db2a-cf76-45c8-b48a-7905fbf411ec.jpg?v=1774040320", "alt": "Martyn Lawrence Bullard"}, "products_count": 120}, {"id": 298512941107, "title": "Maximalist", "handle": "maximalist-wallpaper", "description": "<p>Maximalist Wallcovering offers bold patterns and tactile textures for high-impact interiors, catering to clients seeking statement designs. The collection features a range of substrates, from embossed vinyls to metallic grounds, addressing diverse specification needs for durability and washability. Explore large-scale repeats, vibrant colorways, and unconventional materials to achieve dramatic effects in residential and commercial projects.</p>", "published_at": "2026-03-04T23:53:00-08:00", "updated_at": "2026-07-30T08:11:09-07:00", "image": {"id": 1640619245619, "created_at": "2026-03-20T13:54:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Showgirls_MetallicPink_Black.jpg?v=1776627966", "alt": "Maximalist Wallpaper"}, "products_count": 1055}, {"id": 160309379123, "title": "Maya Romanoff Wallcovering", "handle": "maya-romanoff", "description": "<p>Discover the artistry of wallcoverings with the <em>Maya Romanoff Collection</em>. Known for pushing the boundaries of design, this collection features hand-crafted textures, luxurious materials, and unique finishes that transform walls into breathtaking works of art. From natural elements to shimmering details, every piece is a testament to exceptional craftsmanship.</p>\n<p>Perfect for elevating both residential and commercial spaces, Maya Romanoff\u2019s designs bring texture, sophistication, and unmatched style to your interiors. Luxury, redefined.</p>", "published_at": "2024-12-17T10:49:48-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641211920435, "created_at": "2026-07-05T15:27:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-bd-1521-maya-50165_32b4cab4-1e6c-43ae-9002-f44ccc872938.jpg?v=1783290451", "alt": "Maya Romanoff Wallcovering"}, "products_count": 690}, {"id": 298512318515, "title": "Medallion", "handle": "medallion-wallpaper", "description": "<p>Medallion Wallcovering presents a diverse range of patterned options, from classic damasks to contemporary geometrics, catering to varied design aesthetics. Featuring both large-scale repeats and intricate half-drop matches, these wallcoverings offer sophisticated solutions for residential and commercial interiors. This collection's broad color palette and durable Type II vinyl substrates ensure lasting impact and easy maintenance.</p>", "published_at": "2026-03-04T23:52:38-08:00", "updated_at": "2026-07-28T13:02:00-07:00", "image": {"id": 1640620458035, "created_at": "2026-03-20T13:55:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/d52faced84a1aa136bf23de00017adf7_f86f4c9f-3359-410d-a274-bdaa5c4ef046.jpg?v=1776628019", "alt": "Medallion Wallpaper"}, "products_count": 522}, {"id": 299591172147, "title": "Medallion Collection", "handle": "medallion-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:23-07:00", "updated_at": "2026-07-28T13:02:00-07:00", "image": {"id": 1641211953203, "created_at": "2026-07-05T15:27:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7e0b07f9db9cf672562f40714d09a70f_2645af51-cb45-4f83-95cf-e77278e6b5b5.jpg?v=1783290453", "alt": "Medallion Wallcoverings"}, "products_count": 522}, {"id": 94340120641, "title": "Medallions", "handle": "medallions", "description": "<p>The Medallions collection presents a diverse range of patterned wallcoverings, from classic damasks to contemporary geometric interpretations. Featuring varying scales and repeat options, including half-drop and straight match, these designs offer extensive coordinate potential. Specified on durable Type II grounds, these wallcoverings are suitable for high-traffic commercial and residential applications.</p>", "published_at": "2026-03-20T13:14:44-07:00", "updated_at": "2026-07-26T07:38:10-07:00", "image": {"id": 1640675475507, "created_at": "2026-03-25T20:14:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WUE2001_WT_1443efc6-87de-4fbe-8e30-75f1f4b6a8b8.jpg?v=1774494860", "alt": null}, "products_count": 202}, {"id": 298513006643, "title": "Mediterranean", "handle": "mediterranean-wallpaper", "description": "<p>Mediterranean Wallcovering offers sun-drenched hues and timeworn textures for discerning projects. This diverse book features intricate trellis patterns, robust Type II grounds, and hand-applied plaster effects. Ideal for creating relaxed, sophisticated interiors with effortless old-world charm.</p>", "published_at": "2026-03-04T23:53:02-08:00", "updated_at": "2026-07-28T13:01:57-07:00", "image": {"id": 1640628944947, "created_at": "2026-03-20T14:01:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MTG_403567_WP20055_-_Rufous_Tile_9ac90288-6c5a-4126-8501-cab11861e4ee.jpg?v=1776627754", "alt": "Mediterranean Wallpaper"}, "products_count": 228}, {"id": 287670173747, "title": "Metallic", "handle": "metallic-wallpaper-collection", "description": "<p>Shimmering, reflective metallic wallcoverings that elevate any space.<br>Explore luxe golds, silvers, and foils. Free samples & trade pricing available.</p>", "published_at": "2025-02-25T12:30:39-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1640616558643, "created_at": "2026-03-20T13:47:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GleamingGlambeadsWhiteandSilverGlassBeadWallpaper.jpg?v=1776628432", "alt": "Metallic Wallpaper"}, "products_count": 5212}, {"id": 303023554611, "title": "Metallic / Foil Wallcoverings", "handle": "material-metallic-foil", "description": "<p>Metallic / Foil wallcoverings.</p>", "published_at": "2026-07-22T11:56:43-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": null, "products_count": 542}, {"id": 95010488385, "title": "Metallic Mylar", "handle": "shiny-mylar-mirror", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-ijlbq-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-ijlbq-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-23\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"973eb2bf-bae6-41af-948c-d859be3d40c3\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Gold and silver mylar wallcoverings, designed for residential and commercial applications, deliver a dazzling metallic surface that exudes glamour and sophistication. The shimmering surface of these wallcoverings adds a glamorous and reflective element to any room, catching and enhancing natural light. Their versatility allows them to seamlessly complement various design styles, from contemporary and modern to classic and opulent.\u00a0Whether used as an accent wall or to envelop an entire room, these mylar wallcoverings offer a luxurious and timeless design solution for those seeking to make a bold and elegant statement in their home or commercial space.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-02-21T18:04:02-08:00", "updated_at": "2026-07-28T11:55:16-07:00", "image": {"id": 1641214181427, "created_at": "2026-07-05T15:29:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_2e24bbd7-8d7e-47a4-b2fd-f183310d3aed.jpg?v=1783290582", "alt": "Metallic Mylar"}, "products_count": 145}, {"id": 94741528641, "title": "Metallic Vinyl Wallcovering Collection", "handle": "metallic-vinyl", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rgpcs-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-9\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"1797b797-a6ee-44c4-b415-08e659730d58\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Metallic\u00a0commercial wallcoverings bring a touch of sophistication and resilience to interior spaces. Engineered with durability in mind, these wallcoverings are designed to withstand daily wear and tear, making them ideal for high-traffic areas. The metallic finish not only adds a contemporary and luxurious aesthetic but also contributes to the wallcoverings' overall sturdiness. These wallcoverings are often resistant to stains, moisture, and fading, ensuring a long-lasting and low-maintenance solution for interior design. With a wide range of metallic hues and patterns available, these durable wallcoverings offer versatility and the ability to create visually stunning and enduring design schemes.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2026-03-20T13:14:46-07:00", "updated_at": "2026-07-28T16:40:29-07:00", "image": {"id": 1616870113331, "created_at": "2024-01-17T14:43:01-08:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_f464f487-72e7-4814-aab5-643d66db211f.jpg?v=1776628048", "alt": null}, "products_count": 735}, {"id": 278035628083, "title": "Metallic Wallcovering Collection| Designer", "handle": "metallic-wallpaper-collections", "description": "<p class=\"p1\">Using metallics in home interiors adds a touch of glamour and sophistication, reflecting light and enhancing the overall ambiance of a space. Metallic finishes, such as gold, silver, and bronze, can create a sense of luxury and elegance, making them ideal for accent pieces, fixtures, and decor. They pair beautifully with both bold and neutral colors, allowing for versatile styling options. Additionally, metallics can add depth and dimension to a room, making it feel more dynamic and visually interesting, whether used in furniture, lighting, or wall treatments.</p>\n<!---->", "published_at": "2024-04-15T16:20:51-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640657289267, "created_at": "2026-03-22T11:02:19-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/aforestfir_room_5cc7060f-0dfb-4ca2-bd46-e578c1240b84.jpg?v=1776628493", "alt": null}, "products_count": 24047}, {"id": 299576393779, "title": "Mica Wallcoverings", "handle": "mica", "description": null, "published_at": "2026-04-09T21:34:45-07:00", "updated_at": "2026-07-30T08:11:00-07:00", "image": {"id": 1640814313523, "created_at": "2026-04-17T06:51:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/86c999e57ca94ffa6d42d7b55020cc1c.jpg?v=1776433891", "alt": null}, "products_count": 634}, {"id": 298974511155, "title": "Milton & King", "handle": "milton-and-king", "description": null, "published_at": "2026-03-23T23:02:01-07:00", "updated_at": "2026-06-16T17:59:46-07:00", "image": {"id": 1640673935411, "created_at": "2026-03-25T20:10:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/great-oak-wallpaper-2.jpg?v=1776627542", "alt": null}, "products_count": 2}, {"id": 159993659443, "title": "Mind the Gap\u2122", "handle": "mind-the-gap", "description": "<p><a href=\"https://open.spotify.com/episode/6CBpBFlt8q3cYdH4uGClwU?si=rSXnKyoDROu37ArnO9xJpA\" title=\"Mind the Gap\"><img alt=\"\" src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2024-10-08_at_5.10.22_PM.png?v=1728432650\"></a></p>\n<p class=\"p1\">MINDTHEGAP, available at Designer Wallcoverings, operates from its headquarters in Transylvania, where they also house a production facility for their wallcoverings, lighting, and framed prints. Their fabrics, furniture, and accessories are sourced from trusted European suppliers. With a strong commitment to sustainability, all of their products are crafted with eco-friendly principles, aiming to minimize environmental impact.</p>", "published_at": "2020-04-10T07:45:26-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640655683635, "created_at": "2026-03-22T05:01:17-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2025-11-21at2.05.32PM.png?v=1776627837", "alt": null}, "products_count": 1261}, {"id": 261326176307, "title": "Mini Moderns", "handle": "mini-moderns-wallpaper", "description": "<p>Mini Moderns wallcoverings offer a fresh take on mid-century design, printed in the UK with eco-friendly inks. Known for their bold graphics and vibrant colorways, these non-woven substrates provide excellent durability and easy installation. Their playful patterns and manageable repeat make them ideal for residential and light commercial applications.</p>", "published_at": "2021-05-18T12:35:23-07:00", "updated_at": "2026-07-05T15:27:39-07:00", "image": {"id": 1641212051507, "created_at": "2026-07-05T15:27:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/playrecordMUsitu_room_a8af0672-f8d4-4a0f-9148-4e5cbf697ede.jpg?v=1783290459", "alt": "Mini Moderns"}, "products_count": 112}, {"id": 298464215091, "title": "Minimalist", "handle": "minimalist-1", "description": "<p>The Minimalist collection offers subtle textures and quiet colorways for sophisticated architectural interiors. Featuring heavyweight grounds and Type II durability, these wallcoverings provide a refined backdrop for modern residential and commercial projects. Explore understated patterns and blank stock options, ideal for achieving seamless, light-filled spaces.</p>", "published_at": "2026-03-03T16:20:35-08:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1640617017395, "created_at": "2026-03-20T13:48:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fgb-102-sample-faux-glass-bead-wallcovering_c5fe2966-1c71-4cee-901f-a52530ae15b9.jpg?v=1776628453", "alt": "Minimalist"}, "products_count": 12573}, {"id": 95017238593, "title": "Minimalist Chic", "handle": "minimalist", "description": "<p>Minimalist wallcoverings embrace simplicity and elegance, featuring clean lines, subtle patterns, and a restrained color palette. These designs often utilize neutral tones such as whites, grays, and beiges, occasionally accented with soft pastels or muted metallics. The focus is on creating a serene and uncluttered atmosphere, allowing the wallcovering to enhance the space without overwhelming it. Textures are understated, providing just enough visual interest to add depth and sophistication while maintaining a sense of calm. Perfect for modern interiors, minimalist wallcoverings bring a touch of refined simplicity to any room, making them ideal for creating a tranquil and harmonious living environment.</p>\n<!---->", "published_at": "2026-03-20T13:14:47-07:00", "updated_at": "2026-07-30T08:30:11-07:00", "image": {"id": 1640672821299, "created_at": "2026-03-25T20:05:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c64192a6f12a22695d2b1009f7d8b7df.jpg?v=1776628399", "alt": "Minimalist Chic"}, "products_count": 3135}, {"id": 298507501619, "title": "Missoni", "handle": "missoni", "description": "<p>Missoni wallcoverings bring the iconic Italian fashion house's vibrant textiles to interior surfaces. Known for bold color palettes and distinctive knitwear patterns, the collection offers residential and commercial designers a range of non-woven substrates with exceptional drape. Consider the half-drop repeat and saturated colorways to create dynamic focal points.</p>", "published_at": "2026-03-04T19:15:21-08:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 1640678195251, "created_at": "2026-03-25T20:21:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ande-wp_b5770642-5406-4299-bec9-bb41d65e0dd0.jpg?v=1774495293", "alt": null}, "products_count": 231}, {"id": 79913484400, "title": "Missoni Home", "handle": "missoni-home", "description": "<p>The Missoni wallcovering and fabric line embodies the iconic Italian fashion house's signature style of vibrant colors, bold patterns, and exquisite craftsmanship. Inspired by the brand's rich heritage and innovative design ethos, these wallcoverings and fabrics feature kaleidoscopic patterns, geometric motifs, and abstract designs. With a focus on luxury materials and meticulous attention to detail, Missoni's wallcoverings and fabrics exude sophistication and glamour, adding a touch of Italian elegance to any interior space. Whether adorning walls, upholstery, or drapery, Missoni's creations infuse rooms with a sense of energy and vitality, creating dynamic visual landscapes. Renowned for their versatility and timeless appeal, the Missoni wallcovering and fabric line offers a stylish and contemporary approach to home decor, reflecting the brand's enduring influence in the world of fashion and design.</p>", "published_at": "2025-04-22T11:06:03-07:00", "updated_at": "2026-07-21T13:12:21-07:00", "image": {"id": 1640675049523, "created_at": "2026-03-25T20:13:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ande-wp.jpg?v=1774494801", "alt": null}, "products_count": 119}, {"id": 79912206448, "title": "Modern Hamptons", "handle": "modern-hamptons-1", "description": "<p>This Modern Hamptons collection offers a fresh colorway on a robust Type II vinyl substrate, ideal for high-traffic areas. The generous half-drop repeat allows for seamless, railroaded installation, minimizing waste and labor costs on contract-grade projects. Specified for luxury residential and hospitality environments, these wallcoverings, sourced directly from the mill, provide exceptional hand and meet stringent specification-grade requirements.</p>", "published_at": "2024-12-17T10:49:23-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641212117043, "created_at": "2026-07-05T15:27:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_f327f7c2-4f53-4ad7-9366-509b4a066d90.jpg?v=1783290463", "alt": "Modern Hamptons"}, "products_count": 1267}, {"id": 79911878768, "title": "Modern Originals", "handle": "modern-originals-1", "description": "<p>This collection of Modern Originals revives iconic mid-century patterns, reimagined for specification-grade performance in contemporary contract interiors. Offered in a range of sophisticated colorways on a durable Type II substrate, 30584 is designed for seamless installation, often railroaded to minimize selvage waste and featuring a manageable repeat with half-drop options. Suited to corporate, hospitality, and high-end residential projects, this collection delivers enduring style from mill to bolt.</p>", "published_at": "2024-12-17T10:49:23-08:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641212149811, "created_at": "2026-07-05T15:27:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_5e2926be-bc61-4817-993e-5281184e3a19.jpg?v=1783290464", "alt": "Modern Originals"}, "products_count": 53375}, {"id": 283285979187, "title": "Modern Wallcovering", "handle": "modern-1", "description": "<p>This expansive collection reinterprets Mid-Century Modern motifs onto specification-grade, Type II vinyl with a tactile hand and versatile colorway options. Suitable for contract-grade installations, the varied repeat patterns and grounds can be railroaded for seamless application in expansive commercial spaces. Offered by the bolt, this mill-direct wallcovering provides designers and architects with a wealth of solutions for discerning corporate and hospitality clients.</p>", "published_at": "2026-03-20T13:14:52-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641212084275, "created_at": "2026-07-05T15:27:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08.jpg?v=1783290461", "alt": "Modern Wallcovering"}, "products_count": 11592}, {"id": 95044075585, "title": "Modern Wallcovering Collection", "handle": "modern", "description": "<p>Modern wallcovering embodies contemporary design with bold patterns, striking colors, and innovative textures. These wallcoverings often feature geometric shapes, abstract art, and eye-catching motifs that make a strong visual statement. Color schemes can range from vibrant and dynamic to sleek and monochromatic, allowing for versatility in various interior styles. The use of advanced printing techniques and high-quality materials ensures that modern wallcoverings are not only aesthetically pleasing but also durable and easy to maintain. Ideal for living rooms, bedrooms, and feature walls, modern wallcovering transforms spaces with a fresh, trendy vibe that reflects current design trends.</p>\n<!---->", "published_at": "2024-12-17T10:49:23-08:00", "updated_at": "2026-07-30T09:04:06-07:00", "image": {"id": 1640675737651, "created_at": "2026-03-25T20:14:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c2c47c4d2c2bfb1520563fa4a34f138c_e962ef8d-9996-489e-ac41-de411c603fcb.jpg?v=1776628481", "alt": null}, "products_count": 29680}, {"id": 298886070323, "title": "Moody Dark", "handle": "moody-dark", "description": "<p>A curated selection of wallcoverings in the deepest values -- midnight blues, rich blacks, dark emeralds, and near-black burgundies designed for full saturation environments. Dark walls are no longer relegated to accent applications; they define entire rooms in contemporary practice. This collection serves designers working in the current movement toward cocooning, intimacy, and deliberate drama.</p>", "published_at": "2026-03-20T13:10:34-07:00", "updated_at": "2026-07-30T08:30:30-07:00", "image": {"id": 1641212215347, "created_at": "2026-07-05T15:27:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_fd573d33-1675-48da-bee3-dbb977562955.jpg?v=1783290469", "alt": "Moody Dark"}, "products_count": 11047}, {"id": 298270621747, "title": "Mulberry", "handle": "mulberry-wallcoverings", "description": "<p>Mulberry presents a range of luxurious wallcoverings known for sophisticated textures and rich colorways, suitable for high-end residential and hospitality projects. This vendor collection showcases intricate damasks, large-scale butterfly motifs, and plush flocked velvets. Specified per bolt, Mulberry offers discerning designers a diverse selection of patterns and substrates with varying repeats and installation methods.</p>", "published_at": "2026-02-25T08:56:59-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1640618295347, "created_at": "2026-03-20T13:52:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-WFLO-910C-sample.jpg?v=1776627951", "alt": "Mulberry"}, "products_count": 630}, {"id": 283334901811, "title": "Multi", "handle": "multi", "description": "<p>The \"Multi\" collection offers a sophisticated range of hues, from muted neutrals to saturated jewel tones, on a specification-grade Type II vinyl substrate. Ideal for both naturally lit and interior spaces, this contract-grade wallcovering coordinates seamlessly with brushed metal hardware and dark wood millwork. Available by the bolt, the collection features a 27-inch repeat with a half-drop match and can be railroaded, allowing for minimal selvage waste during mill application.</p>", "published_at": "2026-03-03T17:01:37-08:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1641212248115, "created_at": "2026-07-05T15:27:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_c84c5bb1-fc95-4d9a-9f5c-d6ae06ccf7e8.jpg?v=1783290471", "alt": "Multi"}, "products_count": 3373}, {"id": 164086251571, "title": "Murals", "handle": "murals", "description": "<p>Our \"Murals\" collection offers large-scale, multi-panel wallcovering designs ideal for creating immersive environments in residential and commercial projects. These statement pieces feature intricate patterns and rich colorways, printed on durable Type II substrates for lasting impact. Consider specifying these murals to coordinate with textiles and architectural finishes, noting the pattern match and installation requirements in your project specifications.</p>", "published_at": "2024-12-17T11:08:50-08:00", "updated_at": "2026-07-30T06:26:49-07:00", "image": {"id": 1640655913011, "created_at": "2026-03-22T05:01:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CH-150-MS-4T_022a31e3-3a30-4739-acfd-24975b4cb193.jpg?v=1776628337", "alt": null}, "products_count": 6381}, {"id": 298894622771, "title": "Murals & Scenics", "handle": "murals-scenics", "description": "<p>Full-wall murals and panoramic scenic panels printed on non-woven, vinyl, and specialty substrates. Designs range from hand-painted chinoiserie reproductions to photographic landscapes, delivered in numbered panel sets with installation guides. Custom sizing available on select patterns.</p>", "published_at": "2026-03-20T23:07:33-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640648474675, "created_at": "2026-03-20T23:11:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/98803-7dadb08f3f61432895f59cd5b118af21.jpg?v=1776628176", "alt": null}, "products_count": 8752}, {"id": 79873998960, "title": "Murals, Chinoiserie & Scenics", "handle": "et-cie-wall-panels", "description": "<p><meta charset=\"utf-8\">These picturesque Chinoiseries and decorative murals are fine reproductions of the hand-painted originals, gathered from the most talented and exclusive studios of Asia. Scenes on these mural panels include wonderful gardens and natural environments populated with lovely birds, butterflies, and insects. These selections offer a variety of color schemes to meet most interior needs.</p>", "published_at": "2024-12-17T11:08:47-08:00", "updated_at": "2026-07-30T06:26:49-07:00", "image": {"id": 932435591219, "created_at": "2020-10-29T14:43:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/PN-300-VA-13T_649x474_5e483720-5082-4efe-a10b-2b2cae26a061.jpg?v=1776628333", "alt": null}, "products_count": 6735}, {"id": 164060561459, "title": "Mylar", "handle": "mylar-wallpaper", "description": "<p>The Mylar Wallcovering collection from Versa Designed Surfaces offers durable 20-oz vinyl and PVC-free options suitable for high-traffic commercial interiors. Ascoli's range of colorways provides a sophisticated aesthetic with a reverse hang/random match, minimizing waste during installation. All patterns meet Class A fire safety standards under ASTM E84, ensuring compliance with NFPA 101 Life Safety Code.</p>", "published_at": "2020-06-17T15:33:35-07:00", "updated_at": "2026-07-28T11:55:16-07:00", "image": {"id": 1640623374387, "created_at": "2026-03-20T13:57:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/csm_Avenir-Room-A204-323-15NL_fb0de2cbd8_fe26c6eb-a874-45cf-a153-f29c06422ece.jpg?v=1776628035", "alt": "Mylar Wallpaper"}, "products_count": 137}, {"id": 79865512048, "title": "Natural Cork", "handle": "cork", "description": "<p><meta charset=\"utf-8\"><span>Natural cork wallcovering offers a distinctive and eco-friendly solution for interior design, seamlessly blending aesthetic appeal with sustainability. Derived from the bark of cork oak trees, this wallcovering exudes a warm and earthy charm, providing a unique texture that adds depth and character to any space. The natural variations in the cork's pattern and color create a visually captivating backdrop, making each installation one-of-a-kind. Beyond its aesthetic virtues, cork wallcoverings boast excellent sound-absorbing properties, contributing to a quieter and more serene environment. Additionally, the material's natural insulation properties enhance energy efficiency. Recognized for its renewability and minimal environmental impact, natural cork wallcovering stands as a testament to the harmonious integration of nature-inspired design and responsible living.</span></p>", "published_at": "2018-09-29T11:54:50-07:00", "updated_at": "2026-07-30T08:09:21-07:00", "image": {"id": 1641210413107, "created_at": "2026-07-05T15:25:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_ba16ec43-f1cb-4e1e-b88b-dee0be51be6d.jpg?v=1783290356", "alt": "Natural Cork"}, "products_count": 1443}, {"id": 303023620147, "title": "Natural Fiber Wallcoverings", "handle": "material-natural-fiber", "description": "<p>Natural Fiber wallcoverings.</p>", "published_at": "2026-07-22T11:56:44-07:00", "updated_at": "2026-07-30T08:10:09-07:00", "image": null, "products_count": 616}, {"id": 95009472577, "title": "Natural Grasscloth", "handle": "grasscloth", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"dea37c63-acec-4c06-942b-3ee2c8efc8fd\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Natural grasscloth wallcoverings introduce an earthy and organic aesthetic to interior design, showcasing the beauty of handwoven grass fibers. Sourced from materials like jute, seagrass, or sisal, these wallcoverings celebrate the imperfections and unique textures inherent in natural fibers, offering a tactile and visually rich surface. The interplay of colors and tones in grasscloth adds depth and warmth to any space, creating a subtle yet impactful backdrop. Beyond their aesthetic appeal, grasscloth wallcoverings often boast eco-friendly credentials, contributing to sustainable design practices. The intricate weaving process and the raw, unrefined charm of these coverings make them a versatile choice, seamlessly blending into various design styles from coastal and rustic to modern and eclectic, bringing the essence of the outdoors inside with a touch of understated luxury.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2019-02-21T17:13:07-08:00", "updated_at": "2026-07-30T09:05:34-07:00", "image": {"id": 1640615018547, "created_at": "2026-03-20T13:09:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w3036-21.jpg?v=1776628625", "alt": null}, "products_count": 14927}, {"id": 298971234355, "title": "Natural Paint", "handle": "natural-paint", "description": null, "published_at": "2026-03-23T19:40:05-07:00", "updated_at": "2026-06-16T17:59:45-07:00", "image": {"id": 1640680685619, "created_at": "2026-03-25T20:28:07-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8628cb0b4037fea81c1544f85021859b_22e4706d-e231-4496-82bc-2e4d7a7884fa.jpg?v=1774495687", "alt": null}, "products_count": 26}, {"id": 79877505136, "title": "Naturally Glamorous", "handle": "naturally-glamorous", "description": "<p>Naturally Glamorous embodies sophisticated wallcovering options suited to high-end residential and boutique hospitality projects. The collection features tactile grasscloths, shimmering metallics, and geometric patterns with varied repeats for seamless installation. Consider these durable, high-performance Type II wallcoverings to add subtle luxury to any interior design.</p>", "published_at": "2018-09-29T12:02:55-07:00", "updated_at": "2026-07-22T19:29:34-07:00", "image": {"id": 1640680783923, "created_at": "2026-03-25T20:29:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/HLW-73008-cleaned.jpg?v=1776628621", "alt": null}, "products_count": 185}, {"id": 299574362163, "title": "Navy Wallcoverings", "handle": "navy-wallcoverings", "description": "<p>Navy wallcoverings \u2014 rich, sophisticated, and timeless. Designer Wallcoverings curates navy wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of navy. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:29-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641212280883, "created_at": "2026-07-05T15:27:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W1028_Aztec_Install_0_0cfebebb-9779-40a6-9065-0764c0f7c2a6.jpg?v=1783290473", "alt": "Navy Wallcoverings"}, "products_count": 6007}, {"id": 298512351283, "title": "Neoclassical", "handle": "neoclassical-wallpaper", "description": "<p>Neoclassical Wallcovering offers a range of classically-inspired designs ideal for formal residential and boutique hospitality projects. This refined collection features elegant damasks, restrained geometrics, and subtle textures printed on durable Type II grounds. Consider specifying these wallcoverings to complement architectural millwork and antique furnishings with coordinating colorways available across the book.</p>", "published_at": "2026-03-04T23:52:40-08:00", "updated_at": "2026-07-28T13:04:12-07:00", "image": {"id": 1640622784563, "created_at": "2026-03-20T13:56:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c70373312343c03fb40ed419463606ed.jpg?v=1776627761", "alt": "Neoclassical Wallpaper"}, "products_count": 371}, {"id": 167327760435, "title": "New Arrivals at Designer", "handle": "new-arrivals", "description": "<p style=\"text-align: center;\">The Latest from Designer Wallcoverings</p>", "published_at": "2026-03-19T05:31:05-07:00", "updated_at": "2026-07-30T08:38:55-07:00", "image": {"id": 1640676065331, "created_at": "2026-03-25T20:15:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/happy-hour-day_e05d76e2-583f-46e0-b331-fc9cc36247e5.webp?v=1776627833", "alt": null}, "products_count": 2481}, {"id": 299216732211, "title": "Newmor", "handle": "newmor-wallcoverings", "description": null, "published_at": "2026-03-30T11:03:34-07:00", "updated_at": "2026-07-16T11:02:35-07:00", "image": {"id": 1640814477363, "created_at": "2026-04-17T06:51:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/NEWMOR_82391b06-04ec-4393-b48a-97e322ed4cf4.jpg?v=1776433904", "alt": null}, "products_count": 542}, {"id": 263036043315, "title": "Newmor Wallcovering", "handle": "newmor-wallcovering", "description": "<p>Newmor Wallcoverings offers a wide range of durable, commercially rated Type II wallcoverings suitable for high-traffic interiors. Known for their robust constructions and diverse textures, Newmor's mill in the UK provides a variety of grounds, from non-woven to vinyl, catering to various design specifications. Explore their extensive book of patterns, solids, and textures, available in multiple colorways and readily specified for large-scale projects.</p>", "published_at": "2021-11-22T14:57:40-08:00", "updated_at": "2026-07-16T11:02:35-07:00", "image": {"id": 1640680030259, "created_at": "2026-03-25T20:26:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/NEWMOR_175a390f-0620-4d31-a290-4fed77565799.jpg?v=1774495586", "alt": null}, "products_count": 542}, {"id": 298507534387, "title": "Nina Campbell", "handle": "nina-campbell", "description": "<p>Nina Campbell wallcoverings offer sophisticated patterns and palettes, known for their classic British heritage and timeless appeal. This extensive vendor collection features a range of grounds, from delicate non-wovens to durable Type II vinyls suitable for high-traffic interiors. Designers appreciate the thoughtful colorways and versatile scale, allowing for seamless coordination across residential and commercial projects.</p>", "published_at": "2026-03-04T19:15:22-08:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1641212313651, "created_at": "2026-07-05T15:27:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/beaurivage_ls_wp_5eaa37b4-7e12-44ec-90d5-988bba84a125.webp?v=1783290475", "alt": "Nina Campbell"}, "products_count": 901}, {"id": 298506616883, "title": "NLXL", "handle": "nlxl", "description": "<p>NLXL wallcoverings offer high-resolution trompe l'oeil designs printed on durable, non-woven substrates. Renowned for their innovative photorealistic textures and meticulous attention to detail, each bolt provides a unique visual experience. Specifying NLXL allows designers to incorporate large-scale, non-repeating patterns with the ease of traditional Type II wallcovering installation.</p>", "published_at": "2026-03-04T19:13:56-08:00", "updated_at": "2026-07-01T11:18:51-07:00", "image": {"id": 1640621834291, "created_at": "2026-03-20T13:56:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/36e2f81fed848c76197f640e106da259_16e700d8-8036-412e-9193-7e512b2e673a.jpg?v=1776627569", "alt": "NLXL"}, "products_count": 10}, {"id": 298270654515, "title": "Nobilis", "handle": "nobilis-wallcoverings", "description": "<p>Nobilis wallcoverings offer a refined selection of textures and patterns, reflecting the Parisian house's dedication to sophisticated interiors. Renowned for their natural fiber grounds and subtle colorways, these selections provide a luxurious hand and exceptional drape. Specified by designers worldwide, Nobilis wallcoverings bring timeless elegance to high-end residential and hospitality projects.</p>", "published_at": "2026-02-25T08:57:00-08:00", "updated_at": "2026-07-09T10:39:59-07:00", "image": {"id": 1640622915635, "created_at": "2026-03-20T13:57:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SVR34.jpg?v=1774040222", "alt": "Nobilis"}, "products_count": 179}, {"id": 299114299443, "title": "Non-Woven Wallcoverings", "handle": "non-woven", "description": null, "published_at": "2026-03-26T09:40:05-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641212346419, "created_at": "2026-07-05T15:27:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_5b4594ff-b749-4ef1-9fc1-a53edbde5440.webp?v=1783290477", "alt": "Non-Woven Wallcoverings"}, "products_count": 18905}, {"id": 303023390771, "title": "Non-Woven Wallcoverings", "handle": "material-non-woven", "description": "<p>Non-Woven wallcoverings.</p>", "published_at": "2026-07-22T11:56:38-07:00", "updated_at": "2026-07-30T08:31:14-07:00", "image": null, "products_count": 4942}, {"id": 298506649651, "title": "Novasuede", "handle": "novasuede", "description": "<p>Novasuede offers high-performance suede-like wallcovering renowned for its exceptional durability and luxurious hand. This collection features a wide range of sophisticated neutrals suitable for high-traffic commercial interiors, meeting Type II wallcovering standards. Specify Novasuede for projects demanding a refined aesthetic with lasting performance and easy installation.</p>", "published_at": "2026-03-04T19:13:57-08:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1641212379187, "created_at": "2026-07-05T15:27:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/novasuede_-fabric-wallcovering-amber-bedroom.jpg?v=1783290479", "alt": "Novasuede"}, "products_count": 178}, {"id": 294320046131, "title": "Novasuede\u2122 Microfiber Suede", "handle": "novasuede\u2122-microfiber-suede", "description": "<div style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 1200px; margin: 0 auto;\">\n\n<h1 style=\"font-size: 2.5em; margin-bottom: 0.5em; color: #333;\">Novasuede\u2122 Microfiber Suede Collection</h1>\n\n<p style=\"font-size: 1.2em; line-height: 1.8; color: #555; margin-bottom: 2em;\">\nDiscover the perfect fusion of luxury aesthetics and commercial-grade performance. Our Novasuede\u2122 collection features 141 meticulously curated colors of premium microfiber suede, engineered for the most demanding design applications.\n</p>\n\n<div style=\"background: #f8f9fa; padding: 30px; border-radius: 8px; margin: 30px 0;\">\n<h2 style=\"color: #333; margin-top: 0;\">Why Novasuede\u2122?</h2>\n\n<div style=\"display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;\">\n<div>\n<h3 style=\"color: #2c5282; margin-bottom: 10px;\">\ud83d\udd25 Fire Safety Excellence</h3>\n<ul style=\"line-height: 1.8;\">\n<li>California TB 117-2013 Compliant</li>\n<li>UFAC Class I Certified</li>\n<li>NFPA 260 Approved</li>\n<li>Commercial installation ready</li>\n</ul>\n</div>\n\n<div>\n<h3 style=\"color: #2c5282; margin-bottom: 10px;\">\ud83d\udc8e Superior Performance</h3>\n<ul style=\"line-height: 1.8;\">\n<li>100,000+ Double Rubs (Wyzenbeek)</li>\n<li>UV resistant & fade proof</li>\n<li>Easy maintenance protocols</li>\n<li>Exceptional durability</li>\n</ul>\n</div>\n</div>\n</div>\n\n<h2 style=\"color: #333; margin-top: 40px;\">Design Applications</h2>\n\n<div style=\"background: #fff; border-left: 4px solid #2c5282; padding: 20px; margin: 20px 0;\">\n<h3 style=\"margin-top: 0; color: #2c5282;\">Hospitality & Commercial</h3>\n<p>Transform hotel lobbies, restaurants, and executive lounges with the sophisticated appeal of genuine suede\u2014without the maintenance concerns. Novasuede delivers luxury that performs in high-traffic environments.</p>\n</div>\n\n<div style=\"background: #fff; border-left: 4px solid #2c5282; padding: 20px; margin: 20px 0;\">\n<h3 style=\"margin-top: 0; color: #2c5282;\">Wallcovering Excellence</h3>\n<p>Create stunning feature walls, upholstered headboards, and acoustic panels. Our 53-54\" width and engineered backing ensure professional installation with standard wallcovering techniques.</p>\n</div>\n\n<div style=\"background: #fff; border-left: 4px solid #2c5282; padding: 20px; margin: 20px 0;\">\n<h3 style=\"margin-top: 0; color: #2c5282;\">Upholstery & Furniture</h3>\n<p>Specify with confidence for seating, benches, ottomans, and custom furniture pieces. Novasuede's breathability and stain resistance make it ideal for both contract and residential applications.</p>\n</div>\n\n<h2 style=\"color: #333; margin-top: 40px;\">Technical Specifications</h2>\n\n<table style=\"width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff;\">\n<tr style=\"background: #f8f9fa;\">\n<td style=\"padding: 15px; border: 1px solid #ddd; font-weight: bold;\">Composition</td>\n<td style=\"padding: 15px; border: 1px solid #ddd;\">100% Nylon Fiber Matrix</td>\n</tr>\n<tr>\n<td style=\"padding: 15px; border: 1px solid #ddd; font-weight: bold;\">Width</td>\n<td style=\"padding: 15px; border: 1px solid #ddd;\">53-54\" (134-137 cm)</td>\n</tr>\n<tr style=\"background: #f8f9fa;\">\n<td style=\"padding: 15px; border: 1px solid #ddd; font-weight: bold;\">Weight</td>\n<td style=\"padding: 15px; border: 1px solid #ddd;\">8.85 oz/linear yard</td>\n</tr>\n<tr>\n<td style=\"padding: 15px; border: 1px solid #ddd; font-weight: bold;\">Abrasion Resistance</td>\n<td style=\"padding: 15px; border: 1px solid #ddd;\">100,000+ Double Rubs (Wyzenbeek)</td>\n</tr>\n<tr style=\"background: #f8f9fa;\">\n<td style=\"padding: 15px; border: 1px solid #ddd; font-weight: bold;\">Environmental</td>\n<td style=\"padding: 15px; border: 1px solid #ddd;\">Zero plasticizers, minimal VOC emissions</td>\n</tr>\n</table>\n\n<h2 style=\"color: #333; margin-top: 40px;\">141 Premium Colors</h2>\n\n<p style=\"line-height: 1.8; color: #555;\">\nFrom sophisticated neutrals to bold jewel tones, our extensive color palette ensures perfect coordination with any design vision. Each color is engineered for superior color consistency and batch-to-batch uniformity.\n</p>\n\n<div style=\"background: #2c5282; color: white; padding: 30px; border-radius: 8px; margin: 40px 0; text-align: center;\">\n<h3 style=\"margin-top: 0; font-size: 1.8em;\">Custom Capabilities Available</h3>\n<p style=\"font-size: 1.1em; margin: 20px 0;\">\nCustom embossing patterns and bespoke color matching services available for your unique project requirements.\n</p>\n<p style=\"margin: 0;\">Contact our design team for consultation and minimum order quantities.</p>\n</div>\n\n<div style=\"background: #f0fdf4; border: 2px solid #22c55e; padding: 25px; border-radius: 8px; margin: 30px 0;\">\n<h3 style=\"color: #166534; margin-top: 0;\">\ud83c\udf31 Sustainable Design Choice</h3>\n<ul style=\"line-height: 1.8; color: #333;\">\n<li>Long product lifecycle reduces replacement frequency</li>\n<li>No hazardous plasticizers or heavy metals</li>\n<li>Superior durability extends service life vs. natural alternatives</li>\n<li>Reduced environmental impact through material efficiency</li>\n</ul>\n</div>\n\n<h2 style=\"color: #333; margin-top: 40px;\">Professional Sample Program</h2>\n\n<p style=\"line-height: 1.8; color: #555;\">\nRequest professional samples for color verification and material assessment. We recommend sampling before specification to ensure color accuracy and compatibility with your design intent.\n</p>\n\n<p style=\"margin-top: 40px; padding-top: 30px; border-top: 2px solid #e5e7eb; color: #666; font-size: 0.95em;\">\n<strong>For Designers & Specifiers:</strong> Novasuede\u2122 meets the rigorous demands of commercial interiors while delivering the aesthetic refinement expected in luxury applications. With extensive fire safety certifications, proven durability, and 141 curated colors, Novasuede provides specification-grade performance with uncompromising design flexibility.\n</p>\n\n</div>", "published_at": "2025-10-23T14:04:04-07:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1641212411955, "created_at": "2026-07-05T15:28:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/novasuede_-fabric-wallcovering-amber-bedroom_651ff30c-a2af-453c-876d-b9feb562dbc9.jpg?v=1783290480", "alt": "Novasuede\u2122 Microfiber Suede"}, "products_count": 178}, {"id": 261034311731, "title": "Novelty", "handle": "novelty", "description": "<p>Novelty offers bold, large-scale patterns with metallic inks on a durable Type II ground, suitable for high-traffic commercial interiors. The collection presents a straight repeat for simplified installation and coordinated designs, sourced from a mill known for its innovative use of texture. Consider these wallcoverings for hospitality or entertainment venues seeking a touch of glamour and visual impact.</p>", "published_at": "2021-04-26T13:59:31-07:00", "updated_at": "2026-07-29T15:40:33-07:00", "image": {"id": 1641212444723, "created_at": "2026-07-05T15:28:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/BelladonnaLight_Wallpaper_02.jpg?v=1783290482", "alt": "Novelty"}, "products_count": 1478}, {"id": 283285782579, "title": "Novelty Collection", "handle": "novelty-wallpaper-collection", "description": "<p><meta charset=\"utf-8\">Novelty wallcoverings bring a playful, unexpected, and unique touch to interior design. These wallcoverings feature unconventional patterns, bold themes, and imaginative motifs that transform walls into conversation pieces. Whether inspired by whimsical illustrations, pop culture references, nature, or abstract art, novelty wallcoverings inject personality and creativity into any space. Perfect for accent walls, themed rooms, or commercial interiors looking to make a statement, these wallcoverings go beyond traditional designs to offer something truly distinctive. With high-quality materials and eye-catching aesthetics, novelty wallcoverings are an ideal choice for those looking to infuse fun and originality into their decor.</p>", "published_at": "2025-03-14T10:52:26-07:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640676589619, "created_at": "2026-03-25T20:17:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5005032-2.jpg?v=1776628287", "alt": null}, "products_count": 4518}, {"id": 298512449587, "title": "Ogee", "handle": "ogee-wallpaper", "description": "<p>Ogee Wallcovering presents a vast selection of this classic motif, ranging from historical interpretations to modern abstractions. Offered in a variety of scales and colorways, this collection provides options for both traditional and contemporary interiors, with half-drop and straight match repeats available. Consider coordinating grounds from our solid texture books to complete your design scheme.</p>", "published_at": "2026-03-04T23:52:43-08:00", "updated_at": "2026-07-28T13:05:07-07:00", "image": {"id": 1640624422963, "created_at": "2026-03-20T13:58:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-7027-sample_d683027a-2d9e-49ce-b55a-42ccc371334f.jpg?v=1776627748", "alt": "Ogee Wallpaper"}, "products_count": 309}, {"id": 272249684019, "title": "Ombre", "handle": "ombre", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"h-full\">\n<div class=\"react-scroll-to-bottom--css-xkkpb-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-xkkpb-1n7m0yu\">\n<div class=\"flex flex-col text-sm\">\n<div class=\"w-full text-token-text-primary\" dir=\"auto\" data-testid=\"conversation-turn-3\" data-scroll-anchor=\"true\">\n<div class=\"py-2 juice:py-[18px] px-3 text-base md:px-4 m-auto md:px-5 lg:px-1 xl:px-5\">\n<div class=\"mx-auto flex flex-1 gap-3 text-base juice:gap-4 juice:md:gap-5 juice:lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\">\n<div class=\"group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div data-message-author-role=\"assistant\" data-message-id=\"ced2a1c8-b21d-43e1-88d8-85012f64231c\" dir=\"auto\" class=\"min-h-[20px] text-message flex flex-col items-start whitespace-pre-wrap break-words [.text-message+&]:mt-5 juice:w-full juice:items-end overflow-x-auto gap-2\">\n<div class=\"flex w-full flex-col gap-1 juice:empty:hidden juice:first:pt-[3px]\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>The collection of ombre style wallcoverings features a captivating gradient effect that seamlessly transitions between hues, creating a dynamic and visually engaging backdrop. Each wallcovering showcases a sophisticated blend of colors, ranging from subtle pastels to bold, dramatic shades, offering versatility for any room. The smooth, fading patterns evoke a sense of tranquility and depth, making spaces feel more expansive and inviting. With a range of styles from minimalist to richly textured, these wallcoverings cater to diverse aesthetic preferences. Ideal for both modern and traditional interiors, the collection effortlessly enhances the ambiance and character of any living space.</p>\n</div>\n</div>\n</div>\n</div>\n<div class=\"mt-3 w-full empty:hidden\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)] juice:w-full\">\n<div class=\"px-3 text-base md:px-4 m-auto md:px-5 lg:px-1 xl:px-5\">\n<div class=\"mx-auto flex flex-1 gap-3 text-base juice:gap-4 juice:md:gap-5 juice:lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\"><form class=\"w-full\" type=\"button\" aria-haspopup=\"dialog\" aria-expanded=\"false\" aria-controls=\"radix-:r2:\" data-state=\"closed\">\n<div class=\"relative flex h-full max-w-full flex-1 flex-col\">\n<div class=\"absolute bottom-full left-0 right-0 z-20\">\n<div class=\"relative h-full w-full\">\n<div class=\"flex flex-col gap-3.5 pb-3.5 pt-2\">\n<div class=\"flex w-full items-start gap-4 rounded-2xl border border-token-border-light bg-token-main-surface-primary py-4 pl-5 pr-3 text-sm text-token-text-primary [text-wrap:pretty] dark:border-transparent dark:bg-token-main-surface-secondary md:items-center lg:mx-auto shadow-xxs\">\n<div class=\"mt-1.5 flex grow flex-col items-start gap-4 md:mt-0 md:flex-row md:items-center md:justify-between md:gap-8\">\n<div class=\"flex max-w-md flex-col\">\n<div class=\"\">\n<div class=\"flex-grow\">\n<div class=\"mb-0.5 font-semibold\"><br></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</form></div>\n</div>\n</div>", "published_at": "2023-09-05T11:40:49-07:00", "updated_at": "2026-07-28T11:36:53-07:00", "image": {"id": 1641212477491, "created_at": "2026-07-05T15:28:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R18753_interior1.jpg?v=1783290484", "alt": "Ombre"}, "products_count": 400}, {"id": 283307999283, "title": "Orange Collections", "handle": "orange", "description": "<p>Orange wallcoverings \u2014 spice-warm and energizing. Designer Wallcoverings curates orange wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of orange. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-03-20T13:15:03-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640676753459, "created_at": "2026-03-25T20:17:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MW100-10-abaca-indigo_02_30750673-e139-4770-bfdf-6a8be07ac641.jpg?v=1776628475", "alt": null}, "products_count": 6452}, {"id": 299574460467, "title": "Orange Wallcoverings", "handle": "orange-wallcoverings", "description": null, "published_at": "2026-04-09T21:02:32-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640812675123, "created_at": "2026-04-17T06:49:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0f1a751134e072c4fc1a2687139cce46.jpg?v=1776433748", "alt": null}, "products_count": 4363}, {"id": 79906930800, "title": "Original Vintage Wallcoverings", "handle": "vintage-patterns-on-demand", "description": "Wallcovering has been around for ages however the art form does come in and out of style.\r\nA typical wallcovering manufacturer discontinues a pattern every 2-3 years. What happens when you have water damage? Where does one find vintage?\r\n\r\nAt DesignerWallcoverings.com we use the latest technology to scan and reproduce vintage discontinued to restore your wallcoverings.\r\n\r\nSend us a piece of wallcovering from your wall and we can reproduce it if the manufacturer is no longer in business.\r\n\r\nCall us with any questions at 888-373-4564", "published_at": "2018-09-29T12:34:31-07:00", "updated_at": "2026-07-30T00:37:36-07:00", "image": {"id": 1641186820147, "created_at": "2026-06-29T09:07:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R12731_interior3.jpg?v=1782749247", "alt": "Original Vintage Wallcoverings"}, "products_count": 794}, {"id": 298974314547, "title": "Osborne & Little", "handle": "osborne-little", "description": "<div class=\"dw-aeo-block\" data-aeo=\"osborne-and-little\">\n<p class=\"dw-aeo-answer\"><strong>Osborne & Little</strong> is a British luxury wallpaper and fabric house founded in London in 1968 by brothers-in-law Peter Osborne and Antony Little. Known for hand-crafted, pattern-led designs \u2014 from botanical trails to bold geometrics \u2014 the brand is a benchmark of English interior design. Designer Wallcoverings is a retailer of Osborne & Little wallpapers and fabrics, with per-roll ordering and $4.25 memo samples.</p>\n<h2>Frequently asked questions</h2>\n<details class=\"dw-aeo-faq\"><summary><strong>Who are Osborne & Little?</strong></summary><p>Osborne & Little is a British design house founded in London in 1968 by Peter Osborne and Antony Little. It designs and manufactures luxury wallpapers and fabrics and is regarded as one of England's leading interior-design brands.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Where can I buy Osborne & Little wallpaper?</strong></summary><p>Osborne & Little is sold through specialty interior retailers, including Designer Wallcoverings, which carries the Osborne & Little wallpaper and fabric range with full-roll ordering, current pricing on each product page, and $4.25 memo samples.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Is Osborne & Little wallpaper expensive?</strong></summary><p>Osborne & Little is a premium designer line, priced per roll above mass-market wallpaper. Exact pricing depends on the collection and colorway and is shown on each Designer Wallcoverings product page; order a $4.25 memo sample first to confirm the match.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Does Osborne & Little make fabric as well as wallpaper?</strong></summary><p>Yes. Osborne & Little produces both wallpapers (sold by the roll) and coordinating fabrics (sold by the yard). Designer Wallcoverings carries both, so you can pair a wallcovering with a matching or complementary drapery/upholstery fabric.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>What is Osborne & Little known for?</strong></summary><p>Pattern-led British design \u2014 botanical and floral trails, damasks, chinoiserie, and bold geometrics, often on metallic or richly colored grounds. The group also produces the Nina Campbell and Matthew Williamson lines.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Can I order a sample of Osborne & Little wallpaper?</strong></summary><p>Yes \u2014 Designer Wallcoverings offers a $4.25 memo sample so you can see the true color, scale, and finish in your own room before buying full rolls.</p></details>\n</div>", "published_at": "2026-03-23T22:59:11-07:00", "updated_at": "2026-07-28T11:26:20-07:00", "image": {"id": 1640670789683, "created_at": "2026-03-25T19:54:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-EUR-71118-Sample.jpg?v=1776628354", "alt": "Osborne & Little"}, "products_count": 1041}, {"id": 289750941747, "title": "P-Z", "handle": "p-z-wallpapers-by-designer", "description": "<p>P-Z Wallcoverings by Designer</p>", "published_at": "2025-05-16T15:25:17-07:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1640677179443, "created_at": "2026-03-25T20:19:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/5005032-2_3d3030cb-5b2f-4e28-8ebe-f0624d967409.jpg?v=1776628426", "alt": null}, "products_count": 27608}, {"id": 79890186352, "title": "Paint", "handle": "paint", "description": "Featured Recycled and other Specialty Paint Finishes.", "published_at": "2026-03-20T13:15:09-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641212543027, "created_at": "2026-07-05T15:28:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_642c965a-c828-47a2-a1a6-b7646e5906c0.jpg?v=1783290489", "alt": "Paint"}, "products_count": 1272}, {"id": 94741463105, "title": "Paintable Texture", "handle": "paintable", "description": "<meta charset=\"utf-8\">\n<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"acf8c1b4-826f-4b22-a90d-b9a8083710b7\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Paintable wallcoverings offer a versatile and customizable solution for interior decor, allowing individuals to express their creativity and style. These wallcoverings typically come in neutral tones or textured surfaces, providing a blank canvas for various paint colors and finishes. The ability to paint and repaint them allows for easy updates to the decor, keeping the space fresh and in line with evolving tastes. Paintable wallcoverings are often made from durable materials, ensuring longevity and resistance to wear and tear. Additionally, they provide a cost-effective alternative to traditional wallcovering, giving homeowners the freedom to change the look of their walls without the need for a complete overhaul.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"mx-auto\">\n<div data-projection-id=\"71\">\n<div class=\"mx-auto mt-2 inline-flex rounded-xl border border-gray-100 dark:border-gray-700\"><br></div>\n</div>\n</div>", "published_at": "2026-03-20T13:15:10-07:00", "updated_at": "2026-07-30T08:30:45-07:00", "image": {"id": 1640653422643, "created_at": "2026-03-21T23:01:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1956FR-3-Amelia-bathroom-shot_b9dfa7ba-b379-473e-ab5c-6d9c867995a3.jpg?v=1776627674", "alt": null}, "products_count": 144}, {"id": 298512121907, "title": "Paisley", "handle": "paisley-wallpaper", "description": "<p>Paisley Wallcovering offers a diverse selection of traditional and contemporary interpretations of the classic motif, suitable for a range of design applications. This book features a wide variety of scales and colorways, printed on durable Type II substrates with varying pattern matches to accommodate diverse project needs. Designers will appreciate the range of textures and the coordinate potential within this extensive collection.</p>", "published_at": "2026-03-04T23:52:32-08:00", "updated_at": "2026-07-30T08:59:03-07:00", "image": {"id": 1640618688563, "created_at": "2026-03-20T13:52:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a_3243fe58-4720-4dc5-9576-ad0d46258b5d.jpg?v=1776628170", "alt": "Paisley Wallpaper"}, "products_count": 747}, {"id": 299576164403, "title": "Paisley Collection", "handle": "paisley", "description": null, "published_at": "2026-04-09T21:34:38-07:00", "updated_at": "2026-07-30T08:59:03-07:00", "image": {"id": 1640812544051, "created_at": "2026-04-17T06:48:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a.jpg?v=1776433735", "alt": null}, "products_count": 747}, {"id": 79885369456, "title": "Paisleys", "handle": "paisleys-1", "description": "<p>The collection of paisley style wallcoverings boasts intricate, swirling patterns that exude a timeless elegance and artistic flair. Each design is meticulously crafted, featuring rich, detailed motifs that draw inspiration from traditional Persian and Indian textiles. The wallcoverings are available in a variety of color palettes, from vibrant and bold to soft and muted, catering to a range of decorative tastes. These paisley patterns add a touch of sophistication and exotic charm, transforming any room into a stylish and inviting sanctuary. Perfect for both classic and contemporary interiors, this collection brings a unique and luxurious element to home d\u00e9cor.</p>\n<!---->", "published_at": "2025-02-13T13:50:36-08:00", "updated_at": "2026-07-29T17:25:59-07:00", "image": {"id": 1640651456563, "created_at": "2026-03-21T17:01:06-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c77e04e1260f745f78f19fb5d6583e8a_2bb4756b-10fc-4afe-b3f2-2aa9748e5188.jpg?v=1776628167", "alt": null}, "products_count": 799}, {"id": 265826467891, "title": "Pantone Color of the Year 2022 - Veri Periwinkle", "handle": "pantone-color-of-the-year-2022-veri-periwinkle", "description": "<p>Veri Periwinkle offers a versatile range of wallcoverings in the year's defining chromatic hue, adaptable to various lighting schemes and interior styles. Encompassing solids, textures, and subtle patterns, this color collection provides a harmonious ground for sophisticated residential and commercial projects. Explore Type II vinyls, grasscloths, and non-wovens within this book, each chosen for its superior lightfastness and ease of installation.</p>", "published_at": "2026-03-20T13:15:12-07:00", "updated_at": "2026-07-29T16:21:00-07:00", "image": {"id": 1641212575795, "created_at": "2026-07-05T15:28:10-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DA60104-A.jpg?v=1783290491", "alt": "Pantone Color of the Year 2022 - Veri Periwinkle"}, "products_count": 303}, {"id": 283201830963, "title": "Paolo Moschino Collections", "handle": "paolo-moschino-collections", "description": "<p><meta charset=\"utf-8\">Paolo Moschino is known for his luxurious and eclectic design approach, blending classic elegance with bold, contemporary elements. His work is characterized by a distinctive use of rich textures, vibrant patterns, and an innovative color palette, creating interiors that are both opulent and uniquely stylish.</p>", "published_at": "2026-03-20T13:15:14-07:00", "updated_at": "2026-07-05T15:28:13-07:00", "image": {"id": 1641212608563, "created_at": "2026-07-05T15:28:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-Arezzo---Bracken-Olive-Green-By-Lee-Jofa_cde5cbfd-46cf-4f6a-bbfb-6d0d3aa2fa03.png?v=1783290493", "alt": "Paolo Moschino Collections"}, "products_count": 288}, {"id": 79864463472, "title": "Paper Backed Cotton Walls", "handle": "paper-backed-cotton-walls", "description": "<p>This contract-grade, Type II wallcovering features a soft, textile hand achieved through a unique paper-backed cotton ground. With a 27-inch repeat and half-drop match, 3037 can be railroaded for seamless application, minimizing selvage waste per bolt. Specification-grade and milled for durability, this collection offers a refined texture across multiple colorways.</p>", "published_at": "2026-03-20T13:15:15-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641212641331, "created_at": "2026-07-05T15:28:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_03361fc6-c372-4881-a5b6-b150c742d830.jpg?v=1783290495", "alt": "Paper Backed Cotton Walls"}, "products_count": 1289}, {"id": 299576229939, "title": "Paper Wallcoverings", "handle": "paper", "description": null, "published_at": "2026-04-09T21:34:40-07:00", "updated_at": "2026-07-30T08:30:54-07:00", "image": {"id": 1640813330483, "created_at": "2026-04-17T06:50:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_7b2c88ee-1c06-4063-8756-7fb533746e9a.jpg?v=1776433805", "alt": null}, "products_count": 29832}, {"id": 95009570881, "title": "Paperweave", "handle": "fine-paper", "description": "<p>The <em>Fine Paper Wallcovering Collection</em> celebrates craftsmanship and artistry with premium-quality designs. Featuring delicate patterns, luxurious textures, and refined finishes, these wallcoverings bring sophistication and timeless appeal to any room. Perfect for adding an elevated touch to modern and classic interiors alike.</p>\n<p>Whether you desire understated elegance or bold visual impact, this collection transforms your walls into works of art. Experience the beauty of fine design, down to every detail. \u2728</p>", "published_at": "2019-02-21T17:51:54-08:00", "updated_at": "2026-07-29T10:12:22-07:00", "image": {"id": 1640653455411, "created_at": "2026-03-21T23:02:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/SG6039.jpg?v=1776627711", "alt": null}, "products_count": 952}, {"id": 303023652915, "title": "Paperweave Wallcoverings", "handle": "material-paperweave", "description": "<p>Paperweave wallcoverings.</p>", "published_at": "2026-07-22T11:56:45-07:00", "updated_at": "2026-07-28T13:04:23-07:00", "image": null, "products_count": 594}, {"id": 294293307443, "title": "Papis Loveday Wallcovering Collection", "handle": "papis-lovejoy", "description": "<p>The Papis Loveday Collection by Marburg offers a range of modern, textured wallcoverings with geometric and abstract patterns. These Type II vinyl wallcoverings are suitable for contemporary interiors and high-traffic commercial spaces. Refer to the book for available colorways, repeat information, and specific installation recommendations.</p>", "published_at": "2025-10-22T10:49:52-07:00", "updated_at": "2026-06-16T17:59:31-07:00", "image": {"id": 1638744621107, "created_at": "2025-10-22T10:49:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2025-10-22_at_10.49.24_AM.png?v=1761155391", "alt": null}, "products_count": 116}, {"id": 94414176321, "title": "Pattern Design Lab", "handle": "pattern-design-lab-2", "description": "<div class=\"flex-1 overflow-hidden\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-79elbk h-full\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-1n7m0yu\" data-mce-fragment=\"1\">\n<div class=\"flex flex-col text-sm pb-9\" data-mce-fragment=\"1\">\n<div class=\"w-full text-token-text-primary\" data-testid=\"conversation-turn-7\" data-mce-fragment=\"1\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\" data-mce-fragment=\"1\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\" data-mce-fragment=\"1\">\n<div class=\"relative flex w-full flex-col agent-turn\" data-mce-fragment=\"1\">\n<div class=\"flex-col gap-1 md:gap-3\" data-mce-fragment=\"1\">\n<div class=\"flex flex-grow flex-col max-w-full\" data-mce-fragment=\"1\">\n<div data-message-author-role=\"assistant\" data-message-id=\"fd45537b-1dec-4b4b-9118-863864c4d3e3\" class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-mce-fragment=\"1\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\" data-mce-fragment=\"1\">\n<p data-mce-fragment=\"1\">The custom vintage reproduction wallcovering collection offers a captivating journey through design evolution, spanning from the vibrant patterns of the 1920s to the present day. Each meticulously curated design reflects the distinctive aesthetic trends of its respective era, capturing the essence of Art Deco glamour, mid-century modern simplicity, and contemporary eclectic flair. From the bold geometric motifs of the Roaring Twenties to the whimsical florals of the 1960s and the sleek minimalism of the 21st century, this collection celebrates the timeless appeal of historical design while embracing the innovation and creativity of modern times. Whether used to evoke nostalgia in a restored heritage home or to add a touch of retro charm to contemporary interiors, these wallcoverings offer a seamless blend of past and present, enriching spaces with a sense of history and style.</p>\n<p data-mce-fragment=\"1\">\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-01-21T19:59:09-08:00", "updated_at": "2026-07-28T21:32:38-07:00", "image": {"id": 1617559126067, "created_at": "2024-03-18T12:31:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ribbon_room_setting.jpg?v=1776627830", "alt": null}, "products_count": 1176}, {"id": 95312117825, "title": "Patterns", "handle": "patterns", "description": "<p>Pattern 62756 presents a sophisticated array of geometric abstractions across a variety of grounds, with repeats ranging from subtle textures to bold, large-scale motifs. Offered in a diverse colorway palette on specification-grade, Type II vinyl substrate, this contract-grade collection is ideal for adding visual interest to high-traffic commercial and hospitality environments, and many patterns can be railroaded for seamless, expansive wall coverage. Available by the bolt from the mill, ensure proper alignment accounting for selvage when specifying half-drop repeats.</p>", "published_at": "2026-03-20T13:15:18-07:00", "updated_at": "2026-07-30T09:04:06-07:00", "image": {"id": 1641212674099, "created_at": "2026-07-05T15:28:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_c42d601c-e943-499e-9c44-afad0b859bf8.webp?v=1783290497", "alt": "Patterns"}, "products_count": 78384}, {"id": 285549068339, "title": "Paul Montgomery - All Products", "handle": "paul-montgomery-all-products", "description": "<p>Paul Montgomery's extensive collection offers a range of sophisticated wallcoverings, art prints, and murals, renowned for their exquisite artistry and meticulous craftsmanship. Known for their innovative designs and superior quality, these offerings provide diverse solutions for high-end residential and commercial projects. Explore a comprehensive selection of grounds, textures, and scales suitable for discerning designers seeking distinctive wallcovering solutions.</p>", "published_at": "2024-12-11T13:48:33-08:00", "updated_at": "2026-06-16T17:59:29-07:00", "image": {"id": 1640617312307, "created_at": "2026-03-20T13:49:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Adriana_Roomet2_1090px_x_1090px__22815.1710169005.jpg?v=1776628721", "alt": "Paul Montgomery - All Products"}, "products_count": 1538}, {"id": 284216983603, "title": "Paul Montgomery Murals", "handle": "paul-montgomery-murals", "description": "<p>Paul Montgomery Murals offer large-scale scenic designs printed on durable Type II vinyl. Known for their sophisticated color palettes and intricate details, these murals are ideal for high-end residential and commercial interiors. Available in various colorways and substrates, each mural provides a seamless installation with a precise pattern match.</p>", "published_at": "2026-03-20T13:15:21-07:00", "updated_at": "2026-07-21T17:45:21-07:00", "image": {"id": 1626926252083, "created_at": "2024-10-22T09:05:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Updated_Roomset_-_Derbyshire_Antiqued__33744.1710169007_27811bb9-a855-4d53-8fb3-853b63f2c8db.jpg?v=1776627575", "alt": null}, "products_count": 443}, {"id": 298894721075, "title": "Peel & Stick", "handle": "peel-stick", "description": "<p>Self-adhesive wallcoverings with pressure-sensitive backing for rental-friendly and repositionable installations. Printed on woven polyester, vinyl, and non-woven bases with clean-release adhesive that leaves no residue on properly primed surfaces. No paste, no activation \u2014 measure, cut, and apply.</p>", "published_at": "2026-03-20T23:07:57-07:00", "updated_at": "2026-07-30T05:38:32-07:00", "image": {"id": 1641212706867, "created_at": "2026-07-05T15:28:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/multi-warm-kiki-shapes-peel-and-stick-3_56509c5e-2a6d-4216-bbf8-6bc67688bcc4.jpg?v=1783290499", "alt": "Peel & Stick"}, "products_count": 551}, {"id": 298971529267, "title": "Peg Norriss Wallcoverings", "handle": "peg-norriss-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:13-07:00", "updated_at": "2026-06-16T17:59:46-07:00", "image": {"id": 1640673771571, "created_at": "2026-03-25T20:10:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/flying-west-2_a0433b42-2dc5-4f2f-8211-f428fee846d8.jpg?v=1776627433", "alt": null}, "products_count": 3}, {"id": 95012192321, "title": "Performance Textile", "handle": "performance-linen-by-phillipe-romano", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-15\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"f946cbea-2ad7-41cc-9613-8272dabbb2ca\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Performance textile wallcoverings redefine luxury by seamlessly integrating opulence with functionality. Crafted with cutting-edge technology, these wallcoverings boast a sumptuous aesthetic while delivering unparalleled stain repellency. The innovative materials used not only mimic the lavish textures of traditional textiles but also provide a protective shield against spills and stains, ensuring longevity without compromising on elegance. Ideal for high-traffic areas in residential and commercial spaces, these wallcoverings offer a sophisticated solution that marries style with practicality. With their ability to resist stains and maintain a pristine appearance over time, performance textile wallcoverings represent a contemporary approach to interior design, where beauty meets resilience to create enduring and luxurious environments.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2026-03-20T13:15:23-07:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1641212739635, "created_at": "2026-07-05T15:28:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/32db3e2a845ff876b3f1f3c7761c983f_1f743b6e-03b1-4509-8f16-3989e6c7f413.jpg?v=1783290500", "alt": "Performance Textile"}, "products_count": 179}, {"id": 302008139827, "title": "Phillip Jeffries", "handle": "phillip-jeffries", "description": "The Phillip Jeffries collection at Designer Wallcoverings \u2014 natural grasscloth, silk, metallic and specialty wallcoverings, to the trade.", "published_at": "2026-06-30T16:23:48-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": null, "products_count": 3186}, {"id": 298507599923, "title": "Phillipe Romano", "handle": "phillipe-romano-1", "description": "<p>Phillipe Romano, a heritage mill renowned for its intricate damasks and exceptional hand, presents 16550, a collection featuring contract-grade, Type II vinyl wallcoverings across an expansive colorway range. The collection offers various grounds, with select patterns available railroaded and in half-drop repeats, ensuring specification-grade performance from selvage to selvage on every bolt. The diverse substrate options cater to high-traffic interiors, solidifying Romano's position as a leader in enduring, design-driven wall solutions.</p>", "published_at": "2026-03-04T19:15:23-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641212805171, "created_at": "2026-07-05T15:28:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_4463aff2-4fb6-4800-8e73-1d05a347929d.jpg?v=1783290504", "alt": "Phillipe Romano"}, "products_count": 29443}, {"id": 297892675635, "title": "Phillipe Romano - Enlightenment", "handle": "phillipe-romano-enlightenment", "description": "<p>Justin David Enlightenment - Private label fabrics under Phillipe Romano. 13 patterns, 52 colorways available.</p>", "published_at": "2026-03-20T15:29:48-07:00", "updated_at": "2026-06-21T22:15:43-07:00", "image": {"id": 1640672493619, "created_at": "2026-03-25T20:04:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Wallcovering_PRW_920396_60247b3a-7765-41b1-beb1-e000288ed220.jpg?v=1774494275", "alt": "Phillipe Romano - Enlightenment"}, "products_count": 20}, {"id": 297893134387, "title": "Phillipe Romano - Faux Leather", "handle": "phillipe-romano-faux-leather", "description": "<p>Phillipe Romano Faux Leather fabrics. 14 patterns, 195 colorways.</p>", "published_at": "2026-03-20T13:53:45-07:00", "updated_at": "2026-07-21T17:45:01-07:00", "image": {"id": 1640671346739, "created_at": "2026-03-25T19:56:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TR-VT-01_0f374878-69d0-4656-9fc2-ba0b4e44bca4.jpg?v=1774493814", "alt": "Phillipe Romano - Faux Leather"}, "products_count": 19}, {"id": 297892773939, "title": "Phillipe Romano - Metro Collection", "handle": "phillipe-romano-metro-collection", "description": "<p>Justin David Metro Collection - Private label fabrics under Phillipe Romano. 9 patterns, 88 colorways available.</p>", "published_at": "2026-03-20T13:53:41-07:00", "updated_at": "2026-06-21T22:14:57-07:00", "image": {"id": 1640626913331, "created_at": "2026-03-20T13:59:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WBB5026_WT_b972c93b-9767-45d2-a804-84aa0f1f0c81.jpg?v=1774040384", "alt": "Phillipe Romano - Metro Collection"}, "products_count": 100}, {"id": 297892806707, "title": "Phillipe Romano - Monument Collection", "handle": "phillipe-romano-monument-collection", "description": "<p>Justin David Monument Collection - Private label fabrics under Phillipe Romano. 8 patterns, 67 colorways available.</p>", "published_at": "2026-03-20T13:53:42-07:00", "updated_at": "2026-07-07T09:21:25-07:00", "image": {"id": 1640638939187, "created_at": "2026-03-20T14:12:52-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0aa27704811998ea44f5411dbaae7d76_566f6b7e-86b0-4874-b45c-ab7fb258e8f0.jpg?v=1774041172", "alt": "Phillipe Romano - Monument Collection"}, "products_count": 38}, {"id": 297893265459, "title": "Phillipe Romano - Multi-Use", "handle": "phillipe-romano-multi-use-fabrics", "description": "<p>Phillipe Romano Multi-Use Fabrics fabrics. 14 patterns, 94 colorways.</p>", "published_at": "2026-03-20T13:53:46-07:00", "updated_at": "2026-07-24T04:05:18-07:00", "image": {"id": 1640627306547, "created_at": "2026-03-20T13:59:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM112-2298.jpg?v=1774040399", "alt": "Phillipe Romano - Multi-Use Fabrics"}, "products_count": 93}, {"id": 297893298227, "title": "Phillipe Romano - Outdoor Faux Leather", "handle": "phillipe-romano-outdoor-faux-leather", "description": "<p>Phillipe Romano Outdoor Faux Leather fabrics. 2 patterns, 48 colorways.</p>", "published_at": "2026-03-20T13:53:47-07:00", "updated_at": "2026-07-21T17:45:02-07:00", "image": {"id": 1641209200691, "created_at": "2026-07-05T15:24:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papalo-paper-grasscloth-prg-71087-bedroom.jpg?v=1783290284", "alt": "Phillipe Romano - Outdoor Faux Leather"}, "products_count": 19}, {"id": 297893363763, "title": "Phillipe Romano - Pattern Upholstery", "handle": "phillipe-romano-pattern-upholstery", "description": "<p>Phillipe Romano Pattern Upholstery fabrics. 12 patterns, 73 colorways.</p>", "published_at": "2026-03-20T13:53:48-07:00", "updated_at": "2026-07-07T09:29:14-07:00", "image": {"id": 1641209233459, "created_at": "2026-07-05T15:24:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-antonia-basketweave-prg-47836-bedroom.jpg?v=1783290286", "alt": "Phillipe Romano - Pattern Upholstery"}, "products_count": 34}, {"id": 297893396531, "title": "Phillipe Romano - Print Basecloths", "handle": "phillipe-romano-print-basecloths", "description": "<p>Phillipe Romano Print Basecloths fabrics. 13 patterns, 92 colorways.</p>", "published_at": "2026-03-20T13:53:49-07:00", "updated_at": "2026-06-21T22:08:46-07:00", "image": {"id": 1640644411443, "created_at": "2026-03-20T14:20:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/T2-BL-11_a321a15d-f92e-4833-81e7-1559488db75c.jpg?v=1774041641", "alt": "Phillipe Romano - Print Basecloths"}, "products_count": 27}, {"id": 297892872243, "title": "Phillipe Romano - Sant\u00e9 Collection", "handle": "phillipe-romano-sante-collection", "description": "<p>Justin David Sant\u00e9 Collection - Private label fabrics under Phillipe Romano. 11 patterns, 71 colorways available.</p>", "published_at": "2026-03-20T13:53:43-07:00", "updated_at": "2026-07-07T09:40:40-07:00", "image": {"id": 1641209266227, "created_at": "2026-07-05T15:24:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/papalo-paper-grasscloth-prg-71087-bedroom_f582a460-15b2-4d8e-8387-eb3529d0fdb7.jpg?v=1783290288", "alt": "Phillipe Romano - Sant\u00e9 Collection"}, "products_count": 32}, {"id": 297893560371, "title": "Phillipe Romano - Texture Upholstery", "handle": "phillipe-romano-texture-upholstery", "description": "<p>Phillipe Romano Texture Upholstery fabrics. 11 patterns, 145 colorways.</p>", "published_at": "2026-03-20T13:53:50-07:00", "updated_at": "2026-07-07T09:09:02-07:00", "image": {"id": 1640626978867, "created_at": "2026-03-20T13:59:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8b12793f47ef6173433fbae863be0486_fe34396a-6dd9-48b2-86cd-9d8f1f3c68dc.jpg?v=1774040387", "alt": "Phillipe Romano - Texture Upholstery"}, "products_count": 100}, {"id": 297893003315, "title": "Phillipe Romano - Wilderie Collection", "handle": "phillipe-romano-wilderie-collection", "description": "<p>Justin David Wilderie Collection - Private label fabrics under Phillipe Romano. 7 patterns, 39 colorways available.</p>", "published_at": "2026-03-20T13:53:44-07:00", "updated_at": "2026-07-07T09:29:14-07:00", "image": {"id": 1641209298995, "created_at": "2026-07-05T15:24:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-antonia-basketweave-prg-47836-bedroom_5cf2a608-55ea-45e9-bdbd-a5c090ed7354.jpg?v=1783290289", "alt": "Phillipe Romano - Wilderie Collection"}, "products_count": 30}, {"id": 302736736307, "title": "Phillipe Romano Abaca", "handle": "pr-abaca", "description": null, "published_at": "2026-07-12T22:48:10-07:00", "updated_at": "2026-07-13T02:04:39-07:00", "image": null, "products_count": 56}, {"id": 298470342707, "title": "Phillipe Romano Acoustical", "handle": "phillipe-romano-acoustical", "description": null, "published_at": "2026-03-03T18:57:20-08:00", "updated_at": "2026-07-07T09:11:09-07:00", "image": {"id": 1641212837939, "created_at": "2026-07-05T15:28:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/caron-tabac-wallpaper-xa6-66445-bedroom_29022165-503c-4cad-997a-9f3abbba69f5.jpg?v=1783290506", "alt": "Phillipe Romano Acoustical"}, "products_count": 20}, {"id": 302736769075, "title": "Phillipe Romano Arrowroot", "handle": "pr-arrowroot", "description": null, "published_at": "2026-07-12T22:48:11-07:00", "updated_at": "2026-07-13T02:04:39-07:00", "image": null, "products_count": 11}, {"id": 302737358899, "title": "Phillipe Romano Art Deco", "handle": "pr-style-art-deco", "description": null, "published_at": "2026-07-12T22:48:28-07:00", "updated_at": "2026-07-28T09:59:11-07:00", "image": null, "products_count": 0}, {"id": 283143241779, "title": "Phillipe Romano ASIAN ESSENCE", "handle": "phillipe-romano-asian-essence", "description": "<p>Phillipe Romano's ASIAN ESSENCE collection presents a range of refined grasscloth wallcoverings, known for their natural texture and exceptional hand. These durable, solid wallcoverings are ideal for adding subtle depth to sophisticated interiors, offered in a variety of adaptable colorways. Specify these for contract or residential projects requiring a touch of organic elegance.</p>", "published_at": "2026-03-20T13:49:29-07:00", "updated_at": "2026-06-16T17:59:25-07:00", "image": {"id": 1640631894067, "created_at": "2026-03-20T14:03:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WOS3471_WT_ba85ae6e-2aef-4f79-8bec-e8d28a5c4f34.jpg?v=1774040611", "alt": "Phillipe Romano ASIAN ESSENCE"}, "products_count": 67}, {"id": 302737653811, "title": "Phillipe Romano Black", "handle": "pr-hue-black", "description": null, "published_at": "2026-07-12T22:48:36-07:00", "updated_at": "2026-07-12T22:48:36-07:00", "image": null, "products_count": 10}, {"id": 302737686579, "title": "Phillipe Romano Blue", "handle": "pr-hue-blue", "description": null, "published_at": "2026-07-12T22:48:37-07:00", "updated_at": "2026-07-12T22:48:37-07:00", "image": null, "products_count": 24}, {"id": 302737719347, "title": "Phillipe Romano Charcoal", "handle": "pr-hue-charcoal", "description": null, "published_at": "2026-07-12T22:48:38-07:00", "updated_at": "2026-07-12T22:48:39-07:00", "image": null, "products_count": 137}, {"id": 302737883187, "title": "Phillipe Romano Chartreuse", "handle": "pr-hue-chartreuse", "description": null, "published_at": "2026-07-12T22:48:42-07:00", "updated_at": "2026-07-12T22:48:43-07:00", "image": null, "products_count": 14}, {"id": 302737391667, "title": "Phillipe Romano Coastal", "handle": "pr-style-coastal", "description": null, "published_at": "2026-07-12T22:48:29-07:00", "updated_at": "2026-07-28T10:52:36-07:00", "image": null, "products_count": 0}, {"id": 298470375475, "title": "Phillipe Romano Commercial", "handle": "phillipe-romano-commercial", "description": "<p>Phillipe Romano Commercial builds upon the brand's heritage of contract-grade wallcoverings with this robust collection. Known for its durable Type II vinyls, this mill presents a range of colorways on a non-woven ground, with select patterns railroaded for ease of installation. The 8831 features a subtle half-drop repeat and is specification-grade, allowing for minimal waste during installation thanks to its clean selvage and consistent bolt size.</p>", "published_at": "2026-03-03T18:57:20-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641212870707, "created_at": "2026-07-05T15:28:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom.jpg?v=1783290507", "alt": "Phillipe Romano Commercial"}, "products_count": 15982}, {"id": 302737424435, "title": "Phillipe Romano Contemporary", "handle": "pr-style-contemporary", "description": null, "published_at": "2026-07-12T22:48:30-07:00", "updated_at": "2026-07-28T10:51:11-07:00", "image": null, "products_count": 0}, {"id": 94165467201, "title": "Phillipe Romano Durable Vinyl", "handle": "phillipe-romano-vinyls", "description": "<div class=\"flex-1 overflow-hidden\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-79elbk h-full\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-1n7m0yu\" data-mce-fragment=\"1\">\n<div class=\"flex flex-col text-sm pb-9\" data-mce-fragment=\"1\">\n<div class=\"w-full text-token-text-primary\" data-testid=\"conversation-turn-11\" data-mce-fragment=\"1\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\" data-mce-fragment=\"1\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\" data-mce-fragment=\"1\">\n<div class=\"relative flex w-full flex-col agent-turn\" data-mce-fragment=\"1\">\n<div class=\"flex-col gap-1 md:gap-3\" data-mce-fragment=\"1\">\n<div class=\"flex flex-grow flex-col max-w-full\" data-mce-fragment=\"1\">\n<div data-message-author-role=\"assistant\" data-message-id=\"080886db-d56d-48c2-ae91-9880f5bfcd4b\" class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-mce-fragment=\"1\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\" data-mce-fragment=\"1\">\n<p data-mce-fragment=\"1\">The Phillipe Romano Durable Vinyl wallcovering collection epitomizes a harmonious fusion of elegance and functionality, offering a sophisticated solution for interior design enthusiasts seeking both style and durability. Crafted with meticulous attention to detail, each wallcovering in this collection showcases timeless designs infused with contemporary flair, curated to elevate any space with understated luxury. Renowned for its exceptional resilience and ease of maintenance, the durable material ensures longevity without compromising on aesthetic appeal. Whether adorning residential or commercial interiors, from high-traffic areas to moisture-prone zones, the Phillipe Romano collection provides a versatile and enduring solution, promising to withstand the rigors of daily life while exuding enduring charm and refinement.</p>\n<p data-mce-fragment=\"1\">\u00a0</p>\n<p data-mce-fragment=\"1\">\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-01-06T23:11:44-08:00", "updated_at": "2026-07-28T11:25:09-07:00", "image": {"id": 1617559683123, "created_at": "2024-03-18T12:40:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2bd76bfac054ded030ad269641d7c683_fa24e69e-f6f2-4ed3-b60d-fdd9c0708b2d.jpg?v=1776628233", "alt": null}, "products_count": 1590}, {"id": 302737457203, "title": "Phillipe Romano Eclectic", "handle": "pr-style-eclectic", "description": null, "published_at": "2026-07-12T22:48:30-07:00", "updated_at": "2026-07-28T10:49:22-07:00", "image": null, "products_count": 0}, {"id": 283143569459, "title": "Phillipe Romano Elegante Collection", "handle": "phillipe-romano-elegante", "description": "<p>Phillipe Romano Elegante Collection | Designer Wallcoverings</p>", "published_at": "2024-09-11T12:02:21-07:00", "updated_at": "2026-07-06T14:32:13-07:00", "image": {"id": 1640625274931, "created_at": "2026-03-20T13:58:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WTE6045_WT_f0f33024-2f0e-40f1-bbad-53ae3f2c721c.jpg?v=1774040317", "alt": "Phillipe Romano Elegante Collection | Designer Wallcoverings"}, "products_count": 121}, {"id": 79878226032, "title": "Phillipe Romano Essential Textures", "handle": "phillipe-romano-essential-textures", "description": "<p>Phillipe Romano's Essential Textures collection offers a broad spectrum of Type II vinyl wallcoverings renowned for their exceptional durability and ease of installation. This extensive book showcases a diverse range of grounds, from metallic vinyls to real cork, accommodating various design aesthetics. Architects and designers will appreciate the collection's consistent quality and suitability for high-traffic commercial environments.</p>", "published_at": "2018-09-29T12:03:03-07:00", "updated_at": "2026-07-28T11:25:09-07:00", "image": {"id": 1640680816691, "created_at": "2026-03-25T20:29:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/12edb155a6a9af20515cc417f1d2caff_8be81f42-fabe-413a-8804-a0ce35f0ba9a.jpg?v=1776628093", "alt": null}, "products_count": 1024}, {"id": 298470408243, "title": "Phillipe Romano European Prints", "handle": "phillipe-romano-european-prints", "description": "<p>Phillipe Romano European Prints offers a range of sophisticated commercial wallcoverings known for their robust Type II durability and meticulous craftsmanship. The collection features classic European motifs in various colorways, printed on a heavy-duty substrate for lasting performance. Architects and designers will appreciate the precise pattern match and easy installation, ideal for high-traffic interiors.</p>", "published_at": "2026-03-03T18:57:21-08:00", "updated_at": "2026-07-21T17:57:27-07:00", "image": {"id": 1641212903475, "created_at": "2026-07-05T15:28:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/pippy-s-peacock-wallpaper-silver-room-setting-pea-53619-bedroom_69511162-9bd3-4049-803d-90814ca539ea.jpg?v=1783290509", "alt": "Phillipe Romano European Prints"}, "products_count": 227}, {"id": 298470441011, "title": "Phillipe Romano Exclusive", "handle": "phillipe-romano-exclusive", "description": "<p>Phillipe Romano Exclusive presents a luxurious selection of flocked velvet damask wallcoverings, known for their rich texture and exceptional drape. This book showcases the mill's mastery of traditional techniques, offering a range of colorways on a durable, non-woven substrate suitable for Type II commercial applications. Consider the half-drop repeat for seamless installation and coordinate the bold palette to enhance ambient lighting schemes.</p>", "published_at": "2026-03-20T15:24:13-07:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1640677408819, "created_at": "2026-03-25T20:19:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104562_2_45bcb57a-262e-45e4-8642-782cb1b82993.jpg?v=1776627533", "alt": null}, "products_count": 1055}, {"id": 298470473779, "title": "Phillipe Romano Fabrics", "handle": "phillipe-romano-fabrics", "description": "<p>Phillipe Romano Fabrics presents a comprehensive compendium of their signature aged velvets, available in an extensive range of colorways and weights suitable for high-end residential and hospitality installations. These luxurious textiles offer exceptional drape and durability, ideal for creating bespoke upholstered wallcovering panels or coordinating soft furnishings. Contact your local showroom representative for information on custom color options and minimum yardage per bolt.</p>", "published_at": "2026-03-03T18:57:23-08:00", "updated_at": "2026-07-24T20:30:20-07:00", "image": {"id": 1640680226867, "created_at": "2026-03-25T20:26:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e4a2a1e502187ba4650e797610a9eab3_6e20047c-70f6-47c9-8a48-1215d0240a5c.jpg?v=1774495617", "alt": null}, "products_count": 169}, {"id": 79883272304, "title": "Phillipe Romano Faux Leathers Upholstery & More", "handle": "phillipe-romano-faux-leathers-upholstery-more", "description": "<p>\u00a0</p>\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iwxny-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iwxny-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-5\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"757adf8d-7216-4b09-a3cc-4c8069cd848c\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p><meta charset=\"utf-8\"></p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div id=\"bc-sf-filter-collection-description\" class=\"collection-description rte\">\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\"><span style=\"color: rgb(255, 42, 0);\"><em><b>** Please check with a member of our team if you are unsure if a product is intended for upholstery or wallcovering use</b></em> **</span></div>\n</form></div>\n</div>\n<div class=\"collection-filters\"><br></div>\n<p>\u00a0</p>", "published_at": "2018-09-29T12:05:56-07:00", "updated_at": "2026-07-21T17:45:09-07:00", "image": {"id": 49749786736, "created_at": "2018-09-29T12:05:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/f781f66f04620d7619aca4a3776c1524.jpg?v=1776627976", "alt": null}, "products_count": 1229}, {"id": 79913713776, "title": "Phillipe Romano Faux Metals Collection", "handle": "phillipe-romano-faux-metals-collection", "description": "<p>Phillipe Romano's Faux Metals Collection offers durable Type II commercial wallcoverings printed with realistic metallic textures. Known for their innovative embossed grounds, these wallcoverings provide the look of authentic metal leaf without the associated cost or installation challenges. Offered in a range of colorways, the collection's heavy weight and impressive hand ensure a luxurious feel for high-end interiors.</p>", "published_at": "2018-09-29T12:45:11-07:00", "updated_at": "2026-07-23T04:05:09-07:00", "image": {"id": 1641212936243, "created_at": "2026-07-05T15:28:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/red-circles-on-silver-mylar-myl-91011-bedroom.jpg?v=1783290511", "alt": "Phillipe Romano Faux Metals Collection"}, "products_count": 192}, {"id": 79864529008, "title": "Phillipe Romano Fine Textures", "handle": "phillipe-romano-fine-textures", "description": "<p>Phillipe Romano Fine Textures offers contract-grade, specification-grade wallcoverings known throughout the industry for their exceptional hand and enduring quality. This collection features 3037, a Type II vinyl on a non-woven ground, with a subtle half-drop repeat that can be railroaded for seamless installations. Available by the bolt, these mill-direct wallcoverings showcase the brand's heritage in sophisticated colorways and durable substrates, always printed selvage to selvage.</p>", "published_at": "2018-09-29T11:53:45-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641212969011, "created_at": "2026-07-05T15:28:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_a10deb54-9257-4a29-83bd-9a7e6613cc7a.jpg?v=1783290513", "alt": "Phillipe Romano Fine Textures"}, "products_count": 1287}, {"id": 298470539315, "title": "Phillipe Romano Flock", "handle": "phillipe-romano-flock", "description": null, "published_at": "2026-03-03T18:57:24-08:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1640671379507, "created_at": "2026-03-25T19:57:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-PRNC-26701-sample.jpg?v=1776627551", "alt": "Phillipe Romano Flock"}, "products_count": 26}, {"id": 285831168051, "title": "Phillipe Romano Flocked Velvet", "handle": "phillipe-romano-flocked-velvet-wallpaper", "description": "<p>Phillipe Romano Flocked Velvet Wallcovering showcases the mill's mastery of luxurious texture and sophisticated dimension. Known for their exquisite hand and meticulous attention to detail, each bolt features a plush velvet flock adhered to a durable, Type II commercial-grade substrate. Explore rich colorways and art deco-inspired patterns with a straight or half-drop repeat, ideal for high-end residential and hospitality projects.</p>", "published_at": "2024-12-16T21:54:11-08:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 1640626126899, "created_at": "2026-03-20T13:59:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fab574116079118731086944f96b387a_70376a38-7546-4786-aa9f-01d250f0de0c.jpg?v=1776627694", "alt": "Phillipe Romano Flocked Velvet Wallpaper"}, "products_count": 107}, {"id": 302737489971, "title": "Phillipe Romano Glam", "handle": "pr-style-glam", "description": null, "published_at": "2026-07-12T22:48:31-07:00", "updated_at": "2026-07-28T10:53:46-07:00", "image": null, "products_count": 0}, {"id": 79878291568, "title": "Phillipe Romano Grasscloth", "handle": "phillipe-romano-grasscloth", "description": "<p>Phillipe Romano Grasscloth offers a comprehensive range of natural fiber wallcoverings renowned for their exceptional texture and organic variation. Woven in their Italian mill, these grasscloths feature diverse weaves, weights, and colorways suitable for high-end residential and commercial projects. Specified for its Type II durability and ease of installation, each bolt provides a sophisticated and tactile solution.</p>", "published_at": "2018-09-29T12:03:03-07:00", "updated_at": "2026-07-21T17:45:08-07:00", "image": {"id": 1640674492467, "created_at": "2026-03-25T20:11:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/8e4ee00065405fb6f9ca6197a378dc6b.jpg?v=1774494711", "alt": null}, "products_count": 96}, {"id": 79878324336, "title": "Phillipe Romano Grasses Vol. 3", "handle": "phillipe-romano-grasses-vol-3", "description": "<p>Phillipe Romano Grasses Vol. 3 presents the latest globally sourced natural fiber wallcoverings renowned for their exquisite texture and refined colorways. These durable, wide-width offerings are ideal for high-traffic commercial interiors, boasting a Type II rating and straightforward installation. Explore the book for grasscloths, sisals, and unique weaves, all exhibiting Phillipe Romano's dedication to quality and timeless design.</p>", "published_at": "2018-09-29T12:03:04-07:00", "updated_at": "2026-07-07T09:36:35-07:00", "image": {"id": 1641213001779, "created_at": "2026-07-05T15:28:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/atlantic-raffia-prg-71017-bedroom_8630898d-d5e3-46ba-a52b-5f7dd08eaf05.jpg?v=1783290514", "alt": "Phillipe Romano Grasses Vol. 3"}, "products_count": 135}, {"id": 302737784883, "title": "Phillipe Romano Green", "handle": "pr-hue-green", "description": null, "published_at": "2026-07-12T22:48:40-07:00", "updated_at": "2026-07-12T22:48:40-07:00", "image": null, "products_count": 19}, {"id": 302737621043, "title": "Phillipe Romano Greige", "handle": "pr-hue-greige", "description": null, "published_at": "2026-07-12T22:48:35-07:00", "updated_at": "2026-07-12T22:48:36-07:00", "image": null, "products_count": 193}, {"id": 302736801843, "title": "Phillipe Romano Hemp", "handle": "pr-hemp", "description": null, "published_at": "2026-07-12T22:48:12-07:00", "updated_at": "2026-07-13T02:04:40-07:00", "image": null, "products_count": 52}, {"id": 302736834611, "title": "Phillipe Romano Jacquard", "handle": "pr-jacquard", "description": null, "published_at": "2026-07-12T22:48:13-07:00", "updated_at": "2026-07-13T02:04:41-07:00", "image": null, "products_count": 14}, {"id": 302736867379, "title": "Phillipe Romano Jute", "handle": "pr-jute", "description": null, "published_at": "2026-07-12T22:48:14-07:00", "updated_at": "2026-07-13T02:04:42-07:00", "image": null, "products_count": 10}, {"id": 302736900147, "title": "Phillipe Romano Linen", "handle": "pr-linen", "description": null, "published_at": "2026-07-12T22:48:15-07:00", "updated_at": "2026-07-28T01:57:09-07:00", "image": null, "products_count": 61}, {"id": 79878389872, "title": "Phillipe Romano Luxe Textures", "handle": "phillipe-romano-luxe-textures", "description": "<p>Phillipe Romano's Luxe Textures collection presents sophisticated wallcovering options renowned for exceptional hand and enduring quality, crafted in their Italian mill. These Type II commercial wallcoverings showcase intricate grasscloths and pleated designs, offering diverse textural interest. Specified by the bolt, patterns like La Halelua and Placido provide subtle dimension with seamless installation.</p>", "published_at": "2018-09-29T12:03:04-07:00", "updated_at": "2026-07-24T19:32:19-07:00", "image": {"id": 1641213034547, "created_at": "2026-07-05T15:28:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/placido-pleated-grasscloth-dwt-54008-bedroom_5ae4fd5d-6c0a-4b38-882c-b4ee18b1fd0d.jpg?v=1783290516", "alt": "Phillipe Romano Luxe Textures"}, "products_count": 66}, {"id": 302736932915, "title": "Phillipe Romano Metal Leaf", "handle": "pr-metal-leaf", "description": null, "published_at": "2026-07-12T22:48:16-07:00", "updated_at": "2026-07-13T02:04:44-07:00", "image": null, "products_count": 13}, {"id": 298470604851, "title": "Phillipe Romano Metals", "handle": "phillipe-romano-metals-1", "description": "<p>Phillipe Romano Metals presents luxurious commercial wallcoverings known for their exquisite metallic finishes and superior durability. The collection features a range of gold leaf and metal-infused designs on a robust Type II substrate, suitable for high-traffic areas. These wide-width, railroaded wallcoverings minimize seams and offer ease of installation, appealing to designers seeking sophisticated, high-performance solutions.</p>", "published_at": "2026-03-03T18:57:26-08:00", "updated_at": "2026-07-23T04:05:09-07:00", "image": {"id": 1641213067315, "created_at": "2026-07-05T15:28:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/red-circles-on-silver-mylar-myl-91011-bedroom_88687207-0f5f-452d-a9a3-e97b723d5b4d.jpg?v=1783290518", "alt": "Phillipe Romano Metals"}, "products_count": 167}, {"id": 302736965683, "title": "Phillipe Romano Mixed Media", "handle": "pr-mixed-media", "description": null, "published_at": "2026-07-12T22:48:17-07:00", "updated_at": "2026-07-13T02:04:45-07:00", "image": null, "products_count": 2}, {"id": 94165401665, "title": "Phillipe Romano Naturals", "handle": "phillipe-romano-naturals", "description": "<p>Phillipe Romano Naturals offers a comprehensive selection of organic wallcoverings known for their sustainable sourcing and refined texture. The collection features a diverse range of natural materials like cork and grasscloth applied to durable Type II substrates suitable for high-traffic areas. Specified by designers worldwide, these wallcoverings provide a sophisticated hand and exceptional mill quality.</p>", "published_at": "2019-01-06T23:11:44-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641213100083, "created_at": "2026-07-05T15:28:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_1ea7a5eb-d181-4000-ab83-12b8c8648cb5.jpg?v=1783290520", "alt": "Phillipe Romano Naturals"}, "products_count": 3127}, {"id": 302737752115, "title": "Phillipe Romano Orange", "handle": "pr-hue-orange", "description": null, "published_at": "2026-07-12T22:48:39-07:00", "updated_at": "2026-07-12T22:48:39-07:00", "image": null, "products_count": 272}, {"id": 302737522739, "title": "Phillipe Romano Organic Modern", "handle": "pr-style-organic-modern", "description": null, "published_at": "2026-07-12T22:48:32-07:00", "updated_at": "2026-07-28T10:53:04-07:00", "image": null, "products_count": 0}, {"id": 302736998451, "title": "Phillipe Romano Paper Weave", "handle": "pr-paper-weave", "description": null, "published_at": "2026-07-12T22:48:18-07:00", "updated_at": "2026-07-28T01:57:05-07:00", "image": null, "products_count": 101}, {"id": 298470735923, "title": "Phillipe Romano Prints", "handle": "phillipe-romano-prints-1", "description": "<p>Phillipe Romano Prints showcase the vendor's mastery of gravure printing on durable Type II grounds, ideal for high-traffic commercial interiors. This expansive collection features a range of contemporary patterns, from subtle textures to bold geometrics, with meticulous attention to color consistency across every bolt. Designers will appreciate the ease of installation and the precise pattern matches, ensuring seamless wallcovering applications.</p>", "published_at": "2026-03-03T18:57:29-08:00", "updated_at": "2026-07-27T11:45:14-07:00", "image": {"id": 1640680325171, "created_at": "2026-03-25T20:27:07-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/9e32503c0dc09f5cf4102ff910db4523_607ad4ff-e555-4ad4-a0d6-7b0742a22239.jpg?v=1774495628", "alt": null}, "products_count": 371}, {"id": 302737063987, "title": "Phillipe Romano Raffia", "handle": "pr-raffia", "description": null, "published_at": "2026-07-12T22:48:19-07:00", "updated_at": "2026-07-13T02:04:48-07:00", "image": null, "products_count": 4}, {"id": 302737817651, "title": "Phillipe Romano Red", "handle": "pr-hue-red", "description": null, "published_at": "2026-07-12T22:48:41-07:00", "updated_at": "2026-07-12T22:48:41-07:00", "image": null, "products_count": 40}, {"id": 285116039219, "title": "Phillipe Romano Screen Printed Fabric", "handle": "phillipe-romano-screen-printed-fabric", "description": "<p><meta charset=\"utf-8\"><span>Phillipe Romano specializes in globally inspired wallcoverings with cultural narratives. These unique wallcoverings are meticulously crafted, with most being hand-screen printed for durability and eco-friendliness, connecting homeowners to foreign cultures through artful designs.</span></p>", "published_at": "2026-03-20T15:25:35-07:00", "updated_at": "2026-07-07T13:30:44-07:00", "image": {"id": 1640630091827, "created_at": "2026-03-20T14:02:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/KA-07_80623b41-00b1-4b2f-a764-93d670717774.jpg?v=1774040522", "alt": "Phillipe Romano Screen Printed Fabric"}, "products_count": 73}, {"id": 285115351091, "title": "Phillipe Romano Screen Printed Wallcoverings", "handle": "phillipe-romano-screen-printed-wallpaper", "description": "<p><meta charset=\"utf-8\"><span>Phillipe Romano specializes in globally inspired wallcoverings with cultural narratives. These unique wallcoverings are meticulously crafted, with most being hand-screen printed for durability and eco-friendliness, connecting homeowners to foreign cultures through artful designs.</span></p>", "published_at": "2026-03-20T13:50:23-07:00", "updated_at": "2026-07-07T13:30:43-07:00", "image": {"id": 1640625799219, "created_at": "2026-03-20T13:58:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bahar-Sand-for-website_f68ab69e-ab2d-4072-b3bd-46e1cd5f881f.jpg?v=1774040339", "alt": "Phillipe Romano Screen Printed Fabrics"}, "products_count": 116}, {"id": 298470768691, "title": "Phillipe Romano Screen Prints", "handle": "phillipe-romano-screen-prints", "description": "<p>Phillipe Romano Screen Prints offers a range of handcrafted wallcoverings and coordinating fabrics printed in their Italian mill. Known for bold geometrics and intricate florals, Romano's designs utilize artisanal screen printing techniques on a variety of grounds. This collection features both Type II vinyl wallcovering and luxurious textiles, allowing for seamless integration of pattern and color across interior surfaces.</p>", "published_at": "2026-03-20T15:25:06-07:00", "updated_at": "2026-06-16T17:59:35-07:00", "image": {"id": 1640625864755, "created_at": "2026-03-20T13:59:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bahar-Sand-for-website_16329c19-c33f-408b-b80b-9b910acd9236.jpg?v=1774040341", "alt": "Phillipe Romano Screen Prints"}, "products_count": 116}, {"id": 302737162291, "title": "Phillipe Romano Signature", "handle": "pr-signature", "description": null, "published_at": "2026-07-12T22:48:22-07:00", "updated_at": "2026-07-17T04:04:50-07:00", "image": null, "products_count": 231}, {"id": 302737096755, "title": "Phillipe Romano Silk", "handle": "pr-silk", "description": null, "published_at": "2026-07-12T22:48:20-07:00", "updated_at": "2026-07-13T02:04:49-07:00", "image": null, "products_count": 89}, {"id": 302737129523, "title": "Phillipe Romano Sisal", "handle": "pr-sisal", "description": null, "published_at": "2026-07-12T22:48:21-07:00", "updated_at": "2026-07-13T02:04:50-07:00", "image": null, "products_count": 19}, {"id": 302737195059, "title": "Phillipe Romano Suede", "handle": "pr-suede", "description": null, "published_at": "2026-07-12T22:48:23-07:00", "updated_at": "2026-07-13T02:04:52-07:00", "image": null, "products_count": 59}, {"id": 302737948723, "title": "Phillipe Romano Teal", "handle": "pr-hue-teal", "description": null, "published_at": "2026-07-12T22:48:44-07:00", "updated_at": "2026-07-12T22:48:45-07:00", "image": null, "products_count": 26}, {"id": 79878422640, "title": "Phillipe Romano Textures", "handle": "phillipe-romano-textures", "description": "<p>Phillipe Romano Textures offers a range of sophisticated commercial wallcoverings with a focus on architectural applications. From natural gauzes to textured vinyls with a crocodile print, these Type II wallcoverings provide durable solutions. Each bolt is Class A fire-rated and available in a range of beige colorways, ensuring a refined aesthetic for contemporary interiors.</p>", "published_at": "2026-03-20T15:27:41-07:00", "updated_at": "2026-07-05T15:28:44-07:00", "image": {"id": 1641213165619, "created_at": "2026-07-05T15:28:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/la-arezzo-gauze-pleated-wallpaper-prt-47508-living_room_cd478abd-4300-4c77-a0d1-fbdff90e6e7b.jpg?v=1783290524", "alt": "Phillipe Romano Textures"}, "products_count": 64}, {"id": 79878455408, "title": "Phillipe Romano Textures Vol. 4", "handle": "phillipe-romano-textures-vol-4", "description": "<p>Phillipe Romano Textures Vol. 4 offers sophisticated wallcovering solutions renowned for their artisan millwork and enduring quality. This collection showcases a breadth of textural grounds, from refined silks to robust weaves, suitable for high-traffic commercial interiors. Each bolt provides Type II durability with careful consideration to pattern match and ease of installation.</p>", "published_at": "2026-03-20T15:24:50-07:00", "updated_at": "2026-07-07T09:45:45-07:00", "image": {"id": 1640680882227, "created_at": "2026-03-25T20:29:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/a6315a3b91580d7d48f21c7ce79e3afe.jpg?v=1774495787", "alt": null}, "products_count": 173}, {"id": 79878488176, "title": "Phillipe Romano Textures Vol. 5", "handle": "phillipe-romano-textures-vol-5", "description": "<p>Phillipe Romano Textures Vol. 5 offers a diverse range of high-end wallcoverings known for their innovative textural grounds and superior Type II durability. This collection features 192 products with unique substrates, sophisticated colorways, and varied weights suitable for demanding commercial and residential installations. Specified by designers worldwide, the Romano mill's dedication to quality ensures a refined hand and consistent pattern match across every bolt.</p>", "published_at": "2026-03-20T15:24:46-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1641213198387, "created_at": "2026-07-05T15:28:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Kharga_1_Roomshot_Web_LR-og_c02263b2-c098-4d4d-8720-f8f2f43b9f6e.jpg?v=1783290526", "alt": "Phillipe Romano Textures Vol. 5"}, "products_count": 192}, {"id": 302737555507, "title": "Phillipe Romano Traditional", "handle": "pr-style-traditional", "description": null, "published_at": "2026-07-12T22:48:33-07:00", "updated_at": "2026-07-28T10:04:10-07:00", "image": null, "products_count": 0}, {"id": 302737588275, "title": "Phillipe Romano Transitional", "handle": "pr-style-transitional", "description": null, "published_at": "2026-07-12T22:48:34-07:00", "updated_at": "2026-07-28T10:50:40-07:00", "image": null, "products_count": 0}, {"id": 298470834227, "title": "Phillipe Romano Type 2 Vinyls", "handle": "phillipe-romano-type-2-vinyls", "description": "<p>Phillipe Romano Type II Vinyls provide a durable and cleanable wallcovering solution for high-traffic commercial interiors. Known for their robust construction and consistent quality, these vinyls offer ease of installation and long-term performance. Explore the extensive range of textures and colorways available within this vendor's comprehensive book.</p>", "published_at": "2026-03-03T18:57:31-08:00", "updated_at": "2026-07-28T08:04:00-07:00", "image": {"id": 1640680357939, "created_at": "2026-03-25T20:27:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Phillipe_Romano_Wallcovering_PRW_920340_2536aa47-0532-4fdc-9355-7cf1cca0d74e.jpg?v=1776627607", "alt": null}, "products_count": 928}, {"id": 262197903411, "title": "Phillipe Romano Ultimo", "handle": "phillipe-romano-ultimo", "description": "<iframe title=\"YouTube video player\" src=\"https://www.youtube.com/embed/ouKOtj_Jhoc\" height=\"315\" width=\"560\" allowfullscreen=\"\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" frameborder=\"0\"></iframe>", "published_at": "2026-03-20T15:29:28-07:00", "updated_at": "2026-07-22T04:04:33-07:00", "image": {"id": 1640656797747, "created_at": "2026-03-22T11:01:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/w7615-01_dagpikpxt7lujlu0.jpg?v=1776627467", "alt": null}, "products_count": 20}, {"id": 298470506547, "title": "Phillipe Romano Vegan Leather", "handle": "phillipe-romano-vegan-leather", "description": "<p>Phillipe Romano Vegan Leather offers a durable, high-performance alternative to traditional hides, ideal for demanding commercial and residential interiors. This collection features embossed textures and authentic-looking grains on a sturdy woven substrate, providing exceptional abrasion resistance and ease of installation. Available in a wide range of colorways, these Type II wallcoverings are railroaded for seamless application and superior design flexibility.</p>", "published_at": "2026-03-03T18:57:24-08:00", "updated_at": "2026-07-21T17:45:24-07:00", "image": {"id": 1641213231155, "created_at": "2026-07-05T15:28:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ee691103b0de680cc78fe68853e2fbd6_5b59bb87-f2f8-40b4-a008-e9987a7200ff.png?v=1783290527", "alt": "Phillipe Romano Vegan Leather"}, "products_count": 969}, {"id": 302737227827, "title": "Phillipe Romano Velvet", "handle": "pr-velvet", "description": null, "published_at": "2026-07-12T22:48:24-07:00", "updated_at": "2026-07-13T02:04:53-07:00", "image": null, "products_count": 24}, {"id": 298470932531, "title": "Phillipe Romano Velvet Walls", "handle": "phillipe-romano-velvet-walls", "description": "<p>Phillipe Romano Velvet Walls offers a range of flocked velvet wallcoverings suitable for high-end commercial and architectural applications. The collection features intricate damask patterns and solid velvet textures in a variety of rich colorways on a non-woven substrate with a Class A fire rating. Specify these Type II wallcoverings to add a luxurious hand and sophisticated depth to interior spaces.</p>", "published_at": "2026-03-03T18:57:34-08:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1641213263923, "created_at": "2026-07-05T15:28:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/104563_2_1d93aca8-66fc-4b9d-95eb-cbd588430dad.jpg?v=1783290529", "alt": "Phillipe Romano Velvet Walls"}, "products_count": 33}, {"id": 298470866995, "title": "Phillipe Romano Vinyls", "handle": "phillipe-romano-vinyls-1", "description": "<p>Phillipe Romano Vinyls offer a robust selection of Type II wallcoverings known for exceptional durability and ease of installation. This comprehensive book showcases a range of textures, from subtle grounds to intricate patterns with varying repeats. Ideal for high-traffic commercial interiors, these vinyls provide lasting performance and design flexibility.</p>", "published_at": "2026-03-03T18:57:32-08:00", "updated_at": "2026-07-28T11:25:09-07:00", "image": {"id": 1640677638195, "created_at": "2026-03-25T20:20:08-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/16a255c65a92fc906a8d462233b16bb7.jpg?v=1774495209", "alt": null}, "products_count": 1390}, {"id": 79878553712, "title": "Phillipe Romano Vol. 4", "handle": "phillipe-romano-vol-4", "description": "<p>Phillipe Romano Vol. 4 presents 75 new wallcovering designs from the celebrated Italian mill, known for its innovative use of natural materials. This collection showcases Romano's signature textural depth, utilizing mica, wood, and cork grounds with metallic inks for sophisticated dimension. Specified for high-end residential and hospitality projects, these Type II wallcoverings offer a refined hand and exceptional durability.</p>", "published_at": "2026-03-20T15:25:32-07:00", "updated_at": "2026-07-28T04:06:11-07:00", "image": {"id": 1641213296691, "created_at": "2026-07-05T15:28:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bella-calabria-mica-chevron-herringbone-prn-62342-bedroom_38d2a613-94a4-4fd5-b336-05bc2cf14c51.jpg?v=1783290531", "alt": "Phillipe Romano Vol. 4"}, "products_count": 131}, {"id": 94148427841, "title": "Phillipe Romano Wallcoverings", "handle": "phillipe-romano", "description": "<p>Phillipe Romano - Manufacturer of fine luxury wallcoverings</p>\n<p>Made exclusively by Designer Wallcoverings</p>", "published_at": "2019-01-04T22:41:51-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1641212772403, "created_at": "2026-07-05T15:28:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ala-marsala-faux-cork-vinyl-cork-830-bedroom_6766d246-8e6a-4f41-9f8b-0d2618cbad7e.jpg?v=1783290502", "alt": "Phillipe Romano Wallcoverings"}, "products_count": 25663}, {"id": 302737260595, "title": "Phillipe Romano Water Hyacinth", "handle": "pr-water-hyacinth", "description": null, "published_at": "2026-07-12T22:48:25-07:00", "updated_at": "2026-07-13T02:04:54-07:00", "image": null, "products_count": 4}, {"id": 302737915955, "title": "Phillipe Romano White", "handle": "pr-hue-white", "description": null, "published_at": "2026-07-12T22:48:43-07:00", "updated_at": "2026-07-12T22:48:44-07:00", "image": null, "products_count": 34}, {"id": 298470899763, "title": "Phillipe Romano Wide Textures", "handle": "phillipe-romano-wide-textures", "description": "<p>Phillipe Romano's \"Wide Textures\" collection showcases their mastery of durable vinyl wallcovering, ideal for high-traffic commercial interiors. These Type II wallcoverings offer a diverse range of tactile grounds, from grasscloth effects to bold chevrons, all available in extra-wide, railroaded bolts for efficient installation. Designers will appreciate the robust construction and sophisticated colorways, suitable for demanding applications requiring both style and longevity.</p>", "published_at": "2026-03-03T18:57:33-08:00", "updated_at": "2026-07-21T17:57:58-07:00", "image": {"id": 1640617279539, "created_at": "2026-03-20T13:49:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/CM101-2132.jpg?v=1774039772", "alt": "Phillipe Romano Wide Textures"}, "products_count": 1591}, {"id": 302737293363, "title": "Phillipe Romano Wood Veneer", "handle": "pr-wood-veneer", "description": null, "published_at": "2026-07-12T22:48:26-07:00", "updated_at": "2026-07-28T18:54:27-07:00", "image": null, "products_count": 126}, {"id": 302737326131, "title": "Phillipe Romano Wool", "handle": "pr-wool", "description": null, "published_at": "2026-07-12T22:48:27-07:00", "updated_at": "2026-07-13T02:04:56-07:00", "image": null, "products_count": 3}, {"id": 302737031219, "title": "Phillipe Romano Woven", "handle": "pr-woven", "description": null, "published_at": "2026-07-12T22:48:18-07:00", "updated_at": "2026-07-13T02:04:47-07:00", "image": null, "products_count": 43}, {"id": 302737850419, "title": "Phillipe Romano Yellow", "handle": "pr-hue-yellow", "description": null, "published_at": "2026-07-12T22:48:42-07:00", "updated_at": "2026-07-17T04:04:50-07:00", "image": null, "products_count": 135}, {"id": 298928898099, "title": "Phyllis Morris Classic Wallcovering", "handle": "phyllis-morris-classic-wallcovering", "description": null, "published_at": "2026-03-22T17:47:57-07:00", "updated_at": "2026-07-07T09:32:36-07:00", "image": {"id": 1641213362227, "created_at": "2026-07-05T15:28:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot_2019-12-09_10.52.39_aa79c128-0410-43f7-a381-3c74377eeab8.png?v=1783290535", "alt": "Phyllis Morris Classic Wallcovering"}, "products_count": 28}, {"id": 298971562035, "title": "Pierre Frey Wallcoverings", "handle": "pierre-frey-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:14-07:00", "updated_at": "2026-07-30T08:38:00-07:00", "image": {"id": 1640673804339, "created_at": "2026-03-25T20:10:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/les-feuillages-2.webp?v=1776627742", "alt": null}, "products_count": 6477}, {"id": 262233620531, "title": "Pillows", "handle": "finished-pillows", "description": "<p>The Pillows collection offers diverse textures and subtle colorways ideal for creating layered, inviting interiors. These textile-inspired wallcoverings feature varying weights and installation methods, suitable for both residential and commercial applications. Explore the book for unique patterns and solid grounds that provide depth and visual interest.</p>", "published_at": "2025-02-11T09:27:54-08:00", "updated_at": "2026-07-26T10:57:45-07:00", "image": {"id": 1640656830515, "created_at": "2026-03-22T11:01:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20182854_214975df-a4a5-4b71-a949-2d35a3b08f3c.jpg?v=1776627705", "alt": null}, "products_count": 1613}, {"id": 263221477427, "title": "Pillows at DW", "handle": "exclusive-pillows-at-dw", "description": "<p>Pillows at DW presents a comprehensive selection of decorative pillows from leading textile houses, suitable for adding depth and texture to interior schemes. These versatile accents offer a range of scales and patterns to complement diverse wallcovering installations. Available to the trade in various fills and constructions, these pillows provide essential finishing touches.</p>", "published_at": "2025-02-13T13:51:45-08:00", "updated_at": "2026-07-16T09:12:38-07:00", "image": {"id": 1641210773555, "created_at": "2026-07-05T15:26:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-af23116_7e026697-37af-4120-9594-f36475722101.jpg?v=1783290382", "alt": "Pillows at DW"}, "products_count": 1595}, {"id": 299059281971, "title": "Pink Collection", "handle": "pink-wallcovering-collection", "description": null, "published_at": "2026-03-25T13:03:54-07:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1641213394995, "created_at": "2026-07-05T15:28:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_7236268e-f634-4099-b73b-baf5c45a4285.jpg?v=1783290537", "alt": "Pink Wallcovering Collection"}, "products_count": 6548}, {"id": 165452611635, "title": "Pink Wallcovering Collection", "handle": "pink-wallcovering-2", "description": "<p>Add charm and elegance to your interiors with the <em>Pink Wallcovering Collection</em>. Featuring delicate blush tones, vibrant rosy hues, and sophisticated patterns, these wallcoverings bring a sense of warmth, comfort, and timeless style to any room. From romantic florals to modern geometrics, pink proves to be endlessly versatile.</p>\n<p>Perfect for creating serene bedrooms, stylish living spaces, or playful accents, this collection ensures your walls are as chic as they are inviting. Let your d\u00e9cor blush with beauty!</p>", "published_at": "2020-08-05T14:36:05-07:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1640676032563, "created_at": "2026-03-25T20:15:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/114324_ROOMSET_01__39015.1769761143.jpg?v=1776628520", "alt": null}, "products_count": 7349}, {"id": 299574165555, "title": "Pink Wallcoverings", "handle": "pink-wallcoverings", "description": "<p>Pink wallcoverings \u2014 from soft blush to vivid fuchsia. Designer Wallcoverings curates pink wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of pink. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:23-07:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1641213427763, "created_at": "2026-07-05T15:28:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_5636323e-148c-442c-bab4-cfd4362092f0.jpg?v=1783290538", "alt": "Pink Wallcoverings"}, "products_count": 6318}, {"id": 161286946867, "title": "Plaid", "handle": "plaid-fabric", "description": "<p>Plaid Fabric wallcoverings offer a classic textile ground with inherently durable performance. These woven constructions provide substantial weight and tactile interest for traditional and contemporary interiors alike. Specified for high-traffic areas, this collection presents diverse colorways with varying repeats and installation methods.</p>", "published_at": "2026-03-20T13:15:25-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640626847795, "created_at": "2026-03-20T13:59:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-02at11.57.50AM.png?v=1774040381", "alt": "Plaid Fabric"}, "products_count": 103}, {"id": 299576131635, "title": "Plaid Wallcoverings", "handle": "plaid", "description": null, "published_at": "2026-04-09T21:34:37-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640813789235, "created_at": "2026-04-17T06:50:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM.png?v=1776433848", "alt": null}, "products_count": 500}, {"id": 298885972019, "title": "Plum & Aubergine", "handle": "plum-aubergine-1", "description": "<p>Deep purples and wine-adjacent tones that function as the richest alternative to black in dark palette schemes. This family ranges from cool blue-purples through warm red-purples, offering depth and sophistication that grays cannot match. Reserved for spaces designed to make an impression -- dining rooms, bars, intimate seating areas.</p>", "published_at": "2026-03-20T13:10:24-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640616034355, "created_at": "2026-03-20T13:46:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Bandeaux_RM_Nature_precieuse10.jpg?v=1776628514", "alt": "Plum & Aubergine"}, "products_count": 4367}, {"id": 298886135859, "title": "Powder Room Statements", "handle": "powder-room-statements-1", "description": "<p>High-impact wallcoverings selected specifically for small, enclosed spaces where bold pattern and saturated color can be experienced at close range. The powder room remains the single best opportunity in residential design to take a risk with pattern scale and color intensity. This collection pulls from maximalist prints, jewel tones, and large-scale repeats that thrive in compact formats.</p>", "published_at": "2026-03-20T13:10:41-07:00", "updated_at": "2026-07-30T08:11:09-07:00", "image": {"id": 1640617181235, "created_at": "2026-03-20T13:49:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/cropped-1773881417622.jpg?v=1776628284", "alt": "Powder Room Statements"}, "products_count": 4315}, {"id": 298886168627, "title": "Primary Suite", "handle": "primary-suite-1", "description": "<p>Wallcoverings calibrated for the bedroom environment -- soft textures, muted tones, and patterns with low visual energy that support rest and quiet. The primary suite demands restraint: materials should feel luxurious to the touch (silk, linen, grasscloth) while keeping pattern activity at a murmur. This collection prioritizes sensory comfort over visual statement.</p>", "published_at": "2026-03-20T13:10:45-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1640615837747, "created_at": "2026-03-20T13:45:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2_fe794aeb-369f-4c5c-b759-0472adcb21b6.jpg?v=1776628618", "alt": "Primary Suite"}, "products_count": 40870}, {"id": 79878684784, "title": "Primo European Leathers", "handle": "primo-european-leathers", "description": "<p>Primo European Leathers offers 136 wallcovering products renowned for supple hand and exceptional durability suitable for high-traffic interiors. These full-grain hides are meticulously tanned in Italy and arrive on a non-woven substrate, ready for traditional paste-the-wall installation. The collection presents a range of natural colorways with inherent variations, providing a luxurious tactile experience.</p>", "published_at": "2026-03-20T13:15:26-07:00", "updated_at": "2026-07-21T17:45:09-07:00", "image": {"id": 1640624226355, "created_at": "2026-03-20T13:57:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7974be08757c6239ecc318e20a1db15a_396fd84d-137d-42aa-90df-c4b705c70431.jpg?v=1774040274", "alt": "Primo European Leathers"}, "products_count": 135}, {"id": 298506682419, "title": "Primo Leathers", "handle": "primo-leathers", "description": "<p>Primo Leathers wallcoverings offer unparalleled tactile richness and enduring performance for high-end interiors. These full-grain hides are meticulously tanned and finished, then adhered to a robust substrate for ease of installation. Specify these leathers for a luxurious, sound-dampening wall finish with inherent variation and timeless appeal.</p>", "published_at": "2026-03-04T19:13:57-08:00", "updated_at": "2026-07-21T17:45:27-07:00", "image": {"id": 1640624291891, "created_at": "2026-03-20T13:57:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7974be08757c6239ecc318e20a1db15a_ab0e1655-fcf3-4216-b954-675a41a2a462.jpg?v=1774040276", "alt": "Primo Leathers"}, "products_count": 135}, {"id": 299059314739, "title": "Purple Collection", "handle": "purple-wallcovering-collection", "description": null, "published_at": "2026-03-25T13:03:55-07:00", "updated_at": "2026-07-30T05:36:06-07:00", "image": {"id": 1640670756915, "created_at": "2026-03-25T19:54:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/99820eee2405de6cb535e9fe98a51554_d74181a9-6d8a-4b65-a5f7-e996d0a24614.jpg?v=1776628366", "alt": "Purple Wallcovering Collection"}, "products_count": 2100}, {"id": 283307573299, "title": "Purple Patterns", "handle": "purple", "description": "<p>Purple wallcoverings \u2014 regal, moody, and modern. Designer Wallcoverings curates purple wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of purple. Order memo samples online; available to the trade and retail.</p>", "published_at": "2024-09-17T10:52:43-07:00", "updated_at": "2026-07-30T08:09:58-07:00", "image": {"id": 1641213460531, "created_at": "2026-07-05T15:29:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior2_cd5f1a0e-8230-40ea-b05e-111ba1d88745.jpg?v=1783290540", "alt": "Purple Wallcovering and Fabric Patterns"}, "products_count": 2629}, {"id": 299574427699, "title": "Purple Wallcoverings", "handle": "purple-wallcoverings", "description": null, "published_at": "2026-04-09T21:02:31-07:00", "updated_at": "2026-07-30T05:36:06-07:00", "image": {"id": 1641213493299, "created_at": "2026-07-05T15:29:01-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17163_interior1_e0afda1d-a8c8-49e8-a958-29a239bea642.jpg?v=1783290542", "alt": "Purple Wallcoverings"}, "products_count": 2004}, {"id": 301717520435, "title": "Quadrille Wallcoverings", "handle": "quadrille-wallcoverings", "description": "<p>Quadrille \u2014 the celebrated American house of hand-screened wallcoverings and fabrics, home to the China Seas and Alan Campbell archives. Bold, painterly patterns and timeless colorways for refined interiors.</p>", "published_at": "2026-06-23T17:48:36-07:00", "updated_at": "2026-07-23T04:05:11-07:00", "image": {"id": 1641148317747, "created_at": "2026-06-26T10:25:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lilac-on-light-tint-1947_1_150857.jpg?v=1782494741", "alt": null}, "products_count": 473}, {"id": 298513072179, "title": "Quatrefoil", "handle": "quatrefoil-wallpaper", "description": "<p>Quatrefoil Wallcovering offers a robust selection of traditional and modern interpretations of this classic motif across various substrates. The collection includes both standard and half-drop repeats, suitable for diverse architectural applications, with options ranging from delicate paper weaves to durable Type II vinyl. Designers will find a broad spectrum of colorways and textures to complement any project.</p>", "published_at": "2026-03-04T23:53:04-08:00", "updated_at": "2026-07-27T11:43:39-07:00", "image": {"id": 1640623177779, "created_at": "2026-03-20T13:57:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-office-Flock-7005-sample.jpg?v=1776627751", "alt": "Quatrefoil Wallpaper"}, "products_count": 247}, {"id": 298505732147, "title": "Ralph Lauren", "handle": "ralph-lauren", "description": "<p>Ralph Lauren wallcoverings offer timeless American style, known for classic patterns and sophisticated color palettes. These designs feature exceptional printing on high-quality grounds, suitable for residential and hospitality projects. Explore a range of textures, from subtle weaves to luxurious embossed effects, providing enduring elegance for discerning clients.</p>", "published_at": "2026-03-04T19:13:33-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640619016243, "created_at": "2026-03-20T13:53:42-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_b852efed-d253-4d58-b6e2-2de501ee880a.png?v=1776627800", "alt": "Ralph Lauren"}, "products_count": 496}, {"id": 79890645104, "title": "Ralph Lauren Fabric", "handle": "champs-elysees-chenille", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"h-full\">\n<div class=\"react-scroll-to-bottom--css-xkkpb-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-xkkpb-1n7m0yu\">\n<div class=\"flex flex-col text-sm\">\n<div class=\"w-full text-token-text-primary\" dir=\"auto\" data-testid=\"conversation-turn-21\" data-scroll-anchor=\"true\">\n<div class=\"py-2 juice:py-[18px] px-3 text-base md:px-4 m-auto md:px-5 lg:px-1 xl:px-5\">\n<div class=\"mx-auto flex flex-1 gap-3 text-base juice:gap-4 juice:md:gap-5 juice:lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\">\n<div class=\"group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div data-message-author-role=\"assistant\" data-message-id=\"0ff0cce5-91b3-4d8e-bc2f-59425b9278cd\" dir=\"auto\" class=\"min-h-[20px] text-message flex flex-col items-start whitespace-pre-wrap break-words [.text-message+&]:mt-5 juice:w-full juice:items-end overflow-x-auto gap-2\">\n<div class=\"flex w-full flex-col gap-1 juice:empty:hidden juice:first:pt-[3px]\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>The Ralph Lauren fabric collection embodies timeless elegance and classic American style, offering a diverse range of textiles that suit various interior design themes. Each fabric is meticulously crafted, showcasing an array of patterns from iconic plaids and stripes to sophisticated florals and paisleys. Renowned for their exceptional quality, Ralph Lauren fabrics boast luxurious textures and rich color palettes, ensuring both durability and visual appeal. These textiles are versatile, perfect for use in upholstery, drapery, and decorative accents, bringing a touch of refinement to any space. With a legacy of unparalleled craftsmanship and a distinct design philosophy, Ralph Lauren fabrics continue to set the standard for high-end home d\u00e9cor.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2025-02-13T14:18:50-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 49754079344, "created_at": "2018-09-29T12:13:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-02at11.57.50AM_3d248ddd-585b-450d-a7d3-21bb8a422dea.png?v=1776627725", "alt": null}, "products_count": 121}, {"id": 95008882753, "title": "Ralph Lauren Home", "handle": "ralph-lauren-home", "description": "<meta charset=\"utf-8\"><span data-sanitized-data-mce-fragment=\"1\">As the first fashion designer to present an all-encompassing collection for the home, Ralph Lauren introduced a distinctive vision and unwavering commitment to craftsmanship that has enriched the places we call home. Ralph Lauren fabrics are woven by skilled artisans around the world, and with thousands of fabrics in the collection, including everything from Italian jacquard to Scottish wool tartan and Belgian linen, the line offers a wealth of possibilities. Similarly, Ralph Lauren wallcoverings are rich in detail and printed in the finest mills, capturing the luxurious, classic lifestyles of the world of Ralph Lauren.</span>", "published_at": "2025-02-11T09:48:52-08:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 63236964417, "created_at": "2019-07-26T14:28:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_3d9a94ca-34ad-466b-9a47-b08d292e3f38.png?v=1776627796", "alt": null}, "products_count": 496}, {"id": 299575607347, "title": "Ralph Lauren Wallcovering", "handle": "ralph-lauren-wallpaper", "description": null, "published_at": "2026-04-09T21:34:20-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640813822003, "created_at": "2026-04-17T06:50:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ScreenShot2022-11-04at12.28.20PM_535c812f-0ec2-44bb-ab2c-4142b08c621a.png?v=1776433851", "alt": null}, "products_count": 277}, {"id": 79888777328, "title": "Real Scala Silk", "handle": "real-scala-silk", "description": "<p>Real Scala Silk presents authentic silk wallcovering of exceptional quality and drape, ideal for high-end residential and hospitality interiors. Woven on a non-woven backing, these luxurious wallcoverings offer superior dimensional stability and ease of installation. Available in a range of weights and subtle textures, the collection provides a sophisticated tactile experience.</p>", "published_at": "2018-09-29T12:11:15-07:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640674787379, "created_at": "2026-03-25T20:12:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_2487_68dcd122-23fa-4454-984f-0290a38a5256.jpg?v=1776628131", "alt": null}, "products_count": 2105}, {"id": 298505764915, "title": "Rebel Walls", "handle": "rebel-walls", "description": "<p>Rebel Walls provides non-woven wallcoverings known for bold, large-scale murals and photorealistic imagery, printed to order in Sweden. Their innovative digital printing allows for custom colorways and seamless paneling, accommodating unique project specifications with ease. Specifiers appreciate the brand's commitment to quality and striking visual impact, suitable for high-end residential and commercial interiors.</p>", "published_at": "2026-03-04T19:13:34-08:00", "updated_at": "2026-07-30T06:26:49-07:00", "image": {"id": 1640616820787, "created_at": "2026-03-20T13:48:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17421_image1.jpg?v=1776627827", "alt": "Rebel Walls"}, "products_count": 3901}, {"id": 284788981811, "title": "Rebel Walls Wallcovering & Murals", "handle": "rebel-walls-murals", "description": "<p><meta charset=\"utf-8\">The <strong>Rebel Walls Wallcovering Collection</strong> by Designer Wallcoverings offers a bold and expressive range of designs that challenge traditional d\u00e9cor norms. With stunning murals, artistic patterns, and immersive visuals, this collection empowers you to create unique and inspiring spaces. Whether you're looking for edgy urban aesthetics, nature-inspired landscapes, or abstract artistry, Rebel Walls delivers high-quality, customizable options that make a statement. Perfect for those who dare to stand out, this collection transforms any room into a personalized masterpiece.</p>", "published_at": "2025-02-13T14:17:45-08:00", "updated_at": "2026-07-30T06:26:49-07:00", "image": {"id": 1641213558835, "created_at": "2026-07-05T15:29:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1.webp?v=1783290546", "alt": "Rebel Walls Wallcovering & Murals"}, "products_count": 3870}, {"id": 95277940801, "title": "Red Collection", "handle": "red-wallpaper-collection", "description": "<p><meta charset=\"utf-8\"><meta charset=\"utf-8\">Turn up the drama with our <em>Red Wallcovering and Fabrics Collection</em>\u2014where passion meets design. From deep crimson hues to vibrant scarlet tones, this collection delivers an undeniable wow factor. Perfect for making a statement, red adds warmth, energy, and personality to any room. Whether you\u2019re seeking elegant damask patterns, modern geometrics, or sumptuous red fabrics to complete your d\u00e9cor, this collection is your key to creating spaces full of confidence and charm. Dare to be bold\u2014let red ignite your interiors!<br></p>", "published_at": "2019-03-12T18:45:15-07:00", "updated_at": "2026-07-30T08:30:59-07:00", "image": {"id": 1641213657139, "created_at": "2026-07-05T15:29:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_6dbc1cf6-3b2c-4497-8344-4ad5241c4008.jpg?v=1783290552", "alt": "Red Wallcovering Collection"}, "products_count": 7346}, {"id": 299574198323, "title": "Red Wallcoverings", "handle": "red-wallcoverings", "description": "<p>Red wallcoverings \u2014 bold, warm, and unmistakably luxe. Designer Wallcoverings curates red wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of red. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:24-07:00", "updated_at": "2026-07-30T08:30:59-07:00", "image": {"id": 1641213624371, "created_at": "2026-07-05T15:29:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21509_interior1_152dbbdc-216d-4c94-a0da-0bd29193f97c.webp?v=1783290550", "alt": "Red Wallcoverings"}, "products_count": 6238}, {"id": 94652268609, "title": "Reflective", "handle": "reflective", "description": "<p>Add a touch of brilliance to your interiors with the <em>Reflective Wallcovering Collection</em>. Featuring shimmering surfaces, metallic finishes, and luminous designs, this collection captures and reflects light beautifully, elevating your space with glamour and sophistication. From subtle sheens to bold mirror-like effects, these wallcoverings create depth and drama perfect for modern or luxurious settings.</p>\n<p>Transform your walls into statement pieces that sparkle by day and glow by night. Because every room deserves to shine! \u2728</p>", "published_at": "2025-02-13T13:51:44-08:00", "updated_at": "2026-07-29T18:35:18-07:00", "image": {"id": 1640653389875, "created_at": "2026-03-21T23:01:48-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7a92cc1b3a4206f2236b2c4f864d5105.png?v=1776628045", "alt": null}, "products_count": 1918}, {"id": 79908995184, "title": "Regal Trellis and Lattice", "handle": "regal-trellis-and-lattice", "description": "A Sophisticated Collection of Lattice and Screen Printed Wallcoverings.", "published_at": "2026-03-20T13:15:29-07:00", "updated_at": "2026-07-30T09:05:56-07:00", "image": {"id": 1641213689907, "created_at": "2026-07-05T15:29:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ribbon_room_setting_7db4571d-931e-402d-b967-7a6dc42c46ad.jpg?v=1783290553", "alt": "Regal Trellis and Lattice"}, "products_count": 433}, {"id": 298513039411, "title": "Renaissance", "handle": "renaissance-wallpaper", "description": "<p>Renaissance wallcovering offers a luxurious selection suited to traditional architecture and discerning clientele. This collection features opulent wallcoverings with intricate patterns, rich colorways, and durable Type II grounds. Explore period-inspired designs with varied repeats and easy installation for high-end residential or hospitality projects.</p>", "published_at": "2026-03-04T23:53:03-08:00", "updated_at": "2026-07-28T13:01:32-07:00", "image": {"id": 1641213755443, "created_at": "2026-07-05T15:29:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/M2601-1_interior1_cd01e312-197c-4859-ac24-fd6577822bc3.jpg?v=1783290557", "alt": "Renaissance"}, "products_count": 274}, {"id": 298857594931, "title": "Renaissance Metal Leaf", "handle": "renaissance-metal-leaf", "description": "<p>Renaissance Metal Leaf presents opulent wallcoverings ideal for discerning clients seeking classic grandeur in high-end residential and hospitality settings. This collection features a range of metallic foils laminated to durable Type II grounds, offering timeless texture and subtle reflectivity. Specify these wallcoverings to evoke old-world glamour with modern durability and ease of installation.</p>", "published_at": "2026-03-19T05:36:32-07:00", "updated_at": "2026-07-28T10:28:16-07:00", "image": {"id": 1641213722675, "created_at": "2026-07-05T15:29:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TAKUMI-ROOMSET_TAK-CA05-02__CORK_8c0faa8c-30ea-4803-8cc6-d33bcedb00b4.jpg?v=1783290555", "alt": "Renaissance Metal Leaf"}, "products_count": 540}, {"id": 79913746544, "title": "Renaissance Metal Leaf by Phillipe Romano", "handle": "phillipe-romano-renaissance-metal-leaf-collection", "description": "<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iqxrc-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-17\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"4c248dd1-e756-4e95-967d-ae584c9e1017\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Gold leaf wallcoverings exude warmth and sophistication, while silver leaf wallcoverings lend a cool and contemporary elegance. Both varieties bring an element of glamour to any room, making them a popular choice for creating luxurious and visually striking interiors.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>", "published_at": "2018-09-29T12:45:11-07:00", "updated_at": "2026-07-07T09:39:59-07:00", "image": {"id": 1641213132851, "created_at": "2026-07-05T15:28:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Antigua_Tropicali_33000_Roomshot_Web_LR-og_68fcc2bf-0d20-4e26-ba99-b4fc5a82c4da.jpg?v=1783290522", "alt": "Renaissance Metal Leaf by Phillipe Romano"}, "products_count": 176}, {"id": 298894590003, "title": "Residential", "handle": "residential", "description": "<p>Curated wallcoverings for private residences, from entry foyers to primary bedrooms. This collection spans untreated papers, non-woven substrates, and paste-the-wall options suited to standard residential conditions. Available in single and double roll formats with coordinating trims and borders.</p>", "published_at": "2026-03-20T23:07:32-07:00", "updated_at": "2026-07-30T08:30:38-07:00", "image": {"id": 1641213788211, "created_at": "2026-07-05T15:29:18-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LW50001-A_36b9bc4c-7923-4500-bb3e-1a943c12413a.jpg?v=1783290558", "alt": "Residential"}, "products_count": 3330}, {"id": 264351580211, "title": "Restoration", "handle": "restoration-wallpaper", "description": "<p>Restoration Wallcovering offers a comprehensive range of historically-inspired designs suitable for heritage projects and discerning clientele. This book includes both traditional paper substrates and durable Type II vinyls, accommodating various installation methods and performance requirements. Coordinate patterns and colorways ensure cohesive design schemes with consideration for repeat and half-drop matching.</p>", "published_at": "2022-01-28T09:04:07-08:00", "updated_at": "2026-07-30T00:37:36-07:00", "image": {"id": 1641213820979, "created_at": "2026-07-05T15:29:19-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R13821_interior1_3e800905-3872-46a5-bac4-04aa9ba3bfd4.jpg?v=1783290560", "alt": "Restoration"}, "products_count": 785}, {"id": 298505895987, "title": "Retro Walls", "handle": "retro-walls-1", "description": "<p>Retro Walls offers a diverse range of wallcoverings, drawing from iconic designs of the 20th century to suit hospitality and residential projects. From bold geometric patterns with large repeats to delicate chinoiserie murals, these selections provide a variety of scales and colorways. Specified on durable Type II grounds, these wallcoverings promise straightforward installation and lasting visual impact.</p>", "published_at": "2026-03-04T19:13:37-08:00", "updated_at": "2026-07-23T04:05:09-07:00", "image": {"id": 1641213886515, "created_at": "2026-07-05T15:29:24-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-boudoir-ladies-antique-24-x-22-repeat-mar-500_1e631c37-f126-487b-8a4a-492b147c8076.jpg?v=1783290564", "alt": "Retro Walls"}, "products_count": 1177}, {"id": 79879110768, "title": "Retrowalls", "handle": "retro-walls", "description": "<p>This collection of wallcovering patterns brings a nostalgic flair to contemporary interiors, inspired by the vibrant designs of the past. Featuring bold geometric shapes, playful florals, and striking color palettes, each pattern evokes the essence of mid-century and vintage aesthetics. Perfect for creating a statement wall or infusing an entire room with retro charm, this collection offers a dynamic range of styles that pay homage to bygone eras. Crafted with modern materials, these wallcoverings ensure durability and ease of application while retaining their classic appeal. \"Retro Walls\" seamlessly blends the old with the new, making it an ideal choice for those looking to add a touch of retro chic to their homes.</p>", "published_at": "2018-09-29T12:03:12-07:00", "updated_at": "2026-07-30T04:37:29-07:00", "image": {"id": 1641213853747, "created_at": "2026-07-05T15:29:22-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21584_interior1.webp?v=1783290563", "alt": "Retrowalls"}, "products_count": 1998}, {"id": 298506485811, "title": "Roberto Cavalli", "handle": "roberto-cavalli", "description": "<p>The Roberto Cavalli wallcovering collection showcases the brand's signature bold animal prints and luxurious textures on high-quality grounds. These non-woven substrates offer excellent durability and ease of installation, suitable for high-end residential and hospitality projects. Consider the large scale repeats and straight matches when specifying, and request a sample book to fully appreciate the tactile hand.</p>", "published_at": "2026-03-04T19:13:52-08:00", "updated_at": "2026-07-14T11:15:18-07:00", "image": {"id": 1640621080627, "created_at": "2026-03-20T13:55:54-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/RC21041_6aa787af-e64e-4250-9519-4f329360b60a.jpg?v=1776628016", "alt": "Roberto Cavalli"}, "products_count": 181}, {"id": 298507632691, "title": "Romo", "handle": "romo", "description": "<p>Romo offers sophisticated wallcoverings recognized for nuanced textures and refined color palettes, produced in their own mill. This comprehensive book features a range of grounds from subtly textured non-wovens to heavier, more durable Type II vinyls suitable for high-traffic areas. Architects and designers will appreciate the variety of pattern matches and railroaded options available for seamless installation.</p>", "published_at": "2026-03-04T19:15:24-08:00", "updated_at": "2026-07-29T10:12:38-07:00", "image": {"id": 1640617345075, "created_at": "2026-03-20T13:49:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W944-01-makona-wallcovering-shadow_02.jpg?v=1776628098", "alt": "Romo"}, "products_count": 631}, {"id": 299575640115, "title": "Romo Wallcovering Collections", "handle": "romo-europe-wallpapaper-collections", "description": null, "published_at": "2026-04-09T21:34:21-07:00", "updated_at": "2026-07-29T10:12:38-07:00", "image": {"id": 1640811790387, "created_at": "2026-04-16T22:04:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W441-02-chiraco-wallcovering-sorbet_01_7da41b9b-5a79-433d-95a0-09be4fc2c805.jpg?v=1776402261", "alt": null}, "products_count": 595}, {"id": 79911583856, "title": "Ron Redding Classic Walls", "handle": "ron-redding-classic-walls", "description": "<p>Ronald Redding Classic Walls presents time-honored designs from a heritage mill, known for sophisticated residential and hospitality wallcoverings. This extensive book offers diverse patterns, from delicate florals to bold geometrics, available in multiple colorways on durable Type II grounds. Architects and designers will appreciate the range of repeats and installation options, including both straight match and half-drop patterns.</p>", "published_at": "2025-02-13T14:19:36-08:00", "updated_at": "2026-07-30T08:31:14-07:00", "image": {"id": 1641213919283, "created_at": "2026-07-05T15:29:26-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-za8011_cb319986-811e-439d-a6c7-cf4211f2d0d6.jpg?v=1783290566", "alt": "Ron Redding Classic Walls"}, "products_count": 676}, {"id": 283104182323, "title": "RONALD REDDING", "handle": "ronald-redding", "description": "<p>The Ronald Redding collection from Kravet Design offers sophisticated wallcovering prints known for quality and timeless appeal. Diverse geometric and botanical patterns are available in multiple colorways, suitable for a range of interiors. These durable wallcoverings are ideal for high-end residential and commercial projects, reflecting Redding's commitment to design excellence.</p>", "published_at": "2024-09-10T19:36:30-07:00", "updated_at": "2026-07-04T21:18:11-07:00", "image": {"id": 1640623636531, "created_at": "2026-03-20T13:57:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W3744_5_5b39a56c-7391-4d7c-b421-2c7ac397d32b.jpg?v=1774040251", "alt": "RONALD REDDING"}, "products_count": 157}, {"id": 79888220272, "title": "Roses", "handle": "roses-wallpaper", "description": "<p>The Roses Wallcovering collection offers a range of flocked velvet and commercial wallcoverings in floral-inspired colorways, including bronze, plum, rose, and ruby. Options include traditional flocked patterns from Limited Stock Flock and natural cork grounds from Phillipe Romano, providing a breadth of specification options. Custom colors and strike-offs are available; consult the book for current dye lot information.</p>", "published_at": "2018-09-29T12:10:39-07:00", "updated_at": "2026-07-29T23:38:55-07:00", "image": {"id": 1641213952051, "created_at": "2026-07-05T15:29:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c620cbf9f121dc02dce407d12f80742a.jpg?v=1783290570", "alt": "Roses"}, "products_count": 800}, {"id": 95044567105, "title": "Rustic Charm", "handle": "rustic-charm-wallpaper-collection", "description": "<p>Rustic wallcovering brings the warmth and charm of the countryside into your home, featuring designs inspired by natural elements and rugged textures. These wallcoverings often showcase patterns like weathered wood, stone, and botanical prints, evoking a cozy, lived-in feel. The color palette typically includes earthy tones such as browns, greens, and warm neutrals, creating a welcoming and organic ambiance. Rustic wallcovering adds depth and character to any room, making it perfect for spaces where a touch of nature and simplicity is desired. Ideal for cabins, living rooms, and bedrooms, it creates a comforting and inviting atmosphere that celebrates the beauty of the outdoors.</p>\n<!---->", "published_at": "2026-03-20T13:15:32-07:00", "updated_at": "2026-07-30T08:31:11-07:00", "image": {"id": 1641213984819, "created_at": "2026-07-05T15:29:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R20199_interior1_21308332-4ea4-45cd-98a4-585b70c54463.jpg?v=1783290571", "alt": "Rustic Charm"}, "products_count": 10283}, {"id": 298971594803, "title": "Sacha Walckhoff Wallcoverings", "handle": "sacha-walckhoff-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:14-07:00", "updated_at": "2026-06-16T17:59:46-07:00", "image": {"id": 1640673837107, "created_at": "2026-03-25T20:10:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/party-land-mustard-wallpaper-2.jpg?v=1776627436", "alt": null}, "products_count": 3}, {"id": 298885939251, "title": "Sage & Olive", "handle": "sage-olive-1", "description": "<p>Muted greens with gray or brown undertones that connect interiors to the natural landscape without the intensity of saturated green. Sage and olive tones have re-emerged as a primary specification for wellness-oriented spaces and biophilic design schemes. These work particularly well with natural materials -- stone, wood, and woven textiles.</p>", "published_at": "2026-03-20T13:10:20-07:00", "updated_at": "2026-07-30T08:30:50-07:00", "image": {"id": 1641214017587, "created_at": "2026-07-05T15:29:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R17542_interior1.jpg?v=1783290573", "alt": "Sage & Olive"}, "products_count": 7197}, {"id": 299486216243, "title": "Sancar", "handle": "sancar", "description": null, "published_at": "2026-04-07T14:19:32-07:00", "updated_at": "2026-06-16T17:59:48-07:00", "image": {"id": 1640815067187, "created_at": "2026-04-17T06:52:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/marburg-memento.jpg?v=1776433945", "alt": null}, "products_count": 42}, {"id": 298505994291, "title": "Sandberg", "handle": "sandberg", "description": "<p>Sandberg wallcoverings offer sophisticated Swedish design, printed on non-woven substrates for ease of installation. Known for nuanced color palettes and timeless patterns, their books provide architects and designers with a range of scales and half-drop repeats. These durable wallcoverings are ideal for residential and commercial projects seeking a refined, Scandinavian aesthetic.</p>", "published_at": "2026-03-04T19:13:40-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641214050355, "created_at": "2026-07-05T15:29:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/400-96_image2_134870d7-c9a6-4b6a-bb34-6030bc4ef8dc.jpg?v=1783290575", "alt": "Sandberg"}, "products_count": 991}, {"id": 291337273395, "title": "Sarah Rowland Wallcovering Collection", "handle": "sarah-rowland-wallpaper-collection", "description": "<p>Sarah\u2019s rich experience and varied cultural influences are seen in every inch of her creations. Art, color, music, fashion, and most of all, nature, fuse together in hand-drawn, bespoke patterns that transform hospitality settings and residential spaces alike.</p>\n<p>Nature truly is Sarah\u2019s guide, mentor, and muse. Or as she likes to say: \u201cMother Nature gives me so many design ideas. She really is the best designer and colorist out there. She also happens to be very generous with her advice!\u201d</p>\n<p>Sarah\u2019s work has been showcased and honored multiple times. In 2022, her patterns for Koroseal were nominated by Interior Design Magazine in the Contract Wallcovering category.</p>", "published_at": "2025-07-10T13:35:26-07:00", "updated_at": "2026-06-16T17:59:31-07:00", "image": {"id": 1640626192435, "created_at": "2026-03-20T13:59:14-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/MAX_ROOMSET_SRD-MAX-01__SARAH_ROWLAND_FOR_KOROSEAL.jpg?v=1774040355", "alt": "Sarah Rowland Wallpaper Collection"}, "products_count": 111}, {"id": 159513935923, "title": "SCALAMANDRE", "handle": "scalamandre-fabrics", "description": "<p>Scalamandr\u00e9, a heritage mill renowned for its opulent silks and damasks, presents a collection of 11634 exquisite wallcoverings in a range of sophisticated colorways. These specification-grade designs, printed on a variety of grounds from paper to contract-grade Type II vinyl, offer versatile solutions for discerning designers. Many patterns feature a generous repeat and can be railroaded, while attention to detail extends from the impeccable hand to the clean selvage on every bolt.</p>", "published_at": "2026-03-20T13:15:36-07:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1640679899187, "created_at": "2026-03-25T20:26:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WH000013325_2494d341-1449-4b27-b442-4d2a367431c3.jpg?v=1776628182", "alt": null}, "products_count": 12615}, {"id": 298512252979, "title": "Scandinavian", "handle": "scandinavian-wallpaper", "description": "<p>The Scandinavian wallcovering collection offers a range of minimalist designs and natural textures suitable for modern architectural interiors seeking serene sophistication. This selection focuses on light and airy colorways, emphasizing grasscloth and raffia wallcoverings with subtle pattern repeats for seamless installation. Specified for residential and hospitality projects, these wallcoverings provide durable Type II options with superior hand and drape.</p>", "published_at": "2026-03-04T23:52:36-08:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1640678359091, "created_at": "2026-03-25T20:22:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZW139-01-abercrombie-wallcovering-buff_02_5d5bf7b1-b82d-4dbf-ae17-ce711dd6dc9f.jpg?v=1776628450", "alt": null}, "products_count": 5732}, {"id": 298512023603, "title": "Scenic", "handle": "scenic-wallpaper", "description": "<p>Scenic Wallcovering offers a range of pictorial designs, from classic Chinoiserie to bold, large-scale murals, suitable for creating immersive environments. Designs vary in repeat and installation method, with options available on diverse grounds and substrates for both residential and commercial applications. Consider coordinating colorways and textures from within the book for a cohesive design scheme.</p>", "published_at": "2026-03-04T23:52:29-08:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640616984627, "created_at": "2026-03-20T13:48:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258_782cd5e4-9366-4ae3-be6c-6c5395243dad.jpg?v=1776628134", "alt": "Scenic Wallpaper"}, "products_count": 4093}, {"id": 299591139379, "title": "Scenic Wallcoverings", "handle": "scenic-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:22-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640813690931, "created_at": "2026-04-17T06:50:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20319258_db078bf1-e360-47dd-9caf-3465cfe4fb1f.jpg?v=1776433839", "alt": null}, "products_count": 4124}, {"id": 272276488243, "title": "Scenics", "handle": "scenics", "description": "<p>This \"Scenics\" collection presents a range of pastoral and abstracted landscape patterns, each rendered on a specification-grade, Type II vinyl ground. With repeats spanning from subtle textures to bold, large-scale murals, and available railroaded for seamless application, these 3464 wallcoverings offer diverse colorways and a luxurious hand. Suitable for contract-grade applications in hospitality, corporate, and high-end residential interiors, the collection is milled to exacting standards, ensuring consistent color and a clean selvage on every bolt, whether utilizing a straight or half-drop match.</p>", "published_at": "2026-03-20T13:15:37-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640616362035, "created_at": "2026-03-20T13:47:04-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden.jpg?v=1776628173", "alt": "Scenics"}, "products_count": 8709}, {"id": 94340251713, "title": "Scroll", "handle": "scroll", "description": "<p>Scroll offers a diverse range of traditional and contemporary wallcovering designs, from flocked velvet to textural grounds. This collection features both large-scale baroque repeats and smaller, more subtle scrolls, suitable for a variety of interiors. Specify Scroll for projects requiring dimension, durability, and pattern-matched installations.</p>", "published_at": "2026-03-20T13:15:42-07:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1641214115891, "created_at": "2026-07-05T15:29:37-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/366923_8_5fe6f347-c10b-4e8c-b8d9-1c1c62a490f8.jpg?v=1783290578", "alt": "Scroll"}, "products_count": 328}, {"id": 79889334384, "title": "Sequin", "handle": "sequin-wallpapers", "description": "Sequin Wallcoverings and Sequin Wallcoverings", "published_at": "2018-09-29T12:12:07-07:00", "updated_at": "2026-07-24T22:32:30-07:00", "image": {"id": 1640651685939, "created_at": "2026-03-21T17:01:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/gz127_663e539a-bd80-435f-bdd5-e55316d1f2ac.jpg?v=1776628042", "alt": null}, "products_count": 403}, {"id": 79889203312, "title": "Shiny Mylar & 3d Foils", "handle": "shiny-mylar-3d-foils", "description": "<meta charset=\"utf-8\"><span>Gold or silver mylar wallcoverings add a touch of luxury and sophistication to interior spaces, creating an elegant and glamorous ambiance. The reflective properties of Mylar enhance the play of light, bringing a subtle sheen to the walls and contributing to a visually striking environment. These wallcoverings are often favored for their ability to create a sense of opulence, making them a popular choice for high-end residential and commercial settings. The metallic finish of gold or silver Mylar wallcoverings complements a variety of design styles, from modern to traditional, making them versatile for different aesthetic preferences. In addition to their aesthetic appeal, Mylar wallcoverings are known for their durability and easy maintenance, ensuring a long-lasting and attractive wall decor option.</span>", "published_at": "2018-09-29T12:11:53-07:00", "updated_at": "2026-07-29T05:36:29-07:00", "image": {"id": 1641214148659, "created_at": "2026-07-05T15:29:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-74757_room_setting_030039a2-341c-4ef8-a484-e4bbfdec3044.jpg?v=1783290580", "alt": "Shiny Mylar & 3d Foils"}, "products_count": 209}, {"id": 301540147251, "title": "Showroom Lines", "handle": "showroom-lines", "description": "<p>Curated showroom lines \u2014 available as memo samples. Each is a single-swatch showroom offering.</p>", "published_at": "2026-06-16T15:43:45-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641208938547, "created_at": "2026-07-05T15:24:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_7e33c69a-3309-493b-bbd6-37de223a8356.jpg?v=1783290268", "alt": "Showroom Lines"}, "products_count": 30683}, {"id": 299576262707, "title": "Silk Wallcoverings", "handle": "silk", "description": null, "published_at": "2026-04-09T21:34:41-07:00", "updated_at": "2026-07-30T08:11:12-07:00", "image": {"id": 1640813953075, "created_at": "2026-04-17T06:51:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/89115f2140d65bc1231c65e4bc5a59b3.jpg?v=1776433863", "alt": null}, "products_count": 2103}, {"id": 303023587379, "title": "Silk Wallcoverings", "handle": "material-silk", "description": "<p>Silk wallcoverings.</p>", "published_at": "2026-07-22T11:56:44-07:00", "updated_at": "2026-07-22T17:32:58-07:00", "image": null, "products_count": 63}, {"id": 299574558771, "title": "Silver Wallcoverings", "handle": "silver-wallcoverings", "description": "<p>Silver wallcoverings \u2014 cool metallic shimmer. Designer Wallcoverings curates silver wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of silver. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:34-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1640812937267, "created_at": "2026-04-17T06:49:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lec-5013-sample-le-embossed-disco.jpg?v=1776433770", "alt": null}, "products_count": 19146}, {"id": 299576295475, "title": "Sisal Wallcoverings", "handle": "sisal", "description": null, "published_at": "2026-04-09T21:34:42-07:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1641214214195, "created_at": "2026-07-05T15:29:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bel-air-damasco-sisal-bec-51538-bedroom_1291c8dd-d6cb-43ac-8ceb-e11e6ea1e549.jpg?v=1783290584", "alt": "Sisal Wallcoverings"}, "products_count": 1249}, {"id": 298886299699, "title": "Slate & Charcoal", "handle": "slate-charcoal-1", "description": "<p>Deep neutrals that carry weight without the absoluteness of black, ranging from blue-tinged slate through warm charcoal to cool graphite. This palette establishes authority in a space while maintaining enough nuance for layered design work. A go-to for accent walls, millwork, and any application where depth matters more than color.</p>", "published_at": "2026-03-20T13:11:38-07:00", "updated_at": "2026-07-30T08:30:47-07:00", "image": {"id": 1640678654003, "created_at": "2026-03-25T20:22:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/finalsitustoneforestfinal_room_d57e8a55-dac8-48b7-9be0-797ab2507d81.jpg?v=1776628612", "alt": null}, "products_count": 11991}, {"id": 299591073843, "title": "Solid Wallcoverings", "handle": "solid-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:20-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641214246963, "created_at": "2026-07-05T15:29:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/74e9473bba448707feb112d32a741e73_1bc2dba2-de01-45ea-a09e-9ff9ecf0b94d.jpg?v=1783290586", "alt": "Solid Wallcoverings"}, "products_count": 18322}, {"id": 79889989744, "title": "Specialty Wall Textures & Styles", "handle": "specialty-wall-textures-styles-1", "description": "<p>This comprehensive selection of 3037 wallcoverings features diverse grounds, from natural textiles to durable, contract-grade Type II vinyls. Each bolt in our \"Specialty Wall Textures & Styles\" collection offers specification-grade performance, with options for railroaded installations and varied repeats, including half-drop matches. Review each colorway's hand and substrate, noting the selvage details and mill specifications for optimal project integration.</p>", "published_at": "2018-09-29T12:12:50-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641214279731, "created_at": "2026-07-05T15:29:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_1c439cbe-7688-4167-8d64-d71c48282c69.jpg?v=1783290587", "alt": "Specialty Wall Textures & Styles"}, "products_count": 1275}, {"id": 79913255024, "title": "Staff Favorites", "handle": "the-gardens-by-phillipe-romano", "description": "<p>The staff favorites collection of wallcovering patterns presents an eclectic mix, reflecting the diverse tastes and styles of the team. Each pattern in the collection has been personally selected by employees, ensuring a unique and varied assortment that resonates with different design preferences. The employee favorites collection is a testament to the team's keen eye for design and commitment to exceptional home d\u00e9cor.\u00a0</p>\n<!---->", "published_at": "2018-09-29T12:44:36-07:00", "updated_at": "2026-07-29T04:05:13-07:00", "image": {"id": 1640652832819, "created_at": "2026-03-21T23:00:19-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/20211215_095720.jpg?v=1776627820", "alt": null}, "products_count": 1365}, {"id": 298886332467, "title": "Steel Blue", "handle": "steel-blue-1", "description": "<p>A refined range of medium blues with gray undertones, from chambray through denim to proper French blue. These tones read as classic rather than trendy, carrying enough blue to register as color while remaining restrained enough for full-room application. Historically the most specified blue palette in residential and hospitality design.</p>", "published_at": "2026-03-20T13:11:41-07:00", "updated_at": "2026-07-30T08:30:32-07:00", "image": {"id": 1641214312499, "created_at": "2026-07-05T15:29:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W1011_Bali_Install_1_aac07486-1186-46b3-98f5-7d3e087b729f.jpg?v=1783290590", "alt": "Steel Blue"}, "products_count": 4532}, {"id": 299577278515, "title": "Steve Abrams Studios", "handle": "steve-abrams-studios", "description": null, "published_at": "2026-04-09T21:39:21-07:00", "updated_at": "2026-07-16T11:32:02-07:00", "image": {"id": 1640814575667, "created_at": "2026-04-17T06:51:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/colt-gun-a-blazing-steve-abrams_54377b5f-737d-4174-b47d-6f14b8e903b7.jpg?v=1776433911", "alt": null}, "products_count": 57}, {"id": 288521289779, "title": "Steve Abrams Whimsy Collections", "handle": "steve-abrams-whimsy", "description": "<p>Steve Abrams Whimsy Collections</p>", "published_at": "2025-03-25T09:24:56-07:00", "updated_at": "2026-07-30T08:30:45-07:00", "image": {"id": 1640618557491, "created_at": "2026-03-20T13:52:41-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Lincrusta-Wallcovering-RD1960FR-3-Acanthus-Bedroom-in-copper-close-up.jpg?v=1774039961", "alt": "Steve Abrams Whimsy Collections"}, "products_count": 544}, {"id": 283365638195, "title": "String", "handle": "string", "description": "<p>String offers a diverse range of natural fiber wallcoverings ideal for adding tactile dimension. This collection features a variety of substrates including paper and non-woven grounds, suitable for residential and Type II commercial applications. Specify String for projects demanding organic texture and subtle color variation across full bolt installations.</p>", "published_at": "2024-09-19T09:40:05-07:00", "updated_at": "2026-07-27T11:43:24-07:00", "image": {"id": 1640676884531, "created_at": "2026-03-25T20:18:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/IMG_2487_7f26008a-3651-4ace-97ef-8bfe311c3d03.jpg?v=1774495093", "alt": null}, "products_count": 217}, {"id": 79979282544, "title": "Stripe Collections", "handle": "stripe", "description": "<p>Stripe Wallcovering Collections | Designer Wallcoverings</p>", "published_at": "2025-02-11T09:38:16-08:00", "updated_at": "2026-07-30T08:30:42-07:00", "image": {"id": 1640675147827, "created_at": "2026-03-25T20:13:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/A_FABLE_Evergreen_52x1000cm_WP30002.jpg?v=1776628609", "alt": null}, "products_count": 15177}, {"id": 272276521011, "title": "Stripes", "handle": "stripes", "description": "<p>This collection showcases a range of graphic stripe patterns, from subtle pinstripes to bold, multi-colored bands, with repeats spanning from a tight 2\" to a dramatic 27\" half-drop. Printed on specification-grade, Type II vinyl substrate, these contract-grade wallcoverings are ideal for modern commercial interiors and can be railroaded for seamless application. Offered in a diverse colorway selection, this mill-direct product ships by the bolt and trims easily at the selvage.</p>", "published_at": "2025-02-11T09:38:16-08:00", "updated_at": "2026-07-30T09:02:29-07:00", "image": {"id": 1640676327475, "created_at": "2026-03-25T20:16:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/A_FABLE_Evergreen_52x1000cm_WP30002_6915c7a8-0d7f-4a7e-b1d3-17ecde86e60b.jpg?v=1776628606", "alt": null}, "products_count": 13705}, {"id": 298894786611, "title": "Stripes & Geometrics", "handle": "stripes-geometrics", "description": "<p>Linear and angular pattern wallcoverings spanning classic pinstripes and wide awning bands to contemporary chevrons, herringbones, and trellis lattices. Available in both residential-weight papers and contract-rated vinyl for specification across project types. Pattern repeats and match types noted per SKU.</p>", "published_at": "2026-03-20T23:07:59-07:00", "updated_at": "2026-07-30T09:04:07-07:00", "image": {"id": 1641214345267, "created_at": "2026-07-05T15:29:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21511_interior1_398ac116-38f5-4274-83ac-416851bd068b.webp?v=1783290591", "alt": "Stripes & Geometrics"}, "products_count": 33390}, {"id": 79872819312, "title": "Stripes + Plaids", "handle": "stripe-plaid", "description": "<p>Stripe and plaid wallcoverings offer timeless patterns that can add both sophistication and warmth to any room. Stripes, whether vertical or horizontal, can elongate walls and create a sense of spaciousness, making them ideal for smaller spaces. Plaid patterns, with their intersecting lines, evoke a sense of tradition and coziness, reminiscent of classic tartan designs. These wallcoverings come in a variety of color combinations, from bold and vibrant to subtle and neutral, allowing for versatility in matching with existing decor. Whether used as an accent wall or throughout an entire room, stripe and plaid wallcoverings can bring texture and visual interest to any interior design scheme.</p>", "published_at": "2026-03-20T13:15:53-07:00", "updated_at": "2026-07-30T08:30:42-07:00", "image": {"id": 1616285663283, "created_at": "2023-07-19T10:03:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/db5f0db91bea1cb001af57da71070fb8.jpg?v=1776628603", "alt": null}, "products_count": 6260}, {"id": 298886365235, "title": "Study & Library", "handle": "study-library-1", "description": "<p>Wallcoverings that establish the character of a working library or private study -- traditional patterns, leather-adjacent textures, and the deep warm palette associated with serious rooms. Tartans, plaids, paisleys, and classic geometrics in hunter green, burgundy, navy, and tobacco tones define this collection. Designed for spaces where books, dark wood, and seated conversation set the program.</p>", "published_at": "2026-03-20T13:11:44-07:00", "updated_at": "2026-07-30T08:31:11-07:00", "image": {"id": 1641214378035, "created_at": "2026-07-05T15:29:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_0a57d9f3-2a03-4e4d-a7b6-2f30e3db0016.jpg?v=1783290593", "alt": "Study & Library"}, "products_count": 42164}, {"id": 93445423169, "title": "Suede", "handle": "suede", "description": "<p>The Suede collection offers a tactile indulgence with a napped hand and subtle sheen, ideal for adding depth to sophisticated interiors. Featuring a durable substrate suitable for high-traffic areas, these wallcoverings provide a luxurious alternative to traditional textiles. Available in a range of weights and colorways, each bolt ensures ease of installation with a consistent selvage.</p>", "published_at": "2025-02-13T13:51:44-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641214410803, "created_at": "2026-07-05T15:29:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/TG60033-A_90bb239f-8ca5-4371-b523-8e1bff5483c7.jpg?v=1783290595", "alt": "Suede"}, "products_count": 1346}, {"id": 161287012403, "title": "Suede + Faux Suede", "handle": "suede-faux-suede-fabric", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-rlnya-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-rlnya-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-33\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 md:py-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] } group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"8de04f62-594f-41bf-a464-6fafde3ac15f\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Faux suede wallcoverings provide a luxurious and tactile alternative to traditional materials, mimicking the rich and velvety texture of genuine suede. These wallcoverings often offer a cost-effective and more practical solution, as they are typically easier to maintain than real suede. The synthetic nature of faux suede also makes it a cruelty-free option, appealing to those who prioritize ethical and sustainable design choices. Available in a variety of colors, faux suede wallcoverings add warmth and sophistication to interior spaces, creating a cozy ambiance. The durability and resistance to stains inherent in faux suede make it a practical choice for high-traffic areas, ensuring both aesthetic appeal and functionality in modern interiors.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2026-03-20T13:15:54-07:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1641185935411, "created_at": "2026-06-29T09:06:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EW10900-A_bbfad2ba-8326-4eab-aae2-38d0152d56ee.jpg?v=1782749203", "alt": "Suede + Faux Suede"}, "products_count": 643}, {"id": 298971332659, "title": "SUGARBOO", "handle": "sugarboo", "description": null, "published_at": "2026-03-23T19:40:08-07:00", "updated_at": "2026-06-16T17:59:45-07:00", "image": {"id": 1640671445043, "created_at": "2026-03-25T19:57:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-09-25at10.27.38PM.png?v=1776627431", "alt": "SUGARBOO"}, "products_count": 10}, {"id": 298506027059, "title": "Surface Stick", "handle": "surface-stick", "description": "<p>Surface Stick offers self-adhesive wallcoverings for ease of installation and impactful design. This collection features a range of textures and colorways on a durable substrate, ideal for high-traffic areas. Explore the book for various patterns with straightforward repeats, suitable for diverse applications.</p>", "published_at": "2026-03-04T19:13:41-08:00", "updated_at": "2026-07-24T23:33:13-07:00", "image": {"id": 1640677965875, "created_at": "2026-03-25T20:20:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fa21fa59bf0a269895a073efd17f3e4a.jpg?v=1774495250", "alt": null}, "products_count": 751}, {"id": 79889399920, "title": "Surface Stick 3M Self Adhesive", "handle": "surface-stick-3m-self-adhesive", "description": "<p>Surface Stick 3M Self Adhesive</p>", "published_at": "2018-09-29T12:12:13-07:00", "updated_at": "2026-07-24T23:33:13-07:00", "image": {"id": 49753391216, "created_at": "2018-09-29T12:12:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/d216698b45ba75f8aedc2455b951664e.jpg?v=1538248333", "alt": null}, "products_count": 751}, {"id": 298894753843, "title": "Sustainable & Eco", "handle": "sustainable-eco", "description": "<p>Wallcoverings manufactured with verified environmental responsibility \u2014 FSC-certified papers, water-based inks, recycled content substrates, and GREENGUARD Gold-certified low-VOC finishes. Supporting documentation available for LEED, WELL, and Living Building Challenge credit submittals on qualifying products.</p>", "published_at": "2026-03-20T23:07:58-07:00", "updated_at": "2026-07-21T17:58:48-07:00", "image": {"id": 1641185968179, "created_at": "2026-06-29T09:06:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWRW-190006-sofa-room-setting_3c6b6a8b-6efb-4a62-848b-559769516dee.png?v=1782749205", "alt": "Sustainable & Eco"}, "products_count": 795}, {"id": 298989977651, "title": "Tables", "handle": "tables", "description": null, "published_at": "2026-03-24T11:15:35-07:00", "updated_at": "2026-07-25T20:35:34-07:00", "image": {"id": 1640674000947, "created_at": "2026-03-25T20:10:57-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWWD-60545-DesignerWallcoverings-Los-Angeles-1_6d86037c-42ff-4232-bab2-a59fcc218e33.png?v=1774494658", "alt": null}, "products_count": 2}, {"id": 299574394931, "title": "Teal Wallcoverings", "handle": "teal-wallcoverings", "description": "<p>Teal wallcoverings \u2014 a confident blend of blue and green. Designer Wallcoverings curates teal wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of teal. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:30-07:00", "updated_at": "2026-07-30T08:31:22-07:00", "image": {"id": 1641186000947, "created_at": "2026-06-29T09:06:46-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_697abf12-80e1-4c23-a739-9fb00996bb79.jpg?v=1782749207", "alt": "Teal Wallcoverings"}, "products_count": 8218}, {"id": 298885906483, "title": "Terracotta & Clay", "handle": "terracotta-clay-1", "description": "<p>Earth-fired tones ranging from raw sienna through burnt umber, grounded in the natural pigments of clay, adobe, and fired ceramic. This palette reads as organic rather than decorative, connecting interiors to landscape and material tradition. Best deployed in spaces with natural light where the warmth registers fully without overwhelming.</p>", "published_at": "2026-03-20T13:10:13-07:00", "updated_at": "2026-07-30T08:11:06-07:00", "image": {"id": 1640616755251, "created_at": "2026-03-20T13:47:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2_47f6d15f-e3ff-4e86-be3e-9eed3947ec0e.jpg?v=1776628472", "alt": "Terracotta & Clay"}, "products_count": 4354}, {"id": 279571595315, "title": "Texture Gallery", "handle": "texture-gallery", "description": "<p>Texture Gallery presents 96 diverse wallcoverings, exploring tactile dimension for sophisticated interiors. Featuring heavy-duty grounds and resilient substrates, this collection offers versatile solutions for high-traffic commercial environments. Ranging from faux grasscloth to leather effects, each bolt delivers a unique hand and exceptional Type II durability.</p>", "published_at": "2026-03-20T13:35:02-07:00", "updated_at": "2026-07-15T04:05:27-07:00", "image": {"id": 1641209331763, "created_at": "2026-07-05T15:24:51-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-dwqw-56388-handle_5ff49508-59f3-4837-aa0c-e55d376cce39.jpg?v=1783290291", "alt": "Texture Gallery"}, "products_count": 96}, {"id": 298511892531, "title": "Textured", "handle": "textured-wallpaper", "description": "<p>This collection of contract-grade, Type II wallcoverings offers a sophisticated range of colorways, from cool neutrals to warm, saturated hues, printed on a durable non-woven substrate. Its diverse palette works well in both low-light corridors and brightly lit offices, with most patterns available railroaded and featuring a minimal repeat and half-drop match for ease of installation. The subtle textures and refined hand complement brushed metal hardware and natural wood millwork, ensuring a cohesive and specification-grade interior.</p>", "published_at": "2026-03-04T23:52:24-08:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186066483, "created_at": "2026-06-29T09:06:49-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1.webp?v=1782749209", "alt": "Textured"}, "products_count": 43405}, {"id": 299591106611, "title": "Textured Wallcoverings", "handle": "textured-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:21-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186033715, "created_at": "2026-06-29T09:06:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_0fbfbcba-ee1c-40f4-99de-490b26783a09.webp?v=1782749208", "alt": "Textured Wallcoverings"}, "products_count": 43467}, {"id": 298894688307, "title": "Textures & Solids", "handle": "textures-solids", "description": "<p>Tone-on-tone textures, dimensional embossed surfaces, and solid-color wallcoverings that serve as foundational layers in layered interior schemes. Finishes include linen weave, stucco, plaster, cork, and sand effects across vinyl, non-woven, and specialty substrates. Ideal for pairing with patterned accent walls.</p>", "published_at": "2026-03-20T23:07:35-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186099251, "created_at": "2026-06-29T09:06:50-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R19794_interior1_169165a2-cdc8-4c04-90bd-8ddaa84969dd.webp?v=1782749211", "alt": "Textures & Solids"}, "products_count": 57727}, {"id": 285019537459, "title": "The Equestrian Wallcovering Collection", "handle": "equestrian-collection", "description": "<p class=\"p1\">The <i>Equestrian Collections</i> wallcovering from Designer Wallcoverings features intricate patterns inspired by equestrian equipment, such as bridles and reins, arranged in sophisticated designs. It blends detailed craftsmanship with muted, classic color schemes like neutral tan or deep navy, offering depth and texture for interiors. These wallcoverings are part of a luxury collection emphasizing timeless aesthetics and high-quality finishes.</p>", "published_at": "2024-11-22T09:23:37-08:00", "updated_at": "2026-07-28T11:25:36-07:00", "image": {"id": 1640677048371, "created_at": "2026-03-25T20:18:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Vintage_Wallpaper_Reproduction1952_Dig-5211109.jpg?v=1774495114", "alt": null}, "products_count": 359}, {"id": 260541644851, "title": "The Graduate Collection", "handle": "the-graduate-collection", "description": "<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"c3b89455-55ce-4a5a-a2c5-3ffbac793e87\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Graduate Collection, a prominent UK-based wallcovering company, stands at the intersection of art and interior design, offering a distinctive array of wall coverings that seamlessly blend innovation with tradition. Renowned for its commitment to supporting emerging artists and designers, Graduate Collection showcases a diverse range of captivating patterns and prints, each telling a unique story. With an emphasis on quality craftsmanship and sustainable materials, their wallcoverings not only elevate spaces aesthetically but also reflect a dedication to environmental consciousness. Whether it's whimsical illustrations, bold geometric designs, or nature-inspired motifs, Graduate Collection's curated selection caters to a broad spectrum of tastes, ensuring that customers can transform their living spaces into personalized works of art.\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2021-03-16T19:49:40-07:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1641186132019, "created_at": "2026-06-29T09:06:52-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Graduate_Collection_Leoaprd_Luxe_CHARCOAL_Roomset_1_dc9ea3c7-13ba-465b-8e8d-b73fb3731820.jpg?v=1782749212", "alt": "The Graduate Collection"}, "products_count": 50}, {"id": 283698233395, "title": "The Kelly Wearstler Collection", "handle": "the-kelly-wearstler-collection", "description": "<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/WiSwSwvcMLA?si=HUPSNARWi4wOeTSK\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>", "published_at": "2025-02-11T09:43:28-08:00", "updated_at": "2026-07-27T04:05:16-07:00", "image": {"id": 1640677015603, "created_at": "2026-03-25T20:18:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/GWF-3758_118_1c353db7-1eff-4313-8a7f-09b7102c5168.jpg?v=1774495110", "alt": null}, "products_count": 484}, {"id": 95300681793, "title": "Themes", "handle": "themes", "description": "<p>Themes presents a broad spectrum of wallcoverings suitable for diverse applications, offering a wealth of options for any design vision. This comprehensive collection ranges in style from classic to contemporary, featuring varied grounds and substrates to meet the demands of high-end residential and commercial projects. Designers will find ample opportunity to explore pattern, texture, and color, referencing specifications for repeat, weight, and installation within each book.</p>", "published_at": "2026-03-20T13:16:01-07:00", "updated_at": "2026-07-28T13:05:44-07:00", "image": {"id": 1640617148467, "created_at": "2026-03-20T13:49:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/884ea8394e4d6d3574bb0d7860129104.jpg?v=1776628013", "alt": "Themes"}, "products_count": 1796}, {"id": 298270785587, "title": "Thibaut", "handle": "thibaut-wallcoverings", "description": "<div class=\"vendor-about\">\n<h2>About Thibaut</h2>\n<p>Founded in 1886 by Richard E. Thibaut in New York City, Thibaut is the oldest continuously operating wallpaper company in the United States. From its earliest days the firm was built on a commitment to fine design and the choicest colorings, a guiding principle that still shapes its collections nearly 140 years later. Across the 20th century its wallcoverings became fixtures of American interiors, with celebrated patterns like Memory Lane and Magnolia Hill defining a distinctly American decorative tradition.</p>\n<p>Today Thibaut pairs that heritage with a deep design archive and a steadily expanding portfolio of wallcoverings, fabrics, and trimmings. Its patterns range from classic florals, damasks, and toiles to fresh geometrics and textures, prized for their richly considered colorways, refined drawing, and enduring style. It is this balance of archival depth and contemporary sensibility that makes a Thibaut wallcovering instantly recognizable.</p>\n<p class=\"dw-collab\"><em>Thibaut is available in collaboration with Designer Wallcoverings.</em></p>\n</div>\n<p>Thibaut, with their rich heritage in American design, presents a comprehensive collection known for vibrant colorways and traditional patterns. The line offers specification-grade, contract-grade wallcoverings across a variety of grounds, including paper, vinyl, and grasscloth. Noteworthy for precise repeats and durable Type II options, Thibaut's offerings are available by the bolt and can often be railroaded, ensuring minimal selvage waste.</p>", "published_at": "2026-03-11T11:44:13-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186164787, "created_at": "2026-06-29T09:06:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_70dac28a-6133-45b1-90e4-738785234148.jpg?v=1782749214", "alt": "Thibaut"}, "products_count": 5090}, {"id": 272278749235, "title": "Thibaut Wallcovering and Fabrics", "handle": "thibaut-wallpaper-and-fabrics", "description": "<p>Thibaut Wallcovering and Fabrics offers a comprehensive range of contract-grade and specification-grade wallcoverings, reflecting the brand's longstanding heritage as a leading resource for designers. Known for vibrant colorways and intricate designs, the collection features diverse grounds, including Type II vinyl and grasscloth, with many patterns available railroaded. Each bolt showcases meticulous attention to repeat and hand, milled with precision and considering selvage for ease of installation.</p>", "published_at": "2026-03-20T13:16:02-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186197555, "created_at": "2026-06-29T09:06:55-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/221018_1093_1_b7086ecf-a3b0-426a-ade0-bd2a5905ed86.jpg?v=1782749216", "alt": "Thibaut Wallcovering and Fabrics"}, "products_count": 4924}, {"id": 79889367152, "title": "Thick Natural Sisal", "handle": "thick-natural-sisal", "description": "<p>This specification-grade, contract-grade sisal wallcovering offers a rich, textural hand and exceptional durability on a natural ground. The Type II substrate allows for high-traffic applications and can be railroaded, minimizing selvage waste. With a subtle repeat and optional half-drop installation, please consult the mill for specific bolt sizes and installation guidelines.</p>", "published_at": "2026-03-20T13:16:04-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641186230323, "created_at": "2026-06-29T09:06:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_e9f00ce4-f12d-4bde-a5e1-c1327c0a5521.jpg?v=1782749217", "alt": "Thick Natural Sisal"}, "products_count": 1277}, {"id": 283203895347, "title": "Threads", "handle": "threads", "description": "<p>Threads is known for its elegant and versatile textile collections, offering a sophisticated range of fabrics with a focus on quality and design. Their offerings typically include a blend of classic patterns and contemporary styles, crafted to enhance interiors with both refinement and modern appeal.</p>", "published_at": "2025-02-11T09:36:09-08:00", "updated_at": "2026-07-29T09:38:38-07:00", "image": {"id": 1640620392499, "created_at": "2026-03-20T13:55:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/glitter-threads-fabric-wallcovering-white-silver-iris-swatch-spin.gif?v=1776627947", "alt": "Threads"}, "products_count": 170}, {"id": 299575738419, "title": "Threads Wallcoverings", "handle": "threads-wallcoverings", "description": null, "published_at": "2026-04-09T21:34:24-07:00", "updated_at": "2026-06-24T06:11:39-07:00", "image": {"id": 1640814346291, "created_at": "2026-04-17T06:51:33-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/EW15018_680_be24807a-38b3-4955-ad63-5ca67ba40f67.jpg?v=1776433893", "alt": null}, "products_count": 80}, {"id": 273005019187, "title": "Throw Blanket", "handle": "throw-blanket", "description": "<p>Throw Blanket offers comforting textures on durable Vitali grounds, ideal for hospitality and residential applications. These cozy patterns range from subtle solids to bolder designs, all offered in a versatile color palette. With a non-woven substrate and straight match, Throw Blanket ensures ease of installation and Type II performance.</p>", "published_at": "2026-03-20T13:16:05-07:00", "updated_at": "2026-06-21T20:16:26-07:00", "image": {"id": 1640680063027, "created_at": "2026-03-25T20:26:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/11837038-art-breasts-v2-by-designerwallcoverings_19-1112_7ea48495-cba3-46a9-bd2e-739d1d377b52.jpg?v=1774495590", "alt": null}, "products_count": 124}, {"id": 298512154675, "title": "Toile", "handle": "toile-wallpaper", "description": "<p>Toile Wallcovering presents reimagined historical scenes in a range of scales and colorways suitable for traditional and modern interiors. This extensive collection offers diverse grounds, from classic paper to durable Type II vinyl, accommodating various project needs. Consider half-drop repeats for seamless flow and railroaded options for expansive walls, ensuring efficient installation.</p>", "published_at": "2026-03-04T23:52:33-08:00", "updated_at": "2026-07-30T08:59:15-07:00", "image": {"id": 1640618426419, "created_at": "2026-03-20T13:52:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-bedroom-shanghai-chinoiserie-grasscoth-print-blue-on-natural-cream-grp-74000.jpg?v=1776628297", "alt": "Toile Wallpaper"}, "products_count": 1129}, {"id": 79885533296, "title": "Toile de Juoy", "handle": "toile-de-juoy-1", "description": "<p>\"Toile de Juoy\" pillow collection interprets historical textile design for contemporary architectural interiors. These decorative pillows offer a variety of colorways on linen and cotton grounds, imbuing classic scenic patterns with updated scale. Specify these pillows to complement traditional wallcoverings or to add a layer of texture to modern spaces.</p>", "published_at": "2025-02-13T13:50:36-08:00", "updated_at": "2026-07-28T11:37:19-07:00", "image": {"id": 1641186263091, "created_at": "2026-06-29T09:06:58-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/LN40907-A.jpg?v=1782749219", "alt": "Toile de Juoy"}, "products_count": 606}, {"id": 299576000563, "title": "Toile Wallcoverings", "handle": "toile", "description": null, "published_at": "2026-04-09T21:34:33-07:00", "updated_at": "2026-07-30T08:59:15-07:00", "image": {"id": 1640813887539, "created_at": "2026-04-17T06:50:57-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/fdc3ed9b160840cdab57f28b2d467ded.jpg?v=1776433857", "alt": null}, "products_count": 1129}, {"id": 95044862017, "title": "Traditional", "handle": "traditional", "description": "<p>Traditional wallcovering exudes timeless elegance and classic charm, often featuring intricate patterns such as damask, florals, and paisley. These designs typically utilize rich color palettes with deep hues like burgundy, navy, and forest green, accented with gold or ivory details for a sophisticated look. The patterns are often symmetrical and detailed, reflecting historical styles and motifs that have been cherished for generations. Ideal for formal living rooms, dining areas, and grand entryways, traditional wallcovering brings a sense of refinement and history to any space. Its enduring appeal lies in its ability to create a warm, inviting, and beautifully decorated environment that stands the test of time.</p>\n<!---->", "published_at": "2026-03-20T13:16:07-07:00", "updated_at": "2026-07-30T08:31:11-07:00", "image": {"id": 1641186295859, "created_at": "2026-06-29T09:06:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d.jpg?v=1782749221", "alt": "Traditional"}, "products_count": 43562}, {"id": 95012028481, "title": "Traditional Durable Vinyl", "handle": "traditional-durable-vinyl", "description": "<meta charset=\"utf-8\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-iwxny-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-iwxny-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-9\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"86128d11-8b93-4e4e-94cd-1826a8ae4560\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<div class=\"flex-1 overflow-hidden\">\n<div class=\"react-scroll-to-bottom--css-vzvrs-79elbk h-full\">\n<div class=\"react-scroll-to-bottom--css-vzvrs-1n7m0yu\">\n<div class=\"flex flex-col pb-9 text-sm\">\n<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col lg:w-[calc(100%-115px)] agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"c95cd428-885c-4907-bea4-008c4d4f0ed1\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Geometric pattern wallcoverings have become increasingly popular in interior design, offering a modern and stylish aesthetic to any space. These wallcoverings often feature a variety of geometric shapes such as triangles, hexagons, or diamonds, creating visually appealing and dynamic patterns. The use of geometric designs adds a sense of order and symmetry to a room, making it visually engaging and balanced. Additionally, these patterns can be versatile, suiting a range of design styles from contemporary to retro. Whether used as an accent wall or covering an entire room, geometric pattern wallcoverings contribute to a chic and sophisticated ambiance in interior spaces.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"w-full pt-2 md:pt-0 dark:border-white/20 md:border-transparent md:dark:border-transparent md:w-[calc(100%-.5rem)]\"><form class=\"stretch mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:last:mb-6 lg:mx-auto lg:max-w-2xl xl:max-w-3xl\">\n<div class=\"relative flex h-full flex-1 items-stretch md:flex-col\">\n<div class=\"flex w-full items-center\"><br></div>\n</div>\n</form></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-02-21T19:57:54-08:00", "updated_at": "2026-07-26T10:20:08-07:00", "image": {"id": 1641186328627, "created_at": "2026-06-29T09:07:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/jolie-madam-wallpaper-xa1-66400-bedroom.jpg?v=1782749222", "alt": "Traditional Durable Vinyl"}, "products_count": 130}, {"id": 94202986561, "title": "Traditional Whimsy", "handle": "traditional-wimsy", "description": "<p>Traditional Whimsy offers a playful counterpoint to formal interiors, reimagining classic motifs with unexpected colorways and scales. This collection features both time-honored damasks and contemporary interpretations on durable Type II grounds suitable for high-traffic areas. Coordinating patterns with straight and half-drop repeats allow designers to create layered, sophisticated schemes within traditional architectural contexts.</p>", "published_at": "2019-01-08T12:44:17-08:00", "updated_at": "2026-07-26T09:23:19-07:00", "image": {"id": 1641186426931, "created_at": "2026-06-29T09:07:07-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_6607d537-ce8d-4467-801c-9f42f7977378.png?v=1782749228", "alt": "Traditional Whimsy"}, "products_count": 350}, {"id": 79913812080, "title": "Traditional Whimsy V.3", "handle": "traditional-whimsy-v-3", "description": "Playful Pugs and Flattering Flamingos", "published_at": "2018-09-29T12:45:14-07:00", "updated_at": "2026-07-15T11:56:50-07:00", "image": {"id": 1641186394163, "created_at": "2026-06-29T09:07:05-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_d1eb5e39-c86a-497d-9d2b-1b294b76ad0a.png?v=1782749226", "alt": "Traditional Whimsy V.3"}, "products_count": 214}, {"id": 298511859763, "title": "Transitional", "handle": "transitional-wallpaper", "description": "<p>This Transitional Wallcovering collection recalls the streamlined geometries of Art Moderne, ideal for cladding sophisticated urban interiors. Our 7751 series features a contract-grade, Type II vinyl substrate with a subtle striae ground across multiple colorways, milled to specification-grade standards and suitable for railroaded applications. With a manageable repeat and clean selvage, each bolt delivers enduring performance and a refined hand, appealing to discerning hospitality and corporate clients.</p>", "published_at": "2026-03-04T23:52:23-08:00", "updated_at": "2026-07-30T08:30:45-07:00", "image": {"id": 1640673607731, "created_at": "2026-03-25T20:09:56-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/million-dollar-mica-chip-wallpaper-mdm-64007-living_room.jpg?v=1776628557", "alt": null}, "products_count": 15447}, {"id": 94340087873, "title": "Trees & Leaves", "handle": "leaves-wallpaper-collection", "description": "<p data-start=\"125\" data-end=\"286\">Nature-inspired wallcovering designs featuring trees, branches, and lush leaves.<br data-start=\"202\" data-end=\"205\">Perfect for serene spaces. Free samples and exclusive designer pricing available.</p>", "published_at": "2019-01-17T02:01:21-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1616285794355, "created_at": "2023-07-19T10:06:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/e272902c4487304d78fbe1d44384775f.jpg?v=1776628350", "alt": null}, "products_count": 1451}, {"id": 79887958128, "title": "Trees and Twigs", "handle": "trees-and-twigs-1", "description": "<p>This collection of \"Trees and Twigs\" offers organic patterns across a range of natural colorways, printed on specification-grade Type II vinyl with a luxurious hand. The designs feature a versatile repeat scale from subtle textures to bold botanicals, some offered railroaded for seamless application. Ideally suited for contract-grade applications, these textural prints bring biophilic design to hospitality, healthcare, and corporate interiors.</p>", "published_at": "2026-03-20T13:16:10-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641186459699, "created_at": "2026-06-29T09:07:09-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_2a0295d6-7d1c-4a94-b80f-73e807aa960b.jpg?v=1782749230", "alt": "Trees and Twigs"}, "products_count": 1279}, {"id": 79880487024, "title": "Trellis", "handle": "trellis", "description": "<p>Trellis offers a diverse selection of patterned wallcoverings, ranging from classic lattices to modern sequined designs. This collection features varying scales, colors, and substrates suitable for a range of interior applications, with careful consideration given to pattern match and repeat. Consider this book for projects requiring durable Type II wallcovering with high visual impact.</p>", "published_at": "2025-02-11T10:46:18-08:00", "updated_at": "2026-07-30T08:30:26-07:00", "image": {"id": 1641186492467, "created_at": "2026-06-29T09:07:10-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21027_interior1_3bf0086b-3e48-4690-967b-67b6239a0bc1.jpg?v=1782749231", "alt": "Trellis"}, "products_count": 4060}, {"id": 299591204915, "title": "Trellis Wallcoverings", "handle": "trellis-wallcoverings", "description": null, "published_at": "2026-04-10T09:25:23-07:00", "updated_at": "2026-07-30T09:05:57-07:00", "image": {"id": 1641186525235, "created_at": "2026-06-29T09:07:12-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/R21027_interior1_f4cdba1c-4e51-400a-a236-ab2e44573fb3.jpg?v=1782749233", "alt": "Trellis Wallcoverings"}, "products_count": 1270}, {"id": 302873149491, "title": "Trending Wallcovering Collection 2026", "handle": "trending-wallpaper-collection-2026", "description": "<p>The most popular and trending wallcovering designs of 2026 \u2014 curated from our newest arrivals.</p>", "published_at": "2026-07-17T09:44:27-07:00", "updated_at": "2026-07-30T08:38:56-07:00", "image": {"id": 1641648816179, "created_at": "2026-07-17T09:44:27-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Crystal-room_bfe1ce17-eca0-41f6-b909-9e526831bc98.jpg?v=1784306668", "alt": null}, "products_count": 2021}, {"id": 301569179699, "title": "Tres Tintas", "handle": "tres-tintas", "description": "<div class=\"vendor-about\">\n<h2>About Tres Tintas Barcelona</h2>\n<p>Founded in 2004 in Barcelona, Spain, Tres Tintas Barcelona grew out of a long family heritage in the wallcovering trade, building on the legacy of the founders' father and the historic Papeles Pintados Aribau workshop. The house was created to transform traditional wallpaper into contemporary design, and from the start it has collaborated with emerging and established Spanish and Latin American talents from the worlds of art, design, and fashion.</p>\n<p>That collaborative spirit defines the collections: original, expressive wallcoverings and murals that range from floral and geometric to abstract, architectural, and avant-garde. Produced in multiple compositions including non-woven grounds, the designs balance artistic character with practical performance, making them at home in both residential interiors and commercial spaces such as hotels, restaurants, and public settings.</p>\n<p class=\"dw-collab\"><em>Tres Tintas Barcelona is available in the United States in collaboration with Designer Wallcoverings.</em></p>\n</div>\n<p>Tres Tintas Barcelona \u2014 Spanish non-woven wallcoverings and wall murals, handcrafted in Spain. Browse the full collection of patterns and colorways.</p>", "published_at": "2026-06-17T14:16:38-07:00", "updated_at": "2026-07-10T08:42:40-07:00", "image": {"id": 1641208971315, "created_at": "2026-07-05T15:24:30-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JO2703-2_interior1_929433a8-ceda-4900-9f7a-3febada8ae89.jpg?v=1783290270", "alt": "Tres Tintas"}, "products_count": 605}, {"id": 298971136051, "title": "Tres Tintas Wallcoverings", "handle": "tres-tintas-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:02-07:00", "updated_at": "2026-07-10T08:42:40-07:00", "image": {"id": 1640671150131, "created_at": "2026-03-25T19:56:11-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/JO1010-3_interior1_688444a1-2650-4870-a13f-784390ed2606.jpg?v=1776627580", "alt": "Tres Tintas Wallcoverings"}, "products_count": 605}, {"id": 79887892592, "title": "Tropical and Leaves", "handle": "tropical-and-leaves", "description": "<p>Tropical and Leaves</p>", "published_at": "2026-03-20T13:16:11-07:00", "updated_at": "2026-07-30T09:05:53-07:00", "image": {"id": 49752375408, "created_at": "2018-09-29T12:10:13-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/acff9cc93051085628f5017bd0bcc15b.jpg?v=1538248213", "alt": null}, "products_count": 5968}, {"id": 93446176833, "title": "Tropical Collections", "handle": "tropical", "description": "<p>Tropical print wallcoverings transport your space to lush, exotic paradises with vibrant foliage, colorful blooms, and exotic wildlife. These wallcoverings often feature lush palm leaves, tropical flowers, and tropical birds, evoking a sense of relaxation and escapism. Whether adorning a beach house, a spa retreat, or a city apartment, tropical print wallcoverings infuse rooms with a sense of tropical flair and natural beauty. With a wide range of color palettes available, from lush greens to bright oranges and blues, these wallcoverings offer flexibility in matching with various decor styles.\u00a0</p>\n<!---->", "published_at": "2018-11-19T23:22:48-08:00", "updated_at": "2026-07-30T09:01:31-07:00", "image": {"id": 1641186590771, "created_at": "2026-06-29T09:07:15-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WW_AmazoniaLIGHT_01_8173073b-4eeb-49a7-a867-c73a92e50276.jpg?v=1782749236", "alt": "Tropical Wallcovering Collections"}, "products_count": 5454}, {"id": 95012945985, "title": "Tropicana Durable Textures", "handle": "tropicana-durable-textures", "description": "<div class=\"flex-1 overflow-hidden\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-79elbk h-full\" data-mce-fragment=\"1\">\n<div class=\"react-scroll-to-bottom--css-ysimd-1n7m0yu\" data-mce-fragment=\"1\">\n<div class=\"flex flex-col text-sm pb-9\" data-mce-fragment=\"1\">\n<div class=\"w-full text-token-text-primary\" data-testid=\"conversation-turn-17\" data-mce-fragment=\"1\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\" data-mce-fragment=\"1\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\" data-mce-fragment=\"1\">\n<div class=\"relative flex w-full flex-col agent-turn\" data-mce-fragment=\"1\">\n<div class=\"flex-col gap-1 md:gap-3\" data-mce-fragment=\"1\">\n<div class=\"flex flex-grow flex-col max-w-full\" data-mce-fragment=\"1\">\n<div data-message-author-role=\"assistant\" data-message-id=\"2073903d-3cfb-4c3b-ae28-8d138e4565ac\" class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-mce-fragment=\"1\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\" data-mce-fragment=\"1\">\n<p data-mce-fragment=\"1\">Immerse yourself in the vibrant allure of paradise with our tropical vinyl wallcovering collection, boasting an explosion of bright colors and exotic motifs. Crafted with the durability and easy maintenance of vinyl, these wallcoverings ensure longevity without compromising on style. Whether adorning a beachfront resort, a lively cafe, or a chic urban loft yearning for a touch of the tropics, this collection brings the essence of island life to any space, infusing it with energy, warmth, and endless possibilities for escape.</p>\n<p data-mce-fragment=\"1\">\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2019-02-21T22:32:41-08:00", "updated_at": "2026-07-12T09:21:34-07:00", "image": {"id": 1640679833651, "created_at": "2026-03-25T20:26:02-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/f9e4d54530a31a9859518f0502ca985a.jpg?v=1776628150", "alt": null}, "products_count": 127}, {"id": 298857496627, "title": "Type 2 Durable", "handle": "type-2-durable", "description": "<p>Type II Durable offers robust performance for high-traffic commercial interiors with a focus on scrubbability and longevity. These vinyl wallcoverings are available in a variety of textures and weights, suitable for demanding applications. Specify from a wide selection of grounds and colorways to meet project requirements.</p>", "published_at": "2026-03-19T05:36:30-07:00", "updated_at": "2026-07-17T04:04:50-07:00", "image": {"id": 1640673673267, "created_at": "2026-03-25T20:10:00-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DE522_4b1880ed-d18c-44b6-9980-876401ddd5d2.jpg?v=1776628164", "alt": null}, "products_count": 28}, {"id": 283366064179, "title": "Type 2 Wallcovering Collection", "handle": "type-2-commercial-wallcovering", "description": "<p><meta charset=\"utf-8\"><span>Type II wallcovering is a commercial-grade wallcovering known for its durability and resistance to wear and tear. It's typically used in high-traffic areas like lobbies, hallways, and hospitals. Type II is generally 20 ounces per 54-inch linear yard and is wider than residential wallcovering, often coming in 30-yard bolts.</span></p>", "published_at": "2024-09-19T09:55:54-07:00", "updated_at": "2026-07-28T16:35:59-07:00", "image": {"id": 1640676917299, "created_at": "2026-03-25T20:18:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/journey-to-eden_1541fbf4-b475-4cb3-b2ec-5526a2f5bea1.jpg?v=1776628248", "alt": null}, "products_count": 6429}, {"id": 93444964417, "title": "Type II Commercial", "handle": "type-2-wallpaper-collection", "description": "<div data-testid=\"conversation-turn-3\" class=\"w-full text-token-text-primary\">\n<div class=\"px-4 py-2 justify-center text-base md:gap-6 m-auto\">\n<div class=\"flex flex-1 text-base mx-auto gap-3 md:px-5 lg:px-1 xl:px-5 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem] group final-completion\">\n<div class=\"relative flex w-full flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex flex-grow flex-col max-w-full\">\n<div class=\"min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto\" data-message-id=\"0020a5ad-5e96-48d8-b177-6768c2a2c906\" data-message-author-role=\"assistant\">\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\n<p>Type II vinyl commercial wallcoverings are a durable and versatile option designed to withstand high-traffic environments while offering aesthetic appeal. Constructed with a vinyl top layer and a sturdy backing, these wallcoverings provide excellent resistance to stains, scratches, and abrasions, making them suitable for areas prone to wear and tear such as hotels, hospitals, and office spaces. With a wide range of designs, colors, and textures available, including embossed patterns and metallic finishes, type II vinyl wallcoverings offer decorators and designers ample creative freedom to enhance interior spaces with style and longevity.</p>\n<p>\u00a0</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>", "published_at": "2018-11-19T21:45:00-08:00", "updated_at": "2026-07-30T08:38:12-07:00", "image": {"id": 1640679735347, "created_at": "2026-03-25T20:25:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/3fa90de5a75173afd6c3b3df45518928_b370a1d7-9aff-455b-b515-3bcc174389e7.jpg?v=1776628327", "alt": null}, "products_count": 9190}, {"id": 298507665459, "title": "Ultrasuede", "handle": "ultrasuede", "description": "<p>Ultrasuede wallcovering offers a tactile suede hand and exceptional durability suitable for high-traffic commercial interiors. This non-woven substrate provides ease of installation and Type II performance, meeting stringent industry standards. Available in a wide color palette, Ultrasuede adds luxurious texture and warmth to any project.</p>", "published_at": "2026-03-04T19:15:25-08:00", "updated_at": "2026-07-24T04:05:18-07:00", "image": {"id": 1640620916787, "created_at": "2026-03-20T13:55:47-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Ultrasuede_DesignerWallcoverings_5538-5709_7e30e7e9-1b33-4e10-a7e9-110f93cdaffc.jpg?v=1776627620", "alt": "Ultrasuede"}, "products_count": 265}, {"id": 283286208563, "title": "Upholstery", "handle": "upholstery-fabrics", "description": "<p><meta charset=\"utf-8\">Discover a curated selection of <em>Upholstery Fabrics</em> designed for luxury and durability, perfect for transforming furniture into works of art. This collection offers rich textures, sumptuous weaves, and a spectrum of colors to suit every high-end interior. From timeless classics to modern statements, these fabrics elevate both residential and commercial spaces with refined elegance. For designers who demand performance and beauty, this collection ensures furniture remains as stunning as the rooms they adorn.</p>", "published_at": "2026-03-20T13:16:13-07:00", "updated_at": "2026-07-28T11:37:29-07:00", "image": {"id": 1640676622387, "created_at": "2026-03-25T20:17:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/2666bc189193c00fd5eb8cdca54b10b3_313e4088-508f-450c-ba82-b8c3d1a30cb9.jpg?v=1776628697", "alt": null}, "products_count": 13379}, {"id": 303052128307, "title": "Vahallan", "handle": "vahallan", "description": "<p>The <strong>Vahallan</strong> collection at Designer Wallcoverings \u2014 to the trade.</p>", "published_at": "2026-07-23T11:59:31-07:00", "updated_at": "2026-07-25T16:30:57-07:00", "image": null, "products_count": 390}, {"id": 298971463731, "title": "Vahallan Wallcoverings", "handle": "vahallan-wallcoverings", "description": null, "published_at": "2026-03-23T19:40:11-07:00", "updated_at": "2026-07-25T16:30:57-07:00", "image": {"id": 1640673738803, "created_at": "2026-03-25T20:10:36-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/unearthed-saluda.jpg?v=1774494637", "alt": null}, "products_count": 390}, {"id": 298513104947, "title": "Vegan Crocodile", "handle": "vegan-crocodile-wallpaper", "description": "<p>Hollywood Wallcoverings presents Vegan Crocodile, an embossed vinyl wallcovering collection offering a luxurious reptile texture without harming animals. These durable, Type II wallcoverings feature a subtle sheen and are suitable for high-traffic areas, available in a range of sophisticated colorways. Consider this collection for a dramatic accent, mindful of the straight match repeat during installation.</p>", "published_at": "2026-03-04T23:53:05-08:00", "updated_at": "2026-07-28T11:36:52-07:00", "image": {"id": 1640619606067, "created_at": "2026-03-20T13:54:44-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/lec-5010-le-embossed-disco_be8e1139-85a7-411f-bed0-3e8734ff2925.jpg?v=1776627998", "alt": "Vegan Crocodile Wallpaper"}, "products_count": 465}, {"id": 298857693235, "title": "Vegan Leathers", "handle": "vegan-leathers", "description": "<p>This collection of high-performance vegan leathers offers a sustainable alternative to traditional hides with exceptional durability. Diverse textures and colorways provide options for specification across hospitality, commercial, and residential interiors requiring a Type II wallcovering. Offered on a non-woven substrate, these materials install with standard adhesives and are available by the bolt.</p>", "published_at": "2026-03-19T05:36:34-07:00", "updated_at": "2026-07-21T17:45:28-07:00", "image": {"id": 1641186689075, "created_at": "2026-06-29T09:07:20-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-hotel_lobby-abilene-21-0_d3e5c57c-19db-4fbd-8bf2-4ede0db75d31.jpg?v=1782749241", "alt": "Vegan Leathers"}, "products_count": 3383}, {"id": 283366654003, "title": "Velvet Upholstery", "handle": "velvet-upholstery", "description": "<p><meta charset=\"utf-8\">Indulge in the ultimate luxury with our <em>Velvet Upholstery Collection</em>. Crafted for comfort and sophistication, this collection features rich, plush textures that transform any space into a haven of elegance. From jewel-toned hues to subtle neutrals, velvet\u2019s opulent softness adds depth, warmth, and a touch of glam to furniture and d\u00e9cor. Perfect for creating statement pieces or cozy corners, these velvets deliver durability and timeless style. Wrap your interiors in pure comfort and unmatched luxury\u2014because some textures never go out of style.</p>", "published_at": "2024-12-18T13:25:17-08:00", "updated_at": "2026-07-28T07:35:08-07:00", "image": {"id": 1641186721843, "created_at": "2026-06-29T09:07:21-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/alexia-art-deco-hotel_room_17648e77-9f3e-4313-af7c-6e530c578d15.png?v=1782749242", "alt": "Velvet Upholstery"}, "products_count": 3104}, {"id": 298970939443, "title": "Versa Designed Surfaces Wallcoverings", "handle": "versa-designed-surfaces-wallcoverings", "description": null, "published_at": "2026-03-23T19:39:57-07:00", "updated_at": "2026-07-16T17:05:33-07:00", "image": {"id": 1640670822451, "created_at": "2026-03-25T19:55:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Avenir_A204-131-Champagne.jpg?v=1774493704", "alt": "Versa Designed Surfaces Wallcoverings"}, "products_count": 173}, {"id": 79911911536, "title": "Versace Wallcovering", "handle": "versace-wallpaper", "description": "<div class=\"dw-aeo-block\" data-aeo=\"versace-wallpaper\">\n<p class=\"dw-aeo-answer\"><strong>Versace wallpaper</strong> is the wallcovering line of the Italian luxury house Gianni Versace S.r.l., translating the maison's signature Baroque motifs \u2014 the Medusa head, the <em>Greca</em> (Greek key) border, gilded scrollwork, and the <em>Barocco</em> damask \u2014 into heavyweight non-woven wall panels. Designer Wallcoverings carries the <strong>Versace Home</strong> wallcovering collection, shipping full rolls and $4.25 memo samples across the United States.</p>\n<h2>Frequently asked questions</h2>\n<details class=\"dw-aeo-faq\"><summary><strong>What is Versace wallpaper?</strong></summary><p>Versace wallpaper is the official wallcovering range of the Italian fashion house Versace, produced under license and sold through specialty design retailers including Designer Wallcoverings. It renders Versace's Baroque design language \u2014 the Medusa emblem, the Greek-key <em>Greca</em> border, and <em>Barocco</em> damask \u2014 as premium non-woven wall panels.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>How much does Versace wallpaper cost?</strong></summary><p>Versace Home wallpaper is a luxury line; pricing is per roll and varies by pattern and colorway. Designer Wallcoverings lists current per-roll pricing on each product page and offers a <strong>$4.25 memo sample</strong> so you can confirm color and scale before ordering full rolls.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Is Versace wallpaper real / authentic?</strong></summary><p>Versace Home wallcovering is produced under official license (manufactured by A.S. Cr\u00e9ation) and carries Versace branding. Designer Wallcoverings carries the Versace Home line as a genuine, licensed product.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>What patterns does Versace wallpaper come in?</strong></summary><p>The most requested designs are the Medusa medallion, the <em>Greca</em> Greek-key border, <em>Barocco</em> baroque damask, the <em>La Coupe des Dieux</em> mythological scenic, and animalier (leopard) prints, in colorways from black-and-gold to ivory and jewel tones.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>How do I hang Versace wallpaper?</strong></summary><p>Most Versace Home rolls are non-woven and paste-the-wall \u2014 you apply adhesive to the wall and hang the dry panel, which makes installation cleaner and future removal easier than traditional paste-the-paper hangings. Order one extra roll for pattern-match waste.</p></details>\n<details class=\"dw-aeo-faq\"><summary><strong>Can I get a sample before I buy?</strong></summary><p>Yes \u2014 Designer Wallcoverings offers a $4.25 memo sample on Versace Home patterns so you can check the true color, sheen, and gilding in your own light before committing to full rolls.</p></details>\n</div>\n<p>The Versace wallcovering line embodies the opulent glamour and lavish extravagance synonymous with the iconic Italian fashion house. Inspired by Versace's bold designs and rich heritage, these wallcoverings feature luxurious materials, intricate patterns, and striking motifs. From Baroque-inspired motifs to Medusa heads and Greek key patterns, Versace wallcoverings exude a sense of grandeur and sophistication, elevating any interior space to new heights of luxury. With their vibrant colors, metallic accents, and sumptuous textures, Versace wallcoverings make a bold statement, infusing rooms with a sense of drama and allure. Renowned for their distinctive style and impeccable quality, the Versace wallcovering line offers a luxurious and prestigious option for those seeking to make a statement in their home decor.</p>", "published_at": "2018-09-29T12:42:27-07:00", "updated_at": "2026-07-26T21:18:46-07:00", "image": {"id": 1640652111923, "created_at": "2026-03-21T17:02:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/VER-43253_3c63761e-b24c-4ef2-807b-f96d55a2cc08.jpg?v=1776628010", "alt": null}, "products_count": 543}, {"id": 298512220211, "title": "Victorian", "handle": "victorian-wallpaper", "description": "<p>The Victorian Wallcovering collection offers decadent flocked velvets and damask patterns evocative of historic interiors. These traditional designs feature intricate details, rich colorways, and substantial weight suitable for upscale residential and hospitality projects. Specified for period restorations or classically-inspired new builds, these wallcoverings provide dimension and depth with their distinctive texture and large-scale repeat.</p>", "published_at": "2026-03-04T23:52:35-08:00", "updated_at": "2026-07-30T08:30:38-07:00", "image": {"id": 1641186754611, "created_at": "2026-06-29T09:07:23-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-living_room-mx9691.jpg?v=1782749244", "alt": "Victorian"}, "products_count": 2719}, {"id": 299486249011, "title": "Villa Nova", "handle": "villa-nova", "description": null, "published_at": "2026-04-07T14:19:33-07:00", "updated_at": "2026-06-16T17:59:48-07:00", "image": {"id": 1640814116915, "created_at": "2026-04-17T06:51:16-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W517-05-Malmo-Wallpaper-Lotus.jpg?v=1776433876", "alt": null}, "products_count": 3}, {"id": 298512384051, "title": "Vine", "handle": "vine-pattern-wallpaper", "description": "<p>Vine Wallcovering offers a range of botanical patterns, from traditional interpretations to large-scale contemporary designs with varying repeats. This collection features diverse substrates, including deeply textured embossed grounds and luxurious flocked finishes for sophisticated residential and commercial applications. Consider coordinating these wallcoverings, noting pattern match options, for impactful feature walls or full room installations.</p>", "published_at": "2026-03-04T23:52:41-08:00", "updated_at": "2026-07-30T08:30:52-07:00", "image": {"id": 1641186787379, "created_at": "2026-06-29T09:07:25-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/7cf22a2d36882db7f6262f05280f884b.jpg?v=1782749245", "alt": "Vine"}, "products_count": 1273}, {"id": 137354936385, "title": "Vintage Reproductions", "handle": "vintage", "description": "<p>Vintage reproduction wallcovering captures the essence of past eras, meticulously recreating designs from the past. These wallcoverings feature authentic patterns such as Victorian florals, Art Deco geometrics, and mid-century modern motifs, bringing a nostalgic charm to contemporary interiors. The color palettes often reflect historical accuracy, with muted tones, sepia hues, and antique shades that enhance the vintage feel. Ideal for restoring period homes or adding a touch of retro elegance to modern spaces, vintage reproduction wallcovering combines historical authenticity with modern printing techniques for durability and ease of installation. This type of wallcovering allows homeowners to celebrate the beauty of bygone days while enjoying the benefits of contemporary materials and craftsmanship.</p>\n<!---->", "published_at": "2024-12-18T18:27:33-08:00", "updated_at": "2026-07-28T16:34:40-07:00", "image": {"id": 1640619114547, "created_at": "2026-03-20T13:53:59-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Dig-540002-roomsetting_62674c3c-b59d-4d36-aa8a-b7a696cbbb51.jpg?v=1774040040", "alt": "Vintage Reproductions"}, "products_count": 197}, {"id": 303023423539, "title": "Vinyl / Type II Wallcoverings", "handle": "material-vinyl-type-ii", "description": "<p>Vinyl / Type II wallcoverings.</p>", "published_at": "2026-07-22T11:56:39-07:00", "updated_at": "2026-07-22T13:25:05-07:00", "image": null, "products_count": 253}, {"id": 299114397747, "title": "Vinyl Type II", "handle": "vinyl-type-ii", "description": null, "published_at": "2026-03-26T09:40:19-07:00", "updated_at": "2026-07-24T07:32:07-07:00", "image": {"id": 1640813297715, "created_at": "2026-04-17T06:50:03-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/XHW-2010220-sample-clean.jpg?v=1776628781", "alt": null}, "products_count": 83}, {"id": 79888580720, "title": "Wall Murals for Kids", "handle": "wall-murals-for-kids", "description": "<p>Our Wall Murals for Kids collection features whimsical patterns, ranging from large-scale geometrics to smaller, detailed illustrations. This contract-grade, Type II vinyl showcases a diverse repeat range, with select colorways available railroaded on a non-woven substrate. Ideal for pediatric healthcare environments and educational facilities, these durable wallcoverings offer a playful yet specification-grade solution.</p>", "published_at": "2018-12-20T11:49:32-08:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641186852915, "created_at": "2026-06-29T09:07:28-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_bbdd5daa-7801-47da-933c-0073f4c89f6b.jpg?v=1782749248", "alt": "Wall Murals for Kids"}, "products_count": 1278}, {"id": 79890481264, "title": "Wall Murals on Demand", "handle": "wall-murals-on-demand", "description": "Wall Murals on Demand", "published_at": "2018-09-29T12:13:28-07:00", "updated_at": "2026-07-30T04:05:04-07:00", "image": {"id": 1641186885683, "created_at": "2026-06-29T09:07:29-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/W6011_Aria_Install_0_90502dfe-46e7-41f4-8476-22d9614e32f0.jpg?v=1782749250", "alt": "Wall Murals on Demand"}, "products_count": 1271}, {"id": 298971430963, "title": "Wallcovering NYC", "handle": "wallpaper-nyc", "description": null, "published_at": "2026-03-23T19:40:10-07:00", "updated_at": "2026-07-07T09:35:58-07:00", "image": {"id": 1640679178291, "created_at": "2026-03-25T20:23:53-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/efd9459de110c2527c3bbde19c7329fb.jpg?v=1774495433", "alt": null}, "products_count": 91}, {"id": 298885480499, "title": "Warm Taupe", "handle": "warm-taupe", "description": "<p>The workhorse neutral \u2014 warm enough to avoid institutional coldness, restrained enough to disappear behind furnishings. Taupe and greige grounds in grasscloth, linen, and Type II vinyl form the backbone of high-end residential and boutique hospitality programs. Layer with matte black hardware and bleached oak for a collected, understated palette.</p>", "published_at": "2026-03-20T13:08:50-07:00", "updated_at": "2026-07-30T08:31:20-07:00", "image": {"id": 1640615772211, "created_at": "2026-03-20T13:45:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/bronzeoil2.jpg?v=1776628553", "alt": "Warm Taupe"}, "products_count": 25608}, {"id": 298885873715, "title": "Warm Whites & Ivory", "handle": "warm-whites-ivory-1", "description": "<p>A foundational palette of warm whites, ivories, and creams that provides the quietest possible backdrop while still carrying visual warmth. These tones register as neutral without reading cold or clinical, making them the most versatile choice for layered residential schemes. Ideal for primary living spaces where furnishings and art carry the design weight.</p>", "published_at": "2026-03-20T13:10:08-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186918451, "created_at": "2026-06-29T09:07:31-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/0c80907b3cadba1b1180c2caf7c0a89d_fbf7f041-02c7-4279-81ac-4bc1c358aaf4.jpg?v=1782749252", "alt": "Warm Whites & Ivory"}, "products_count": 45994}, {"id": 79908208752, "title": "Whimsical Traditional", "handle": "whimsical-traditional", "description": "Whimsical Traditional Walls", "published_at": "2018-09-29T12:36:23-07:00", "updated_at": "2026-07-26T09:23:19-07:00", "image": {"id": 1641186951219, "created_at": "2026-06-29T09:07:32-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/room-setting_6fd486f0-3fbf-4305-a9d6-4b01b61a0297.png?v=1782749253", "alt": "Whimsical Traditional"}, "products_count": 267}, {"id": 303036956723, "title": "Whimsical Wallcoverings", "handle": "whimsical-wallcoverings", "description": "<p>Our original Whimsical Wallcoverings collection \u2014 playful, maximalist patterns designed in-house by DW Bespoke Studio and digitally printed to order with a 24\" x 25\" repeat. Tigers among stars, robot parades, mushroom skylines, dinosaur empires and more.</p>", "published_at": "2026-07-22T21:05:44-07:00", "updated_at": "2026-07-23T12:15:20-07:00", "image": null, "products_count": 21}, {"id": 299059347507, "title": "White Collection", "handle": "white-wallpaper-collection", "description": null, "published_at": "2026-03-25T13:03:56-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641186983987, "created_at": "2026-06-29T09:07:34-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_783f1fa8-7165-4014-9a5d-b53fe5d6ff67.jpg?v=1782749255", "alt": "White Wallcovering Collection"}, "products_count": 35149}, {"id": 299574296627, "title": "White Wallcoverings", "handle": "white-wallcoverings", "description": "<p>White wallcoverings \u2014 for light, gallery-clean walls. Designer Wallcoverings curates white wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of white. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:27-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641187016755, "created_at": "2026-06-29T09:07:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/c03ed25bd30fec0d8967368b396a7c08_e66be482-9476-4659-9d7d-48dd8cd9482c.jpg?v=1782749256", "alt": "White Wallcoverings"}, "products_count": 34531}, {"id": 298507698227, "title": "William Morris", "handle": "william-morris-1", "description": "<p>William Morris wallcoverings offer iconic patterns printed on durable grounds, ideal for heritage projects. Known for intricate florals and nature-inspired designs, these selections present multiple colorways for diverse interiors. Specified by the bolt, these wallcoverings provide timeless sophistication for discerning clients.</p>", "published_at": "2026-03-04T19:15:26-08:00", "updated_at": "2026-07-21T04:05:36-07:00", "image": {"id": 1641187082291, "created_at": "2026-06-29T09:07:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/DWWM-14011-living_room-8ft.png?v=1782749259", "alt": "William Morris"}, "products_count": 583}, {"id": 298505928755, "title": "Wolf Gordon", "handle": "wolf-gordon", "description": "<p>Wolf Gordon wallcoverings offer high-performance solutions known for their rigorous Type II durability and innovative textures. This comprehensive collection features a wide range of grounds, from natural fibers to vinyl, suitable for high-traffic commercial interiors. Specify Wolf Gordon for dependable quality, diverse colorways, and ease of installation, all backed by a legacy of American mill expertise.</p>", "published_at": "2026-03-04T19:13:38-08:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1641187115059, "created_at": "2026-06-29T09:07:40-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/wg_wall_ffa485a1-4fd2-4586-ac92-23968e68317a.jpg?v=1782749261", "alt": "Wolf Gordon"}, "products_count": 1527}, {"id": 299575771187, "title": "Wolf Gordon Wallcoverings", "handle": "wolf-gordon-wallcoverings", "description": null, "published_at": "2026-04-09T21:34:25-07:00", "updated_at": "2026-07-25T04:05:26-07:00", "image": {"id": 1640814411827, "created_at": "2026-04-17T06:51:39-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/WolfGordonWallcovering_DWWG_st11387.jpg?v=1776433899", "alt": null}, "products_count": 1527}, {"id": 303023783987, "title": "Wood Veneer Wallcoverings", "handle": "material-wood-veneer", "description": "<p>Wood Veneer wallcoverings.</p>", "published_at": "2026-07-22T11:56:49-07:00", "updated_at": "2026-07-30T08:09:36-07:00", "image": null, "products_count": 300}, {"id": 283180367923, "title": "Yellow Collection", "handle": "yellow-wallpaper-collection", "description": "<p><strong>Why Use Yellow and Gold in Home D\u00e9cor?</strong></p>\n<p>Yellow and gold are radiant, uplifting colors that bring warmth, energy, and a touch of luxury to any space. Here's why they are top choices for home d\u00e9cor:</p>\n<h3>1. <strong>Creates a Warm and Inviting Atmosphere</strong>\n</h3>\n<p>Both yellow and gold exude warmth, making them ideal for spaces meant to feel cozy and welcoming, such as living rooms, kitchens, or dining areas. They naturally evoke feelings of happiness and comfort.</p>\n<h3>2. <strong>Boosts Energy and Optimism</strong>\n</h3>\n<p>Yellow is often associated with sunshine and positivity, bringing a burst of energy and cheerfulness to a room. It\u2019s great for energizing spaces like home offices, entryways, or playrooms.</p>", "published_at": "2024-09-12T22:24:21-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641187213363, "created_at": "2026-06-29T09:07:45-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b.jpg?v=1782749266", "alt": "Yellow Wallcovering Collection"}, "products_count": 19782}, {"id": 299574526003, "title": "Yellow Wallcoverings", "handle": "yellow-wallcoverings", "description": "<p>Yellow wallcoverings \u2014 sunlit and optimistic. Designer Wallcoverings curates yellow wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of yellow. Order memo samples online; available to the trade and retail.</p>", "published_at": "2026-04-09T21:02:34-07:00", "updated_at": "2026-07-30T08:31:24-07:00", "image": {"id": 1641187180595, "created_at": "2026-06-29T09:07:43-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/6f1e60372529a3985ca5d7664e91f08b_569c4908-01f9-4d3a-923a-97b3c4e7ceae.jpg?v=1782749264", "alt": "Yellow Wallcoverings"}, "products_count": 12798}, {"id": 272039182387, "title": "Zeuxis Parrhasius Wallcovering Collection", "handle": "zeuxis-parrhasius-wallpaper-collection", "description": "<p>\u00a0</p>\n<p data-mce-fragment=\"1\">Verena and Adrian Baron, whose educational backgrounds lie in art history and finance, established our studio which specialises in the design and crafting of unique wallcoverings.</p>\n<p data-mce-fragment=\"1\">Located on the green outskirts of Vienna, all our wallcoverings are screen printed by hand using the time-honoured skills of that craft. In an age of machine-made and mass-produced goods, we rely on individual artistry combined with traditional handcraft.We place great value in the honesty of our profession and the excellence of our creations.</p>\n<p data-mce-fragment=\"1\">There is an integrity that comes from linking design and craftsmanship and creating things by hand with the utmost care. We see our wallcoverings as works of art, and this is something genuine that we offer.<br data-mce-fragment=\"1\"></p>", "published_at": "2023-07-04T19:57:18-07:00", "updated_at": "2026-07-16T11:06:46-07:00", "image": {"id": 1640657092659, "created_at": "2026-03-22T11:01:35-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/Screenshot2024-05-22at8.44.21AM.png?v=1776627893", "alt": null}, "products_count": 32}, {"id": 298270818355, "title": "Zoffany", "handle": "zoffany-wallcoverings", "description": "<p>Zoffany wallcoverings offer sophisticated designs printed at their historic UK mill. Known for luxurious textures and rich colorways, the collection features both traditional and contemporary patterns. Specified by designers globally, Zoffany provides exceptional quality and enduring style for high-end residential and hospitality projects.</p>", "published_at": "2026-02-25T08:57:05-08:00", "updated_at": "2026-07-11T04:06:43-07:00", "image": {"id": 1640620654643, "created_at": "2026-03-20T13:55:38-07:00", "src": "https://cdn.shopify.com/s/files/1/0015/4117/7456/collections/ZTOT312732_2_ZOW0072_02_ZOFFANY_Wray_WALLPAPER_a040_c843a96c-7eaa-4e07-9bdd-e0ab70c131db.jpg?v=1776627528", "alt": "Zoffany"}, "products_count": 367}]
\ No newline at end of file
(oldest)
·
back to Dw Collection Banner Audit
·
dry-run proposal: 210/256 auto-fixable banners, 38 need manu e035ef3 →