← back to Fabricwallpaper
initial scaffold (gitify-all 2026-05-06)
289ccd9bd32a2b43ed190326e490ee806ea795fb · 2026-05-06 10:25:18 -0700 · Steve Abrams
Files touched
A .gitignoreA _universal-auth.jsA _universal-contact.jsA data/products.jsonA package-lock.jsonA package.jsonA public/favicon.svgA public/hero-bg.jpgA public/index.htmlA server.jsA site.config.json
Diff
commit 289ccd9bd32a2b43ed190326e490ee806ea795fb
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:18 2026 -0700
initial scaffold (gitify-all 2026-05-06)
---
.gitignore | 12 +
_universal-auth.js | 296 ++
_universal-contact.js | Bin 0 -> 15049 bytes
data/products.json | 13900 ++++++++++++++++++++++++++++++++++++++++++++++++
package-lock.json | 852 +++
package.json | 13 +
public/favicon.svg | 4 +
public/hero-bg.jpg | Bin 0 -> 514930 bytes
public/index.html | 613 +++
server.js | 110 +
site.config.json | 21 +
11 files changed, 15821 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7e6a9c3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+node_modules/
+.env
+.env.local
+.env.*.local
+.env.*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+*.bak
diff --git a/_universal-auth.js b/_universal-auth.js
new file mode 100644
index 0000000..02bc9fb
--- /dev/null
+++ b/_universal-auth.js
@@ -0,0 +1,296 @@
+// DW family universal auth — drop-in for any sister site's server.js.
+// Mount BEFORE static. Provides:
+// /admin → Basic Auth (admin / DWSecure2024! via env ADMIN_PASS) → leads dashboard
+// /admin/leads.json → JSON dump of leads.jsonl (admin only)
+// /admin/stats.json → counts + recent activity
+// POST /account/register {name,email,password} → cookie session
+// POST /account/login {email,password} → cookie session
+// POST /account/logout
+// GET /account/me → {user, samples:[]} for logged-in user
+// POST /account/favorites {sku,title,image_url, action:'add'|'remove'}
+// GET /account → HTML dashboard
+//
+// Storage: data/users.json (single file per site, fail-soft like leads.jsonl).
+// Sessions: httpOnly cookie sid → user.id mapping in memory + persisted in users.json.
+// Passwords: scrypt (Node built-in, no npm install).
+//
+// Per Steve's standing rules:
+// - Lightweight, no email verify, no password reset (manual ask)
+// - Per-site users.json (each site is its own marketing surface)
+// - admin/DWSecure2024! same across all sites (matches DW-Agents pattern)
+
+const fs = require('fs');
+const path = require('path');
+const crypto = require('crypto');
+
+module.exports = function (app, opts) {
+ opts = opts || {};
+ const SITE = opts.siteName || 'DW Family';
+ const ADMIN_USER = process.env.ADMIN_USER || 'admin';
+ const ADMIN_PASS = process.env.ADMIN_PASS || '';
+ if (!ADMIN_PASS) {
+ if (process.env.NODE_ENV === 'production') {
+ throw new Error('[auth] ADMIN_PASS env required in production — set via /root/.dw-fleet.env (sourced by pm2 ecosystem)');
+ }
+ console.warn('[auth] ADMIN_PASS not set — /admin will return 401 to all requests');
+ }
+ const COOKIE_NAME = 'dw_sid';
+ const SESSION_TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
+
+ const DATA_DIR = path.join(__dirname, 'data');
+ const USERS_FILE = path.join(DATA_DIR, 'users.json');
+ const LEADS_FILE = path.join(DATA_DIR, 'leads.jsonl');
+ try { fs.mkdirSync(DATA_DIR, { recursive: true }); } catch (e) {}
+
+ // ─── storage ──────────────────────────────────────────────────────────────
+ let store = { users: [], sessions: {} }; // {sessions: {sid: {userId, expires}}}
+ try { if (fs.existsSync(USERS_FILE)) store = JSON.parse(fs.readFileSync(USERS_FILE, 'utf8')); } catch (e) { console.warn('[auth] users.json parse failed; starting fresh'); }
+ if (!store.users) store.users = [];
+ if (!store.sessions) store.sessions = {};
+
+ let writeQ = null;
+ function persist() {
+ if (writeQ) return;
+ writeQ = setTimeout(() => { writeQ = null; try { fs.writeFileSync(USERS_FILE + '.tmp', JSON.stringify(store, null, 2)); fs.renameSync(USERS_FILE + '.tmp', USERS_FILE); } catch (e) { console.error('[auth] persist failed:', e.message); } }, 200);
+ }
+
+ // ─── password hashing ─────────────────────────────────────────────────────
+ function hashPassword(pw) {
+ const salt = crypto.randomBytes(16).toString('hex');
+ const hash = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return `scrypt$${salt}$${hash}`;
+ }
+ function verifyPassword(pw, stored) {
+ try {
+ const [scheme, salt, hash] = stored.split('$');
+ if (scheme !== 'scrypt') return false;
+ const test = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return crypto.timingSafeEqual(Buffer.from(hash, 'hex'), Buffer.from(test, 'hex'));
+ } catch (e) { return false; }
+ }
+
+ // ─── helpers ──────────────────────────────────────────────────────────────
+ const EMAIL_RE = /^[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}$/;
+ function clean(s, max) { return s == null ? '' : String(s).replace(/[\r\n\t\v\f ]+/g, ' ').trim().slice(0, max); }
+ function parseCookies(req) { const out = {}; const h = req.headers.cookie || ''; for (const part of h.split(';')) { const [k, v] = part.trim().split('='); if (k) out[k] = decodeURIComponent(v || ''); } return out; }
+ function setCookie(res, name, value, opts = {}) {
+ const parts = [`${name}=${encodeURIComponent(value)}`, `Path=${opts.path || '/'}`, 'HttpOnly', 'SameSite=Lax'];
+ if (opts.secure) parts.push('Secure');
+ if (opts.maxAge) parts.push(`Max-Age=${Math.floor(opts.maxAge / 1000)}`);
+ if (opts.expires) parts.push(`Expires=${opts.expires.toUTCString()}`);
+ res.setHeader('Set-Cookie', parts.join('; '));
+ }
+ function basicAuthOK(req) {
+ if (!ADMIN_PASS) return false; // no admin pass configured → refuse all
+ const h = req.headers.authorization || '';
+ if (!h.startsWith('Basic ')) return false;
+ try {
+ const [u, p] = Buffer.from(h.slice(6), 'base64').toString().split(':');
+ if (u !== ADMIN_USER) return false;
+ const a = Buffer.from(String(p || ''));
+ const b = Buffer.from(ADMIN_PASS);
+ return a.length === b.length && crypto.timingSafeEqual(a, b);
+ } catch (e) { return false; }
+ }
+ function requireAdmin(req, res, next) {
+ if (!basicAuthOK(req)) { res.setHeader('WWW-Authenticate', `Basic realm="${SITE} Admin"`); return res.status(401).send('admin auth required'); }
+ next();
+ }
+ function userFromReq(req) {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (!sid) return null;
+ const sess = store.sessions[sid];
+ if (!sess || sess.expires < Date.now()) { if (sess) delete store.sessions[sid]; return null; }
+ return store.users.find(u => u.id === sess.userId) || null;
+ }
+ function startSession(res, user) {
+ const sid = crypto.randomBytes(24).toString('base64url');
+ store.sessions[sid] = { userId: user.id, expires: Date.now() + SESSION_TTL_MS };
+ persist();
+ const isHttps = (process.env.HTTPS || '').toLowerCase() === 'true' || process.env.NODE_ENV === 'production';
+ setCookie(res, COOKIE_NAME, sid, { maxAge: SESSION_TTL_MS, secure: isHttps });
+ }
+ function readLeads() {
+ if (!fs.existsSync(LEADS_FILE)) return [];
+ try { return fs.readFileSync(LEADS_FILE, 'utf8').trim().split('\n').filter(Boolean).map(l => { try { return JSON.parse(l); } catch (e) { return null; } }).filter(Boolean); } catch (e) { return []; }
+ }
+
+ // ─── /account/register ────────────────────────────────────────────────────
+ app.post('/account/register', (req, res) => {
+ const b = req.body || {};
+ const name = clean(b.name, 200);
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ if (!name || !EMAIL_RE.test(email) || password.length < 8) return res.status(400).json({ error: 'name, valid email, and 8-char password required' });
+ if (store.users.find(u => u.email === email)) return res.status(409).json({ error: 'email already registered' });
+ const user = { id: crypto.randomBytes(8).toString('hex'), name, email, pwd: hashPassword(password), createdAt: new Date().toISOString(), favorites: [] };
+ store.users.push(user); persist();
+ startSession(res, user);
+ res.json({ ok: true, user: { id: user.id, name: user.name, email: user.email } });
+ });
+
+ // Constant-cost dummy hash so login timing doesn't reveal whether email exists
+ const DUMMY_HASH = `scrypt$${crypto.randomBytes(16).toString('hex')}$${crypto.scryptSync('does-not-match', 'dummy-salt', 64).toString('hex')}`;
+
+ // ─── /account/login ───────────────────────────────────────────────────────
+ app.post('/account/login', (req, res) => {
+ const b = req.body || {};
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ const u = store.users.find(x => x.email === email);
+ // Always compute scrypt to keep timing constant whether user exists or not
+ const valid = verifyPassword(password, u ? u.pwd : DUMMY_HASH);
+ if (!u || !valid) return res.status(401).json({ error: 'invalid email or password' });
+ startSession(res, u);
+ res.json({ ok: true, user: { id: u.id, name: u.name, email: u.email } });
+ });
+
+ // ─── /account/logout ──────────────────────────────────────────────────────
+ app.post('/account/logout', (req, res) => {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (sid && store.sessions[sid]) { delete store.sessions[sid]; persist(); }
+ setCookie(res, COOKIE_NAME, '', { maxAge: 0 });
+ res.json({ ok: true });
+ });
+
+ // ─── /account/me ──────────────────────────────────────────────────────────
+ app.get('/account/me', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const samples = readLeads().filter(l => (l.email || '').toLowerCase() === u.email);
+ res.json({ user: { id: u.id, name: u.name, email: u.email, createdAt: u.createdAt }, favorites: u.favorites || [], samples });
+ });
+
+ // ─── /account/favorites ───────────────────────────────────────────────────
+ app.post('/account/favorites', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const b = req.body || {};
+ const action = b.action === 'remove' ? 'remove' : 'add';
+ const sku = clean(b.sku, 200);
+ if (!sku) return res.status(400).json({ error: 'sku required' });
+ u.favorites = u.favorites || [];
+ if (action === 'add') {
+ if (!u.favorites.find(f => f.sku === sku)) {
+ u.favorites.push({ sku, title: clean(b.title, 400), image_url: clean(b.image_url, 600), addedAt: new Date().toISOString() });
+ }
+ } else {
+ u.favorites = u.favorites.filter(f => f.sku !== sku);
+ }
+ persist();
+ res.json({ ok: true, favorites: u.favorites });
+ });
+
+ // ─── /account (HTML dashboard) ────────────────────────────────────────────
+ app.get('/account', (req, res) => {
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>Account · ${SITE}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/styles.css" onerror="this.remove()">
+<style>
+body{font-family:-apple-system,sans-serif;max-width:680px;margin:80px auto;padding:24px;color:#222;background:#fafaf6}
+h1{font-size:32px;font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.card{background:#fff;padding:32px;border:1px solid #e5dfd0;margin-bottom:18px}
+input,button{font:inherit;padding:11px 14px;width:100%;box-sizing:border-box;margin:6px 0;border:1px solid #d0c9b8;background:#fff}
+button{background:#1b1814;color:#fafaf6;cursor:pointer;border:0;letter-spacing:0.18em;text-transform:uppercase;font-size:11px;padding:14px;margin-top:14px}
+button:hover{background:#3a342a}
+.tab{display:inline-block;padding:11px 20px;cursor:pointer;border:0;background:transparent;font-size:11px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+.tab.active{color:#1b1814;border-bottom:2px solid #1b1814}
+.row{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid #e5dfd0;align-items:center}
+.row img{width:50px;height:50px;object-fit:cover}
+.muted{color:#888;font-size:13px}
+.err{color:#a33d3d;font-size:13px;margin:6px 0}
+[hidden]{display:none}
+</style></head>
+<body>
+<h1>${SITE} · Account</h1>
+<div id="anon">
+ <div class="card">
+ <div><button class="tab active" data-pane="login">Sign In</button><button class="tab" data-pane="register">Create Account</button></div>
+ <div id="login">
+ <input id="le" type="email" placeholder="email" autocomplete="email">
+ <input id="lp" type="password" placeholder="password" autocomplete="current-password">
+ <div id="lerr" class="err"></div>
+ <button onclick="doLogin()">Sign In</button>
+ </div>
+ <div id="register" hidden>
+ <input id="rn" placeholder="name">
+ <input id="re" type="email" placeholder="email" autocomplete="email">
+ <input id="rp" type="password" placeholder="password (min 8)" autocomplete="new-password">
+ <div id="rerr" class="err"></div>
+ <button onclick="doRegister()">Create Account</button>
+ </div>
+ </div>
+</div>
+<div id="auth" hidden>
+ <div class="card">
+ <h2 id="hname" style="font-weight:300"></h2>
+ <p class="muted" id="hemail"></p>
+ <p class="muted" style="margin-top:14px">Member since <span id="hsince"></span></p>
+ <button onclick="logout()" style="margin-top:18px;background:transparent;color:#888;border:1px solid #d0c9b8">Sign Out</button>
+ </div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Saved Patterns</h3><div id="favs"><p class="muted">No favorites yet — heart any pattern in the catalog.</p></div></div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Sample Requests</h3><div id="samples"><p class="muted">No samples yet.</p></div></div>
+</div>
+<script>
+document.querySelectorAll('.tab').forEach(t=>t.onclick=()=>{document.querySelectorAll('.tab').forEach(x=>x.classList.toggle('active',x===t));['login','register'].forEach(id=>document.getElementById(id).hidden=(id!==t.dataset.pane))});
+async function api(path, body){ const r=await fetch(path,{method:'POST',headers:{'Content-Type':'application/json'},credentials:'include',body:body?JSON.stringify(body):undefined}); const j=await r.json().catch(()=>({}));return {ok:r.ok,j}; }
+async function doLogin(){const r=await api('/account/login',{email:le.value,password:lp.value});if(r.ok)render();else lerr.textContent=r.j.error||'login failed'}
+async function doRegister(){const r=await api('/account/register',{name:rn.value,email:re.value,password:rp.value});if(r.ok)render();else rerr.textContent=r.j.error||'register failed'}
+async function logout(){await api('/account/logout');location.reload()}
+function fmt(d){return new Date(d).toLocaleDateString('en-US',{month:'long',year:'numeric'})}
+async function render(){
+ const r=await fetch('/account/me',{credentials:'include'});
+ if(!r.ok){anon.hidden=false;auth.hidden=true;return}
+ const d=await r.json();anon.hidden=true;auth.hidden=false;
+ hname.textContent=d.user.name;hemail.textContent=d.user.email;hsince.textContent=fmt(d.user.createdAt);
+ if(d.favorites?.length){favs.innerHTML=d.favorites.map(f=>{const e=s=>String(s||'').replace(/[<>&"']/g,c=>({'<':'<','>':'>','&':'&','"':'"',"'":'''}[c]));const u=String(f.image_url||'');const safeUrl=/^https:\/\/(cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u)?u:'';return '<div class="row"><img src="'+e(safeUrl)+'" alt=""><div><div>'+e(f.title||f.sku)+'</div><div class="muted">'+e(f.sku)+'</div></div></div>'}).join('')}
+ if(d.samples?.length){samples.innerHTML=d.samples.map(s=>'<div class="row"><div><div>'+(s.title||s.sku||'sample')+'</div><div class="muted">'+(new Date(s.ts).toLocaleDateString())+'</div></div></div>').join('')}
+}
+render();
+</script></body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ // ─── /admin (Basic Auth) ──────────────────────────────────────────────────
+ app.get('/admin', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ const recent = leads.slice(-25).reverse();
+ const stats = { totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, kinds: {} };
+ for (const l of leads) stats.kinds[l.kind] = (stats.kinds[l.kind] || 0) + 1;
+ const recentRows = recent.map(l => `<tr><td>${new Date(l.ts).toLocaleString()}</td><td>${l.kind}</td><td>${(l.name || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.email || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.title || l.projectName || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td></tr>`).join('');
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>${SITE} Admin</title>
+<style>body{font-family:-apple-system,sans-serif;background:#0e0e0e;color:#eee;margin:0;padding:32px;font-size:14px}
+h1{font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.kpi{display:flex;gap:18px;margin-bottom:32px;flex-wrap:wrap}
+.kpi div{background:#1a1a1a;padding:18px 24px;border:1px solid #333;flex:1;min-width:160px}
+.kpi .n{font-size:32px;font-weight:300;color:#eee}
+.kpi .l{font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:#888;margin-top:6px}
+table{width:100%;border-collapse:collapse;background:#1a1a1a;border:1px solid #333}
+th,td{padding:10px 14px;text-align:left;border-bottom:1px solid #2a2a2a;font-size:13px}
+th{background:#222;font-size:10px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+td{color:#ddd}
+small{color:#666}</style></head>
+<body>
+<h1>${SITE} · Admin</h1>
+<div class="kpi">
+ <div><div class="n">${stats.totalLeads}</div><div class="l">Total Leads</div></div>
+ <div><div class="n">${stats.totalUsers}</div><div class="l">Registered Users</div></div>
+ <div><div class="n">${stats.sessionsActive}</div><div class="l">Active Sessions</div></div>
+ <div><div class="n">${stats.kinds.inquiry || 0}</div><div class="l">Inquiries</div></div>
+ <div><div class="n">${stats.kinds.sample || 0}</div><div class="l">Sample Requests</div></div>
+</div>
+<h2 style="font-weight:300;margin:24px 0 12px">Recent Activity (last 25)</h2>
+<table><thead><tr><th>Time</th><th>Kind</th><th>Name</th><th>Email</th><th>Pattern / Project</th></tr></thead><tbody>${recentRows || '<tr><td colspan="5" style="text-align:center;color:#666;padding:24px">no leads yet</td></tr>'}</tbody></table>
+<p style="margin-top:24px"><small><a href="/admin/leads.json" style="color:#888">leads.json</a> · <a href="/admin/stats.json" style="color:#888">stats.json</a> · <a href="/" style="color:#888">site →</a></small></p>
+</body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ app.get('/admin/leads.json', requireAdmin, (req, res) => res.json(readLeads()));
+ app.get('/admin/stats.json', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ res.json({ totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, recent: leads.slice(-10).reverse() });
+ });
+};
diff --git a/_universal-contact.js b/_universal-contact.js
new file mode 100644
index 0000000..194e04f
Binary files /dev/null and b/_universal-contact.js differ
diff --git a/data/products.json b/data/products.json
new file mode 100644
index 0000000..4af094b
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,13900 @@
+[
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010235",
+ "handle": "hollywood-atelier-woven-xhw-2010235",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010235-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775716985",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010235"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-blue_bellini.jpg?v=1777480710",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Navy",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-432",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-432",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7c8272a092a426e603f26afa8d779efa_502e5c33-5e8e-417d-b3cf-52952008b997.jpg?v=1745458266",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-432"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73037",
+ "handle": "benedict-canyon-sisal-hlw-73037",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73037-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703758",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Sage Green",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73037"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47472",
+ "handle": "crosby-acoustical-wallcovering-xkl-47472",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91477928ca30ee461e01e1a2b06f406b.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crosby Acoustical Wallcovering",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Maroon",
+ "Polyester",
+ "Red",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47472"
+ },
+ {
+ "sku": "narcisse-noir-wallpaper-xa7-66460",
+ "handle": "narcisse-noir-wallpaper-xa7-66460",
+ "title": "Narcisse Noir Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bb92b9bf2a9e494c5e96cb4a6e51f891.jpg?v=1775123865",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "calcium carbonate/pulp",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Gray",
+ "Fabric",
+ "Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Narcisse Noir Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 49.3,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66460"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66446",
+ "handle": "caron-tabac-wallpaper-xa6-66446",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/97b6595da9e3124a692973c79d656ff9.jpg?v=1775121570",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Fabric",
+ "Living Room",
+ "Neutral",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66446"
+ },
+ {
+ "sku": "dwkk-140159",
+ "handle": "dwkk-140159",
+ "title": "Abingdon Wp - Sage Green By Lee Jofa | Blithfield |Global Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3530_30_d919c26e-9281-4762-8bbf-c3e26c346f2d.jpg?v=1753291845",
+ "tags": [
+ "27.5In",
+ "Abingdon Wp",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "display_variant",
+ "Fabric",
+ "Geometric",
+ "Global",
+ "Green",
+ "Lee Jofa",
+ "Luxury",
+ "Pbfc-3530.30.0",
+ "Print",
+ "Sage Green",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140159"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010237",
+ "handle": "hollywood-atelier-woven-xhw-2010237",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010237-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775717001",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010237"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58162-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725617",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Off-white",
+ "Organic Modern",
+ "Pale Blue",
+ "Pale Grey",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58162"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+ "title": "Sparta - Raw Linen | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5304.jpg?v=1762309207",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Lattice",
+ "RAMPART®",
+ "Raw Linen",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5304-jpg"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58137",
+ "handle": "jutely-vinyl-dwx-58137",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58137-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720483",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Sage Green",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58137"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-110-deep-gold-fgb-110",
+ "handle": "faux-glass-bead-wallpaper-110-deep-gold-fgb-110",
+ "title": "Faux Glass Bead Wallpaper - 110 Deep Gold",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-110-sample-faux-glass-bead-wallpaper.jpg?v=1775711848",
+ "tags": [
+ "110 Deep Gold",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bling",
+ "Commercial",
+ "Fabric",
+ "Faux Finish",
+ "Glass Bead",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-110-deep-gold-fgb-110"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-bronze_age.jpg?v=1777480703",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5029-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5029-jpg",
+ "title": "Sparta - Alizarin | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5029.jpg?v=1762308400",
+ "tags": [
+ "100% Vinyl",
+ "Alizarin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "RAMPART®",
+ "Sparta",
+ "Terracotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5029-jpg"
+ },
+ {
+ "sku": "moroccan-cream-basketweave-wbs-39658",
+ "handle": "moroccan-cream-basketweave-wbs-39658",
+ "title": "Moroccan Cream Basketweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39658-sample-moroccan-cream-basketweave-hollywood-wallcoverings.jpg?v=1775726481",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Wallcoverings",
+ "Warm",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-cream-basketweave-wbs-39658"
+ },
+ {
+ "sku": "wtw0430fire",
+ "handle": "wtw0430fire",
+ "title": "Fire Island Grass - Saffron | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0430FIRE.jpg?v=1745346316",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Farmhouse",
+ "FIRE ISLAND GRASS",
+ "Fire Island Grass - Saffron Wallcovering",
+ "Grasscloth",
+ "Light Brown",
+ "Scalamandre Wallcovering",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0430fire"
+ },
+ {
+ "sku": "nassau-gold-latte",
+ "handle": "nassau-gold-latte",
+ "title": "Nappa - Metallic - Latte 100% SIlicone | Philippe Romano Wallcoverings",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Latte.jpg?v=1772569957",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bleach Cleanable",
+ "Brown",
+ "BS 5852 Crib 5",
+ "CA TB 117 Compliant",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract Grade",
+ "DMF-Free",
+ "Fabric",
+ "Fine",
+ "Fine Grain",
+ "FR Additives Free",
+ "Graffiti-Free",
+ "Grain",
+ "Green Building",
+ "Hallway",
+ "Healthcare",
+ "Hospitality",
+ "IMO 8.2 & 8.3 Certified",
+ "IMO Marine Grade",
+ "Indoor/Outdoor",
+ "Latte",
+ "LEED Compatible",
+ "Living Room",
+ "Minimalist",
+ "Multi-Purpose",
+ "MVSS-302 Automotive",
+ "Neutral Tone",
+ "NFPA 260 Compliant",
+ "PFAS-Free",
+ "Phillipe Romano",
+ "Serene",
+ "Silicone",
+ "Soft",
+ "Solid",
+ "Subtle Texture",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-gold-latte"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73019",
+ "handle": "benedict-canyon-sisal-hlw-73019",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73019-sample-clean.jpg?v=1774483060",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73019"
+ },
+ {
+ "sku": "kent-green-faux-grasscloth-wallpaper-cca-82926",
+ "handle": "kent-green-faux-grasscloth-wallpaper-cca-82926",
+ "title": "Kent Green Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/993e30889f13f8b295fab4953b87b302.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Light Brown",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-green-faux-grasscloth-wallpaper-cca-82926"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73021",
+ "handle": "benedict-canyon-sisal-hlw-73021",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73021-sample-clean.jpg?v=1774483069",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73021"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47466",
+ "handle": "crosby-acoustical-wallcovering-xkl-47466",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fe284266565d45901946ef709c321751.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Organic Modern",
+ "Polyester",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47466"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-570-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-570-jpg",
+ "title": "Metamorphosis - Gypsum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-570.jpg?v=1762300873",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Gypsum",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-570-jpg"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58139",
+ "handle": "jutely-vinyl-dwx-58139",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58139-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720538",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Gray",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58139"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66833",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66833",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/50fc44ba56eb64dd60450ad30d136b5a.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Light Gray",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66833"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58104",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58104",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58104-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715287",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Easy-clean",
+ "Embossed Texture",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Gunny Sack",
+ "Hallway",
+ "High-traffic",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Neutral",
+ "Orange",
+ "Red",
+ "Regencycore",
+ "Tan",
+ "Terracotta",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58104"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-442",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-442",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/04e200302bc8798dc0af6b48f813ed15_4d1504c2-ecd1-4804-b6e7-23158e00b5ba.jpg?v=1745458241",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Fabric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-442"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56844",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56844",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0d469734f349f97ed1d6d822315220b.jpg?v=1750789752",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "Beige",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Ivory",
+ "Jeffrey Stevens",
+ "Light Yellow",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "Soft White",
+ "stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56844"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56846",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56846",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e858576ad4ba1ca924d827cd56fe44b2.jpg?v=1750789750",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Green",
+ "medium aqua",
+ "Minimalist",
+ "Mint",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Pale Aqua",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Sage Green",
+ "Scandinavian",
+ "Series: York",
+ "Soft Green",
+ "stripe",
+ "Texture",
+ "Textured",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56846"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48279",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48279",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/roanoke-linen.jpg?v=1777480153",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Oatmeal",
+ "Sand",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48279"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73132",
+ "handle": "hilo-highway-diamond-grass-hlw-73132",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73132-sample-clean.jpg?v=1774483631",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burgundy",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Red",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73132"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47469",
+ "handle": "crosby-acoustical-wallcovering-xkl-47469",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/557f1c2fccdaa8e7024d42917748d91c.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hollywood Acoustical",
+ "Light Gray",
+ "Polyester",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47469"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48278",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48278",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48278-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731508",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Sage Green",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48278"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66506",
+ "handle": "cody-couture-wallpaper-xb2-66506",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/801260e8c329cc04d6f477bd21cd50ef.jpg?v=1775127594",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Geometric",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66506"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5303-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5303-jpg",
+ "title": "Sparta - Pepper | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5303.jpg?v=1762309172",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Pepper",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5303-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b79a72bfad03de11927b3dfeff945d96_4d86553f-be00-4f7e-a4c3-dc78e0a7ed57.jpg?v=1745458290",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Fabric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Greige",
+ "Lemon",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-423"
+ },
+ {
+ "sku": "austin-green-plaid-wallpaper-cca-82963",
+ "handle": "austin-green-plaid-wallpaper-cca-82963",
+ "title": "Austin Green Plaid | LA Walls",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/962b83fbe1971070f0560384cd0965d2.jpg?v=1747080316",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Gray",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Plaid",
+ "Plaids",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallpapers Wallpapers Walls: Chela Ciccio",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/austin-green-plaid-wallpaper-cca-82963"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66511",
+ "handle": "cody-couture-wallpaper-xb2-66511",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/647307ade7b49a136ec4a3bf2a226886.jpg?v=1775128110",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Linear",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66511"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010238",
+ "handle": "hollywood-atelier-woven-xhw-2010238",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010238-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775717008",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010238"
+ },
+ {
+ "sku": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 01 - Multi Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504907315.jpg?v=1775523510",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick Red",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Fabric",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "Living Room",
+ "NCW4350",
+ "NCW4350-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Pale Blue",
+ "Paper",
+ "Pink",
+ "Red",
+ "Slate Gray",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80344-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9445-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9445-jpg",
+ "title": "Maya - Ice | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9445.jpg?v=1762302332",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Ice",
+ "Light Blue",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9445-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-428",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-428",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/017d4b556db005a3ddffdfac666657a8_1bab2185-7d2a-49ae-b19c-5c1abd9cf1b7.jpg?v=1745458276",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-428"
+ },
+ {
+ "sku": "norman-blue-medallion-wallpaper-cca-82950",
+ "handle": "norman-blue-medallion-wallpaper-cca-82950",
+ "title": "Norman Blue Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0e9a2c306b1c0e4eb49c902bc180547.jpg?v=1572309963",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Geometric",
+ "LA Walls",
+ "Masculine",
+ "Norman Blue Medallion Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-blue-medallion-wallpaper-cca-82950"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73008",
+ "handle": "benedict-canyon-sisal-hlw-73008",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73008-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703732",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73008"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73016",
+ "handle": "benedict-canyon-sisal-hlw-73016",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73016-sample-clean.jpg?v=1774483035",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73016"
+ },
+ {
+ "sku": "harpswell-ruby-herringbone-awning-stripe-wallpaper-cca-83160",
+ "handle": "harpswell-ruby-herringbone-awning-stripe-wallpaper-cca-83160",
+ "title": "Harpswell Ruby Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c855b7ad387336b6e6398dc82c109e41.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dark Brown",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Harpswell Ruby Herringbone Awning Stripe Wallcovering",
+ "LA Walls",
+ "Prepasted",
+ "Red",
+ "Red-brown",
+ "Ruby",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-ruby-herringbone-awning-stripe-wallpaper-cca-83160"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47471",
+ "handle": "crosby-acoustical-wallcovering-xkl-47471",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/abf4222264ffbb1df99a743811f43963.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Organic Modern",
+ "Polyester",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47471"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73002",
+ "handle": "benedict-canyon-sisal-hlw-73002",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73002-sample-clean.jpg?v=1774482983",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73002"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5031-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5031-jpg",
+ "title": "Sparta - Clay | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5031.jpg?v=1762308474",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Clay",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "RAMPART®",
+ "Sparta",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5031-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-401",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-401",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11fd1b78c5d44d6cb08b7c15c2791c4f_674c2d43-94ac-4bfc-ba17-33130488b97c.jpg?v=1745458354",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-401"
+ },
+ {
+ "sku": "calais-wheat-grain-stripe-wallpaper-cca-83187",
+ "handle": "calais-wheat-grain-stripe-wallpaper-cca-83187",
+ "title": "Calais Wheat Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bb467817cd9ecdaaab61a1915d71168.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Wheat",
+ "White",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-wheat-grain-stripe-wallpaper-cca-83187"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-tussah.jpg?v=1777481100",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Faux Woven Textile Wall",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Light Taupe",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven Look",
+ "Yellow"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010413"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44053",
+ "handle": "carved-squares-wallcovering-xcs-44053",
+ "title": "Jutely Woven Walls - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44053-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707232",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Fawn",
+ "geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Orange",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44053"
+ },
+ {
+ "sku": "calais-beige-grain-stripe-wallpaper-cca-83188",
+ "handle": "calais-beige-grain-stripe-wallpaper-cca-83188",
+ "title": "Calais Beige Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5555b290d00510c1a16c33735e7e2565.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-beige-grain-stripe-wallpaper-cca-83188"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66592",
+ "handle": "patoa-librato-wallpaper-xb7-66592",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a7fe3e6b05bc0315636083c8099c3093.jpg?v=1775130702",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "cellulose",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Ribbed",
+ "Solid/Textural",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66592"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47392",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47392",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9056534e187da8c956acc782e56f7d1d.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Navy",
+ "Fabric",
+ "Gray",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Navy",
+ "Office",
+ "Polyester",
+ "Smoke",
+ "Sophisticated",
+ "Steel",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47392"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_merg-5808-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_merg-5808-jpg",
+ "title": "Merge - Copper Wire | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/merg-5808.jpg?v=1762300589",
+ "tags": [
+ "22% Nylon",
+ "3% Polyester",
+ "30% Cotton",
+ "45% Wool",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Copper",
+ "Copper Wire",
+ "Merge",
+ "Metallic",
+ "Orange",
+ "stripe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wool",
+ "woven",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_merg-5808-jpg"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52354",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52354",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-citron_41eb5b53-3029-4679-a7e7-ddfc6af2f189.jpg?v=1777481305",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Chartreuse",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Organic",
+ "Pale Yellow",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52354"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5305-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5305-jpg",
+ "title": "Sparta - Sky | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5305.jpg?v=1762309242",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Gray",
+ "lattice",
+ "RAMPART®",
+ "Sparta",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5305-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73007",
+ "handle": "benedict-canyon-sisal-hlw-73007",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73007-sample-clean.jpg?v=1774483007",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Orange",
+ "Peach",
+ "Red",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73007"
+ },
+ {
+ "sku": "totori-luxury-metal-grasscloth-grs-30336",
+ "handle": "totori-luxury-metal-grasscloth-grs-30336",
+ "title": "Totori Luxury Metal Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/totori-luxury-metal-grasscloth-grs-30336-cropped.jpg?v=1774341771",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Naturals With Silver Accents On Tan",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/totori-luxury-metal-grasscloth-grs-30336"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49305",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49305",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-sugarcane_7da65f61-adbf-4fc0-9c27-1019ca0fd43d.jpg?v=1777481422",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Class A Fire Rated",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-White",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49305"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-569-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-569-jpg",
+ "title": "Metamorphosis - Rust | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-569.jpg?v=1762300837",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Metamorphosis",
+ "Olefin",
+ "Tan",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-569-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9435-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9435-jpg",
+ "title": "Maya - Canvas | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9435.jpg?v=1762301976",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Canvas",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9435-jpg"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-biker_black.jpg?v=1777480696",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828"
+ },
+ {
+ "sku": "jonesville-contemporary-durable-walls-xwf-52236",
+ "handle": "jonesville-contemporary-durable-walls-xwf-52236",
+ "title": "Jonesville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52236-sample-jonesville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775720050",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Tan",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesville-contemporary-durable-walls-xwf-52236"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hom-3388-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hom-3388-jpg",
+ "title": "Holmes - Sienna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hom-3388.jpg?v=1762297200",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Herringbone",
+ "Holmes",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hom-3388-jpg"
+ },
+ {
+ "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+ "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58173-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724352",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Metallic",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Navy Blue",
+ "Neoclassical",
+ "Olive Green",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58173"
+ },
+ {
+ "sku": "avea-impressions-wallpaper-trf-56864",
+ "handle": "avea-impressions-wallpaper-trf-56864",
+ "title": "Avea Impressions | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/31f767dfb93e4e1dcdd1211a13875719.jpg?v=1750789724",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Avea Impressions",
+ "beach",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Minimalist",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "Non-Woven",
+ "organic",
+ "Pale Beige",
+ "Scandinavian",
+ "Series: York",
+ "Soft White",
+ "Stripe",
+ "textural",
+ "Texture",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "White",
+ "woven"
+ ],
+ "max_price": 196.08,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/avea-impressions-wallpaper-trf-56864"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010233",
+ "handle": "hollywood-atelier-woven-xhw-2010233",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010233-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775716978",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010233"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73017",
+ "handle": "benedict-canyon-sisal-hlw-73017",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73017-sample-clean.jpg?v=1774483047",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73017"
+ },
+ {
+ "sku": "nassau-gold-dusk",
+ "handle": "nassau-gold-dusk",
+ "title": "Nappa - Metallic - Dusk 100% SIlicone | Phillipe Romano Wallcoverings",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Dusk.jpg?v=1772569952",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bleach Cleanable",
+ "BS 5852 Crib 5",
+ "CA TB 117 Compliant",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract Grade",
+ "Dark Gray",
+ "Dark Grey",
+ "DMF-Free",
+ "Fabric",
+ "Faux Leather",
+ "Fine",
+ "Fine Texture",
+ "FR Additives Free",
+ "Graffiti-Free",
+ "Grain",
+ "Gray",
+ "Green Building",
+ "Grey",
+ "Healthcare",
+ "Hospitality",
+ "IMO 8.2 & 8.3 Certified",
+ "IMO Marine Grade",
+ "Indoor/Outdoor",
+ "LEED Compatible",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Monochromatic",
+ "Multi-Purpose",
+ "MVSS-302 Automotive",
+ "Neutral Tones",
+ "NFPA 260 Compliant",
+ "Office",
+ "Pebble",
+ "PFAS-Free",
+ "Phillipe Romano",
+ "Silicone",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-gold-dusk"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47393",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47393",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4ad3c631052db4539140ded87b5f4aa6.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Charcoal",
+ "Fabric",
+ "Gray",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Industrial",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Polyester",
+ "Slate Grey",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47393"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73028",
+ "handle": "benedict-canyon-sisal-hlw-73028",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73028-sample-clean.jpg?v=1774483102",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73028"
+ },
+ {
+ "sku": "necker-island-black",
+ "handle": "necker-island-black",
+ "title": "Native - Black Sustainable Bio-Based | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Aire-Bio_Native_Black.jpg?v=1772569988",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bio-Based",
+ "Black",
+ "Bleach Cleanable",
+ "CA TB 117 Compliant",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Contemporary",
+ "Contract Grade",
+ "Dark Tones",
+ "Deep",
+ "DWHQ",
+ "Ebony",
+ "Eco-Friendly",
+ "Fabric",
+ "Finish",
+ "FR Additives Free",
+ "Gray",
+ "Green Building",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "IMO 8.2 Certified",
+ "IMO Marine Grade",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "NFPA 260 Compliant",
+ "Onyx",
+ "Performance Fabric",
+ "PFAS-Free",
+ "Phthalate-Free",
+ "Polyester Blend",
+ "PVC-Free",
+ "Smooth",
+ "Solid",
+ "Solid Color",
+ "Texture",
+ "Textured",
+ "Uniform Texture",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/necker-island-black"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58109-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715419",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Glamorous",
+ "Gold",
+ "Gunny Sack",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Neutral",
+ "Organic",
+ "Restaurant",
+ "Rustic",
+ "Solid",
+ "Sophisticated",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58109"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73117",
+ "handle": "puna-drive-natural-grassweave-hlw-73117",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73117-sample-clean.jpg?v=1774483541",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73117"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66451",
+ "handle": "caron-tabac-wallpaper-xa6-66451",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9de1f5c8e60d774f1489f7cdf4959f45.jpg?v=1775122484",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Entryway",
+ "Fabric",
+ "Farmhouse",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66451"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73036",
+ "handle": "benedict-canyon-sisal-hlw-73036",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73036-sample-clean.jpg?v=1774483148",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Lattice",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Scandinavian",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73036"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66448",
+ "handle": "caron-tabac-wallpaper-xa6-66448",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1cc8bfae7b97d6a71f471a81e1be22a6.jpg?v=1775121997",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Scandinavian",
+ "Spa",
+ "Textural",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66448"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-410",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-410",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7f9c429de150f071d00f03ed7f61af0e_b175b819-839c-4361-a6c1-57986ef3149b.jpg?v=1745458332",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-410"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66836",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66836",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab0881c2dec5c854722e4ddb1440785d.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Light Brown",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66836"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105",
+ "handle": "faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105",
+ "title": "Faux Glass Bead Wallpaper - 105 Deep Aged Gold",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-105-sample-faux-glass-bead-wallpaper.jpg?v=1775711830",
+ "tags": [
+ "105 Deep Aged Gold",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Commercial",
+ "Commercially Rated Cleanable",
+ "Fabric",
+ "Faux Finish",
+ "Glass Bead",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105"
+ },
+ {
+ "sku": "dwh-67101",
+ "handle": "dwh-67101",
+ "title": "Saint James Growing Damask Rectangular Table Cloth on Lilly Natural Cotton",
+ "vendor": "DW Home",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5151893-william-morris-honeysuckle-medium-by-peacoquettedesigns_4-11_04bf278a-49ba-4f0d-a206-6fe01b324209.jpg?v=1630524932",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Arts & Crafts",
+ "Beige",
+ "Botanical",
+ "Classic",
+ "Commercial",
+ "display_variant",
+ "DW Home",
+ "Fabric",
+ "Floral",
+ "Gray",
+ "Green",
+ "Light Gray",
+ "Original",
+ "Rectangular Table Cloth on Lilly Natural Cotton",
+ "Saint James Growing Damask",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 371.8,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwh-67101"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010421",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010421",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-deluxe_threads_b8a40413-04fc-4a11-97e9-708d2e8daa9a.jpg?v=1777481503",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Olive",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Faux Woven Textile Wall",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Olive",
+ "Olive Green",
+ "Organic Modern",
+ "Sea Green",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010421"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5038-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5038-jpg",
+ "title": "Sparta Plus - Classic White | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5038.jpg?v=1762308694",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Classic White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "RAMPART®",
+ "Sparta Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5038-jpg"
+ },
+ {
+ "sku": "calais-red-grain-stripe-wallpaper-cca-83190",
+ "handle": "calais-red-grain-stripe-wallpaper-cca-83190",
+ "title": "Calais Red Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3499948a7533a0b6d63733b39f272f51.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Farmhouse",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-red-grain-stripe-wallpaper-cca-83190"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49318",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49318",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-half_moon_684f977c-5cc5-4399-bdea-bf2cf88150fd.jpg?v=1777480344",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49318"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73001",
+ "handle": "benedict-canyon-sisal-hlw-73001",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73001-sample-clean.jpg?v=1774482978",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73001"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73005",
+ "handle": "benedict-canyon-sisal-hlw-73005",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73005-sample-clean.jpg?v=1774482997",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Sand",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 87.35,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73005"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58133",
+ "handle": "jutely-vinyl-dwx-58133",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58133-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720384",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Grasscloth",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Jute",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Olive Green",
+ "Regencycore",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58133"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52092",
+ "handle": "canal-texture-durable-walls-xwa-52092",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-persimmon.jpg?v=1777480395",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Sand",
+ "Terracotta",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52092"
+ },
+ {
+ "sku": "dwkk-g2b817173",
+ "handle": "dwkk-g2b817173",
+ "title": "Malatesta - Silver Silver By Lee Jofa | | Damask Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2014100_11_dd836987-ecc0-4368-8896-cb7af39196cd.jpg?v=1753291353",
+ "tags": [
+ "34In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "China",
+ "Commercial",
+ "Damask",
+ "display_variant",
+ "Fabric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Lee Jofa",
+ "Luxury",
+ "Malatesta",
+ "Non-Wallcovering",
+ "P2014100.11.0",
+ "Paper",
+ "Print",
+ "Silver",
+ "Sisal - 85%;Cotton - 15%",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g2b817173"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "title": "Resham - Laurel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5508.jpg?v=1762304075",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Laurel",
+ "Light Gray",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5508-jpg"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73106",
+ "handle": "puna-drive-natural-grassweave-hlw-73106",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73106-sample-clean.jpg?v=1774483466",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73106"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66832",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66832",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8b3723bd0ded0f6125edf207a2db1dea.jpg?v=1572309567",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66832"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73011",
+ "handle": "benedict-canyon-sisal-hlw-73011",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73011-sample-clean.jpg?v=1774483017",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Rustic",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73011"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73120",
+ "handle": "puna-drive-natural-grassweave-hlw-73120",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73120-sample-clean.jpg?v=1774483554",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73120"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5504-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5504-jpg",
+ "title": "Resham - Jute | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5504.jpg?v=1762303937",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "Jute",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5504-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5301-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5301-jpg",
+ "title": "Sparta - Caramel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5301.jpg?v=1762309099",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Caramel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Beige",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5301-jpg"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47549",
+ "handle": "corsham-acoustical-wallcovering-xku-47549",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52ecf630f09a5cb35c69167688b99bc3.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Maroon",
+ "Polyester",
+ "Red",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47549"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58103",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58103",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58103-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715263",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Easy-clean",
+ "Embossed Texture",
+ "Emerald Green",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Green",
+ "High-traffic",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Brown",
+ "Luxe",
+ "Luxurious",
+ "Modern",
+ "Navy Blue",
+ "Neutral",
+ "Off-white",
+ "Restaurant",
+ "Tan",
+ "Taupe",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58103"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73026",
+ "handle": "benedict-canyon-sisal-hlw-73026",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73026-sample-clean.jpg?v=1774483093",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Champagne",
+ "Color: Metallic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glass Bead",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Metallic",
+ "Modern",
+ "Mosaic",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Powder Room",
+ "Silver",
+ "Sisal",
+ "Sophisticated",
+ "Textured",
+ "Tile",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73026"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_merg-5810-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_merg-5810-jpg",
+ "title": "Merge - Sand Jewel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/merg-5810.jpg?v=1762300658",
+ "tags": [
+ "22% Nylon",
+ "3% Polyester",
+ "30% Cotton",
+ "45% Wool",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Blue",
+ "Merge",
+ "Sand Jewel",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wool",
+ "Woven",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_merg-5810-jpg"
+ },
+ {
+ "sku": "kent-navy-faux-grasscloth-wallpaper-cca-82924",
+ "handle": "kent-navy-faux-grasscloth-wallpaper-cca-82924",
+ "title": "Kent Navy Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/602f1da269ec884cbdea75a699afa14e.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Navy",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-navy-faux-grasscloth-wallpaper-cca-82924"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5042-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5042-jpg",
+ "title": "Sparta - Gray Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5042.jpg?v=1762308837",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Gray Armor",
+ "Light Gray",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5042-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-406",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-406",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/124b9c0ca815f3ee023ddc916440aa0b_c22fa012-20fa-4b70-a952-f83b3cf59aab.jpg?v=1745458342",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-406"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47385",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47385",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1227b10bb6bc1b67cd1421595d8ff98b.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Latte",
+ "Light Beige",
+ "Living Room",
+ "Polyester",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Walnut",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47385"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48276",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48276",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48276-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731453",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Taupe",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48276"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-431",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-431",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bac9bab8319c6e530b2227084d175633_7b78eabd-17c9-4b41-91ae-e2a039e397fa.jpg?v=1745458269",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Lemon",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-431"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-cappuccino.jpg?v=1777480703",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+ "title": "Metamorphosis - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-576.jpg?v=1762301094",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Metallic",
+ "Metamorphosis",
+ "Olefin",
+ "Silver",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-576-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+ "title": "Sparta - Eurotas River | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5045.jpg?v=1762308949",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Eurotas River",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5045-jpg"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73123",
+ "handle": "puna-drive-natural-grassweave-hlw-73123",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73123-sample-clean.jpg?v=1774483569",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73123"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66830",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66830",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2f8e9db6f6ea06efe09d639585e8c7f7.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Light Beige",
+ "Off-white",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66830"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5510-jpg",
+ "title": "Resham Plus - Gris | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5510.jpg?v=1762304144",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Gris",
+ "RAMPART®",
+ "Resham Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5510-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5041-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5041-jpg",
+ "title": "Sparta - Shimmer | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5041.jpg?v=1762308799",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Shimmer",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5041-jpg"
+ },
+ {
+ "sku": "eur-80411-ncw4395-designer-wallcoverings-los-angeles",
+ "handle": "eur-80411-ncw4395-designer-wallcoverings-los-angeles",
+ "title": "Kingsley Fans 01 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507102771.jpg?v=1775523917",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Circle",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Dot",
+ "Fabric",
+ "Floral",
+ "Hallway",
+ "Kingsley Fans",
+ "Living Room",
+ "NCW4395",
+ "NCW4395-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Teal",
+ "Traditional",
+ "Turquoise",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80411-ncw4395-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-stone_sculpture.jpg?v=1777480693",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826"
+ },
+ {
+ "sku": "wtw0427fire",
+ "handle": "wtw0427fire",
+ "title": "Fire Island Grass - Clay | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0427FIRE.jpg?v=1745346319",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "FIRE ISLAND GRASS",
+ "Grasscloth",
+ "Scalamandre Wallcovering",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0427fire"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49316",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49316",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-black_sand_28cad555-1c71-4d20-9b5a-46a052587310.jpg?v=1777480341",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49316"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53212",
+ "handle": "doral-faux-silk-durable-walls-xwc-53212",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53212-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710245",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53212"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73122",
+ "handle": "puna-drive-natural-grassweave-hlw-73122",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73122-sample-clean.jpg?v=1774483564",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73122"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5040-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5040-jpg",
+ "title": "Sparta - Mist | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5040.jpg?v=1762308764",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Mist",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5040-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-402",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-402",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7c568202ffa306066192d775735e4dbb_cfd34e15-1132-4b9b-88b2-73b7cb0bdf3b.jpg?v=1745458352",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-402"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73023",
+ "handle": "benedict-canyon-sisal-hlw-73023",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73023-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703748",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal Gray",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73023"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66519",
+ "handle": "cody-couture-wallpaper-xb2-66519",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aaddc37b86217737bdc133840bf73ea9.jpg?v=1775128786",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Blue",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Navy Blue",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66519"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73015",
+ "handle": "benedict-canyon-sisal-hlw-73015",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73015-sample-clean.jpg?v=1774483028",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73015"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73042",
+ "handle": "gregory-diamonds-drive-hlw-73042",
+ "title": "Gregory Diamonds Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73042-sample-gregory-diamonds-drive-hollywood-wallcoverings.jpg?v=1775714870",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73042"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66516",
+ "handle": "cody-couture-wallpaper-xb2-66516",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b179999a7aab819d4669abb519941604.jpg?v=1775128471",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66516"
+ },
+ {
+ "sku": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+ "handle": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+ "title": "Batley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjr-47258-sample-batley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702943",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/batley-type-ii-vinyl-wallcovering-xjr-47258"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-salt_water_9de91a37-3593-49bd-acee-801ce0cd1c8e.jpg?v=1777480335",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Organic Modern",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49313"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/39fd3f04e0dbe6087d906940b22b685f_1fa58687-34a3-4501-926e-7eaf115f20cf.jpg?v=1745458349",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Green",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-403"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47388",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47388",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/870ec1fe4e931635bb23a150112decdb.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Polyester",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47388"
+ },
+ {
+ "sku": "dwkk-123851",
+ "handle": "dwkk-123851",
+ "title": "Spolvero - 21501 Beige | Kravet Design | Lizzo | Modern Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/LZW-30186_21501_c84e651c-99b8-4ada-b911-746d595fc5e2.jpg?v=1753290984",
+ "tags": [
+ "27.5In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "display_variant",
+ "Fabric",
+ "Ivory",
+ "Kravet",
+ "Kravet Design",
+ "Lizzo",
+ "Lzw-30186.21501.0",
+ "Modern",
+ "Pattern",
+ "Spain",
+ "Spolvero",
+ "Synthetic - 75%;Natural Products - 25%",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-123851"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73013",
+ "handle": "benedict-canyon-sisal-hlw-73013",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73013-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703741",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Tan",
+ "Teal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73013"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73014",
+ "handle": "benedict-canyon-sisal-hlw-73014",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73014-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703744",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Blue",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Sisal",
+ "Teal",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73014"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47384",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47384",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9aa8bb50ea5c0d5e346aaa49bf3e776e.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Fabric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Pale Taupe",
+ "Polyester",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47384"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47543",
+ "handle": "corsham-acoustical-wallcovering-xku-47543",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/617346e7cda822daaaf4aafe2093a7e5.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Polyester",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47543"
+ },
+ {
+ "sku": "sc_0001wp88358",
+ "handle": "sc_0001wp88358",
+ "title": "Lyra Silk Weave - Cloud | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SC_0001WP88358.jpg?v=1745345977",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "LYRA SILK WEAVE",
+ "Lyra Silk Weave - Cloud Wallcovering",
+ "Scalamandre Wallcovering",
+ "Silk",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sc_0001wp88358"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47389",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47389",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96f4a45f5dbf9c7e6b262ea1f722faf6.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Polyester",
+ "Scandinavian",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47389"
+ },
+ {
+ "sku": "necker-island-carmine",
+ "handle": "necker-island-carmine",
+ "title": "Native - Carmine Sustainable Bio-Based | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Aire-Bio_Native_Carmine.jpg?v=1772569993",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bio-Based",
+ "Bleach Cleanable",
+ "Burgundy",
+ "CA TB 117 Compliant",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Contemporary",
+ "Contract Grade",
+ "Dining Room",
+ "DWHQ",
+ "Eco-Friendly",
+ "Fabric",
+ "FR Additives Free",
+ "Green Building",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "IMO 8.2 Certified",
+ "IMO Marine Grade",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "NFPA 260 Compliant",
+ "Paper",
+ "Performance Fabric",
+ "PFAS-Free",
+ "Phthalate-Free",
+ "Polyester Blend",
+ "Polyurethane Surface",
+ "PVC-Free",
+ "Red",
+ "Residential",
+ "Rustic",
+ "Smooth",
+ "Solid",
+ "Solid Color",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Uniform Texture",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/necker-island-carmine"
+ },
+ {
+ "sku": "dwkk-129357",
+ "handle": "dwkk-129357",
+ "title": "Metallic Weave - Gold | Kravet Couture | Modern Luxe Wallcovering |Metallic Texture Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3832_4_bef0d16a-d6b6-4a20-a031-dcb19288ba0e.jpg?v=1753121209",
+ "tags": [
+ "36In",
+ "Almond",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "China",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Kravet",
+ "Kravet Couture",
+ "Living Room",
+ "Metallic Weave",
+ "Modern Luxe Wallcovering",
+ "Paper - 100%",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W3832.4.0",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129357"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_merg-5813-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_merg-5813-jpg",
+ "title": "Merge - Gold Bracelet | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/merg-5813.jpg?v=1762300760",
+ "tags": [
+ "22% Nylon",
+ "3% Polyester",
+ "30% Cotton",
+ "45% Wool",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Gold Bracelet",
+ "Grasscloth",
+ "Merge",
+ "Metallic",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wool",
+ "Woven",
+ "Woven Upholstery",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_merg-5813-jpg"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72066",
+ "handle": "la-roche-durable-vinyl-dur-72066",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72066-sample-clean.jpg?v=1774484242",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72066"
+ },
+ {
+ "sku": "versace-mottled-woven-mottled-colour-plain-wallcovering-versace",
+ "handle": "versace-mottled-woven-mottled-colour-plain-wallcovering-versace",
+ "title": "Versace Mottled Woven Mottled Colour Plain Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2ba5ef121c40ec78adc7384b1b4825fc.jpg?v=1773706447",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "display_variant",
+ "Emerald Green",
+ "Green",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Office",
+ "Paste the wall",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Mottled",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut Brown",
+ "Woven mottled colour plain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-mottled-woven-mottled-colour-plain-wallcovering-versace"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-iron_buff.jpg?v=1777480792",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Oatmeal",
+ "Rustic",
+ "Sand",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53173"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48275",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48275",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48275-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731423",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48275"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+ "handle": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+ "title": "Faux Glass Bead Wallpaper - 109 Jade Green",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-109-sample-faux-glass-bead-wallpaper.jpg?v=1775711841",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bling",
+ "Commercial",
+ "Commercially Rated Cleanable",
+ "Contemporary",
+ "Fabric",
+ "Faux Finish",
+ "Glass Bead",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Jade Green",
+ "Light Blue",
+ "Minimalist",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-109-jade-green-fgb-109"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73038",
+ "handle": "benedict-canyon-sisal-hlw-73038",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73038-sample-clean.jpg?v=1774483153",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73038"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58128",
+ "handle": "jutely-vinyl-dwx-58128",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58128-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720249",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58128"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5512-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5512-jpg",
+ "title": "Resham - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5512.jpg?v=1762304214",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Resham",
+ "Steel",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5512-jpg"
+ },
+ {
+ "sku": "narcisse-noir-wallpaper-xa7-66455",
+ "handle": "narcisse-noir-wallpaper-xa7-66455",
+ "title": "Narcisse Noir Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/50339da2b9117c69f9f9a5c29fcb9165.jpg?v=1775123183",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "calcium carbonate/pulp",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Narcisse Noir Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 49.3,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66455"
+ },
+ {
+ "sku": "kiligano-libra-wallpaper-xg4-66920",
+ "handle": "kiligano-libra-wallpaper-xg4-66920",
+ "title": "Kiligano Libra Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b235a0e4276645b184a047d9db07c84.jpg?v=1572309571",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Khaki",
+ "Kiligano Libra Wallcovering",
+ "Light Goldenrodyellow",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66920"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-409",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-409",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f4f84be58dc46b61384a5065ac13eb4f_9434015e-850c-449c-8df4-15c3479d9d42.jpg?v=1745458334",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-409"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58166-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725720",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Sand",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58166"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47547",
+ "handle": "corsham-acoustical-wallcovering-xku-47547",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9cd0a88ae02867c7c088e883c43aa0f6.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Polyester",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47547"
+ },
+ {
+ "sku": "moroccan-wooden-basketweave-wbs-39659",
+ "handle": "moroccan-wooden-basketweave-wbs-39659",
+ "title": "Moroccan Wooden Basketweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39659-sample-moroccan-wooden-basketweave-hollywood-wallcoverings.jpg?v=1775726749",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Grasscloth",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wheat",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-wooden-basketweave-wbs-39659"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47544",
+ "handle": "corsham-acoustical-wallcovering-xku-47544",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0fc17a2523d2521629d770647eec5d75.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Polyester",
+ "Serene",
+ "Silver Gray",
+ "Solid",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47544"
+ },
+ {
+ "sku": "eur-80348-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80348-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 05 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505038387.jpg?v=1775523537",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Fabric",
+ "Grandmillennial",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "Light Blue",
+ "Living Room",
+ "Navy",
+ "NCW4350",
+ "NCW4350-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80348-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80304-ncw4301-designer-wallcoverings-los-angeles",
+ "handle": "eur-80304-ncw4301-designer-wallcoverings-los-angeles",
+ "title": "Beau Rivage 01 - Aqua Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/beaurivage_ls_wp_959dde2a-afaa-414d-9a7d-f032b93ce4cf.webp?v=1738950297",
+ "tags": [
+ "Abstract",
+ "Aqua",
+ "Architectural",
+ "Bathroom",
+ "Beau Rivage",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Green",
+ "LES REVES",
+ "Living Room",
+ "NCW4301",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Pattern",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Transitional",
+ "Turquoise",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80304-ncw4301-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73031",
+ "handle": "benedict-canyon-sisal-hlw-73031",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73031-sample-clean.jpg?v=1774483123",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73031"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73032",
+ "handle": "benedict-canyon-sisal-hlw-73032",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73032-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703751",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Coastal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Oatmeal",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73032"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73104",
+ "handle": "puna-drive-natural-grassweave-hlw-73104",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73104-sample-clean.jpg?v=1774483456",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Pale Goldenrod",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73104"
+ },
+ {
+ "sku": "henna-horizontal-grasscloth-wallpaper-trf-56882",
+ "handle": "henna-horizontal-grasscloth-wallpaper-trf-56882",
+ "title": "Henna Horizontal Faux Grasscloth | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fb8f0ada7503388068310a9678f92d74.jpg?v=1750789683",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Light Beige",
+ "Light Green",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Sage Green",
+ "Scandinavian",
+ "Series: York",
+ "Stripe",
+ "Tan",
+ "textured",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/henna-horizontal-grasscloth-wallpaper-trf-56882"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52356",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52356",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-arctic_ice_1b3d80f9-6c96-47ee-a2d8-95b0037eb34e.jpg?v=1777481328",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Light Gray",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Pale Beige",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52356"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52089",
+ "handle": "canal-texture-durable-walls-xwa-52089",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-oatmeal.jpg?v=1777480390",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52089"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73035",
+ "handle": "benedict-canyon-sisal-hlw-73035",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73035-sample-clean.jpg?v=1774483137",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Rustic",
+ "Sisal",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73035"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "title": "Resham - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5507.jpg?v=1762304040",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5507-jpg"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73127",
+ "handle": "puna-drive-natural-grassweave-hlw-73127",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73127-sample-clean.jpg?v=1774483599",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73127"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sdy-3352_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sdy-3352_8-jpg",
+ "title": "Sadeya - Wheat | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sdy-3352_8.jpg?v=1762305539",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grasscloth",
+ "Sadeya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wheat",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sdy-3352_8-jpg"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73040",
+ "handle": "gregory-diamonds-drive-hlw-73040",
+ "title": "Gregory Diamonds Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73040-sample-clean.jpg?v=1774483169",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73040"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47548",
+ "handle": "corsham-acoustical-wallcovering-xku-47548",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eb9313b68f2b5fcdb49a0933d1321f42.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Organic Modern",
+ "Polyester",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47548"
+ },
+ {
+ "sku": "dwkk-g54fcd96c",
+ "handle": "dwkk-g54fcd96c",
+ "title": "Ikat Stripe Wp - Azure Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_155_62710527-d0d5-416b-b3b9-fa1550553877.jpg?v=1753291839",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Blue",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Light Blue",
+ "Luxury",
+ "Pattern",
+ "Pbfc-3531.155.0",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g54fcd96c"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73006",
+ "handle": "benedict-canyon-sisal-hlw-73006",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73006-sample-clean.jpg?v=1774483002",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Mustard Yellow",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73006"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-575-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-575-jpg",
+ "title": "Metamorphosis - Light Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-575.jpg?v=1762301058",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Light Gray",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-575-jpg"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48281",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48281",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/roanoke-graphite.jpg?v=1777480157",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48281"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47470",
+ "handle": "crosby-acoustical-wallcovering-xkl-47470",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cd8dada86438889fecb0d333597eb469.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Polyester",
+ "Rustic",
+ "Smoke",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47470"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWY-53160-sample-clean.jpg?v=1774481847",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53160"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66449",
+ "handle": "caron-tabac-wallpaper-xa6-66449",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/01ab4ad238bd60738f9d69838f13349e.jpg?v=1775122165",
+ "tags": [
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Entryway",
+ "Fabric",
+ "Living Room",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Rustic",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66449"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66827",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66827",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3caed51da7bfb563d67b1ef433c63a76.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Light Beige",
+ "Minimalist",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66827"
+ },
+ {
+ "sku": "lydia-s-croc-embossed-damask-prp-56542",
+ "handle": "lydia-s-croc-embossed-damask-prp-56542",
+ "title": "Lydia's Croc Embossed Damask",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-01-17at11.49.33AM.png?v=1705520998",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Designer Wallcoverings",
+ "Embossed Texture",
+ "Fabric",
+ "Gray",
+ "Light Gray",
+ "Lydia's Croc Embossed Damask",
+ "Natural",
+ "Natural Wonders",
+ "Off-white",
+ "Pattern",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lydia-s-croc-embossed-damask-prp-56542"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52343",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52343",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-gray_efdc6a70-c773-4289-9247-e5f604287987.jpg?v=1777481170",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal Gray",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Serene",
+ "Silver",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52343"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73009",
+ "handle": "benedict-canyon-sisal-hlw-73009",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73009-sample-clean.jpg?v=1774483012",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Sage Green",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73009"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-568-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-568-jpg",
+ "title": "Metamorphosis - Lilac Shine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-568.jpg?v=1762300796",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "geometric",
+ "Gold",
+ "Lilac Shine",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-568-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73030",
+ "handle": "benedict-canyon-sisal-hlw-73030",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73030-sample-clean.jpg?v=1774483119",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73030"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-407",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-407",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6a8ab50f5e511be8e701d42736bedd44_20f06eea-6f8a-4f80-b343-c471c767d466.jpg?v=1745458339",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-407"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72149",
+ "handle": "cote-marine-durable-vinyl-dur-72149",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72149-sample-clean.jpg?v=1774484576",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72149"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5039-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5039-jpg",
+ "title": "Sparta Plus - Marble | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5039.jpg?v=1762308728",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Marble",
+ "RAMPART®",
+ "Sparta Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5039-jpg"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-smooth_satin_35ae9a7d-ee5a-444b-ad40-83ac2d23ad16.jpg?v=1777481094",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Stone Gray",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010409"
+ },
+ {
+ "sku": "lydia-s-croc-embossed-damask-prp-56543",
+ "handle": "lydia-s-croc-embossed-damask-prp-56543",
+ "title": "Lydia's Croc Embossed Damask",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-01-17at11.48.22AM.png?v=1705520946",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dark Gray",
+ "Designer Wallcoverings",
+ "Embossed Texture",
+ "Fabric",
+ "Gray",
+ "Lydia's Croc Embossed Damask",
+ "Natural",
+ "Natural Wonders",
+ "Pattern",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lydia-s-croc-embossed-damask-prp-56543"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66508",
+ "handle": "cody-couture-wallpaper-xb2-66508",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/907dc1c8e6b32afb6b3d0e296fb9fd43.jpg?v=1775127824",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66508"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-573-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-573-jpg",
+ "title": "Metamorphosis - Soft Rose | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-573.jpg?v=1762300988",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Metamorphosis",
+ "Olefin",
+ "Soft Rose",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-573-jpg"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66841",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66841",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f37dcb77353b19c7eeababca69241df0.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bleinheim Lanvino Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Brown",
+ "Fabric",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66841"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "title": "Sparta - Mineral | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5036.jpg?v=1762308622",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Mineral",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5036-jpg"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56847",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56847",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8f9ed29c1377a5145fdd007e2debe67c.jpg?v=1750789749",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "Beige",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "Warm Taupe",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56847"
+ },
+ {
+ "sku": "kent-grey-faux-grasscloth-wallpaper-cca-82929",
+ "handle": "kent-grey-faux-grasscloth-wallpaper-cca-82929",
+ "title": "Kent Grey Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4f7f1460723c345303dd79ee2f2ff3cb.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-grey-faux-grasscloth-wallpaper-cca-82929"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66513",
+ "handle": "cody-couture-wallpaper-xb2-66513",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f73832ff570e1bc4dc1465a875830b92.jpg?v=1775128276",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Hotel Lobby",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66513"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-cliffside_castle.jpg?v=1777480696",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73039",
+ "handle": "benedict-canyon-sisal-hlw-73039",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73039-sample-clean.jpg?v=1774483161",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73039"
+ },
+ {
+ "sku": "bali-grasscloth-wallpaper-trf-56867",
+ "handle": "bali-grasscloth-wallpaper-trf-56867",
+ "title": "Bali Grasscloth | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3bd1490f28a546aa4b354f83da28b352.jpg?v=1750789714",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth",
+ "beach",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Jeffrey Stevens",
+ "Khaki",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "Olive Green",
+ "organic",
+ "Series: York",
+ "Sisal",
+ "textural",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "woven",
+ "YB-Discontinued-2026-04",
+ "yellow/green"
+ ],
+ "max_price": 130.65,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-wallpaper-trf-56867"
+ },
+ {
+ "sku": "dwkk-129102",
+ "handle": "dwkk-129102",
+ "title": "W3732-5 Light Blue | Kravet Design | Ronald Redding | Solid Texture Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3732_5_8efd05d8-a6fb-4bf7-b13d-ed1c6022f9f0.jpg?v=1753121556",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Light Blue",
+ "Light Gray",
+ "Linen",
+ "Minimalist",
+ "Pale Aqua",
+ "Paper - 100%",
+ "Ronald Redding",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "United States",
+ "W3732-5",
+ "W3732.5.0",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129102"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sdy-3345_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sdy-3345_8-jpg",
+ "title": "Sadeya - Turquoise | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sdy-3345_8.jpg?v=1762305434",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Light Gray",
+ "Sadeya",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sdy-3345_8-jpg"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53164",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53164",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-tumeric.jpg?v=1777480777",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Brown",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rustic",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53164"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73004",
+ "handle": "benedict-canyon-sisal-hlw-73004",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73004-sample-clean.jpg?v=1774482993",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73004"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44289",
+ "handle": "seeing-circles-wallcovering-xsc-44289",
+ "title": "Seeing Circles | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xsc-44289-sample-seeing-circles-hollywood-wallcoverings.jpg?v=1775732882",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44289"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-572-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-572-jpg",
+ "title": "Metamorphosis - Canary Yellow | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-572.jpg?v=1762300950",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Canary Yellow",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-572-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73012",
+ "handle": "benedict-canyon-sisal-hlw-73012",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73012-sample-clean.jpg?v=1774483022",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73012"
+ },
+ {
+ "sku": "calais-navy-grain-stripe-wallpaper-cca-83185",
+ "handle": "calais-navy-grain-stripe-wallpaper-cca-83185",
+ "title": "Calais Navy Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b33e15134a8b1707af56464ad64c4b17.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Farmhouse",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-navy-grain-stripe-wallpaper-cca-83185"
+ },
+ {
+ "sku": "just-jute-regular-jute-grs-43063",
+ "handle": "just-jute-regular-jute-grs-43063",
+ "title": "Just Jute - Regular Jute",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/just-jute-regular-jute-grs-43063-cropped.jpg?v=1774341928",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Jute",
+ "Natural",
+ "Natural Wallcovering",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.47,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/just-jute-regular-jute-grs-43063"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5509-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5509-jpg",
+ "title": "Resham Plus - Ecru | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5509.jpg?v=1762304110",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham Plus",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5509-jpg"
+ },
+ {
+ "sku": "cody-cantina-wallpaper-xb1-66504",
+ "handle": "cody-cantina-wallpaper-xb1-66504",
+ "title": "Cody Cantina Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e24d7708f5ebd647027496cfacd9474c.jpg?v=1775127416",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Cody Cantina Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Red",
+ "Stripe",
+ "Striped",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.61,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66504"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66454",
+ "handle": "caron-tabac-wallpaper-xa6-66454",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/218e025e8ef54cc6e10d39e18f961613.jpg?v=1775123002",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Industrial",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Restaurant",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66454"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5516-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5516-jpg",
+ "title": "Resham - Earthy Green | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5516.jpg?v=1762304353",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Earthy Green",
+ "Grasscloth",
+ "Green",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5516-jpg"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47387",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47387",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/858bf2aef3f6d89b6cbecbfa5bb2f0f0.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Polyester",
+ "Serene",
+ "Smoke Gray",
+ "Stripe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47387"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73126",
+ "handle": "puna-drive-natural-grassweave-hlw-73126",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73126-sample-clean.jpg?v=1774483590",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73126"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58092",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58092",
+ "title": "Sophie's Scrim | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58092-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734233",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Brown",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Dark Goldenrod",
+ "Dining Room",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Rustic",
+ "Scrim",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58092"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66510",
+ "handle": "cody-couture-wallpaper-xb2-66510",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0a084c0a80cb5b90926ab63934ef0e00.jpg?v=1775128066",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Coral",
+ "Dining Room",
+ "Fabric",
+ "Geometric",
+ "Gold",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Red-Orange",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66510"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+ "title": "Sparta - Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5300.jpg?v=1762309063",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Lattice",
+ "Oak",
+ "RAMPART®",
+ "Sparta",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5300-jpg"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2934",
+ "handle": "frank-s-faux-finish-fff-2934",
+ "title": "Frank's Faux Finish Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fff-2934-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714262",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Fabric",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2934"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5514-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5514-jpg",
+ "title": "Resham - Aquamarine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5514.jpg?v=1762304283",
+ "tags": [
+ "100% Vinyl",
+ "Aquamarine",
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5514-jpg"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66593",
+ "handle": "patoa-librato-wallpaper-xb7-66593",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1b4539ba3156eb49a9d61d10852a4a1c.jpg?v=1775130808",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Grasscloth",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Natural Wallcovering",
+ "Neutral",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66593"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53217",
+ "handle": "doral-faux-silk-durable-walls-xwc-53217",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53217-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710274",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53217"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66450",
+ "handle": "caron-tabac-wallpaper-xa6-66450",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8883c6bd764640277e2e78bc5e33f384.jpg?v=1572309542",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66450"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53224",
+ "handle": "doral-faux-silk-durable-walls-xwc-53224",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53224-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710301",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53224"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-faded_fresco.jpg?v=1777480693",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53222",
+ "handle": "doral-faux-silk-durable-walls-xwc-53222",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53222-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710293",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53222"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34330",
+ "handle": "sannohe-budget-vinyl-xcf-34330",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/75448c6297854a80e4c100903310e20d_e853aa72-24d5-4043-81c3-9638d172a83d.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34330"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34326",
+ "handle": "sannohe-budget-vinyl-xcf-34326",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9c98bde114ed8b86793da5bf0bf660a9_7101c606-a248-4271-a015-fe3ae6656342.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34326"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsq-8-3628_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsq-8-3628_8-jpg",
+ "title": "Granary Square - Chestnut | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsq-8-3628_8.jpg?v=1762297098",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Chronicle/London Chic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Granary Square",
+ "Grasscloth",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsq-8-3628_8-jpg"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73119",
+ "handle": "puna-drive-natural-grassweave-hlw-73119",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73119-sample-puna-drive-natural-grassweave-hollywood.jpg?v=1775729453",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Textured",
+ "Tropical",
+ "Umber",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73119"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-404",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-404",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0a493867b5e8c823759648a9cd0712f7_121e8384-243f-42ea-b8e8-cbc24ad0dbec.jpg?v=1745458347",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-404"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5505-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5505-jpg",
+ "title": "Resham - Toasted Almond | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5505.jpg?v=1762303971",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Grasscloth",
+ "Light Brown",
+ "RAMPART®",
+ "Resham",
+ "Tan",
+ "Textured",
+ "Toasted Almond",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5505-jpg"
+ },
+ {
+ "sku": "fringe-double-jute-contemporary-wallpaper-5",
+ "handle": "fringe-double-jute-contemporary-wallpaper-5",
+ "title": "Fringe Double Jute Contemporary Wallcovering",
+ "vendor": "Arte International",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/40323-K50C.jpg?v=1573800215",
+ "tags": [
+ "Brown",
+ "Burnt Orange",
+ "Contemporary",
+ "Grasscloth",
+ "Interior Designer",
+ "Light Beige",
+ "Orange",
+ "Pattern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fringe-double-jute-contemporary-wallpaper-5"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47473",
+ "handle": "crosby-acoustical-wallcovering-xkl-47473",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/666267ad87a1294f0f7287a74c170ee8.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crosby Acoustical Wallcovering",
+ "Dark Blue",
+ "Fabric",
+ "Gray",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Moody",
+ "Navy",
+ "Polyester",
+ "Slate Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47473"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-430",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-430",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/262b325fc2321386a31fb5b5b72146c2_642196fd-0fe2-4b4e-b777-1b7e7b4cedb9.jpg?v=1745458271",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-430"
+ },
+ {
+ "sku": "eur-80274-ncw4273-designer-wallcoverings-los-angeles",
+ "handle": "eur-80274-ncw4273-designer-wallcoverings-los-angeles",
+ "title": "Gioconda Flock Velvet 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501990963.jpg?v=1775523109",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Dot",
+ "Fabric",
+ "Geometric",
+ "Gioconda Flock Velvet",
+ "Grey",
+ "Hallway",
+ "Light Grey",
+ "Minimalist",
+ "NCW4273",
+ "NCW4273 -04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80274-ncw4273-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66509",
+ "handle": "cody-couture-wallpaper-xb2-66509",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4b8c42ad068d958cab806c63d1089c67.jpg?v=1775127950",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Fabric",
+ "Geometric",
+ "Hotel Lobby",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Orange",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66509"
+ },
+ {
+ "sku": "verona-butter-micro-grasscloth-wallcovering-fentucci",
+ "handle": "verona-butter-micro-grasscloth-wallcovering-fentucci",
+ "title": "Verona Butter Micro Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27480.jpg?v=1776879792",
+ "tags": [
+ "Bedroom",
+ "Beige",
+ "Butter",
+ "Cream",
+ "Dining Room",
+ "Farmhouse",
+ "Fentucci",
+ "Grasscloth",
+ "Living Room",
+ "Micro",
+ "new-onboard",
+ "Office",
+ "sample-only",
+ "Solid/Textural",
+ "Texture",
+ "Traditional",
+ "Transitional",
+ "Verona",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verona-butter-micro-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73118",
+ "handle": "puna-drive-natural-grassweave-hlw-73118",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73118-sample-clean.jpg?v=1774483546",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Coastal",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73118"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98618",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98618",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grass-galore-specialty-grasscloth-wallpaper-grs-98618-cropped.jpg?v=1775082378",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Entryway",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "High Gloss Gold Grass",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 31.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98618"
+ },
+ {
+ "sku": "dwqw-56964-handle",
+ "handle": "dwqw-56964-handle",
+ "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Apricot | Architectural Wallcoverings",
+ "vendor": "Malibu Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31721.jpg?v=1748380580",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Background Color apricot",
+ "Background Color Rosy Brown",
+ "Bohemian",
+ "Boho Rhapsody",
+ "Class \"A\" Fire Rated",
+ "Commercial",
+ "Embossed Vinyl",
+ "Fabric",
+ "Indie Linen Embossed Vinyl",
+ "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl",
+ "Light Beige",
+ "Light Duty",
+ "Low Traffic",
+ "Residential",
+ "Residential Use",
+ "Rosy Brown",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwqw-56964-handle"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73025",
+ "handle": "benedict-canyon-sisal-hlw-73025",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73025-sample-clean.jpg?v=1774483088",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73025"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72226",
+ "handle": "saint-lore-durable-vinyl-dur-72226",
+ "title": "Saint Lore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72226-sample-clean.jpg?v=1774484814",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72226"
+ },
+ {
+ "sku": "calais-taupe-grain-stripe-wallpaper-cca-83186",
+ "handle": "calais-taupe-grain-stripe-wallpaper-cca-83186",
+ "title": "Calais Taupe Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4764f38c6032a2249dc61f42fb13ad1a.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-taupe-grain-stripe-wallpaper-cca-83186"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-flax.jpg?v=1777480768",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53158"
+ },
+ {
+ "sku": "dwkk-140164",
+ "handle": "dwkk-140164",
+ "title": "Ikat Stripe Wp - Coral Pink By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_917_4463401f-bd36-4340-bda4-cef9ef2c7749.jpg?v=1753291827",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Bohemian",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Linen",
+ "Luxury",
+ "Pbfc-3531.917.0",
+ "Pink",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140164"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73121",
+ "handle": "puna-drive-natural-grassweave-hlw-73121",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73121-sample-clean.jpg?v=1774483559",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Umber",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73121"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-574-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-574-jpg",
+ "title": "Metamorphosis - Cream | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-574.jpg?v=1762301022",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Cream",
+ "geometric",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-574-jpg"
+ },
+ {
+ "sku": "dwkk-gdfab45af",
+ "handle": "dwkk-gdfab45af",
+ "title": "Ikat Stripe Wp - Pale Blue Light Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_1115_8ecb25bf-81b5-4568-83e5-b24b24b83525.jpg?v=1753291841",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Light Blue",
+ "Luxury",
+ "Off-White",
+ "Pale Blue",
+ "Pattern",
+ "Pbfc-3531.1115.0",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-gdfab45af"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5037-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5037-jpg",
+ "title": "Sparta - Gray Cloud | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5037.jpg?v=1762308660",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Gray Cloud",
+ "Light Gray",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5037-jpg"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72154",
+ "handle": "cote-marine-durable-vinyl-dur-72154",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72154-sample-clean.jpg?v=1774484591",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "lattice",
+ "Light Beige",
+ "Living Room",
+ "Rustic",
+ "textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72154"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-dark_leather.jpg?v=1777480706",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833"
+ },
+ {
+ "sku": "dwkk-139760",
+ "handle": "dwkk-139760",
+ "title": "Fiorentina - Silver/Ivory Silver By Lee Jofa | | Diamond Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2009006_111_0e8257cc-5673-4a40-9b6f-bf4e8b3edf4a.jpg?v=1753291364",
+ "tags": [
+ "30In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "China",
+ "Commercial",
+ "Contemporary",
+ "Diamond",
+ "display_variant",
+ "Fabric",
+ "Fiorentina",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Ivory",
+ "Lee Jofa",
+ "Luxury",
+ "Metallic",
+ "Non-Wallcovering",
+ "P2009006.111.0",
+ "Print",
+ "Silver",
+ "Silver/Ivory",
+ "Sisal - 85%;Cotton - 15%",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139760"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+ "title": "Resham - Glacier Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5511.jpg?v=1762304178",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Glacier Gray",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5511-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73020",
+ "handle": "benedict-canyon-sisal-hlw-73020",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73020-sample-clean.jpg?v=1774483064",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73020"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47386",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47386",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f2b6e0b2b79fa872224f8527bcfc1aae.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Polyester",
+ "Serene",
+ "Silver Gray",
+ "Stripe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47386"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52342",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52342",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-taupe_34e263cb-ce02-49cc-9028-8d38dfee2be5.jpg?v=1777481155",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52342"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52693",
+ "handle": "vernon-durable-walls-xwp-52693",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52693-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735770",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Sand",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52693"
+ },
+ {
+ "sku": "biscay-bay-faux-pine-crosshatch-wbs-39608",
+ "handle": "biscay-bay-faux-pine-crosshatch-wbs-39608",
+ "title": "Biscay Bay Faux Pine Crosshatch | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39608-sample-biscay-bay-faux-pine-crosshatch-hollywood-wallcoverings.jpg?v=1775705349",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-faux-pine-crosshatch-wbs-39608"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66453",
+ "handle": "caron-tabac-wallpaper-xa6-66453",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/debea94acb2a04aaf7b667783958b266.jpg?v=1775122824",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Blue",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Living Room",
+ "Navy Blue",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66453"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98615",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98615",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grass-galore-specialty-grasscloth-wallpaper-grs-98615-cropped.jpg?v=1775082029",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Entryway",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98615"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66514",
+ "handle": "cody-couture-wallpaper-xb2-66514",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d24e5ea345a4d6a3e38fb1b0243e5acb.jpg?v=1775128302",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66514"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5302-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5302-jpg",
+ "title": "Sparta - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SRP-5302.jpg?v=1762309135",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Lattice",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5302-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73024",
+ "handle": "benedict-canyon-sisal-hlw-73024",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73024-sample-clean.jpg?v=1774483080",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73024"
+ },
+ {
+ "sku": "jonesville-contemporary-durable-walls-xwf-52244",
+ "handle": "jonesville-contemporary-durable-walls-xwf-52244",
+ "title": "Jonesville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52244-sample-jonesville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775720088",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Organic Modern",
+ "Sage Green",
+ "Serene",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesville-contemporary-durable-walls-xwf-52244"
+ },
+ {
+ "sku": "yucatan-sisal-wallpaper-trf-56863",
+ "handle": "yucatan-sisal-wallpaper-trf-56863",
+ "title": "Yucatan Sisal | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c995a0c96a97fab6795cf41cb6301b32.jpg?v=1750789726",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "deep blue",
+ "Denim Blue",
+ "Discontinued",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Light Beige",
+ "Light Blue",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "organic",
+ "Scandinavian",
+ "Series: York",
+ "Sisal",
+ "Smoke",
+ "Steel",
+ "textural",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 153.28,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yucatan-sisal-wallpaper-trf-56863"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58097",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58097",
+ "title": "Sophie's Scrim | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58097-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734363",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Basketweave",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Copper",
+ "Dining Room",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Tan",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Scrim",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58097"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-577-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-577-jpg",
+ "title": "Metamorphosis - Tungsten | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-577.jpg?v=1762301131",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Gray",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "Textured",
+ "Tungsten",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-577-jpg"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58161-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725591",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58161"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5506-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5506-jpg",
+ "title": "Resham - Sunbeam | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5506.jpg?v=1762304005",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham",
+ "Sunbeam",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5506-jpg"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52347",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52347",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-beige_9ec5ac4e-0891-40fb-81cc-7700f8a5e948.jpg?v=1777481176",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Pale Gold",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52347"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-405",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-405",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b05846b4ef58e57152324bd4b058dbd_1cc3599b-7155-4d03-b90a-b423b6ead1d6.jpg?v=1745458344",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Purple",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-405"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-gold.jpg?v=1777480509",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Pale Gold",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52349"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73033",
+ "handle": "benedict-canyon-sisal-hlw-73033",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73033-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703755",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73033"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73029",
+ "handle": "benedict-canyon-sisal-hlw-73029",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73029-sample-clean.jpg?v=1774483110",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Sisal",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73029"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47474",
+ "handle": "crosby-acoustical-wallcovering-xkl-47474",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52fe4ae2bf070d81613f3c25d4ffca71.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crosby Acoustical Wallcovering",
+ "Fabric",
+ "Gray",
+ "Hollywood Acoustical",
+ "Light Grey",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Polyester",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47474"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73109",
+ "handle": "puna-drive-natural-grassweave-hlw-73109",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73109-sample-clean.jpg?v=1774483485",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73109"
+ },
+ {
+ "sku": "durante-diamonds-hlw-73052",
+ "handle": "durante-diamonds-hlw-73052",
+ "title": "Durante Diamonds | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73052-sample-durante-diamonds-hollywood-wallcoverings.jpg?v=1775710360",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/durante-diamonds-hlw-73052"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47467",
+ "handle": "crosby-acoustical-wallcovering-xkl-47467",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c3a142919651c993b2556a39e9b61164.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Beige",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Polyester",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47467"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66518",
+ "handle": "cody-couture-wallpaper-xb2-66518",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/89703cb2b7c087d28608eca46d62e489.jpg?v=1775128728",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66518"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73022",
+ "handle": "benedict-canyon-sisal-hlw-73022",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73022-sample-clean.jpg?v=1774483074",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Scandinavian",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73022"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48277",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48277",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48277-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731480",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48277"
+ },
+ {
+ "sku": "nassau-gold-ermine",
+ "handle": "nassau-gold-ermine",
+ "title": "Nappa - Metallic - Ermine 100% SIlicone | Philippe Romano Wallcoverings",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Ermine.jpg?v=1772569954",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bleach Cleanable",
+ "Brown",
+ "BS 5852 Crib 5",
+ "CA TB 117 Compliant",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract Grade",
+ "DMF-Free",
+ "Fabric",
+ "FR Additives Free",
+ "Graffiti-Free",
+ "Green Building",
+ "Hallway",
+ "Healthcare",
+ "Hospitality",
+ "IMO 8.2 & 8.3 Certified",
+ "IMO Marine Grade",
+ "Indoor/Outdoor",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "Minimalist",
+ "Multi-Purpose",
+ "Mushroom",
+ "Muted",
+ "MVSS-302 Automotive",
+ "Neutral Tones",
+ "NFPA 260 Compliant",
+ "PFAS-Free",
+ "Phillipe Romano",
+ "Rustic",
+ "Serene",
+ "Silicone",
+ "Solid",
+ "Solid Color",
+ "Stone",
+ "Subtle",
+ "Subtle Texture",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-gold-ermine"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5078-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5078-jpg",
+ "title": "Ashlar - Citadel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5078.jpg?v=1762286865",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Citadel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5078-jpg"
+ },
+ {
+ "sku": "henna-horizontal-grasscloth-wallpaper-trf-56886",
+ "handle": "henna-horizontal-grasscloth-wallpaper-trf-56886",
+ "title": "Henna Horizontal Faux Grasscloth | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/75d64397a60425f0ee126c692e6fd0c8.jpg?v=1750789676",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "light grey",
+ "Light Yellow",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Pale Yellow",
+ "pale yellow/green",
+ "Prepasted - Washable - Strippable",
+ "Scandinavian",
+ "Series: York",
+ "Stripe",
+ "textured",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/henna-horizontal-grasscloth-wallpaper-trf-56886"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9448-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9448-jpg",
+ "title": "Maya - Absolute | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9448.jpg?v=1762302439",
+ "tags": [
+ "100% Vinyl",
+ "Absolute",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9448-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-408",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-408",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d0bd220cd728f08eb93924884935b3a0_78be6b77-6b12-4ab7-8a73-4d404f3de090.jpg?v=1745458337",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-408"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53223",
+ "handle": "doral-faux-silk-durable-walls-xwc-53223",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53223-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710296",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53223"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9440-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9440-jpg",
+ "title": "Maya - Carbon | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9440.jpg?v=1762302154",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Carbon",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9440-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-433",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-433",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b1b3240fdde01226f2207bb2b4206b2_732d79c9-8082-43e5-9928-f3541b4a11dd.jpg?v=1745458264",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-433"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73111",
+ "handle": "puna-drive-natural-grassweave-hlw-73111",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73111-sample-clean.jpg?v=1774483505",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73111"
+ },
+ {
+ "sku": "wtw0410fire",
+ "handle": "wtw0410fire",
+ "title": "Fire Island Grass - Mocha | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0410FIRE.jpg?v=1745346321",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "FIRE ISLAND GRASS",
+ "Fire Island Grass - Mocha Wallcovering",
+ "Grasscloth",
+ "Gray",
+ "Scalamandre Wallcovering",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0410fire"
+ },
+ {
+ "sku": "lost-adventure-midnight-wp-clarke-and-clarke",
+ "handle": "lost-adventure-midnight-wp-clarke-and-clarke",
+ "title": "Lost Adventure Midnight Wp | Clarke and Clarke",
+ "vendor": "Clarke and Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0201_01_CAC.jpg?v=1776795805",
+ "tags": [
+ "Animal",
+ "animal print",
+ "Background: Dark Slate Gray",
+ "birds",
+ "Botanical",
+ "Clarke and Clarke",
+ "Dark Midnight Blue",
+ "Dark Slate Gray",
+ "Detailed",
+ "exotic",
+ "fabric",
+ "Fantasy",
+ "Illustration",
+ "jungle",
+ "Kravet",
+ "leaves",
+ "Light Steel Blue",
+ "LOST ADVENTURE",
+ "Midnight Wp",
+ "monkeys",
+ "Mythica Wallcovering Emma J Shipley for C&C",
+ "Nature",
+ "New Arrival",
+ "NON WOVEN",
+ "Origin: United Kingdom",
+ "Palm Trees",
+ "Print",
+ "Steel Blue",
+ "Surreal",
+ "tropical",
+ "Very Dark Gray",
+ "Wallcovering",
+ "Wallpaper",
+ "Whimsical",
+ "Zebra"
+ ],
+ "max_price": 1313.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lost-adventure-midnight-wp-clarke-and-clarke"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73027",
+ "handle": "benedict-canyon-sisal-hlw-73027",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73027-sample-clean.jpg?v=1774483097",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Sage Green",
+ "Sisal",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73027"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73105",
+ "handle": "puna-drive-natural-grassweave-hlw-73105",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73105-sample-clean.jpg?v=1774483461",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal Gray",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Off-white",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 43.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73105"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66452",
+ "handle": "caron-tabac-wallpaper-xa6-66452",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9f5df439ef467ad830c81d4dd4f8a93b.jpg?v=1775122647",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fabric",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Maroon",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66452"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98616",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98616",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grass-galore-specialty-grasscloth-wallpaper-grs-98616-cropped.jpg?v=1775082136",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Neutral",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Silver Pleated Grass",
+ "Solid/Textural",
+ "Spa",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98616"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73107",
+ "handle": "puna-drive-natural-grassweave-hlw-73107",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73107-sample-clean.jpg?v=1774483471",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73107"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52111",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52111",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52111-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707107",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linear",
+ "Living Room",
+ "Pattern",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52111"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66517",
+ "handle": "cody-couture-wallpaper-xb2-66517",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8f293f02ac6fa9d6bc00a3fb7c2e786.jpg?v=1775128597",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-White",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66517"
+ },
+ {
+ "sku": "bergamo-oat-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "bergamo-oat-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Bergamo Oat Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27510.jpg?v=1776879803",
+ "tags": [
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bergamo",
+ "Coastal",
+ "Cream",
+ "Entryway",
+ "Farmhouse",
+ "Fentucci",
+ "Grasscloth",
+ "Living Room",
+ "new-onboard",
+ "Oat",
+ "Office",
+ "sample-only",
+ "Solid/Textural",
+ "Tan",
+ "Texture",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bergamo-oat-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66826",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66826",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/201dd580ee1a16e6ce8c629881d198eb.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66826"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5500-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5500-jpg",
+ "title": "Resham - Fine Wine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5500.jpg?v=1762303801",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Fine Wine",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5500-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73034",
+ "handle": "benedict-canyon-sisal-hlw-73034",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73034-sample-clean.jpg?v=1774483132",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Rustic",
+ "Sisal",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73034"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73003",
+ "handle": "benedict-canyon-sisal-hlw-73003",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73003-sample-clean.jpg?v=1774482988",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73003"
+ },
+ {
+ "sku": "cooper-denim-cabin-stripe-wallpaper-cca-82968",
+ "handle": "cooper-denim-cabin-stripe-wallpaper-cca-82968",
+ "title": "Cooper Denim Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/87e69332394df9f236f015e8731f321e.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cooper-denim-cabin-stripe-wallpaper-cca-82968"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58164-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725666",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58164"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73108",
+ "handle": "puna-drive-natural-grassweave-hlw-73108",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73108-sample-clean.jpg?v=1774483477",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73108"
+ },
+ {
+ "sku": "dwkk-140163",
+ "handle": "dwkk-140163",
+ "title": "Ikat Stripe Wp - Blue/Lime Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_523_cf2abb81-3356-4c2f-8bd3-c256cf7702e5.jpg?v=1753291836",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Blue",
+ "Blue/Lime",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Lime Green",
+ "Luxury",
+ "Off-White",
+ "Pbfc-3531.523.0",
+ "Print",
+ "Saddle",
+ "Stripe",
+ "Stripes",
+ "Textured",
+ "Tomato",
+ "United States",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140163"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58159-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725544",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Black",
+ "Charcoal",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Grey",
+ "Metallic",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Office",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58159"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-571-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-571-jpg",
+ "title": "Metamorphosis - Antique Gold | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-571.jpg?v=1762300912",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Antique Gold",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Gold",
+ "Metamorphosis",
+ "Olefin",
+ "Tan",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-571-jpg"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010231",
+ "handle": "hollywood-atelier-woven-xhw-2010231",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010231-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775716971",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010231"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66520",
+ "handle": "cody-couture-wallpaper-xb2-66520",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09d191f461efbe176c834e0e87dc23e7.jpg?v=1775128845",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66520"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_qnt-5542-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_qnt-5542-jpg",
+ "title": "Quinault - Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/qnt-5542.jpg?v=1762303363",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "Oak",
+ "Quinault",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_qnt-5542-jpg"
+ },
+ {
+ "sku": "dwkk-130027",
+ "handle": "dwkk-130027",
+ "title": "Kravet Design - Beige Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4013_86_1e712722-15d2-440b-9f64-84411f60fa51.jpg?v=1753321469",
+ "tags": [
+ "36In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "China",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Elements Ii Naturals",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Living Room",
+ "Organic",
+ "Paper - 100%",
+ "Pattern",
+ "Rustic",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "W4013-86",
+ "W4013.86.0",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-130027"
+ },
+ {
+ "sku": "wtt661540",
+ "handle": "wtt661540",
+ "title": "Relief Repetition - Pacific | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTT661540.jpg?v=1745346588",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Blue",
+ "Fabric",
+ "Geometric",
+ "Light Gray",
+ "Luxury",
+ "Pattern",
+ "RELIEF REPETITION",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtt661540"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56845",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56845",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/188fb516a217f62458216ed4b49f09c7.jpg?v=1750789751",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "Beige",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Jeffrey Stevens",
+ "Light Tan",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "Warm Beige",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56845"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47391",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47391",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d0688946bc75e82bd18bf1149c4bfac9.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hollywood Acoustical",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Maroon",
+ "Polyester",
+ "Red",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47391"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010234",
+ "handle": "hollywood-atelier-woven-xhw-2010234",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010234-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775717024",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010234"
+ },
+ {
+ "sku": "dwkk-139803",
+ "handle": "dwkk-139803",
+ "title": "Pennycross Paper - Dove Beige By Lee Jofa | Merkato | Diamond Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2017107_101_8cf46867-556c-4741-8c11-c344352c3052.jpg?v=1753291253",
+ "tags": [
+ "34In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Commercial",
+ "Diamond",
+ "display_variant",
+ "Dove",
+ "Fabric",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Greek Key",
+ "Lee Jofa",
+ "Luxury",
+ "Merkato",
+ "Non-Wallcovering",
+ "P2017107.101.0",
+ "Paper",
+ "Pennycross Paper",
+ "Print",
+ "Sisal - 90%;Cotton - 10%",
+ "Textured",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139803"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73131",
+ "handle": "hilo-highway-diamond-grass-hlw-73131",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73131-sample-clean.jpg?v=1774483626",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive Green",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive",
+ "Organic",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73131"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73010",
+ "handle": "benedict-canyon-sisal-hlw-73010",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73010-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703736",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Oatmeal",
+ "Organic Modern",
+ "Sage",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73010"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52345",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52345",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-tan.jpg?v=1777480502",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Beige",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gold",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Organic Modern",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52345"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010241",
+ "handle": "hollywood-atelier-woven-xhw-2010241",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010241-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775717016",
+ "tags": [
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010241"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73043",
+ "handle": "gregory-diamonds-drive-hlw-73043",
+ "title": "Gregory Diamonds Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73043-sample-clean.jpg?v=1774483179",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Chevron",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73043"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-lake.jpg?v=1777480706",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48166-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728399",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48166"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73067",
+ "handle": "reeds-drive-wild-grass-hlw-73067",
+ "title": "Reeds Drive - Wild Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73067-sample-clean.jpg?v=1774483311",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Green",
+ "Dark Olive Green",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Reeds Drive",
+ "Rustic",
+ "Sage",
+ "Stripe",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 31.09,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73067"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_qnt-5543-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_qnt-5543-jpg",
+ "title": "Quinault - Autumn | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/qnt-5543.jpg?v=1762303399",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Autumn",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "Quinault",
+ "RAMPART®",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_qnt-5543-jpg"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010236",
+ "handle": "hollywood-atelier-woven-xhw-2010236",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010236-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775716993",
+ "tags": [
+ "Beige",
+ "Bronze",
+ "Coral",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Violet",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010236"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58160-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725567",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Metallic",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Neoclassical",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58160"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58163",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58163",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58163-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725643",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Metallic",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Sand",
+ "Silver",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58163"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66480",
+ "handle": "mr-diorio-wallpaper-xa8-66480",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ebc67817a2558dc8367539e8d354ef7.jpg?v=1775126273",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Fabric",
+ "Farmhouse",
+ "Living Room",
+ "Maroon",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Red",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66480"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47390",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47390",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/344b9fd3d609db5d0887d1c6decc87c2.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Polyester",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47390"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-herb_dc4f5d17-9274-4cc4-9737-d27f06874f92.jpg?v=1777481171",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52357"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-nettle.jpg?v=1777480766",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53157"
+ },
+ {
+ "sku": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "handle": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "title": "Kent Sky Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09bbfba5dcb27d4e36cf2740877057cf.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Light Gray",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-sky-faux-grasscloth-wallpaper-cca-82927"
+ },
+ {
+ "sku": "kent-red-faux-grasscloth-wallpaper-cca-82928",
+ "handle": "kent-red-faux-grasscloth-wallpaper-cca-82928",
+ "title": "Kent Red Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0445bac5a661010bacc56a05dc844cc9.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-red-faux-grasscloth-wallpaper-cca-82928"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-samite.jpg?v=1777481101",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sand",
+ "Silk Texture",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010414"
+ },
+ {
+ "sku": "wtw0454fire",
+ "handle": "wtw0454fire",
+ "title": "Fire Island Grass - Cream | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0454FIRE.jpg?v=1745346314",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "FIRE ISLAND GRASS",
+ "Grasscloth",
+ "Scalamandre Wallcovering",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0454fire"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47468",
+ "handle": "crosby-acoustical-wallcovering-xkl-47468",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/631dd761c66a9580d21ce5b1f5ac8fd9.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Polyester",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47468"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58129",
+ "handle": "jutely-vinyl-dwx-58129",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58129-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720277",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Beige",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58129"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48273",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48273",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/roanoke-sea_salt.jpg?v=1777480152",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48273"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-427",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-427",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/df17d36a880da0ecf941d29c92a6c7f1_6499a96a-0999-41e3-a78d-c5ce3bc20a49.jpg?v=1745458279",
+ "tags": [
+ "Alabaster",
+ "Almond",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coffee",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Greige",
+ "Latte",
+ "Mink",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Putty",
+ "Shell",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-427"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b296ce8734c98e09806160b25e22b324.jpg?v=1775081911",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Off-White",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98614"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98617",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98617",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grass-galore-specialty-grasscloth-wallpaper-grs-98617-cropped.jpg?v=1775082251",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Dark",
+ "Entryway",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98617"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66512",
+ "handle": "cody-couture-wallpaper-xb2-66512",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/472aebf7b48b65f538fa019c2bdfe667.jpg?v=1775128155",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Fabric",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Spa",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66512"
+ },
+ {
+ "sku": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+ "handle": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+ "title": "Kent Beige Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91a17198ae07f76f275862d9de59ce49.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-beige-faux-grasscloth-wallpaper-cca-82925"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73110",
+ "handle": "puna-drive-natural-grassweave-hlw-73110",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73110-sample-clean.jpg?v=1774483500",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73110"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..201a65a
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "fabricwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "fabricwallpaper",
+ "version": "0.1.0",
+ "dependencies": {
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+ "license": "MIT"
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.5",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
+ "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "~1.2.0",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "on-finished": "~2.4.1",
+ "qs": "~6.15.1",
+ "raw-body": "~2.5.3",
+ "type-is": "~1.6.18",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.15.1",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
+ "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
+ "license": "MIT"
+ },
+ "node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.22.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
+ "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
+ "license": "MIT",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "~1.20.3",
+ "content-disposition": "~0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "~0.7.1",
+ "cookie-signature": "~1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.3.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.0",
+ "merge-descriptors": "1.0.3",
+ "methods": "~1.1.2",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "~0.1.12",
+ "proxy-addr": "~2.0.7",
+ "qs": "~6.14.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "~0.19.0",
+ "serve-static": "~1.16.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "~2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
+ "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "~2.0.2",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/helmet": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz",
+ "integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "~2.0.0",
+ "inherits": "~2.0.4",
+ "setprototypeof": "~1.2.0",
+ "statuses": "~2.0.2",
+ "toidentifier": "~1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
+ "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
+ "license": "MIT"
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "license": "MIT",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.14.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
+ "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/send": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
+ "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.1",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "~2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "~2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
+ "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "~0.19.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/statuses": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "license": "MIT",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..2e1c6b4
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "fabricwallpaper",
+ "version": "0.1.0",
+ "description": "FABRIC WALLPAPER — DW family vertical",
+ "main": "server.js",
+ "scripts": {
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..83cf488
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
+<rect width="32" height="32" rx="6" fill="#10b981"/>
+<text x="50%" y="55%" text-anchor="middle" dominant-baseline="middle" font-size="20" font-family="Apple Color Emoji, Segoe UI Emoji, sans-serif" fill="white">F</text>
+</svg>
\ No newline at end of file
diff --git a/public/hero-bg.jpg b/public/hero-bg.jpg
new file mode 100644
index 0000000..6c331ae
Binary files /dev/null and b/public/hero-bg.jpg differ
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..7baebe5
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,613 @@
+<!doctype html>
+<html lang="en">
+<head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title>FABRIC WALLPAPER — Wall as textile</title>
+<meta name="description" content="FABRIC WALLPAPER · Wall as textile. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#100c08">
+<link rel="canonical" href="https://fabricwallpaper.com/">
+<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap" rel="stylesheet">
+<script src="/zd-loader.js" defer></script>
+<style>
+:root {
+ --bg: #100c08;
+ --paper: #ffffff;
+ --muted: #9a8a72;
+ --line: rgba(255,255,255,0.10);
+ --accent: #b89060;
+ --bg-soft: #1c1610;
+ --cols: 6; /* default grid density — slider controls this */
+}
+html[data-theme="light"] {
+ --bg: #f5e8d4;
+ --paper: #0a0905;
+ --muted: #6b5f56;
+ --line: rgba(10,9,5,0.12);
+ --accent: #5a3818;
+ --bg-soft: #ebd8b8;
+}
+* { margin:0; padding:0; box-sizing:border-box }
+html { scroll-behavior:smooth }
+body { font-family:'Inter', sans-serif; color:var(--paper); -webkit-font-smoothing:antialiased; background:var(--bg); min-height:100vh; overflow-x:hidden }
+
+/* ===== Auto-hide header ===== */
+header { position:fixed; top:0; left:0; right:0; display:flex; justify-content:space-between; align-items:center; padding:22px 32px; z-index:100; background:rgba(0,0,0,0.55); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); transition:transform .3s }
+.h-link { display:flex; align-items:center; gap:10px; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; color:var(--paper); text-decoration:none; cursor:pointer; background:transparent; border:0 }
+.h-link:hover { opacity:0.7 }
+.h-icon { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.5 }
+
+/* ===== Cinema hero ===== */
+.cinema { position:relative; height:100vh; width:100%; overflow:hidden }
+.cinema-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-image:url('/hero-bg.jpg') }
+.cinema-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.75) 100%) }
+.corner-mark { position:absolute; top:24px; left:32px; font-size:11px; font-weight:700; letter-spacing:0.32em; text-transform:uppercase; mix-blend-mode:difference; color:#fff; z-index:5 }
+.corner-mark::before { content:"◆ "; margin-right:6px }
+.center-mark { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:clamp(34px,5vw,72px); font-weight:300; letter-spacing:0.42em; text-transform:uppercase; text-align:center; color:#fff; z-index:5; mix-blend-mode:difference }
+.center-mark .tm { font-size:14px; vertical-align:super; opacity:0.7; margin-left:0.2em }
+.center-mark .sub { display:block; font-family:'Playfair Display', Georgia, serif; font-style:italic; font-weight:400; font-size:0.4em; letter-spacing:0.04em; text-transform:none; margin-top:14px; opacity:0.85 }
+.meta-line { position:absolute; bottom:32px; left:32px; font-size:10px; letter-spacing:0.28em; text-transform:uppercase; font-weight:700; color:#fff; z-index:5; opacity:0.85 }
+.meta-line .num { font-size:12px; display:block; margin-top:4px; letter-spacing:0.05em }
+.enter { position:absolute; bottom:32px; right:32px; display:flex; align-items:center; gap:14px; font-size:11px; letter-spacing:0.36em; text-transform:uppercase; font-weight:700; color:#fff; text-decoration:none; padding-bottom:6px; border-bottom:1px solid #fff; transition:gap 0.25s; z-index:5 }
+.enter:hover { gap:22px }
+.enter svg { width:24px; height:12px }
+
+/* ===== Section ===== */
+.section { padding:96px 32px }
+.section-header { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px; margin-bottom:32px; padding-bottom:24px; border-bottom:1px solid var(--line) }
+.section-title { font-size:clamp(36px,5vw,64px); font-weight:300; letter-spacing:-0.02em; line-height:1 }
+.section-title .accent { color: var(--accent); font-family:'Playfair Display', Georgia, serif; font-style:italic; font-weight:400 }
+.section-eyebrow { font-size:10px; letter-spacing:0.4em; text-transform:uppercase; font-weight:700; color:var(--muted); margin-bottom:16px }
+.section-meta { font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; color:var(--muted); text-align:right; line-height:1.6 }
+
+/* ===== Filter bar ===== */
+.filters { display:flex; gap:8px; align-items:center; margin-bottom:18px; flex-wrap:wrap }
+.chip { padding:8px 16px; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; color:var(--paper); background:transparent; border:1px solid var(--line); cursor:pointer; transition:all 0.2s; font-family:inherit }
+.chip:hover { border-color:var(--paper) }
+.chip.active { background:var(--paper); color:var(--bg); border-color:var(--paper) }
+.search { flex:0 1 280px; margin-left:auto; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--line); padding:6px 0 }
+.search input { flex:1; background:transparent; border:0; color:var(--paper); font-family:inherit; font-size:13px; outline:none; letter-spacing:0.04em }
+.search input::placeholder { color:var(--muted) }
+.search svg { width:16px; height:16px; stroke:var(--muted); fill:none; stroke-width:1.5 }
+
+/* ===== Grid-density slider ===== */
+.density { display:flex; align-items:center; gap:14px; padding:6px 0; margin-bottom:24px }
+.density label { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700; color:var(--muted) }
+.density input[type=range] { flex:1; max-width:240px; -webkit-appearance:none; appearance:none; height:1px; background:var(--line); outline:none }
+.density input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:14px; height:14px; background:var(--accent); cursor:pointer; border-radius:50% }
+.density input[type=range]::-moz-range-thumb { width:14px; height:14px; background:var(--accent); cursor:pointer; border-radius:50%; border:0 }
+.density .ct { font-size:11px; color:var(--muted); letter-spacing:0.18em; text-transform:uppercase; font-weight:600; min-width:80px }
+
+/* ===== Stats line ===== */
+.stat-line { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:600; color:var(--muted); margin-bottom:24px }
+
+/* ===== Product grid (novasuede pattern: flush grid + slide-up overlay) ===== */
+.grid { display:grid; grid-template-columns:repeat(var(--cols), 1fr); gap:0 }
+.card { position:relative; aspect-ratio:1/1.15; cursor:pointer; overflow:hidden; border:1px solid var(--bg); transition:transform 0.4s cubic-bezier(0.2,0.8,0.2,1); background:var(--bg-soft) }
+.card:hover { transform:scale(1.04); z-index:5 }
+.card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease }
+.card .overlay { position:absolute; left:0; right:0; bottom:0; padding:20px 16px 14px; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%); transform:translateY(48%); opacity:0.85; transition:transform 0.3s ease, opacity 0.3s ease }
+.card:hover .overlay { transform:translateY(0); opacity:1 }
+.card .pat { font-size:13px; font-weight:600; letter-spacing:0.02em; color:#fff; line-height:1.25; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden }
+.card .ven { font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:#fff; opacity:0.7; font-weight:500; margin-top:4px }
+.card .actions { margin-top:10px; display:flex; gap:6px }
+.card .sample-btn { flex:1; padding:7px 10px; background:#fff; color:#000; font-family:inherit; font-size:10px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; border:0; cursor:pointer; text-align:center; transition:all 0.2s }
+.card .sample-btn:hover { background:var(--accent); color:#fff }
+
+@media (max-width:980px) { .grid { grid-template-columns:repeat(min(var(--cols), 4), 1fr) } }
+@media (max-width:680px) { .grid { grid-template-columns:repeat(2, 1fr) } .density { display:none } }
+
+.sentinel { height:1px }
+.loading { text-align:center; color:var(--muted); padding:32px; font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700 }
+
+/* ===== Footer ===== */
+footer { padding:64px 32px 32px; border-top:1px solid var(--line); margin-top:32px }
+.footer-grid { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; margin-bottom:48px }
+.footer-brand { font-size:24px; font-weight:300; letter-spacing:0.32em; text-transform:uppercase; margin-bottom:12px }
+.footer-text { font-size:13px; line-height:1.6; color:var(--muted); max-width:380px }
+.footer-col h4 { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700; color:var(--paper); margin-bottom:18px }
+.footer-col a { display:block; font-size:13px; color:var(--muted); text-decoration:none; margin-bottom:8px; transition:color 0.2s; cursor:pointer; background:transparent; border:0; font-family:inherit; padding:0; text-align:left }
+.footer-col a:hover { color:var(--accent) }
+.footer-bottom { max-width:1400px; margin:0 auto; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--muted) }
+
+@media (max-width:720px) {
+ .corner-mark, .meta-line, .enter { font-size:10px }
+ .center-mark { font-size:30px; letter-spacing:0.32em }
+ .section, footer { padding-left:20px; padding-right:20px }
+ .footer-grid { grid-template-columns:1fr; gap:32px }
+ .search { margin-left:0; flex:1 1 100% }
+}
+
+.theme-toggle { background:transparent; border:1px solid var(--line); width:32px; height:32px; cursor:pointer; color:var(--paper); display:inline-flex; align-items:center; justify-content:center; font-size:14px; line-height:1; transition:all .15s; padding:0 }
+.theme-toggle:hover { border-color:var(--accent); color:var(--accent) }
+
+/* ===== WCAG 2.4.7 — keyboard focus indicators ===== */
+/* Strictly :focus-visible so mouse clicks do NOT show the ring */
+a:focus-visible,
+button:focus-visible,
+input:focus-visible,
+select:focus-visible,
+textarea:focus-visible,
+[tabindex]:focus-visible {
+ outline: 2px solid var(--accent);
+ outline-offset: 2px;
+}
+</style>
+<script>
+(function(){ try { var t = localStorage.getItem('fab_theme') || 'dark'; document.documentElement.dataset.theme = t; } catch(e){} })();
+</script>
+</head>
+<body>
+
+<header>
+ <button class="h-link" onclick="dwmOpen('Contact')" aria-label="Contact"><svg class="h-icon" viewBox="0 0 24 24"><path d="M3 7h18M3 12h18M3 17h18"/></svg><span>Contact</span></button>
+ <button class="theme-toggle" id="theme-toggle" aria-label="Theme toggle">☾</button>
+</header>
+
+<section class="cinema">
+ <div class="cinema-bg"></div>
+ <div class="corner-mark">Textile on the Wall</div>
+ <div class="center-mark">FABRIC WALLPAPER<span class="tm">.</span><span class="sub">Wall as textile</span></div>
+ <div class="meta-line">Fabric · Textile · Woven · Brocade<span class="num" id="heroNum"></span></div>
+ <a class="enter" href="#shop">Enter <svg viewBox="0 0 24 12" fill="none" stroke="currentColor" stroke-width="1.4"><path d="M0 6h22M16 1l6 5-6 5"/></svg></a>
+</section>
+
+<section class="section" id="shop">
+ <div class="section-header">
+ <div>
+ <div class="section-eyebrow">The Collection</div>
+ <h2 class="section-title"><span class="accent" id="totalCount">—</span> Patterns.</h2>
+ </div>
+ <div class="section-meta">Fabric · Textile · Woven · Brocade</div>
+ </div>
+
+ <div class="filters" id="facets">
+ <button class="chip active" data-facet="all">All</button>
+ </div>
+
+ <div class="density">
+ <label>Grid</label>
+ <input type="range" id="densitySlider" min="4" max="12" step="1" value="6" aria-label="Grid columns">
+ <span class="ct" id="densityLabel">6 cols</span>
+ <div class="search">
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M21 21l-5.5-5.5"/></svg>
+ <input type="text" id="searchInput" placeholder="Search by pattern, color…" autocomplete="off">
+ </div>
+ </div>
+
+ <div class="stat-line" id="statLine">Loading…</div>
+ <div class="grid" id="grid"></div>
+ <div class="loading" id="loading">Loading more…</div>
+ <div class="sentinel" id="sentinel"></div>
+</section>
+
+<footer>
+ <div class="footer-grid">
+ <div>
+ <div class="footer-brand">FABRIC WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated fabric · textile · woven · brocade from heritage mills, fulfilled through the DW trade channel — memo samples ship free.</p>
+ <p class="footer-text" style="margin-top:14px;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;color:var(--paper);opacity:0.7">DesignerWallcoverings.com — Authorized Trade Channel</p>
+ </div>
+ <div class="footer-col">
+ <h4>Aesthetic</h4>
+ <div id="footerFacets"></div>
+ </div>
+ <div class="footer-col">
+ <h4>Trade</h4>
+ <button onclick="dwmOpen('Inquiry')">Project Inquiry</button>
+ <button onclick="dwmOpen('Sample')">Request Sample</button>
+ <button onclick="dwmOpen('Contact')">Contact</button>
+ </div>
+ </div>
+ <!-- mini-constellation: every storefront shows its position in the family -->
+ <div style="max-width:1400px;margin:0 auto 24px;padding:32px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)">
+ <div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:12px;margin-bottom:18px">
+ <div>
+ <div style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:6px">★ DW FAMILY · 43 niches</div>
+ <div style="font-family:'Playfair Display',Georgia,serif;font-style:italic;font-size:18px;color:var(--paper);letter-spacing:0.01em">You're on <span style="color:var(--accent);font-weight:500">fabricwallpaper</span>. Hover any star to leap.</div>
+ </div>
+ <a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--accent);font-weight:600;text-decoration:none;border:1px solid var(--accent);padding:8px 14px">DW Universe →</a>
+ </div>
+ <svg id="miniConst" viewBox="0 0 1080 200" style="width:100%;height:200px;display:block" role="img" aria-label="DW family constellation: 43 niche sites; current site highlighted">
+ <defs>
+ <pattern id="dna-mat" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><line x1="0" y1="0" x2="0" y2="5" stroke="#c9b687" stroke-width="0.6"/></pattern>
+ <pattern id="dna-dec" width="8" height="5" patternUnits="userSpaceOnUse"><polyline points="0,4 4,1 8,4" stroke="#b86a4a" stroke-width="0.6" fill="none"/></pattern>
+ <pattern id="dna-cra" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(-30)"><line x1="0" y1="2.5" x2="5" y2="2.5" stroke="#6b8e6f" stroke-width="0.5" stroke-dasharray="1.4 1.2"/></pattern>
+ <pattern id="dna-use" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M0 0 L4 0 M0 0 L0 4" stroke="#4a6b8e" stroke-width="0.4" fill="none"/></pattern>
+ </defs>
+ </svg>
+ <div style="display:flex;justify-content:space-between;font-size:9px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:6px;padding:0 8px">
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#c9b687;border-radius:50%"></i>Material</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#b86a4a;border-radius:50%"></i>Decade</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#6b8e6f;border-radius:50%"></i>Craft</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#4a6b8e;border-radius:50%"></i>Use-case</span>
+ </div>
+ </div>
+
+ <div class="footer-bottom">
+ <span>fabricwallpaper.com · a designer wallcoverings family vertical</span>
+ <span><a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="color:var(--accent);text-decoration:none;letter-spacing:0.18em">DW Universe — search all 43 niches at once →</a></span>
+ <span id="footerStat"></span>
+ </div>
+</footer>
+
+<script>
+// mini-constellation — 43 niche-stars, current site highlighted in gold
+(function(){
+ const SLUG = "fabricwallpaper";
+ const NICHES = [
+ ['silkwallpaper','Silk','mat'],['silkwallcoverings','Silk W/C','mat'],['linenwallpaper','Linen','mat'],
+ ['jutewallpaper','Jute','mat'],['raffiawallcoverings','Raffia W/C','mat'],['raffiawalls','Raffia Walls','mat'],
+ ['corkwallcovering','Cork','mat'],['fabricwallpaper','Fabric','mat'],['textilewallpaper','Textile','mat'],
+ ['metallicwallpaper','Metallic','mat'],['silverleafwallpaper','Silver Leaf','mat'],['vinylwallpaper','Vinyl','mat'],
+ ['micawallpaper','Mica','mat'],['madagascarwallpaper','Madagascar','mat'],['mylarwallpaper','Mylar','mat'],
+ ['suedewallpaper','Suede','mat'],
+ ['1800swallpaper','1800s','dec'],['1890swallpaper','1890s','dec'],['1900swallpaper','1900s','dec'],
+ ['1920swallpaper','1920s','dec'],['1930swallpaper','1930s','dec'],['1940swallpaper','1940s','dec'],
+ ['1950swallpaper','1950s','dec'],['1960swallpaper','1960s','dec'],['1970swallpaper','1970s','dec'],
+ ['1980swallpaper','1980s','dec'],['retrowalls','Retro','dec'],['wallpapersback','W. Back','dec'],
+ ['agedwallpaper','Aged','cra'],['handcraftedwallpaper','Handcrafted','cra'],['museumwallpaper','Museum','cra'],
+ ['restorationwallpaper','Restoration','cra'],['pastelwallpaper','Pastel','cra'],['glitterwalls','Glitter','cra'],
+ ['greenwallcoverings','Green','cra'],['naturalwallcoverings','Natural','cra'],['saloonwallpaper','Saloon','cra'],
+ ['contractwallpaper','Contract','use'],['hotelwallcoverings','Hotel','use'],['hospitalitywallpaper','Hospitality','use'],
+ ['healthcarewallpaper','Healthcare','use'],['restaurantwallpaper','Restaurant','use'],['architecturalwallcoverings','Architectural','use']
+ ];
+ const COLOR = { mat:'#c9b687', dec:'#b86a4a', cra:'#6b8e6f', use:'#4a6b8e' };
+ const W = 1080, H = 200, BANDS = ['mat','dec','cra','use'];
+ const groups = { mat:[], dec:[], cra:[], use:[] };
+ for (const n of NICHES) groups[n[2]].push(n);
+ const svg = document.getElementById('miniConst');
+ if (!svg) return;
+ const bandW = W / BANDS.length;
+ let nodes = '';
+ BANDS.forEach((band, bi) => {
+ const list = groups[band];
+ const cx = bi * bandW + bandW / 2;
+ list.forEach((n, i) => {
+ const t = list.length === 1 ? 0.5 : i / (list.length - 1);
+ // deterministic jitter per slug
+ let h = 0; for (let k = 0; k < n[0].length; k++) h = (h * 31 + n[0].charCodeAt(k)) | 0;
+ const jx = ((h & 0xff) / 255 - 0.5) * (bandW * 0.5);
+ const jy = (((h >> 8) & 0xff) / 255 - 0.5) * 14;
+ const x = cx + jx, y = 28 + t * (H - 56) + jy;
+ const isCurrent = n[0] === SLUG;
+ const r = isCurrent ? 8 : 4;
+ const op = isCurrent ? 1 : 0.55;
+ nodes += `<g class="mc-node" data-slug="${n[0]}" data-label="${n[1]}" style="cursor:pointer">
+ <circle cx="${x}" cy="${y}" r="${r}" fill="url(#dna-${band})" fill-opacity="${op}" stroke="${COLOR[band]}" stroke-opacity="${isCurrent?1:0.7}" stroke-width="${isCurrent?2:1}">
+ <title>${n[1]} — ${n[0]}.com</title>
+ </circle>
+ ${isCurrent ? `<circle cx="${x}" cy="${y}" r="${r+5}" fill="none" stroke="${COLOR[band]}" stroke-opacity="0.4" stroke-width="1"><animate attributeName="r" values="${r+5};${r+12};${r+5}" dur="2.4s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" repeatCount="indefinite"/></circle>` : ''}
+ </g>`;
+ });
+ });
+ // append nodes after defs
+ svg.insertAdjacentHTML('beforeend', nodes);
+ svg.querySelectorAll('.mc-node').forEach(n => {
+ n.addEventListener('mouseenter', () => n.querySelector('circle').setAttribute('fill-opacity', '1'));
+ n.addEventListener('mouseleave', e => {
+ const isCurrent = n.dataset.slug === SLUG;
+ n.querySelector('circle').setAttribute('fill-opacity', isCurrent ? '1' : '0.55');
+ });
+ n.addEventListener('click', () => window.open('https://' + n.dataset.slug + '.com', '_blank'));
+ });
+})();
+</script>
+
+<script>
+const state = { q:'', facet:'all', page:1, pages:1, total:0, loading:false, exhausted:false };
+const LABELS = {"all":"All"};
+
+function escAttr(s) { return String(s == null ? '' : s).replace(/[&<>"']/g, c => ({ '&':'&','<':'<','>':'>','"':'"',"'":''' }[c])); }
+// Image-URL allowlist: only DW Shopify CDN + designerwallcoverings.com (defends against XSS via crafted products.json)
+function safeImg(u) { return /^https:\/\/(?:cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u || '') ? u : '/hero-bg.jpg'; }
+function cardHTML(p) {
+ return '<img loading="lazy" src="' + escAttr(safeImg(p.image_url)) + '" alt="' + escAttr(p.title) + '">'
+ + '<div class="overlay">'
+ + '<div class="pat">' + escAttr(p.pattern_name || p.title) + '</div>'
+ + '<div class="ven">' + escAttr((p.vendor || '').replace(/-/g, ' ')) + '</div>'
+ + '<div class="actions">'
+ + '<button class="sample-btn" onclick="event.stopPropagation();dwmOpen(\'Sample\',' + JSON.stringify({sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}).replace(/"/g,'"') + ')">Sample</button>'
+ + '</div></div>';
+}
+
+async function loadFacets() {
+ let f;
+ try {
+ const r = await fetch('/api/facets');
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ f = await r.json();
+ } catch (e) { console.error('loadFacets failed:', e); return; }
+ const el = document.getElementById('facets');
+ for (const [k, v] of Object.entries(f.aesthetics).sort((a,b) => b[1] - a[1])) {
+ const b = document.createElement('button');
+ b.className = 'chip'; b.dataset.facet = k;
+ b.innerHTML = (LABELS[k] || k) + ' <span style="opacity:.55;font-weight:500;margin-left:4px">' + v + '</span>';
+ el.appendChild(b);
+ }
+ el.addEventListener('click', e => {
+ if (e.target.tagName !== 'BUTTON') return;
+ document.querySelectorAll('#facets button').forEach(b => b.classList.remove('active'));
+ e.target.classList.add('active');
+ state.facet = e.target.dataset.facet;
+ resetGrid();
+ });
+ document.getElementById('totalCount').textContent = f.total;
+ document.getElementById('footerStat').textContent = f.total + ' patterns · live archive';
+ // Footer aesthetic links
+ const footerEl = document.getElementById('footerFacets');
+ for (const [k] of Object.entries(f.aesthetics)) {
+ const b = document.createElement('button');
+ b.textContent = LABELS[k] || k;
+ b.onclick = () => { state.facet = k; resetGrid(); document.querySelectorAll('#facets button').forEach(x => x.classList.toggle('active', x.dataset.facet === k)); document.getElementById('shop').scrollIntoView({behavior:'smooth'}); };
+ footerEl.appendChild(b);
+ }
+}
+
+function resetGrid() {
+ state.page = 1; state.exhausted = false;
+ document.getElementById('grid').innerHTML = '';
+ document.getElementById('loading').textContent = 'Loading…';
+ loadGridPage();
+}
+
+async function loadGridPage() {
+ if (state.loading || state.exhausted) return;
+ state.loading = true;
+ const params = new URLSearchParams({ page:state.page, limit:24 });
+ if (state.q) params.set('q', state.q);
+ if (state.facet !== 'all') params.set('aesthetic', state.facet);
+ let data;
+ try {
+ const r = await fetch('/api/products?' + params);
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ data = await r.json();
+ } catch (e) {
+ console.error('loadGridPage failed:', e);
+ document.getElementById('loading').textContent = '— offline — refresh to retry —';
+ state.loading = false;
+ return;
+ }
+ state.total = data.total; state.pages = data.pages;
+
+ if (state.page === 1) {
+ document.getElementById('statLine').textContent = data.total + ' patterns · ' + (state.facet === 'all' ? 'all aesthetics' : (LABELS[state.facet] || state.facet)) + (state.q ? ' · matching "' + state.q + '"' : '');
+ }
+ const grid = document.getElementById('grid');
+ for (const p of data.items) {
+ const a = document.createElement('a');
+ a.className = 'card'; a.href = '#'; a.onclick = (e) => { e.preventDefault(); dwmOpen('Sample',{sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}); };
+ a.innerHTML = cardHTML(p);
+ grid.appendChild(a);
+ }
+ if (state.page >= state.pages || data.items.length === 0) {
+ state.exhausted = true;
+ document.getElementById('loading').textContent = state.total > 0 ? '— end of archive · ' + state.total + ' patterns —' : '';
+ } else state.page++;
+ state.loading = false;
+}
+
+const io = new IntersectionObserver(es => { for (const e of es) if (e.isIntersecting) loadGridPage(); }, { rootMargin:'600px 0px' });
+io.observe(document.getElementById('sentinel'));
+
+document.getElementById('searchInput').addEventListener('input', e => {
+ state.q = e.target.value.trim();
+ clearTimeout(window._t);
+ window._t = setTimeout(resetGrid, 220);
+});
+
+// Density slider
+const slider = document.getElementById('densitySlider');
+const dlabel = document.getElementById('densityLabel');
+function setDensity(n) {
+ document.documentElement.style.setProperty('--cols', n);
+ dlabel.textContent = n + ' cols';
+ try { localStorage.setItem('fab_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('fab_theme_density') || '6');
+if (savedDensity >= 4 && savedDensity <= 12) { slider.value = savedDensity; setDensity(savedDensity); }
+
+// Theme toggle
+const tb = document.getElementById('theme-toggle');
+function setTheme(t){ document.documentElement.dataset.theme = t; try { localStorage.setItem('fab_theme', t); } catch(e){} tb.textContent = t === 'dark' ? '☾' : '☀'; }
+setTheme(document.documentElement.dataset.theme || 'dark');
+tb.addEventListener('click', () => setTheme(document.documentElement.dataset.theme === 'dark' ? 'light' : 'dark'));
+
+loadFacets();
+loadGridPage();
+</script>
+<!-- ============================================================
+ DW UNIVERSAL CONTACT MODULE — fashion-house UX
+ Inject before </body> in every DW-family sister site.
+ Self-contained: CSS + 4 modals + JS submission handlers.
+ Uses host site's CSS vars (--bg, --fg, --gold, --rule).
+ ============================================================ -->
+<style>
+ /* === MODAL BASE === */
+ .dwm{position:fixed;inset:0;background:rgba(0,0,0,0.78);display:none;align-items:center;justify-content:center;z-index:9999;padding:24px;overflow-y:auto}
+ .dwm.open{display:flex}
+ .dwm-box{background:var(--bg);border:1px solid var(--rule);max-width:520px;width:100%;padding:36px 32px;position:relative;max-height:90vh;overflow-y:auto;animation:dwm-in 0.25s ease}
+ @keyframes dwm-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
+ .dwm-box h3{font-family:'Playfair Display',Georgia,serif;font-style:italic;font-weight:400;font-size:32px;line-height:1.05;margin-bottom:6px;color:var(--fg);letter-spacing:-0.01em}
+ .dwm-box .sub{color:var(--muted);font-size:12px;letter-spacing:0.16em;text-transform:uppercase;margin-bottom:24px;font-weight:500}
+ .dwm-close{position:absolute;top:18px;right:18px;background:transparent;border:0;color:var(--muted);font-size:24px;cursor:pointer;width:32px;height:32px;line-height:1;padding:0}
+ .dwm-close:hover{color:var(--gold)}
+ .dwm-preview{display:flex;gap:14px;align-items:center;padding:12px;background:var(--bg-soft);margin-bottom:18px}
+ .dwm-preview img{width:64px;height:64px;object-fit:cover}
+ .dwm-preview .pn{font-family:'Playfair Display',Georgia,serif;font-style:italic;font-size:15px;line-height:1.2;color:var(--fg)}
+ .dwm-preview .pc{font-size:10px;letter-spacing:0.14em;text-transform:uppercase;color:var(--muted);margin-top:4px}
+ .dwm-field{margin-bottom:14px}
+ .dwm-field label{display:block;font-size:10px;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);margin-bottom:6px;font-weight:500}
+ .dwm-field input,.dwm-field textarea,.dwm-field select{width:100%;border:0;border-bottom:1px solid var(--rule);background:transparent;padding:8px 4px;font-size:14px;font-family:inherit;color:var(--fg);outline:none;transition:border-color 0.2s}
+ .dwm-field input:focus,.dwm-field textarea:focus{border-bottom-color:var(--gold)}
+ .dwm-field textarea{min-height:60px;resize:vertical}
+ .dwm-submit{background:var(--gold);color:#000;border:0;padding:14px 28px;font-family:inherit;font-size:11px;letter-spacing:0.20em;text-transform:uppercase;font-weight:700;cursor:pointer;width:100%;margin-top:8px;transition:opacity 0.15s}
+ .dwm-submit:hover{opacity:0.85}
+ .dwm-submit:disabled{opacity:0.5;cursor:default}
+ .dwm-status{margin-top:14px;font-size:11px;letter-spacing:0.16em;text-transform:uppercase;text-align:center;display:none}
+ .dwm-status.ok{color:var(--sage);display:block}
+ .dwm-status.err{color:#e08070;display:block}
+ /* contact-options */
+ .dwm-options{display:flex;flex-direction:column;gap:10px}
+ .dwm-option{display:flex;align-items:center;gap:14px;padding:18px 20px;background:transparent;border:1px solid var(--rule);color:var(--fg);font-family:inherit;font-size:11px;letter-spacing:0.20em;text-transform:uppercase;font-weight:600;cursor:pointer;text-decoration:none;transition:all 0.2s;text-align:left;width:100%}
+ .dwm-option:hover{border-color:var(--gold);color:var(--gold)}
+ .dwm-option svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.5;flex-shrink:0}
+ .dwm-option .lbl{flex:1;display:block}
+ .dwm-option .val{display:block;font-size:10px;letter-spacing:0.14em;text-transform:none;font-weight:500;opacity:0.65;margin-top:4px}
+</style>
+
+<!-- Contact options modal -->
+<div class="dwm" id="dwmContact" onclick="if(event.target===this)dwmClose('Contact')">
+ <div class="dwm-box" style="max-width:440px">
+ <button class="dwm-close" onclick="dwmClose('Contact')" aria-label="Close">×</button>
+ <h3>Contact</h3>
+ <p class="sub" id="dwmContactSub">Three ways to reach us</p>
+ <div class="dwm-options">
+ <button class="dwm-option" type="button" onclick="dwmClose('Contact');dwmOpen('Inquiry')">
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3z"/></svg>
+ <span class="lbl">Send an Inquiry<span class="val">Project name · scope · all the details</span></span>
+ </button>
+ <button class="dwm-option" type="button" onclick="dwmClose('Contact');dwmOpen('Sample')">
+ <svg viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="14"/><path d="M4 10h16M9 6V3h6v3"/></svg>
+ <span class="lbl">Request a Sample<span class="val">Memo sample · ships free · 3–5 business days</span></span>
+ </button>
+ <a class="dwm-option" id="dwmContactEmailLink" href="mailto:info@designerwallcoverings.com">
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v12H3z"/><path d="M3 6l9 7 9-7"/></svg>
+ <span class="lbl">Email Us<span class="val" id="dwmContactEmailLabel">info@designerwallcoverings.com</span></span>
+ </a>
+ </div>
+ </div>
+</div>
+
+<!-- Inquiry modal -->
+<div class="dwm" id="dwmInquiry" onclick="if(event.target===this)dwmClose('Inquiry')">
+ <div class="dwm-box">
+ <button class="dwm-close" onclick="dwmClose('Inquiry')" aria-label="Close">×</button>
+ <h3>Project Inquiry</h3>
+ <p class="sub">We'll respond within one business day</p>
+ <form id="dwmInquiryForm" onsubmit="return dwmSubmit(event,'inquiry')">
+ <div class="dwm-field"><label>Name</label><input type="text" name="name" required></div>
+ <div class="dwm-field"><label>Email</label><input type="email" name="email" required></div>
+ <div class="dwm-field"><label>Phone</label><input type="tel" name="phone"></div>
+ <div class="dwm-field"><label>Company / Trade</label><input type="text" name="company"></div>
+ <div class="dwm-field"><label>Project Name</label><input type="text" name="projectName" required></div>
+ <div class="dwm-field"><label>Project Scope</label><textarea name="projectScope" placeholder="Square footage · room count · timeline" required></textarea></div>
+ <div class="dwm-field"><label>Additional Information</label><textarea name="message" placeholder="Patterns of interest, finish preferences, budget"></textarea></div>
+ <button type="submit" class="dwm-submit">Send Inquiry</button>
+ <div class="dwm-status" id="dwmInquiryStatus"></div>
+ </form>
+ </div>
+</div>
+
+<!-- Sample-request modal -->
+<div class="dwm" id="dwmSample" onclick="if(event.target===this)dwmClose('Sample')">
+ <div class="dwm-box">
+ <button class="dwm-close" onclick="dwmClose('Sample')" aria-label="Close">×</button>
+ <h3>Request a Sample</h3>
+ <p class="sub">Memo sample · ships free · 3–5 business days</p>
+ <div class="dwm-preview" id="dwmSamplePreview" style="display:none">
+ <img id="dwmSampleImg" src="" alt="">
+ <div><div class="pn" id="dwmSampleName"></div><div class="pc" id="dwmSampleSku"></div></div>
+ </div>
+ <form id="dwmSampleForm" onsubmit="return dwmSubmit(event,'sample')">
+ <input type="hidden" name="sku" id="dwmSampleSkuInput">
+ <input type="hidden" name="title" id="dwmSampleTitleInput">
+ <input type="hidden" name="image_url" id="dwmSampleImageInput">
+ <div class="dwm-field"><label>Name</label><input type="text" name="name" required></div>
+ <div class="dwm-field"><label>Email</label><input type="email" name="email" required></div>
+ <div class="dwm-field"><label>Company / Trade</label><input type="text" name="company"></div>
+ <div class="dwm-field"><label>Shipping Address</label><input type="text" name="address" placeholder="Street" required></div>
+ <div class="dwm-field" style="display:grid;grid-template-columns:2fr 1fr 1fr;gap:8px">
+ <input type="text" name="city" placeholder="City" required>
+ <input type="text" name="state" placeholder="State" required>
+ <input type="text" name="zip" placeholder="ZIP" required>
+ </div>
+ <div class="dwm-field"><label>Notes (optional)</label><textarea name="message" placeholder="Project, sq.ft., timing"></textarea></div>
+ <button type="submit" class="dwm-submit">Send Sample Request</button>
+ <div class="dwm-status" id="dwmSampleStatus"></div>
+ </form>
+ </div>
+</div>
+
+<script>
+ // Universal modal control
+ function dwmOpen(name, opts){
+ document.getElementById('dwm' + name).classList.add('open');
+ document.body.style.overflow = 'hidden';
+ if (name === 'Sample' && opts) {
+ document.getElementById('dwmSamplePreview').style.display = 'flex';
+ document.getElementById('dwmSampleImg').src = opts.image_url || '';
+ document.getElementById('dwmSampleName').textContent = opts.title || '';
+ document.getElementById('dwmSampleSku').textContent = opts.sku || '';
+ document.getElementById('dwmSampleSkuInput').value = opts.sku || '';
+ document.getElementById('dwmSampleTitleInput').value = opts.title || '';
+ document.getElementById('dwmSampleImageInput').value = opts.image_url || '';
+ } else if (name === 'Sample') {
+ document.getElementById('dwmSamplePreview').style.display = 'none';
+ document.getElementById('dwmSampleSkuInput').value = '';
+ document.getElementById('dwmSampleTitleInput').value = '';
+ document.getElementById('dwmSampleImageInput').value = '';
+ }
+ }
+ function dwmClose(name){ document.getElementById('dwm'+name).classList.remove('open'); document.body.style.overflow=''; }
+
+ // Universal form submit — POSTs to /api/send-{kind}
+ async function dwmSubmit(e, kind) {
+ e.preventDefault();
+ const form = e.target;
+ const data = Object.fromEntries(new FormData(form).entries());
+ const btn = form.querySelector('.dwm-submit');
+ const status = form.querySelector('.dwm-status');
+ btn.disabled = true; const orig = btn.textContent; btn.textContent = 'Sending…';
+ status.className = 'dwm-status';
+ try {
+ const r = await fetch('/api/send-' + kind, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify(data) });
+ if (!r.ok) throw new Error('HTTP '+r.status);
+ const j = await r.json();
+ status.textContent = kind === 'sample' ? 'Sample request sent — ships within 3–5 business days' : 'Inquiry sent — we respond within 1 business day';
+ status.className = 'dwm-status ok';
+ btn.textContent = 'Sent ✓';
+ setTimeout(() => { dwmClose(kind === 'sample' ? 'Sample' : 'Inquiry'); btn.disabled = false; btn.textContent = orig; status.className = 'dwm-status'; form.reset(); }, 2800);
+ } catch (err) {
+ status.textContent = 'Send failed — please email info@designerwallcoverings.com';
+ status.className = 'dwm-status err';
+ btn.disabled = false; btn.textContent = orig;
+ }
+ return false;
+ }
+
+ // Wire up "Memo samples ship free" badge in hero to open sample modal directly
+ document.querySelectorAll('.hero .badge, [data-open-sample]').forEach(el => {
+ el.style.cursor = 'pointer';
+ el.addEventListener('click', () => dwmOpen('Sample'));
+ });
+
+ // Wire nav "Trade" link to inquiry modal
+ document.querySelectorAll('nav a[href*="designerwallcoverings.com"]').forEach(a => {
+ a.removeAttribute('target');
+ a.removeAttribute('href');
+ a.style.cursor = 'pointer';
+ a.addEventListener('click', e => { e.preventDefault(); dwmOpen('Contact'); });
+ });
+
+ // Override product card clicks — open Sample modal pre-filled instead of redirecting to DW
+ document.addEventListener('click', e => {
+ const card = e.target.closest('.card, .rail-card');
+ if (!card) return;
+ if (card.tagName === 'A' && (card.getAttribute('href') || '').startsWith('/sample/')) {
+ e.preventDefault();
+ const img = card.querySelector('img');
+ const pat = card.querySelector('.pat');
+ const sku = card.getAttribute('href').replace('/sample/', '');
+ dwmOpen('Sample', {
+ sku,
+ title: pat ? pat.textContent.trim() : '',
+ image_url: img ? img.src : ''
+ });
+ }
+ }, true);
+</script>
+
+</body>
+</html>
diff --git a/server.js b/server.js
new file mode 100644
index 0000000..fa5fb23
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * FABRIC WALLPAPER — DW family vertical
+ * Curated slice from live designerwallcoverings.com Shopify catalog.
+ */
+const express = require('express');
+const helmet = require('helmet');
+const path = require('path');
+const fs = require('fs');
+
+const PORT = process.env.PORT || 9846;
+const DW_SHOPIFY = 'https://designerwallcoverings.com';
+const __SITE = path.basename(__dirname);
+let DATA_RAW;
+try {
+ const raw = fs.readFileSync(path.join(__dirname, 'data', 'products.json'), 'utf8');
+ DATA_RAW = JSON.parse(raw);
+ if (!Array.isArray(DATA_RAW)) throw new Error('products.json must be an array');
+} catch (e) {
+ console.error(`[${__SITE}] FATAL: could not load products.json — ${e.message}`);
+ console.error(`[${__SITE}] Starting with empty catalog. Run pull script to populate data/products.json.`);
+ DATA_RAW = [];
+}
+
+function isJunk(p) {
+ if (!p.image_url || !p.image_url.trim()) return true;
+ if (!p.handle && !p.sku) return true;
+ const t = p.title || '';
+ if (/lamp|rug|pillow|throw|tripod|frame|mirror|vase|candle|sculpture|figurine/i.test(t)) return true;
+ if (/visual.{0,3}merchandiser/i.test(t)) return true;
+ if (/(?:^|\W)image[ _-]?4(?:\W|$)/i.test(t)) return true;
+ if (/bh.?90210|beverly.?hills.?90210|iconic.{0,4}bh/i.test(t)) return true;
+ return false;
+}
+
+const PRODUCTS = DATA_RAW.filter(p => !isJunk(p));
+const DROPPED = DATA_RAW.length - PRODUCTS.length;
+console.log(`Loaded ${DATA_RAW.length}, kept ${PRODUCTS.length}, dropped ${DROPPED}`);
+
+const app = express();
+// Security headers via helmet (added 2026-05-04 overnight YOLO loop)
+app.use(helmet({ contentSecurityPolicy: false }));
+app.use(express.json({ limit: '256kb' }));
+// Universal contact module — modals, /api/send-inquiry, /api/send-sample, /zd-loader.js
+require('./_universal-contact')(app, { siteName: "Fabric Wallpaper", zdColor: "#b89060", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "fabricwallpaper" });
+
+app.use(express.static(path.join(__dirname, 'public')));
+
+app.get('/api/products', (req, res) => {
+ const { q, aesthetic, vendor, page = 1, limit = 24 } = req.query;
+ let list = PRODUCTS;
+ if (q) {
+ const needle = q.toLowerCase();
+ list = list.filter(p => (p.title || '').toLowerCase().includes(needle) || (p.tags || []).some(t => t.toLowerCase().includes(needle)));
+ }
+ if (aesthetic && aesthetic !== 'all') list = list.filter(p => p.aesthetic === aesthetic);
+ if (vendor && vendor !== 'all') list = list.filter(p => p.vendor === vendor);
+ const total = list.length;
+ const pageNum = Math.max(1, parseInt(page) || 1);
+ const lim = Math.min(60, parseInt(limit) || 24);
+ const start = (pageNum - 1) * lim;
+ res.json({ total, page: pageNum, limit: lim, pages: Math.ceil(total / lim), items: list.slice(start, start + lim) });
+});
+
+app.get('/api/sliders', (req, res) => {
+ const SLIDER_AESTHETICS = ["silk","linen","grasscloth","woven","natural","luxe"];
+ const out = [];
+ for (const a of SLIDER_AESTHETICS) {
+ const items = PRODUCTS.filter(p => p.aesthetic === a).slice(0, 12);
+ if (items.length >= 4) out.push({ aesthetic: a, items });
+ }
+ res.json({ rails: out });
+});
+
+app.get('/api/facets', (req, res) => {
+ const aesthetics = {}; const vendors = {};
+ for (const p of PRODUCTS) {
+ aesthetics[p.aesthetic] = (aesthetics[p.aesthetic] || 0) + 1;
+ vendors[p.vendor] = (vendors[p.vendor] || 0) + 1;
+ }
+ res.json({ aesthetics, vendors, total: PRODUCTS.length });
+});
+
+app.get('/api/health', (req, res) => res.json({ status: 'ok', count: PRODUCTS.length, dropped: DROPPED }));
+
+app.get('/sample/:handle', (req, res) => {
+ const p = PRODUCTS.find(x => x.handle === req.params.handle || x.sku === req.params.handle);
+ if (!p) return res.status(404).send('Not found');
+ res.redirect(302, p.product_url || `${DW_SHOPIFY}/products/${encodeURIComponent(p.handle)}#sample`);
+});
+
+// sitemap.xml + robots.txt for SEO
+app.get('/robots.txt', (req, res) => {
+ res.type('text/plain').send(`User-agent: *
+Allow: /
+Sitemap: https://fabricwallpaper.com/sitemap.xml
+`);
+});
+app.get('/sitemap.xml', (req, res) => {
+ const urls = ['/'];
+ const xml = `<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+${urls.map(u => ` <url><loc>https://fabricwallpaper.com${u}</loc><changefreq>weekly</changefreq></url>`).join('\n')}
+</urlset>`;
+ res.type('application/xml').send(xml);
+});
+
+app.listen(PORT, '127.0.0.1', () => {
+ console.log(`fabricwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..a07c2c1
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "fabricwallpaper",
+ "siteName": "Fabric Wallpaper",
+ "domain": "fabricwallpaper.com",
+ "nicheKeyword": "fabric",
+ "tagline": "Woven cloth, room-applied.",
+ "heroHeadline": "FABRIC WALLPAPER",
+ "heroSub": "Woven cloth, room-applied.",
+ "theme": {
+ "accent": "#b89060"
+ },
+ "rails": [
+ "linen",
+ "silk",
+ "wool",
+ "jacquard",
+ "damask",
+ "blended"
+ ],
+ "port": 9846
+}
(oldest)
·
back to Fabricwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 6593686 →