← back to Silverleafwallpaper
initial scaffold (gitify-all 2026-05-06)
96a396c3af01cde394e8c275338af9ad33cccd61 · 2026-05-06 10:25:48 -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 96a396c3af01cde394e8c275338af9ad33cccd61
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:48 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 | 16688 ++++++++++++++++++++++++++++++++++++++++++++++++
package-lock.json | 852 +++
package.json | 13 +
public/favicon.svg | 4 +
public/hero-bg.jpg | Bin 0 -> 780607 bytes
public/index.html | 613 ++
server.js | 110 +
site.config.json | 21 +
11 files changed, 18609 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..b762cec
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,16688 @@
+[
+ {
+ "sku": "eur-80384-ncw4356-designer-wallcoverings-los-angeles",
+ "handle": "eur-80384-ncw4356-designer-wallcoverings-los-angeles",
+ "title": "Fortoiseau 05 - Onyx Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506152499.jpg?v=1775523743",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Bedroom",
+ "bird",
+ "Birds",
+ "Black",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "Fauna",
+ "Fortoiseau",
+ "Gray",
+ "LES INDIENNES",
+ "Living Room",
+ "NCW4356",
+ "NCW4356-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Silver",
+ "Sophisticated",
+ "Tile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80384-ncw4356-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4356-05",
+ "handle": "ncw4356-05",
+ "title": "Nina Campbell Wallcoverings - Onyx Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265197107.jpg?v=1775520669",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fauna",
+ "Gray",
+ "NCW4356-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4356-05"
+ },
+ {
+ "sku": "hollywood-and-vine-xhw-201041",
+ "handle": "hollywood-and-vine-xhw-201041",
+ "title": "Hollywood and Vine",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201041-sample-hollywood-and-vine.jpg?v=1775716839",
+ "tags": [
+ "Black",
+ "Charcoal",
+ "Faux Wood",
+ "Gray",
+ "Ivory",
+ "Olive",
+ "Silver",
+ "Slate",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-vine-xhw-201041"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3299_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3299_8-jpg",
+ "title": "Marlu - Smoke | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3299_8.jpg?v=1762301730",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Smoke",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3299_8-jpg"
+ },
+ {
+ "sku": "dwtt-71541-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71541-designer-wallcoverings-los-angeles",
+ "title": "Kendall Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11066_b60414ca-7eb5-480e-90a6-c07997c5c2e3.jpg?v=1733893875",
+ "tags": [
+ "Architectural",
+ "Geometric",
+ "Geometric Resource 2",
+ "gray",
+ "Pattern",
+ "Silver",
+ "T11066",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71541-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-lounge-chevron-xhw-2010169",
+ "handle": "hollywood-lounge-chevron-xhw-2010169",
+ "title": "Hollywood Lounge Chevron | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010169-sample-hollywood-lounge-chevron-hollywood-wallcoverings.jpg?v=1775717842",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Geometric",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-lounge-chevron-xhw-2010169"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72285",
+ "handle": "st-dennis-durable-vinyl-dur-72285",
+ "title": "St Dennis Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72285-sample-clean.jpg?v=1774485031",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-dennis-durable-vinyl-dur-72285"
+ },
+ {
+ "sku": "dwtt-72537-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72537-designer-wallcoverings-los-angeles",
+ "title": "Shangri-la Metallic Gold and Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6832.jpg?v=1775153701",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "gold",
+ "Metallic Gold and Silver",
+ "Pattern",
+ "Shangri-La",
+ "T8665",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72537-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "pauline-s-retro-geometric-scr-8006",
+ "handle": "pauline-s-retro-geometric-scr-8006",
+ "title": "Pauline's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/44b5e21c2389e4f3126e32e35763be1b.jpg?v=1572309104",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Floral",
+ "Geometric",
+ "Light Gray",
+ "Mid-Century Modern",
+ "Paper",
+ "Pauline's Retro Geometric",
+ "Screen Print",
+ "Silver",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White",
+ "White Silver"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pauline-s-retro-geometric-scr-8006"
+ },
+ {
+ "sku": "eur-80153-ncw4151-designer-wallcoverings-los-angeles",
+ "handle": "eur-80153-ncw4151-designer-wallcoverings-los-angeles",
+ "title": "Torosay 06 - 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_7513497567283.jpg?v=1775522430",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Celestial",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Lattice",
+ "Living Room",
+ "Luxe",
+ "NCW4151",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "ROSSLYN",
+ "Serene",
+ "Silver",
+ "Torosay",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80153-ncw4151-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "georgina-criss-cross-vinyl-xgc-44437",
+ "handle": "georgina-criss-cross-vinyl-xgc-44437",
+ "title": "Georgina Criss Cross Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgc-44437-sample-georgina-criss-cross-vinyl-hollywood-wallcoverings.jpg?v=1775714446",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Geometric",
+ "Gold",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Tan",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/georgina-criss-cross-vinyl-xgc-44437"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010435",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010435",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010435-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717304",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010435"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47763",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47763",
+ "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47763-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715639",
+ "tags": [
+ "Charcoal",
+ "Cloud",
+ "Faux Wood",
+ "Graphite",
+ "Gray",
+ "Pewter",
+ "Platinum",
+ "Silver",
+ "Slate",
+ "Smoke",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47763"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66447",
+ "handle": "caron-tabac-wallpaper-xa6-66447",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/696e480696a7b28912546d7e7132e941.jpg?v=1775121832",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Silver",
+ "Spa",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66447"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48450",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48450",
+ "title": "Sudbury Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqe-48450-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735070",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Tomato",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48450"
+ },
+ {
+ "sku": "programa-piento-durable-vinyl-dur-72423",
+ "handle": "programa-piento-durable-vinyl-dur-72423",
+ "title": "Programa Piento Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72423-sample-clean.jpg?v=1774485490",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Programa Piento Durable Vinyl",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/programa-piento-durable-vinyl-dur-72423"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5041-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5041-jpg",
+ "title": "Dasma - Parchment | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5041.jpg?v=1762291757",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Parchment",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5041-jpg"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53623",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53623",
+ "title": "Hawthorne Faux Vertical Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53623-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716642",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53623"
+ },
+ {
+ "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": "atherstone-type-ii-vinyl-wallcovering-xjk-47187",
+ "handle": "atherstone-type-ii-vinyl-wallcovering-xjk-47187",
+ "title": "Atherstone Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjk-47187-sample-atherstone-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775701734",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Stone",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.89,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/atherstone-type-ii-vinyl-wallcovering-xjk-47187"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58111",
+ "handle": "floating-bubbles-vinyl-dwx-58111",
+ "title": "Floating Bubbles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58111-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713359",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Modern",
+ "Neutral",
+ "Organic",
+ "Silver",
+ "Subtle",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58111"
+ },
+ {
+ "sku": "versace-plain-textured-metallic-grey-wallcovering-versace",
+ "handle": "versace-plain-textured-metallic-grey-wallcovering-versace",
+ "title": "Plain Textured Metallic Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/577ff399af5d2ac334ed70e0e366c169.jpg?v=1773706499",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Glamorous",
+ "Gray",
+ "Hotel Lobby",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Metallic Grey",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Textured",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-textured-metallic-grey-wallcovering-versace"
+ },
+ {
+ "sku": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "handle": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "title": "Camila Moss Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f732d6dcd610b98c6c3fc5ab2da0a651.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gold",
+ "Gray",
+ "LA Walls",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-moss-modern-damask-wallpaper-wallpaper-cca-82844"
+ },
+ {
+ "sku": "hollywood-chic-plaster-xhw-2010311",
+ "handle": "hollywood-chic-plaster-xhw-2010311",
+ "title": "Hollywood Chic Plaster | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010311-sample-hollywood-chic-plaster-hollywood-wallcoverings.jpg?v=1775717194",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Faux Wood",
+ "HANDMADE",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Orchid",
+ "Plum",
+ "Polyester",
+ "POLYESTER/METAL",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 126.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-chic-plaster-xhw-2010311"
+ },
+ {
+ "sku": "anjuna-textured-vinyl-wallpaper-inw-0799",
+ "handle": "anjuna-textured-vinyl-wallpaper-inw-0799",
+ "title": "Anjuna Textured Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0799-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698611",
+ "tags": [
+ "Beige",
+ "Brown",
+ "CONTEMPORARY",
+ "Coral",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Textured",
+ "UK",
+ "VINYL",
+ "Wallcovering"
+ ],
+ "max_price": 51.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anjuna-textured-vinyl-wallpaper-inw-0799"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72015",
+ "handle": "marseilles-durable-vinyl-dur-72015",
+ "title": "Marseilles Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72015-sample-clean.jpg?v=1774483985",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72015"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47755",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47755",
+ "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47755-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715578",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47755"
+ },
+ {
+ "sku": "eur-80409-ncw4394-designer-wallcoverings-los-angeles",
+ "handle": "eur-80409-ncw4394-designer-wallcoverings-los-angeles",
+ "title": "Posingford Leaves 04 - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507037235.jpg?v=1775523903",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Leaf",
+ "Light Gray",
+ "Living Room",
+ "NCW4394",
+ "NCW4394-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Posingford Leaves",
+ "Sage",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80409-ncw4394-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "mica-madness-real-cork-chip-wallpapers-mic-98622",
+ "handle": "mica-madness-real-cork-chip-wallpapers-mic-98622",
+ "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/78a03ce1ce0a81a4a1ce1f305e0990bf.jpg?v=1775082834",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Cork",
+ "Entryway",
+ "Gray",
+ "Industrial",
+ "Living Room",
+ "Mica",
+ "Minimalist",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Solid/Textural",
+ "Textured",
+ "Wallcovering",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98622"
+ },
+ {
+ "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": "glyph-by-innovations-usa-dwc-glyph-6",
+ "handle": "glyph-by-innovations-usa-dwc-glyph-6",
+ "title": "Glyph | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-6.jpg?v=1736199454",
+ "tags": [
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glyph-6",
+ "Gray",
+ "Innovations USA",
+ "Metallic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 3.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-6"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44392",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44392",
+ "title": "Sharon's Striated Striped Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xss-44392-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733040",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Gold",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44392"
+ },
+ {
+ "sku": "versace-silver-tile-grey-black-wallcovering-versace-1",
+ "handle": "versace-silver-tile-grey-black-wallcovering-versace-1",
+ "title": "Versace Silver Tile Grey, Black Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c0915ff9c9098b7d9fd5bdaaddb72c81_8efb8664-2308-4f00-918f-af13af527b98.jpg?v=1773706504",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Dark Brown",
+ "Dark Gray",
+ "Dining Room",
+ "display_variant",
+ "Embossed",
+ "Floral",
+ "Gray",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Silver",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Silver Tile",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-silver-tile-grey-black-wallcovering-versace-1"
+ },
+ {
+ "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": "juno-faux-silk-durable-walls-xje-53760",
+ "handle": "juno-faux-silk-durable-walls-xje-53760",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53760-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720115",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53760"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52166",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52166",
+ "title": "Forsyth Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fractal-carbon.jpg?v=1777480433",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52166"
+ },
+ {
+ "sku": "vomera-porcelain-faux-tile-wbs-39645",
+ "handle": "vomera-porcelain-faux-tile-wbs-39645",
+ "title": "Vomera Porcelain Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39645-sample-vomera-porcelain-faux-tile-hollywood-wallcoverings.jpg?v=1775736100",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Brick",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cool",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Powder Room",
+ "Rich Woods",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-porcelain-faux-tile-wbs-39645"
+ },
+ {
+ "sku": "dwtt-71209-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71209-designer-wallcoverings-los-angeles",
+ "title": "Curtis Damask Metallic Gold on White and Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89117_05824b42-6a54-44fb-862b-3f45bf733ee8.jpg?v=1733894474",
+ "tags": [
+ "Architectural",
+ "brown",
+ "Damask",
+ "Damask Resource 4",
+ "Pattern",
+ "sage green",
+ "silver",
+ "T89117",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white",
+ "White and Silver"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71209-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80340-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80340-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 01 - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504776243.jpg?v=1775523484",
+ "tags": [
+ "Architectural",
+ "Charcoal",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Lattice",
+ "LES REVES",
+ "Living Room",
+ "NCW4308",
+ "NCW4308-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Portavo Damask",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80340-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-and-vine-xhw-201031",
+ "handle": "hollywood-and-vine-xhw-201031",
+ "title": "Hollywood and Vine",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201031-sample-hollywood-and-vine.jpg?v=1775716735",
+ "tags": [
+ "Amber",
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-vine-xhw-201031"
+ },
+ {
+ "sku": "villa-velore-durable-vinyl-dur-72326",
+ "handle": "villa-velore-durable-vinyl-dur-72326",
+ "title": "Villa Velore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72326-sample-clean.jpg?v=1774485199",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72326"
+ },
+ {
+ "sku": "dwtt-71288-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71288-designer-wallcoverings-los-angeles",
+ "title": "Ceriman Paperweave Silver on Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83014_74b857d6-82c4-4801-b955-045e89829917.jpg?v=1733894285",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "gray",
+ "light gray",
+ "Metallic Silver",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83014",
+ "taupe",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71288-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3379_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3379_8-jpg",
+ "title": "Lyra - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3379_8.jpg?v=1762299942",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3379_8-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010436",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010436",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010436-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717312",
+ "tags": [
+ "Beige",
+ "Black",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Forest",
+ "Gray",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Silver",
+ "Slate",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010436"
+ },
+ {
+ "sku": "dwtt-72187-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72187-designer-wallcoverings-los-angeles",
+ "title": "Stablewood Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3614.jpg?v=1733892531",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Contemporary",
+ "Grasscloth Resource 2",
+ "Pattern",
+ "Silver",
+ "T3614",
+ "Tan",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72187-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010271",
+ "handle": "hollywood-fashion-district-xhw-2010271",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010271-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717490",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010271"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53621",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53621",
+ "title": "Pippy's Peacock - Dark Blue Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53621-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716634",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Medium Gray",
+ "Minimalist",
+ "Office",
+ "Pale Gray",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53621"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72268",
+ "handle": "essone-durable-vinyl-dur-72268",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72268-sample-clean.jpg?v=1774484946",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Serene",
+ "Silver",
+ "Slate Blue",
+ "Steel Blue",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72268"
+ },
+ {
+ "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": "hollywood-poolside-pebble-xhw-2010144",
+ "handle": "hollywood-poolside-pebble-xhw-2010144",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010144-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718325",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Gold",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010144"
+ },
+ {
+ "sku": "dwtt-71501-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71501-designer-wallcoverings-los-angeles",
+ "title": "Brad Silver on Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11039_bbf9171b-cc7a-4ccd-af85-64f9f0ee4ed8.jpg?v=1733893952",
+ "tags": [
+ "Architectural",
+ "contemporary",
+ "geometric",
+ "Geometric Resource 2",
+ "Pattern",
+ "Silver on Charcoal",
+ "T11039",
+ "taupe",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71501-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66604",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66604",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d0dccfcf1962ff89f912747fb9c49eeb.jpg?v=1775132072",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Gray",
+ "Hotel Lobby",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Stripe",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66604"
+ },
+ {
+ "sku": "eur-80321-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80321-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Marguerite Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504088115.jpg?v=1775523364",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "Marguerite Damask",
+ "NCW4304",
+ "NCW4304-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Gold",
+ "Paper",
+ "Serene",
+ "Silver",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80321-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72235",
+ "handle": "saint-brittany-durable-vinyl-dur-72235",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72235-sample-clean.jpg?v=1774484855",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72235"
+ },
+ {
+ "sku": "clarendon-paintable-anaglytpa-original-wallpaper-gga-82662",
+ "handle": "clarendon-paintable-anaglytpa-original-wallpaper-gga-82662",
+ "title": "Clarendon Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9e1bd11a9a5abde2cf9e273144b99b9a.jpg?v=1750790443",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Clarendon Paintable Anaglytpa Original",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Green",
+ "Ivory",
+ "Jeffrey Stevens",
+ "Minimalist",
+ "Paintable",
+ "Phasing-2026-04",
+ "Series: Brewster",
+ "Silver",
+ "Soft White",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clarendon-paintable-anaglytpa-original-wallpaper-gga-82662"
+ },
+ {
+ "sku": "dwc-1001642",
+ "handle": "dwc-1001642",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310111795.jpg?v=1775521311",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Ashen",
+ "Black",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Geometric",
+ "Gold",
+ "Mushroom",
+ "NCW4352-06",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Silver",
+ "Wallcovering",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001642"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72016",
+ "handle": "marseilles-durable-vinyl-dur-72016",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72016-sample-clean.jpg?v=1774483990",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72016"
+ },
+ {
+ "sku": "sesame-contemporary-embossed-durable-walls-xwj-52480",
+ "handle": "sesame-contemporary-embossed-durable-walls-xwj-52480",
+ "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWJ-52480-sample-clean.jpg?v=1774481357",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52480"
+ },
+ {
+ "sku": "eur-80134-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80134-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 05 - 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_7513496911923.jpg?v=1775522316",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "Huntly",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Serene",
+ "Silver",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80134-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-speckled-solids-xhw-2010227",
+ "handle": "hollywood-speckled-solids-xhw-2010227",
+ "title": "Hollywood Speckled Solids | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010227-sample-hollywood-speckled-solids-hollywood-wallcoverings.jpg?v=1775718690",
+ "tags": [
+ "Beige",
+ "Bronze",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-speckled-solids-xhw-2010227"
+ },
+ {
+ "sku": "dwtt-71255-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71255-designer-wallcoverings-los-angeles",
+ "title": "Carolyn Trellis Cream on Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83033_179678fb-7e39-4732-a3c8-01ff454f0468.jpg?v=1733894359",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "gray",
+ "Natural Resource 2",
+ "Pattern",
+ "Silver",
+ "T83033",
+ "Thibaut",
+ "Transitional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71255-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "oakland-aqua-grasscloth-stripe-wallpaper-cca-83162",
+ "handle": "oakland-aqua-grasscloth-stripe-wallpaper-cca-83162",
+ "title": "Oakland Aqua Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f2f273f88b212ecaf8191ee798764f56.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Gray",
+ "LA Walls",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Aqua Grasscloth Stripe Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-aqua-grasscloth-stripe-wallpaper-cca-83162"
+ },
+ {
+ "sku": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+ "handle": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+ "title": "Camila Light Blue Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6c08383b1e77c931a2bcfe945ac409bb.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Light Blue",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-107-silvery-black-fgb-107",
+ "handle": "faux-glass-bead-wallpaper-107-silvery-black-fgb-107",
+ "title": "Faux Glass Bead Wallcovering - 107 Silvery Black",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-107-sample-faux-glass-bead-wallcovering.jpg?v=1775711816",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Glass Bead Wallcovering",
+ "Glass Bead",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Silver",
+ "Textured",
+ "Tomato",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-107-silvery-black-fgb-107"
+ },
+ {
+ "sku": "dwtt-71300-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71300-designer-wallcoverings-los-angeles",
+ "title": "Herringbone Weave Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwtt-71300-designer-wallcoverings-los-angeles-swatch-spin.gif?v=1771175234",
+ "tags": [
+ "Architectural",
+ "Charcoal",
+ "Contemporary",
+ "gray",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "Solid",
+ "T83022",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71300-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72148-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72148-designer-wallcoverings-los-angeles",
+ "title": "Andros Metallic Silver on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3684.jpg?v=1733892629",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Coastal",
+ "Cream",
+ "Grasscloth Resource 2",
+ "light brown",
+ "Pattern",
+ "T3684",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72148-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "shin-silver-golden-scroll-texture-wallpaper-cca-83267",
+ "handle": "shin-silver-golden-scroll-texture-wallpaper-cca-83267",
+ "title": "Shin Silver Golden Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bf547d53bd0a202c0126929f21ad8a3c.jpg?v=1572309982",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Neutral",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Shin Silver Golden Scroll Texture Wallcovering",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shin-silver-golden-scroll-texture-wallpaper-cca-83267"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kbt-5126-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kbt-5126-jpg",
+ "title": "Kabuto - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5126.jpg?v=1762298936",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gold",
+ "Gray",
+ "Industrial",
+ "Kabuto",
+ "Metallic",
+ "Mylar",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5126-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+ "title": "Dasma - Aquamarine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5049.jpg?v=1762292057",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Aquamarine",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Blue",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5049-jpg"
+ },
+ {
+ "sku": "hollywood-sunset-stripe-xhw-201070",
+ "handle": "hollywood-sunset-stripe-xhw-201070",
+ "title": "Hollywood Sunset Stripe | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201070-sample-hollywood-sunset-stripe-hollywood-wallcoverings.jpg?v=1775718977",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-sunset-stripe-xhw-201070"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_jai9-5371-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_jai9-5371-jpg",
+ "title": "Jaipur - Charcoal | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/jai9-5371.jpg?v=1762298074",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dark Gray",
+ "Gray",
+ "Jaipur",
+ "Non-woven",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_jai9-5371-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5024-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5024-jpg",
+ "title": "Ballari - Chrome | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5024.jpg?v=1762288308",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Ballari",
+ "Chrome",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Industrial",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5024-jpg"
+ },
+ {
+ "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": "vaticano-durable-vinyl-dur-72385",
+ "handle": "vaticano-durable-vinyl-dur-72385",
+ "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72385-sample-clean.jpg?v=1774485309",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72385"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52568",
+ "handle": "le-madison-durable-walls-xwk-52568",
+ "title": "Le Madison Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwk-52568-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721686",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52568"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72188",
+ "handle": "st-silkey-durable-vinyl-dur-72188",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72188-sample-clean.jpg?v=1774484724",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72188"
+ },
+ {
+ "sku": "cotes-d-amore-durable-vinyl-dur-72143",
+ "handle": "cotes-d-amore-durable-vinyl-dur-72143",
+ "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72143-sample-clean.jpg?v=1774484545",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cool",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72143"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72241",
+ "handle": "saint-brittany-durable-vinyl-dur-72241",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72241-sample-clean.jpg?v=1774484881",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Slate Gray",
+ "Steel Gray",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72241"
+ },
+ {
+ "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894",
+ "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894",
+ "title": "St Lawrence Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xws-52894-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734574",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53306",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53306",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53306-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710715",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53306"
+ },
+ {
+ "sku": "ncw4395-04",
+ "handle": "ncw4395-04",
+ "title": "Ashdown Kingsley Silver/Ivory - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266901043.jpg?v=1775520865",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "NCW4395-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4395-04"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34132",
+ "handle": "fukaura-durable-vinyl-xrm-34132",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5c8a3d9dc6025e876f079cb6184cb3b1_22163544-6f71-41b1-8da8-da71348ed04b.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Commercial and Residential - Cleanable",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fukaura-durable-vinyl-xrm-34132"
+ },
+ {
+ "sku": "ncw4308-02",
+ "handle": "ncw4308-02",
+ "title": "Les Rêves Portavo Grey/Ivory - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263132723.jpg?v=1775520419",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gray",
+ "Metallic",
+ "NCW4308-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4308-02"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49315",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49315",
+ "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-frangipani_1626e811-c9c1-4f58-ae9c-83bb5882fc2e.jpg?v=1777480338",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lemon",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rosewood",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49315"
+ },
+ {
+ "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": "wilton-paintable-anaglytpa-original-wallpaper-gga-82665",
+ "handle": "wilton-paintable-anaglytpa-original-wallpaper-gga-82665",
+ "title": "Wilton Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/066a3df3235d45f7468d29ec8c6575fc.jpg?v=1750790439",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Avocado",
+ "Basil",
+ "Botanical",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Fern",
+ "Floral",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Moss",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Scrolls",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "Wilton Paintable Anaglytpa Original"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wilton-paintable-anaglytpa-original-wallpaper-gga-82665"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72147",
+ "handle": "cote-marine-durable-vinyl-dur-72147",
+ "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-72147-sample-clean.jpg?v=1774484565",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72147"
+ },
+ {
+ "sku": "jada-silver-girly-floral-scroll-wallpaper-wallpaper-cca-82820",
+ "handle": "jada-silver-girly-floral-scroll-wallpaper-wallpaper-cca-82820",
+ "title": "Jada Silver Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/124f065f5fe81a0859df3cd2dddf8198.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jada-silver-girly-floral-scroll-wallpaper-wallpaper-cca-82820"
+ },
+ {
+ "sku": "dwc-1001661",
+ "handle": "dwc-1001661",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310930995.jpg?v=1775521428",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "NCW4356-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001661"
+ },
+ {
+ "sku": "dwtt-71800-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71800-designer-wallcoverings-los-angeles",
+ "title": "Taza Metallic Silver on Coral | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t24133.jpg?v=1775148904",
+ "tags": [
+ "Architectural",
+ "Contemporary",
+ "Coral",
+ "Geometric",
+ "Graphic Resource",
+ "Pattern",
+ "T35168",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71800-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72274",
+ "handle": "essone-durable-vinyl-dur-72274",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72274-sample-clean.jpg?v=1774484976",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72274"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66534",
+ "handle": "tigressa-bargea-wallpaper-xb3-66534",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bfcda8140fd5b21d902d7a95e423bad1.jpg?v=1775129896",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66534"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52266-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721801",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52266"
+ },
+ {
+ "sku": "addlington-type-ii-vinyl-wallcovering-xjc-47061",
+ "handle": "addlington-type-ii-vinyl-wallcovering-xjc-47061",
+ "title": "Addlington Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjc-47061-sample-addlington-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775697351",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Emerald",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 42.14,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/addlington-type-ii-vinyl-wallcovering-xjc-47061"
+ },
+ {
+ "sku": "haizu-silver-brunschwig-fils",
+ "handle": "haizu-silver-brunschwig-fils",
+ "title": "Haizu Silver | Brunschwig & Fils",
+ "vendor": "Brunschwig & Fils",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P8015109_11_107b9977-9cb8-45c1-89c2-d3c128ab661a.jpg?v=1776795793",
+ "tags": [
+ "Brunschwig & Fils",
+ "HAIZU",
+ "Kravet",
+ "New Arrival",
+ "Origin: Japan",
+ "PLATINUM LEAF",
+ "Silver",
+ "Wallcovering"
+ ],
+ "max_price": 5906.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haizu-silver-brunschwig-fils"
+ },
+ {
+ "sku": "hollywood-chic-plaster-xhw-2010313",
+ "handle": "hollywood-chic-plaster-xhw-2010313",
+ "title": "Hollywood Chic Plaster | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010313-sample-hollywood-chic-plaster-hollywood-wallcoverings.jpg?v=1775717148",
+ "tags": [
+ "Beige",
+ "Black",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Gray",
+ "HANDMADE",
+ "Lemon",
+ "Maroon",
+ "Navy",
+ "Nickel",
+ "Olive",
+ "Pewter",
+ "Plum",
+ "Polyester",
+ "POLYESTER/METAL",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 126.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-chic-plaster-xhw-2010313"
+ },
+ {
+ "sku": "eur-80152-ncw4151-designer-wallcoverings-los-angeles",
+ "handle": "eur-80152-ncw4151-designer-wallcoverings-los-angeles",
+ "title": "Torosay 05 - 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_7513497501747.jpg?v=1775522423",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Lattice",
+ "Living Room",
+ "NCW4151",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "ROSSLYN",
+ "Serene",
+ "Silver",
+ "Torosay",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80152-ncw4151-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010272",
+ "handle": "hollywood-fashion-district-xhw-2010272",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010272-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717453",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010272"
+ },
+ {
+ "sku": "dwkk-138761",
+ "handle": "dwkk-138761",
+ "title": "Bohemian Travels - Silver Grey By Mulberry | Bohemian Romance |Novelty Wallcovering Print",
+ "vendor": "Mulberry",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FG077_J125_3a572ad1-14e3-4963-9009-53b623967d9c.jpg?v=1753291681",
+ "tags": [
+ "26.989In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bohemian",
+ "Bohemian Romance",
+ "Bohemian Travels",
+ "Commercial",
+ "display_variant",
+ "Fg077.J125.0",
+ "Gray",
+ "Map",
+ "Maps",
+ "Mulberry",
+ "Non Woven - 100%",
+ "Novelty",
+ "Paper",
+ "Print",
+ "Scenic",
+ "Ships",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-138761"
+ },
+ {
+ "sku": "kipling-silver-diamond-plate-wallpaper-cca-82980",
+ "handle": "kipling-silver-diamond-plate-wallpaper-cca-82980",
+ "title": "Kipling Silver Diamond Plate Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d3b74466f1a5cd455bb30901c0c4b0c.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Industrial",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kipling-silver-diamond-plate-wallpaper-cca-82980"
+ },
+ {
+ "sku": "art-de-la-table-silver-blue-grey-wallcovering-versace-2",
+ "handle": "art-de-la-table-silver-blue-grey-wallcovering-versace-2",
+ "title": "Art De La Table Silver Blue Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/f32f9a27b1895c1cb83df8a15c7c1618.jpg?v=1773710402",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art de la Table",
+ "Art De La Table Silver Blue Grey Wallcovering",
+ "Bedroom",
+ "Butterfly",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Grandmillennial",
+ "Italian",
+ "Light Blue",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Luxury",
+ "Pale Beige",
+ "Paper",
+ "Paste the wall",
+ "Silver Blue Grey",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 407.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/art-de-la-table-silver-blue-grey-wallcovering-versace-2"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44390",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44390",
+ "title": "Sharon's Striated Striped Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xss-44390-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733033",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Gray",
+ "Ivory",
+ "Olive",
+ "Orchid",
+ "Plum",
+ "Rose",
+ "Silver",
+ "Slate",
+ "Stone",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44390"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5027m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5027m-jpg",
+ "title": "Ballari Mylar - Silver Glint | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5027M.jpg?v=1762288413",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Ballari Mylar",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Metallic",
+ "Mylar",
+ "Silver",
+ "Silver Glint",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5027m-jpg"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907",
+ "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52907-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734442",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Silver",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72022",
+ "handle": "limoges-durable-vinyl-dur-72022",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72022-sample-clean.jpg?v=1774484018",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Non-woven",
+ "Oatmeal",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72022"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3291_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3291_8-jpg",
+ "title": "Marlu - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3291_8.jpg?v=1762301431",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3291_8-jpg"
+ },
+ {
+ "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58172",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58172",
+ "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-58172-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724324",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58172"
+ },
+ {
+ "sku": "dwtt-71291-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71291-designer-wallcoverings-los-angeles",
+ "title": "Highline Neutral on Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83058_bd7a33db-7318-453b-91e1-5d44cf0f1049.jpg?v=1733894279",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Contemporary",
+ "Natural Resource 2",
+ "Neutral on Silver",
+ "Pattern",
+ "silver",
+ "Stripe",
+ "T83058",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71291-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "mazarin-by-innovations-usa-dwc-mazarin-5",
+ "handle": "mazarin-by-innovations-usa-dwc-mazarin-5",
+ "title": "Mazarin | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-5.jpg?v=1736198924",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Innovations USA",
+ "Mazarin",
+ "Mazarin-5",
+ "Non-woven",
+ "Silver",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-5"
+ },
+ {
+ "sku": "hollywood-urban-abstract-xhw-2010383",
+ "handle": "hollywood-urban-abstract-xhw-2010383",
+ "title": "Hollywood Urban Abstract | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010383-sample-hollywood-urban-abstract-hollywood-wallcoverings.jpg?v=1775719133",
+ "tags": [
+ "Beige",
+ "CELLULOSE",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 51.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-urban-abstract-xhw-2010383"
+ },
+ {
+ "sku": "rocheforte-wallpaper-xq6-68161",
+ "handle": "rocheforte-wallpaper-xq6-68161",
+ "title": "Rocheforte | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xq6-68161-sample-rocheforte-hollywood-wallcoverings.jpg?v=1775730893",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Light Green",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Medallion",
+ "non-woven",
+ "Phillip Romano Commercial",
+ "Rocheforte",
+ "Scroll",
+ "Seafoam Green",
+ "Silver",
+ "Teal",
+ "Traditional",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 218.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rocheforte-wallpaper-xq6-68161"
+ },
+ {
+ "sku": "dwtt-72147-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72147-designer-wallcoverings-los-angeles",
+ "title": "Andros Metallic Silver on Aqua | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3683.jpg?v=1733892632",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "beige",
+ "Coastal",
+ "Grasscloth Resource 2",
+ "gray",
+ "light brown",
+ "Pattern",
+ "T3683",
+ "tan",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72147-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72252-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72252-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7602.jpg?v=1733892406",
+ "tags": [
+ "Architectural",
+ "black",
+ "Damask",
+ "Damask Resource 3",
+ "Metallic Silver",
+ "Pattern",
+ "silver",
+ "T7602",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72252-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71180-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71180-designer-wallcoverings-los-angeles",
+ "title": "Sierra Metallic Silver on Metallic Gold on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Surface-Resource-Sierra-01.jpg?v=1762227108",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "cream",
+ "Geometric",
+ "gold",
+ "Metallic Gold on Cream",
+ "Pattern",
+ "Surface Resource",
+ "T4005",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71180-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4356-02",
+ "handle": "ncw4356-02",
+ "title": "Les Indiennes Fortoiseau Ivory/Silver - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265098803.jpg?v=1775520649",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fauna",
+ "Gray",
+ "NCW4356-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4356-02"
+ },
+ {
+ "sku": "indian-shores-faux-effect-durable-walls-xwo-53648",
+ "handle": "indian-shores-faux-effect-durable-walls-xwo-53648",
+ "title": "Indian Shores Faux Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53648-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719560",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53648"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010423",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010423",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010423-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717217",
+ "tags": [
+ "Ash",
+ "Beige",
+ "Black",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Gray",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Platinum",
+ "Silver",
+ "Stone",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010423"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3325_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3325_8-jpg",
+ "title": "Hugo - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3325_8.jpg?v=1762297681",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Paper",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3325_8-jpg"
+ },
+ {
+ "sku": "la-arebe-durable-vinyl-dur-72196",
+ "handle": "la-arebe-durable-vinyl-dur-72196",
+ "title": "La Arebe Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72196-sample-clean.jpg?v=1774484754",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lavender Gray",
+ "Living Room",
+ "Non-woven",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-arebe-durable-vinyl-dur-72196"
+ },
+ {
+ "sku": "dwtt-71315-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71315-designer-wallcoverings-los-angeles",
+ "title": "Tiger Flock Black on Metallic Metallic on Bark | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83067_7e26abf2-29ed-4465-a78e-df06bd3af892.jpg?v=1733894234",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "gold",
+ "gray",
+ "Metallic on Bark",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83067",
+ "taupe",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71315-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwk-52595",
+ "handle": "vanderbilt-durable-walls-xwk-52595",
+ "title": "Vanderbilt Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulum-obsidian.jpg?v=1777480641",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52595"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52928",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52928",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWQ-52928-sample-clean.jpg?v=1774481733",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dark Grey",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52928"
+ },
+ {
+ "sku": "dwtt-71294-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71294-designer-wallcoverings-los-angeles",
+ "title": "Tiger Flock Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83061_b5940abf-7023-4ed1-b907-d9a0dbf6ff18.jpg?v=1733894273",
+ "tags": [
+ "Architectural",
+ "Charcoal",
+ "Contemporary",
+ "gray",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83061",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71294-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010424",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010424",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010424-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717225",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Violet",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010424"
+ },
+ {
+ "sku": "pippy-s-peacock-wallpaper-silver-room-setting-pea-53619",
+ "handle": "pippy-s-peacock-wallpaper-silver-room-setting-pea-53619",
+ "title": "Pippy's Peacock Wallcovering - Silver Room Setting",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b21a935a45149677207f66072c21c94e.jpg?v=1572309270",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dark Blue",
+ "Denim",
+ "Dining Room",
+ "European",
+ "European Import",
+ "European Prints",
+ "Feather",
+ "Geometric",
+ "Green",
+ "Hollywood Regency",
+ "Hotel Lobby",
+ "Living Room",
+ "Maximalist",
+ "Paper",
+ "Peacock",
+ "Phillipe Romano",
+ "Pippy's Peacock Wallcovering",
+ "Silver",
+ "Steel",
+ "Teal",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pippy-s-peacock-wallpaper-silver-room-setting-pea-53619"
+ },
+ {
+ "sku": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "handle": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "title": "Moroccan Grey Horizontal Tight Emboss | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39604-sample-moroccan-grey-horizontal-tight-emboss-hollywood-wallcoverings.jpg?v=1775726619",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bricks and Stones",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Silver",
+ "Slate Grey",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-grey-horizontal-tight-emboss-wbs-39604"
+ },
+ {
+ "sku": "dwtt-72392-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72392-designer-wallcoverings-los-angeles",
+ "title": "Braxton Texture Silver Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6028.jpg?v=1733892236",
+ "tags": [
+ "Anniversary",
+ "Architectural",
+ "Damask",
+ "gray",
+ "Pattern",
+ "Silver Grey",
+ "T6028",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72392-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "sesame-contemporary-embossed-durable-walls-xwj-52479",
+ "handle": "sesame-contemporary-embossed-durable-walls-xwj-52479",
+ "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52479-sample-sesame-contemporary-embossed-durable-hollywood-wallcoverings.jpg?v=1775732973",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52479"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53528",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53528",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-taupe_9d3f7da4-f516-470c-8820-15482d6b7bd5.jpg?v=1777481465",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53528"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53316",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53316",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53316-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710801",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53316"
+ },
+ {
+ "sku": "dwtt-71182-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71182-designer-wallcoverings-los-angeles",
+ "title": "Sierra Metallic Silver on Metallic Bronze on Putty | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4007_f4c69231-5d62-4c6e-adc9-fc5b5f2609a9.jpg?v=1733894530",
+ "tags": [
+ "Architectural",
+ "beige",
+ "contemporary",
+ "geometric",
+ "light brown",
+ "Metallic Bronze on Putty",
+ "Pattern",
+ "stripe",
+ "Surface Resource",
+ "T4007",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71182-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53687",
+ "handle": "westville-contemporary-durable-walls-xje-53687",
+ "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XJE-53687-sample-clean.jpg?v=1774482260",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53687"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3367_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3367_8-jpg",
+ "title": "Lyra - Cotton | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3367_8.jpg?v=1762299506",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Cotton",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3367_8-jpg"
+ },
+ {
+ "sku": "dwc-1001624",
+ "handle": "dwc-1001624",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309128755.jpg?v=1775521191",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Fretwork",
+ "Geometric",
+ "NCW4308-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Silver",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001624"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44290",
+ "handle": "seeing-circles-wallcovering-xsc-44290",
+ "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-44290-sample-clean_6628051f-567d-4066-93ea-e6b629f06142.jpg?v=1774479120",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Non-woven",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Umber",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44290"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72095",
+ "handle": "rhone-durable-vinyl-dur-72095",
+ "title": "Rhone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72095-sample-clean.jpg?v=1774484375",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rhone-durable-vinyl-dur-72095"
+ },
+ {
+ "sku": "dwtt-71459-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71459-designer-wallcoverings-los-angeles",
+ "title": "Ogden Dark Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14250_a6243486-8e5f-4e52-85e0-f78d517f31b1.jpg?v=1733894033",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Dark Grey",
+ "gray",
+ "Imperial Garden",
+ "Pattern",
+ "silver",
+ "T14250",
+ "Thibaut",
+ "Traditional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71459-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48579",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48579",
+ "title": "Verwood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqr-48579-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735798",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Industrial",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Organic",
+ "Pale Taupe",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48579"
+ },
+ {
+ "sku": "croydon-type-ii-vinyl-wallcovering-xkm-47480",
+ "handle": "croydon-type-ii-vinyl-wallcovering-xkm-47480",
+ "title": "Croydon Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkm-47480-sample-croydon-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775709507",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Croydon Type 2 Vinyl Wallcovering",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic Modern",
+ "Pale Turquoise",
+ "Serene",
+ "Silver",
+ "Silver Grey",
+ "Stucco",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/croydon-type-ii-vinyl-wallcovering-xkm-47480"
+ },
+ {
+ "sku": "eur-80132-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80132-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 03 - Chartreuse Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496846387.jpg?v=1775522309",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Celadon",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Geometric",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Huntly",
+ "Lattice",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Silver",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80132-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247",
+ "handle": "aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247",
+ "title": "Aubrey Beige Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/440199629252b4c6f40ee76536a84087.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Medallion",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247"
+ },
+ {
+ "sku": "ncw4308-01",
+ "handle": "ncw4308-01",
+ "title": "Les Rêves Portavo Chocolate/Silver - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263099955.jpg?v=1775520413",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "NCW4308-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4308-01"
+ },
+ {
+ "sku": "dwtt-71316-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71316-designer-wallcoverings-los-angeles",
+ "title": "Tiger Flock Black on Metallic Pearl and Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83068_e4c668e8-c220-4325-a2ee-c8bf6f8081e9.jpg?v=1733894232",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "beige",
+ "Contemporary",
+ "Natural Resource 2",
+ "Pattern",
+ "Pearl and Silver",
+ "silver",
+ "T83068",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71316-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44439",
+ "handle": "franko-faux-metallic-patina-ffm-44439",
+ "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44439-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714276",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44439"
+ },
+ {
+ "sku": "origami-by-innovations-usa-dwc-origami-12",
+ "handle": "origami-by-innovations-usa-dwc-origami-12",
+ "title": "Origami | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-12.jpg?v=1736198878",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beetroot",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cranberry",
+ "Geometric",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Origami",
+ "Origami-12",
+ "Paper",
+ "Periwinkle",
+ "Powder",
+ "Silver",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-12"
+ },
+ {
+ "sku": "dwtt-81111-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81111-designer-wallcoverings-los-angeles",
+ "title": "Tanglewood | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T24376_07b98fe4-25fe-4095-8c37-e9eecf36bebe.jpg?v=1743194492",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Pattern",
+ "silver",
+ "T24376",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 65.16,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81111-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010426",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010426",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010426-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717242",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010426"
+ },
+ {
+ "sku": "cotes-d-amore-durable-vinyl-dur-72145",
+ "handle": "cotes-d-amore-durable-vinyl-dur-72145",
+ "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72145-sample-clean.jpg?v=1774484555",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72145"
+ },
+ {
+ "sku": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+ "handle": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+ "title": "Camila Silver Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bc6114cf3f8763c3a886d89ebab27e3.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Light Blue",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Takumi",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-silver-modern-damask-wallpaper-wallpaper-cca-82848"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5105-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5105-jpg",
+ "title": "Kami - Platinum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5105.jpg?v=1762298497",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Kami",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5105-jpg"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49319",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49319",
+ "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-tidal_9eddf37a-028c-4ddd-ae65-ff4def3743aa.jpg?v=1777480345",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49319"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dstm-542-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dstm-542-jpg",
+ "title": "Stromatolite - Moonstone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dstm-542.jpg?v=1762292431",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Gray",
+ "Moonstone",
+ "Mylar",
+ "Paper",
+ "Silver",
+ "Stromatolite",
+ "Textured",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dstm-542-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2902_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2902_8-jpg",
+ "title": "Grove - Nickel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2902_8.jpg?v=1762296600",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Grove",
+ "Metallic",
+ "Nickel",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2902_8-jpg"
+ },
+ {
+ "sku": "eur-70352-designer-wallcoverings-los-angeles",
+ "handle": "eur-70352-designer-wallcoverings-los-angeles",
+ "title": "Chameleon Glittering holographic diamonds Grey | Osborne & Little Europe",
+ "vendor": "Osborne & Little",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5224_ebff2a7e-02ad-47f3-a898-3b5a978d1169.webp?v=1738614421",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Chameleon Glittering holographic diamonds",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "KOMODO",
+ "Lattice",
+ "Light Grey",
+ "Living Room",
+ "Luxe",
+ "Luxury",
+ "Osborne & Little",
+ "Osborne & Little Europe",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "W6305",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70352-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71295-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71295-designer-wallcoverings-los-angeles",
+ "title": "Ceriman Paperweave Silver on Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83017_596cd432-d8c9-43d9-868f-5db380e70095.jpg?v=1733894272",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Contemporary",
+ "light gray",
+ "Natural Resource 2",
+ "Pattern",
+ "Pearl",
+ "Solid",
+ "T83017",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71295-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71554-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71554-designer-wallcoverings-los-angeles",
+ "title": "Caravan Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T64149_51f6cd98-6839-47af-8dcb-5cfc8e7b5236.jpg?v=1733893854",
+ "tags": [
+ "Architectural",
+ "Caravan",
+ "Geometric",
+ "gray",
+ "Metallic Silver",
+ "Pattern",
+ "silver",
+ "T64149",
+ "Thibaut",
+ "Transitional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71554-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72447",
+ "handle": "via-del-marnie-durable-vinyl-dur-72447",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72447-sample-clean.jpg?v=1774485610",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72447"
+ },
+ {
+ "sku": "la-logia-durable-vinyl-dur-72364",
+ "handle": "la-logia-durable-vinyl-dur-72364",
+ "title": "La Logia Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72364-sample-clean.jpg?v=1774485228",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brick",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Rustic",
+ "Silver",
+ "Slate Gray",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-logia-durable-vinyl-dur-72364"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72094",
+ "handle": "rhone-durable-vinyl-dur-72094",
+ "title": "Rhone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72094-sample-clean.jpg?v=1774484370",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rhone-durable-vinyl-dur-72094"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47762",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47762",
+ "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47762-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715631",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47762"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53619",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53619",
+ "title": "Pippy's Peacock - Silver Room Setting Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-terra_cotta.jpg?v=1777480910",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53619"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52326",
+ "handle": "marketfield-faux-durable-walls-xwh-52326",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-hawthorn.jpg?v=1777480469",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52326"
+ },
+ {
+ "sku": "regal-lattice-screen-printed-wallpaper-tre-12906",
+ "handle": "regal-lattice-screen-printed-wallpaper-tre-12906",
+ "title": "Regal Lattice - Screen Printed Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/765a7692adba432658470a08ef9cbcdf.jpg?v=1572309178",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Gray",
+ "Lattice",
+ "Metallic",
+ "Modern",
+ "Paper",
+ "Screen Print",
+ "Silver",
+ "Suede",
+ "Textured",
+ "Trellis",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 99.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12906"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52926-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734514",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47778",
+ "handle": "halifax-specialty-wallcovering-xlk-47778",
+ "title": "Halifax Specialty | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlk-47778-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715829",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Geometric",
+ "Glamorous",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47778"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9505-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9505-jpg",
+ "title": "SM9505 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9504.jpg?v=1733872522",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9505-jpg"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72291",
+ "handle": "la-voltere-durable-vinyl-dur-72291",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72291-sample-clean.jpg?v=1774485060",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72291"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010433",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010433",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010433-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717289",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010433"
+ },
+ {
+ "sku": "hollywood-modern-marble-xhw-2010322",
+ "handle": "hollywood-modern-marble-xhw-2010322",
+ "title": "Hollywood Modern Marble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/selenite-dolomite.jpg?v=1777481048",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Marble",
+ "Marble Look",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Samantha",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010322"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010373",
+ "handle": "hollywood-contemporary-coast-xhw-2010373",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-redondo_e40b1b7d-ef03-4960-a33f-47220b3c2282.jpg?v=1777481075",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010373"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+ "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-ivory_tower.jpg?v=1777480700",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829"
+ },
+ {
+ "sku": "medusa-circle-metallic-silver-black-wallcovering-versace",
+ "handle": "medusa-circle-metallic-silver-black-wallcovering-versace",
+ "title": "Medusa Circle Metallic Silver, Black Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ab99ad0518c19edaebd29790d8549cfe.jpg?v=1773706338",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Black Wallcovering",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Medallion",
+ "Medusa Circle Metallic",
+ "Medusa Circle Metallic Silver",
+ "Paste the wall",
+ "Silver",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-circle-metallic-silver-black-wallcovering-versace"
+ },
+ {
+ "sku": "ncw4355-02",
+ "handle": "ncw4355-02",
+ "title": "Les Indiennes Arles Dove/Silver - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264967731.jpg?v=1775520627",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "contemporary",
+ "Gray",
+ "NCW4355-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Non-Woven",
+ "Smoke",
+ "stripe",
+ "textured",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4355-02"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72064",
+ "handle": "saint-helene-durable-vinyl-dur-72064",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72064-sample-clean.jpg?v=1774484232",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72064"
+ },
+ {
+ "sku": "hollywood-crystal-xhw-2010105",
+ "handle": "hollywood-crystal-xhw-2010105",
+ "title": "Hollywood Crystal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-stone_run.jpg?v=1777480956",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Crystal",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010105"
+ },
+ {
+ "sku": "dwtt-71817-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71817-designer-wallcoverings-los-angeles",
+ "title": "Madeira Chain Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T16088_b8a56701-8538-4085-b76f-a60810ae1a1d.jpg?v=1733893342",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Coastal",
+ "green",
+ "orange",
+ "Pattern",
+ "purple",
+ "Resort",
+ "silver",
+ "T16088",
+ "teal",
+ "Thibaut",
+ "Tropical",
+ "Unknown",
+ "Wallcovering",
+ "yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71817-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47818",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47818",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47818-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719321",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Light Silver",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47818"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2625",
+ "handle": "pleated-perfect-paradise-ppp-2625",
+ "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2625-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729176",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Pleated Perfect Paradise",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2625"
+ },
+ {
+ "sku": "dwtt-72258-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72258-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Silver on Taupe | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7630.jpg?v=1733892397",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "Silver on Taupe",
+ "T7630",
+ "taupe",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72258-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127700",
+ "handle": "dwkk-127700",
+ "title": "Rafi - Pewter By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_08_CAC_eb847c15-91bd-4924-a37d-f235db121a2e.jpg?v=1726037792",
+ "tags": [
+ "20.875In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Print",
+ "Rafi",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "Vinyl",
+ "W0060/08.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 176.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127700"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3292_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3292_8-jpg",
+ "title": "Marlu - Platinum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3292_8.jpg?v=1762301469",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3292_8-jpg"
+ },
+ {
+ "sku": "medusa-circle-gold-silver-white-wallcovering-versace",
+ "handle": "medusa-circle-gold-silver-white-wallcovering-versace",
+ "title": "Medusa Circle Gold, Silver, White Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9c1537072d6cbe731cbed47fb5faedfa.jpg?v=1773706330",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Italian",
+ "Light Beige",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Medallion",
+ "Medusa Circle",
+ "Medusa Circle Gold",
+ "Neoclassical",
+ "Off-white",
+ "Paste the wall",
+ "Regencycore",
+ "Silver",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "White Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-circle-gold-silver-white-wallcovering-versace"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47661",
+ "handle": "fairford-vinyl-wallcovering-xlb-47661",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47661-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711712",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47661"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48390",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48390",
+ "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpy-48390-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734082",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48390"
+ },
+ {
+ "sku": "hollywood-chic-plaster-xhw-2010318",
+ "handle": "hollywood-chic-plaster-xhw-2010318",
+ "title": "Hollywood Chic Plaster | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010318-sample-hollywood-chic-plaster-hollywood-wallcoverings.jpg?v=1775717179",
+ "tags": [
+ "Beige",
+ "Black",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Gray",
+ "HANDMADE",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Nickel",
+ "Olive",
+ "Platinum",
+ "Polyester",
+ "POLYESTER/METAL",
+ "Silver",
+ "Teal",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 126.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-chic-plaster-xhw-2010318"
+ },
+ {
+ "sku": "hollywood-geometric-xhw-2010114",
+ "handle": "hollywood-geometric-xhw-2010114",
+ "title": "Hollywood Geometric | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010114-sample-hollywood-geometric-hollywood-wallcoverings.jpg?v=1775717746",
+ "tags": [
+ "Beige",
+ "Black",
+ "Charcoal",
+ "Cream",
+ "Geometric",
+ "Gray",
+ "Mocha",
+ "Sand",
+ "Silver",
+ "Taupe",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 55.1,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-geometric-xhw-2010114"
+ },
+ {
+ "sku": "eur-80362-ncw4352-designer-wallcoverings-los-angeles",
+ "handle": "eur-80362-ncw4352-designer-wallcoverings-los-angeles",
+ "title": "Bonnelles Diamond 06 - Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505464371.jpg?v=1775523620",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Black",
+ "Bonnelles Diamond",
+ "Champagne",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Coffee",
+ "Commercial",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Greige",
+ "Hotel Lobby",
+ "Latte",
+ "Leaf",
+ "LES INDIENNES",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Mink",
+ "NCW4352",
+ "NCW4352-06",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Silver",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80362-ncw4352-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72237-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72237-designer-wallcoverings-los-angeles",
+ "title": "Medici Silver on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7671.jpg?v=1733892438",
+ "tags": [
+ "Architectural",
+ "cream",
+ "Damask Resource 3",
+ "Pattern",
+ "Silver on Cream",
+ "T7671",
+ "taupe",
+ "Thibaut",
+ "Traditional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72237-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71250-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71250-designer-wallcoverings-los-angeles",
+ "title": "Herringbone Weave Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T83025.jpg?v=1776159965",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "Metallic Silver",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83025",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71250-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "crowns-roses-silver-grey-wallcovering-versace",
+ "handle": "crowns-roses-silver-grey-wallcovering-versace",
+ "title": "Crowns & Roses Silver, Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/396dd3065c75b6f39c46756997ac141d.jpg?v=1773706302",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Crowns & Roses",
+ "Crowns & Roses Silver",
+ "display_variant",
+ "Glamorous",
+ "Gray",
+ "Grey Wallcovering",
+ "Hotel Lobby",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Medallion",
+ "Multi",
+ "Paper",
+ "Paste the wall",
+ "Regencycore",
+ "Silver",
+ "Tile",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crowns-roses-silver-grey-wallcovering-versace"
+ },
+ {
+ "sku": "dwtt-71776-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71776-designer-wallcoverings-los-angeles",
+ "title": "La Farge Metallic Silver on Orange | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35200_39d07af2-65b2-4a2c-9e48-6e497c012cd6.jpg?v=1733893424",
+ "tags": [
+ "Architectural",
+ "Contemporary",
+ "Geometric",
+ "Graphic Resource",
+ "Orange",
+ "Pattern",
+ "T35200",
+ "Thibaut",
+ "Trellis",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71776-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52212",
+ "handle": "jones-faux-grass-durable-walls-xwf-52212",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52212-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719866",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Indigo",
+ "Leed Walls",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52212"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44284",
+ "handle": "seeing-circles-wallcovering-xsc-44284",
+ "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-44284-sample-clean.jpg?v=1774479084",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Red",
+ "Silver",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44284"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49260",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49260",
+ "title": "Hereford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/malachite-smoky_quartz.jpg?v=1777480054",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49260"
+ },
+ {
+ "sku": "dwtt-71194-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71194-designer-wallcoverings-los-angeles",
+ "title": "Alicia Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89119_751b265b-c46e-40c9-a657-55f7f09a82b1.jpg?v=1733894508",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 4",
+ "light gray",
+ "Metallic Silver",
+ "Pattern",
+ "silver",
+ "T89119",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71194-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72290",
+ "handle": "la-voltere-durable-vinyl-dur-72290",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72290-sample-clean.jpg?v=1774485056",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72290"
+ },
+ {
+ "sku": "immersion-by-innovations-usa-dwc-immersion-6",
+ "handle": "immersion-by-innovations-usa-dwc-immersion-6",
+ "title": "Immersion | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-6.jpg?v=1736199375",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Immersion-6",
+ "Innovations USA",
+ "Metallic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/immersion-by-innovations-usa-dwc-immersion-6"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53757",
+ "handle": "juno-faux-silk-durable-walls-xje-53757",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53757-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720103",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53757"
+ },
+ {
+ "sku": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "handle": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "title": "Medusa Circle Silver, Gold, Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/593e809cff01210ceeddec366f315919.jpg?v=1773706334",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Antique Gold",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Italian",
+ "Light Pink",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Medusa Circle",
+ "Medusa Circle Silver",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Pink Wallcovering",
+ "Silver",
+ "Silver Grey",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-circle-silver-gold-pink-wallcovering-versace"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47744",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47744",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47744-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714936",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47744"
+ },
+ {
+ "sku": "eur-70392-designer-wallcoverings-los-angeles",
+ "handle": "eur-70392-designer-wallcoverings-los-angeles",
+ "title": "Crocodilo Crocodile | Osborne & Little Europe",
+ "vendor": "Osborne & Little",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5040_cd256298-c58c-4679-a6a1-95f90ca00bb1.webp?v=1738614522",
+ "tags": [
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Crocodile",
+ "Crocodilo Crocodile",
+ "Embossed",
+ "Faux Leather",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Light Grey",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "METROPOLIS VINYLS 2",
+ "Modern",
+ "Osborne & Little",
+ "Osborne & Little Europe",
+ "Silver",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "W6337",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70392-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53488",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53488",
+ "title": "Santa Rosa Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53488-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732865",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Light Steelblue",
+ "Living Room",
+ "Modern",
+ "Non-woven",
+ "Santa Rosa Contemporary Durable",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53488"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52679",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52679",
+ "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52679-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726387",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52679"
+ },
+ {
+ "sku": "dwtt-71206-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71206-designer-wallcoverings-los-angeles",
+ "title": "Pravata Damask Sienna on Metallic Silver on Tan | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89174_01ea5eef-fe47-4b07-8513-a6dec717dc46.jpg?v=1733894481",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 4",
+ "light blue-gray",
+ "Metallic Silver on Tan",
+ "Pattern",
+ "T89174",
+ "tan",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71206-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-gc6272b5c",
+ "handle": "dwkk-gc6272b5c",
+ "title": "Kew - Stone Grey | Kravet Couture | Andrew Martin Museum | Damask Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10049_11_fecfd268-cf90-4687-8caf-ad59c4c2aa58.jpg?v=1753123151",
+ "tags": [
+ "26.5In",
+ "Amw10049.11.0",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Kew",
+ "Kravet",
+ "Kravet Couture",
+ "Living Room",
+ "Paper",
+ "Paper - 100%",
+ "Print",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "United Kingdom",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-gc6272b5c"
+ },
+ {
+ "sku": "dwtt-71289-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71289-designer-wallcoverings-los-angeles",
+ "title": "Metal Linen Metallic White and Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83040_b38d69a4-cdec-4400-ac93-db55c2e5efc0.jpg?v=1733894283",
+ "tags": [
+ "Architectural",
+ "contemporary",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83040",
+ "texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white",
+ "White and Silver"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71289-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49263",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49263",
+ "title": "Hereford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/malachite-emerald_886e3f5e-1241-4d55-8fec-4c4506c2a9a5.jpg?v=1777481555",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Teal",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Moody",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49263"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "title": "Santa Rosa Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53485-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732854",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Paper",
+ "Santa Rosa Contemporary Durable",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53485"
+ },
+ {
+ "sku": "montpelier-wallpaper-xp4-68085",
+ "handle": "montpelier-wallpaper-xp4-68085",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e779d0f252c8634abe32d7fd92d92d3f.jpg?v=1733882440",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Montpelier",
+ "Moody",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68085"
+ },
+ {
+ "sku": "rocheforte-wallpaper-xq6-68158",
+ "handle": "rocheforte-wallpaper-xq6-68158",
+ "title": "Rocheforte | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xq6-68158-sample-rocheforte-hollywood-wallcoverings.jpg?v=1775730833",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Amethyst",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Glamorous",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Medallion",
+ "non-woven",
+ "Phillip Romano Commercial",
+ "Purple",
+ "Rocheforte",
+ "Scroll",
+ "Silver",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 218.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rocheforte-wallpaper-xq6-68158"
+ },
+ {
+ "sku": "hollywood-crystal-xhw-2010103",
+ "handle": "hollywood-crystal-xhw-2010103",
+ "title": "Hollywood Crystal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-indigo.jpg?v=1777480953",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Crystal",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Smoke",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010103"
+ },
+ {
+ "sku": "eur-80109-ncw4106-designer-wallcoverings-los-angeles",
+ "handle": "eur-80109-ncw4106-designer-wallcoverings-los-angeles",
+ "title": "Oakley Hall 5 - Cool Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496092723.jpg?v=1775522170",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "NCW4106",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Oakley Hall",
+ "Office",
+ "Rustic",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "WOODSFORD"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80109-ncw4106-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "under-water-waves-xuw-44152",
+ "handle": "under-water-waves-xuw-44152",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44152-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735582",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Slate Gray",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44152"
+ },
+ {
+ "sku": "dwkk-127667",
+ "handle": "dwkk-127667",
+ "title": "Echo - Pewter By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0055_05_CAC_1d15e8a9-8bcc-4c1b-8b9c-051c67bdc77e.jpg?v=1726037708",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Echo",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Living Room",
+ "Modern",
+ "Non-Woven",
+ "Pewter",
+ "Print",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "Vinyl",
+ "W0055/05.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 179.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127667"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66537",
+ "handle": "tigressa-bargea-wallpaper-xb3-66537",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c520c02d293b3bc5a48557f6a365eb4e.jpg?v=1775130118",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66537"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+ "title": "Grain Plus - Silver Birch | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5003.jpg?v=1762295271",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain Plus",
+ "Light Gray",
+ "RAMPART®",
+ "Silver Birch",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5003-jpg"
+ },
+ {
+ "sku": "dwkk-g37826aec",
+ "handle": "dwkk-g37826aec",
+ "title": "Maldon Weave - Fog Light Grey By Lee Jofa | Linford Weaves | Diamond Upholstery",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2020102_11_7d6fa794-8480-4b38-8ee5-1b0c8f53b2d0.jpg?v=1726152981",
+ "tags": [
+ "2020102.11.0",
+ "55.75In",
+ "Diamond",
+ "display_variant",
+ "Fog",
+ "Lee Jofa",
+ "Light Grey",
+ "Linford Weaves",
+ "Maldon Weave",
+ "Polyester - 54%;Rayon - 46%",
+ "Silver",
+ "United States",
+ "Upholstery",
+ "Wallcovering"
+ ],
+ "max_price": 161.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g37826aec"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3298_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3298_8-jpg",
+ "title": "Marlu - Slate | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3298_8.jpg?v=1762301692",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3298_8-jpg"
+ },
+ {
+ "sku": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 04 - Orange Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504874547.jpg?v=1775523504",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Damask",
+ "Dining Room",
+ "Eclectic",
+ "Geometric",
+ "Gray",
+ "LES REVES",
+ "Living Room",
+ "NCW4308",
+ "NCW4308-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "Portavo Damask",
+ "Red",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80343-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71569-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71569-designer-wallcoverings-los-angeles",
+ "title": "Caravan Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T64169_1db1ed83-649f-4102-a012-c5bb23dd0366.jpg?v=1733893822",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Caravan",
+ "Geometric",
+ "gray",
+ "Metallic Silver",
+ "Pattern",
+ "T64169",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71569-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "sullivan-silver-ombre-vine-trail-wallpaper-wallpaper-cca-82900",
+ "handle": "sullivan-silver-ombre-vine-trail-wallpaper-wallpaper-cca-82900",
+ "title": "Sullivan Silver Ombre Vine Trail Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f2ab9b915254b8cfbd5c2c5448d3d476.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Multi",
+ "Pale Green",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Taupe",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sullivan-silver-ombre-vine-trail-wallpaper-wallpaper-cca-82900"
+ },
+ {
+ "sku": "addlington-type-ii-vinyl-wallcovering-xjc-47059",
+ "handle": "addlington-type-ii-vinyl-wallcovering-xjc-47059",
+ "title": "Addlington Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjc-47059-sample-addlington-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775697343",
+ "tags": [
+ "Ash",
+ "Charcoal",
+ "Graphite",
+ "Silver",
+ "Slate",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 42.14,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/addlington-type-ii-vinyl-wallcovering-xjc-47059"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58125",
+ "handle": "floating-bubbles-vinyl-dwx-58125",
+ "title": "Floating Bubbles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58125-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713746",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Silver",
+ "Subtle",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58125"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47774",
+ "handle": "halifax-specialty-wallcovering-xlk-47774",
+ "title": "Halifax Specialty | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlk-47774-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715724",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47774"
+ },
+ {
+ "sku": "eur-80158-ncw4152-designer-wallcoverings-los-angeles",
+ "handle": "eur-80158-ncw4152-designer-wallcoverings-los-angeles",
+ "title": "Lochwood 05 - Soft 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_7513497731123.jpg?v=1775522469",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Grey",
+ "Living Room",
+ "Lochwood",
+ "NCW4152",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Pale Green",
+ "Paper",
+ "ROSSLYN",
+ "Scenic",
+ "Serene",
+ "Silver",
+ "Traditional",
+ "Trees",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80158-ncw4152-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44443",
+ "handle": "franko-faux-metallic-patina-ffm-44443",
+ "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44443-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714286",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44443"
+ },
+ {
+ "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+ "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-58169-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724247",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58169"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3380_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3380_8-jpg",
+ "title": "Lyra - Aluminum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3380_8.jpg?v=1762299979",
+ "tags": [
+ "100% Vinyl",
+ "Aluminum",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3380_8-jpg"
+ },
+ {
+ "sku": "dwtt-71215-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71215-designer-wallcoverings-los-angeles",
+ "title": "French Quarter Damask Pewter | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89111_fd90d8ed-c4f3-45bf-9661-0d2eab2d5c1b.jpg?v=1733894457",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Damask",
+ "Damask Resource 4",
+ "gray",
+ "Pattern",
+ "Pewter",
+ "silver",
+ "T89111",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71215-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+ "handle": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+ "title": "Kingston Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0945bdf51749c0ccaf6dd4244b89ad76.jpg?v=1750790441",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Green",
+ "Jeffrey Stevens",
+ "Kingston Paintable Anaglytpa Original",
+ "Light Gray",
+ "Linen",
+ "Minimalist",
+ "Non-Woven",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Scandinavian",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kingston-paintable-anaglytpa-original-wallpaper-gga-82664"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010178",
+ "handle": "hollywood-tailored-xhw-2010178",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-valet.jpg?v=1777480973",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010178"
+ },
+ {
+ "sku": "dwtt-71506-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71506-designer-wallcoverings-los-angeles",
+ "title": "Aldora Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T11045.jpg?v=1762230377",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Contemporary",
+ "Geometric",
+ "Geometric Resource 2",
+ "Gold",
+ "Pattern",
+ "Silver",
+ "T11045",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71506-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53072",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53072",
+ "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53072-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703573",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53072"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br005-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br005-jpg",
+ "title": "BR005 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br004.jpg?v=1733873698",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br005-jpg"
+ },
+ {
+ "sku": "eur-80150-ncw4151-designer-wallcoverings-los-angeles",
+ "handle": "eur-80150-ncw4151-designer-wallcoverings-los-angeles",
+ "title": "Torosay 03 - 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_7513497436211.jpg?v=1775522409",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Light Green",
+ "Minimalist",
+ "NCW4151",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "ROSSLYN",
+ "Sage Green",
+ "Serene",
+ "Silver",
+ "Torosay",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80150-ncw4151-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "title": "Dasma - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5047_50412f01-1807-46cc-9514-4d1f10afa98d.jpg?v=1762291983",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5047-jpg"
+ },
+ {
+ "sku": "eur-80212-ncw4186-designer-wallcoverings-los-angeles",
+ "handle": "eur-80212-ncw4186-designer-wallcoverings-los-angeles",
+ "title": "Khitan 09 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500057651.jpg?v=1775522783",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "CATHAY",
+ "Color: Grey",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Khitan",
+ "Light Grey",
+ "Living Room",
+ "NCW4186",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80212-ncw4186-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ilead-rectangle-texture-vinyl-xir-44339",
+ "handle": "ilead-rectangle-texture-vinyl-xir-44339",
+ "title": "Ilead Rectangle Texture Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xir-44339-sample-ilead-rectangle-texture-vinyl-hollywood-wallcoverings.jpg?v=1775719483",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Gold",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ilead-rectangle-texture-vinyl-xir-44339"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kbt-5125-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kbt-5125-jpg",
+ "title": "Kabuto - Tungsten | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5125.jpg?v=1762298899",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Industrial",
+ "Kabuto",
+ "Mylar",
+ "Silver",
+ "Textured",
+ "Tungsten",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5125-jpg"
+ },
+ {
+ "sku": "eur-80341-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80341-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504809011.jpg?v=1775523491",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "Metallic Foil",
+ "NCW4308",
+ "NCW4308-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Portavo Damask",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80341-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-80282-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80282-designer-wallcoverings-los-angeles",
+ "title": "Woodland Green on Natural Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HeatherWrenInteriors_ClaraChambers1.jpg?v=1770353801",
+ "tags": [
+ "Army",
+ "AT57853",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Bristol",
+ "Brown",
+ "Calm",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Dining Room",
+ "Dusty Green",
+ "Earth Tones",
+ "English Country",
+ "Entryway",
+ "Fern",
+ "Floral",
+ "Foliage",
+ "Forest",
+ "Forest Green",
+ "Gold",
+ "Green",
+ "Ivory",
+ "Khaki",
+ "Living Room",
+ "Maroon",
+ "Medium Scale",
+ "Mint",
+ "Moss",
+ "Moss Green",
+ "Muted Green",
+ "Natural",
+ "Natural White",
+ "Navy",
+ "Off-White",
+ "Office",
+ "Olive",
+ "Olive Green",
+ "Pale Yellow",
+ "Pattern",
+ "Peaceful",
+ "Plum",
+ "Powder Room",
+ "Sage",
+ "Sage Green",
+ "Sand",
+ "Serene",
+ "Silver",
+ "Slate",
+ "Soft Brown",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Thyme",
+ "Tomato",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woodland",
+ "Woodland Green"
+ ],
+ "max_price": 144.98,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80282-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72244",
+ "handle": "saint-brittany-durable-vinyl-dur-72244",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72244-sample-clean.jpg?v=1774484890",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72244"
+ },
+ {
+ "sku": "portland-paintable-anaglytpa-original-wallpaper-gga-82670",
+ "handle": "portland-paintable-anaglytpa-original-wallpaper-gga-82670",
+ "title": "Portland Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b5fad71d428d1a563c3fbd73a81df82.jpg?v=1750790430",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Denim",
+ "Discontinued",
+ "Floral",
+ "Flowers",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Non-Woven",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Portland Paintable Anaglytpa Original",
+ "Romantic",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/portland-paintable-anaglytpa-original-wallpaper-gga-82670"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_alc-4820-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_alc-4820-jpg",
+ "title": "Alchemy - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/alc-4820.jpg?v=1762284406",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Alchemy",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_alc-4820-jpg"
+ },
+ {
+ "sku": "dwtt-80293-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80293-designer-wallcoverings-los-angeles",
+ "title": "Cielo Black and White Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Bristol-CieloWP-black-white.jpg?v=1770341751",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "AT57872",
+ "Bedroom",
+ "Beige",
+ "Birds",
+ "Black",
+ "Bristol",
+ "Brown",
+ "Calm",
+ "Charcoal Gray",
+ "Cielo Clouds",
+ "Cielo Clouds Black",
+ "Contemporary",
+ "Coral",
+ "Dining Room",
+ "Dove Gray",
+ "Dreamy",
+ "Entryway",
+ "Gold",
+ "Graphite",
+ "Ivory",
+ "Large Scale",
+ "Light Gray",
+ "Living Room",
+ "Medium Gray",
+ "Monochromatic",
+ "Navy",
+ "Off-White",
+ "Office",
+ "Olive",
+ "Pattern",
+ "Peaceful",
+ "Plum",
+ "Powder Room",
+ "Scenic",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Sophisticated",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 123.8,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80293-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "derby-paintable-anaglytpa-original-wallpaper-gga-82660",
+ "handle": "derby-paintable-anaglytpa-original-wallpaper-gga-82660",
+ "title": "Derby Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52584dd643e8836d8c8caef0d8435a1d.jpg?v=1750790445",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Avocado",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Derby Paintable Anaglytpa Original",
+ "Discontinued",
+ "Floral",
+ "Geometric",
+ "Global",
+ "Green",
+ "Jeffrey Stevens",
+ "Laurel",
+ "Light Gray",
+ "Moss",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Pear",
+ "Phasing-2026-04",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Traditional",
+ "Unpasted",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/derby-paintable-anaglytpa-original-wallpaper-gga-82660"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47749",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47749",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47749-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715011",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Slate Gray",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47749"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72405",
+ "handle": "rivo-dulce-durable-vinyl-dur-72405",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72405-sample-clean.jpg?v=1774485400",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chrome",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72405"
+ },
+ {
+ "sku": "dwkk-127670",
+ "handle": "dwkk-127670",
+ "title": "Hexagon - Gunmetal By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0056_03_CAC_af5c0a20-da2e-444c-8d0c-c2f6a33f7146.jpg?v=1726037722",
+ "tags": [
+ "20.875In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hexagon",
+ "Living Room",
+ "Minimalist",
+ "Non-Woven",
+ "Print",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "Vinyl",
+ "W0056/03.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 176.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127670"
+ },
+ {
+ "sku": "garden-gate-silver-faux-sponge-texture-wallpaper-wallpaper-cca-82886",
+ "handle": "garden-gate-silver-faux-sponge-texture-wallpaper-wallpaper-cca-82886",
+ "title": "Garden Gate Silver Faux Sponge Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7612d65ab2c3175bb68440225d95ab25.jpg?v=1572309959",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Lightblue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/garden-gate-silver-faux-sponge-texture-wallpaper-wallpaper-cca-82886"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+ "title": "Kami - Iron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5107.jpg?v=1762298572",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Iron",
+ "Kami",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5107-jpg"
+ },
+ {
+ "sku": "ncw4352-06",
+ "handle": "ncw4352-06",
+ "title": "Les Indiennes Bonnelles Black/Silver - Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264476211.jpg?v=1775520543",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gold",
+ "Leaf",
+ "NCW4352-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4352-06"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "title": "Grove - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2885_8.jpg?v=1762295987",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Grove",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2885_8-jpg"
+ },
+ {
+ "sku": "cotes-d-amore-durable-vinyl-dur-72140",
+ "handle": "cotes-d-amore-durable-vinyl-dur-72140",
+ "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72140-sample-clean.jpg?v=1774484536",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Medium Gray",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72140"
+ },
+ {
+ "sku": "eur-80135-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80135-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 06 - Pale Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496944691.jpg?v=1775522322",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Huntly",
+ "Lattice",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Grey",
+ "Paper",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80135-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80148-ncw4151-designer-wallcoverings-los-angeles",
+ "handle": "eur-80148-ncw4151-designer-wallcoverings-los-angeles",
+ "title": "Torosay 01 - 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_7513497370675.jpg?v=1775522396",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Celestial",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Lattice",
+ "Lavender",
+ "Minimalist",
+ "NCW4151",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Powder Room",
+ "Purple",
+ "ROSSLYN",
+ "Silver",
+ "Torosay",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80148-ncw4151-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72277-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72277-designer-wallcoverings-los-angeles",
+ "title": "Medici Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7690.jpg?v=1733892373",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 3",
+ "gray",
+ "Pattern",
+ "Silver",
+ "T7690",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "moderni-modern-texture-xmm-44424",
+ "handle": "moderni-modern-texture-xmm-44424",
+ "title": "Moderni Modern Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44424-sample-moderni-modern-texture-hollywood-wallcoverings.jpg?v=1775726309",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Maroon",
+ "Mint",
+ "Modern",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moderni-modern-texture-xmm-44424"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3327_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3327_8-jpg",
+ "title": "Hugo - Pebble | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3327_8.jpg?v=1762297753",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Paper",
+ "Pebble",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3327_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+ "title": "Marlu - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3296_8.jpg?v=1762301619",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Metallic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3296_8-jpg"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908",
+ "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52908-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734445",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Slate Gray",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66414",
+ "handle": "jolie-madam-wallpaper-xa1-66414",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1e30224a2bb9f731a29dc99b5d181e9b.jpg?v=1775121193",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Jolie Madam Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Smoke",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66414"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+ "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-58155-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725434",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58155"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47637",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47637",
+ "title": "Edgware Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47637-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710959",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Silver",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47637"
+ },
+ {
+ "sku": "dwtt-71637-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71637-designer-wallcoverings-los-angeles",
+ "title": "Maze Grasscloth Metallic Grey on Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T41199_55cff5a9-2eba-4777-a471-ce5529190ccf.jpg?v=1733893679",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "Grasscloth Resource 3",
+ "Metallic Grey on Silver",
+ "Pattern",
+ "silver",
+ "T41199",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71637-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-urban-abstract-xhw-2010390",
+ "handle": "hollywood-urban-abstract-xhw-2010390",
+ "title": "Hollywood Urban Abstract | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010390-sample-hollywood-urban-abstract-hollywood-wallcoverings.jpg?v=1775719170",
+ "tags": [
+ "Beige",
+ "CELLULOSE",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 51.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-urban-abstract-xhw-2010390"
+ },
+ {
+ "sku": "ncw4308-04",
+ "handle": "ncw4308-04",
+ "title": "Les Rêves Portavo Coral/Ivory - Orange Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263198259.jpg?v=1775520432",
+ "tags": [
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Geometric",
+ "Metallic",
+ "NCW4308-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Silver",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4308-04"
+ },
+ {
+ "sku": "alexander-paintable-supaglypta-wallpaper-gga-82655",
+ "handle": "alexander-paintable-supaglypta-wallpaper-gga-82655",
+ "title": "Alexander Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dedd8b0504212a22afbd2da08b4d4435.jpg?v=1750790452",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Alexander Paintable Supaglypta",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Embossed",
+ "Floral",
+ "Flowers",
+ "Geometric",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/alexander-paintable-supaglypta-wallpaper-gga-82655"
+ },
+ {
+ "sku": "hollywood-chic-plaster-xhw-2010312",
+ "handle": "hollywood-chic-plaster-xhw-2010312",
+ "title": "Hollywood Chic Plaster | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010312-sample-hollywood-chic-plaster-hollywood-wallcoverings.jpg?v=1775717141",
+ "tags": [
+ "Ash",
+ "Black",
+ "Charcoal",
+ "Faux Wood",
+ "Gray",
+ "HANDMADE",
+ "Pewter",
+ "Polyester",
+ "POLYESTER/METAL",
+ "Silver",
+ "Tan",
+ "Taupe",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 126.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-chic-plaster-xhw-2010312"
+ },
+ {
+ "sku": "hollywood-poolside-pebble-xhw-2010155",
+ "handle": "hollywood-poolside-pebble-xhw-2010155",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010155-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718379",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Gray",
+ "Khaki",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010155"
+ },
+ {
+ "sku": "eur-80268-ncw4272-designer-wallcoverings-los-angeles",
+ "handle": "eur-80268-ncw4272-designer-wallcoverings-los-angeles",
+ "title": "Pavilion Garden 02 - Pale Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501728819.jpg?v=1775523073",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Dining Room",
+ "Gray",
+ "Grey",
+ "Light Gray",
+ "Living Room",
+ "NCW4272",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pavilion",
+ "Pavilion Garden",
+ "Peacock",
+ "Scenic",
+ "Serene",
+ "Silver",
+ "Traditional",
+ "Tree",
+ "Wallcovering",
+ "Woman"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80268-ncw4272-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "berkeley-paintable-anaglytpa-original-wallpaper-gga-82661",
+ "handle": "berkeley-paintable-anaglytpa-original-wallpaper-gga-82661",
+ "title": "Berkeley Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/84e11662d35031db6e6b0e2977de675e.jpg?v=1750790444",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Berkeley Paintable Anaglytpa Original",
+ "Class A Fire Rated",
+ "Classic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Discontinued",
+ "Embossed",
+ "Floral",
+ "Global",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Neutral",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Versatile",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-paintable-anaglytpa-original-wallpaper-gga-82661"
+ },
+ {
+ "sku": "dwtt-71778-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71778-designer-wallcoverings-los-angeles",
+ "title": "La Farge Metallic Silver on Green | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35202_815cf2f8-dbc1-4064-b8dc-10ce4057fd51.jpg?v=1733893420",
+ "tags": [
+ "Architectural",
+ "Contemporary",
+ "Geometric",
+ "Graphic Resource",
+ "Green",
+ "light green",
+ "Pattern",
+ "T35202",
+ "Thibaut",
+ "Trellis",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71778-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72377",
+ "handle": "vaticano-durable-vinyl-dur-72377",
+ "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72377-sample-clean.jpg?v=1774485271",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72377"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53208",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53208",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53208-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710086",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53208"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010357",
+ "handle": "hollywood-contemporary-coast-xhw-2010357",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-quicksilver_ff96a80d-7245-44ce-81f4-2d6b9792f164.jpg?v=1777481409",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Samantha",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010357"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3384_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3384_8-jpg",
+ "title": "Lyra - Glacier | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3384_8.jpg?v=1762300130",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Glacier",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3384_8-jpg"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52281",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52281",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52281-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721922",
+ "tags": [
+ "Black",
+ "Dim",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Gray",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Silver",
+ "Stain Repellant",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52281"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44280",
+ "handle": "seeing-circles-wallcovering-xsc-44280",
+ "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-44280-sample-clean.jpg?v=1774479052",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Estimated Type: Non-woven",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Umber",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44280"
+ },
+ {
+ "sku": "mica-madness-real-cork-chip-wallpapers-mic-98624",
+ "handle": "mica-madness-real-cork-chip-wallpapers-mic-98624",
+ "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/747552c419b9120a603da7474b097fae.jpg?v=1775083068",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Cork",
+ "Gray",
+ "Light Blue",
+ "Living Room",
+ "Metallic",
+ "Mica",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98624"
+ },
+ {
+ "sku": "dwtt-80297-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80297-designer-wallcoverings-los-angeles",
+ "title": "Ashton Ivory Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57876.jpg?v=1776161653",
+ "tags": [
+ "Ashton Small Scale Trees",
+ "Ashton Small Scale Trees Black",
+ "AT57876",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Classic",
+ "Contemporary",
+ "Coral",
+ "Dark Gray",
+ "Dining Room",
+ "Entryway",
+ "Foliage",
+ "Gold",
+ "Gray",
+ "Indigo",
+ "Ivory",
+ "Khaki",
+ "Light Gray",
+ "Living Room",
+ "Maroon",
+ "Medium Gray",
+ "Mint",
+ "Modern",
+ "Monochromatic",
+ "Navy",
+ "Off-White",
+ "Office",
+ "Olive",
+ "Orchid",
+ "Pattern",
+ "Plum",
+ "Powder Room",
+ "Serene",
+ "Silver",
+ "Small Scale",
+ "Sophisticated",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 118.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80297-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72382",
+ "handle": "vaticano-durable-vinyl-dur-72382",
+ "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72382-sample-clean.jpg?v=1774485295",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72382"
+ },
+ {
+ "sku": "dwtt-71636-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71636-designer-wallcoverings-los-angeles",
+ "title": "Maze Grasscloth Metallic Silver on Taupe | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T41198_064e13fe-492d-4303-a649-3bd59dbd9b68.jpg?v=1733893681",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Geometric",
+ "Grasscloth Resource 3",
+ "Metallic Silver on Taupe",
+ "Pattern",
+ "T41198",
+ "taupe",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71636-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47764",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47764",
+ "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47764-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715647",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Indigo",
+ "Khaki",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47764"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68169",
+ "handle": "nice-reima-wallpaper-xq8-68169",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a55b5e7b1b1a38e75506a77045119097.jpg?v=1733882557",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Nice Reima",
+ "Non-woven",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68169"
+ },
+ {
+ "sku": "dwtt-71282-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71282-designer-wallcoverings-los-angeles",
+ "title": "Metal Linen Metallic Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83035_2a34d0cf-ebc6-4827-a11f-931ec4fe7a1b.jpg?v=1733894301",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Damask",
+ "gold",
+ "gray",
+ "Metallic Silver",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83035",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71282-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "heritage-white-silver-wallcovering-versace-2",
+ "handle": "heritage-white-silver-wallcovering-versace-2",
+ "title": "Heritage White Silver Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/396dd3065c75b6f39c46756997ac141d_a2a67a7d-0152-4409-9567-141c3a0c31ec.jpg?v=1773710466",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Glamorous",
+ "Heritage",
+ "Heritage White Silver Wallcovering",
+ "Italian",
+ "Light Beige",
+ "Living Room",
+ "Luxe",
+ "Luxury",
+ "Off-white",
+ "Paper",
+ "Paste the wall",
+ "Regencycore",
+ "Silver-grey",
+ "Sophisticated",
+ "Tile",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White Silver"
+ ],
+ "max_price": 407.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/heritage-white-silver-wallcovering-versace-2"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3320_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3320_8-jpg",
+ "title": "Hugo - Iron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3320_8.jpg?v=1762297494",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Iron",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3320_8-jpg"
+ },
+ {
+ "sku": "juno-stripe-durable-walls-xje-53754",
+ "handle": "juno-stripe-durable-walls-xje-53754",
+ "title": "Juno Stripe Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53754-sample-juno-stripe-durable-hollywood-wallcoverings.jpg?v=1775720233",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Indigo",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Wallcovering"
+ ],
+ "max_price": 57.05,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-stripe-durable-walls-xje-53754"
+ },
+ {
+ "sku": "dwtt-71249-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71249-designer-wallcoverings-los-angeles",
+ "title": "Herringbone Weave Silver on Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83024_459a5b8a-fa63-4723-b19a-e71b2a634dc4.jpg?v=1733894372",
+ "tags": [
+ "Architectural",
+ "Geometric",
+ "gray",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "Silver on Charcoal",
+ "T83024",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71249-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796",
+ "title": "Lister Lake 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/cirrus-dust_storm.jpg?v=1777480669",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796"
+ },
+ {
+ "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": "le-embossed-faux-grasscloth-xgr-6201",
+ "handle": "le-embossed-faux-grasscloth-xgr-6201",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6201-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721630",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Commercially Cleanable",
+ "Coral",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Maroon",
+ "Natural",
+ "Natural Texture",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6201"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66413",
+ "handle": "jolie-madam-wallpaper-xa1-66413",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/abd20fae1c46cee9a99c70d49546988e.jpg?v=1775121078",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66413"
+ },
+ {
+ "sku": "constantino-crackle-vinyl-dwx-58086",
+ "handle": "constantino-crackle-vinyl-dwx-58086",
+ "title": "Constantino Crackle Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58086-sample-constantino-crackle-vinyl-hollywood-wallcoverings.jpg?v=1775709011",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crackle",
+ "Distressed",
+ "Durable",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Modern",
+ "Silver",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/constantino-crackle-vinyl-dwx-58086"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66415",
+ "handle": "jolie-madam-wallpaper-xa1-66415",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b55df6d166a8f9d3809d6c395cbc479.jpg?v=1775121298",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Hotel Lobby",
+ "Jolie Madam Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66415"
+ },
+ {
+ "sku": "sesame-contemporary-embossed-durable-walls-xwj-52475",
+ "handle": "sesame-contemporary-embossed-durable-walls-xwj-52475",
+ "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52475-sample-sesame-contemporary-embossed-durable-hollywood-wallcoverings.jpg?v=1775732954",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52475"
+ },
+ {
+ "sku": "dwtt-72149-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72149-designer-wallcoverings-los-angeles",
+ "title": "Andros Metallic Silver on Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3685.jpg?v=1733892626",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Charcoal",
+ "Coastal",
+ "Contemporary",
+ "Grasscloth Resource 2",
+ "gray",
+ "Pattern",
+ "T3685",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72149-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71296-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71296-designer-wallcoverings-los-angeles",
+ "title": "Ceriman Paperweave Silver on Bronze | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83018_4467a62f-4f8a-42a5-a59a-87008c39a39c.jpg?v=1733894270",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Bronze",
+ "Contemporary",
+ "light brown",
+ "Natural Resource 2",
+ "Pattern",
+ "Solid",
+ "T83018",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71296-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-80252-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80252-designer-wallcoverings-los-angeles",
+ "title": "Beckley Stripe Blue Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57821.jpg?v=1776161601",
+ "tags": [
+ "AT57821",
+ "Bathroom",
+ "Beckley Stripe",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Bristol",
+ "Bronze",
+ "Calm",
+ "Contemporary",
+ "Cool",
+ "Cool Gray",
+ "Coral",
+ "Crimson",
+ "Dining Room",
+ "Dusty Blue",
+ "Forest",
+ "Gray Blue",
+ "Indigo",
+ "Ivory",
+ "Light Blue",
+ "Living Room",
+ "Maroon",
+ "Medium Blue",
+ "Medium Scale",
+ "Mint",
+ "Navy",
+ "Off White",
+ "Office",
+ "Olive",
+ "Orange",
+ "Pattern",
+ "Peaceful",
+ "Periwinkle",
+ "Plum",
+ "Powder Blue",
+ "Powder Room",
+ "Salmon",
+ "Serene",
+ "Silver",
+ "Slate Blue",
+ "Sophisticated",
+ "Steel Blue",
+ "Stripe",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 114.03,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80252-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53542",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53542",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-cadet.jpg?v=1777480881",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53542"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010258",
+ "handle": "hollywood-fashion-district-xhw-2010258",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010258-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717374",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Gold",
+ "Indigo",
+ "Ivory",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010258"
+ },
+ {
+ "sku": "hollywood-faux-silk-weave-xhw-2010352",
+ "handle": "hollywood-faux-silk-weave-xhw-2010352",
+ "title": "Hollywood Faux Silk Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010352-sample-hollywood-faux-silk-weave-hollywood-wallcoverings.jpg?v=1775717670",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 52.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-silk-weave-xhw-2010352"
+ },
+ {
+ "sku": "dwtt-72285-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72285-designer-wallcoverings-los-angeles",
+ "title": "Medici Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7698.jpg?v=1733892358",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 3",
+ "gray",
+ "Metallic Silver",
+ "Pattern",
+ "silver",
+ "T7698",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72285-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-128366",
+ "handle": "dwkk-128366",
+ "title": "W3492-4 Gold | Kravet Design | Candice Olson Collection |Metallic Texture Wallcovering Grasscloth",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_4_b77b537b-aaf4-43ae-8664-b3f0d93abf70.jpg?v=1753122296",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Candice Olson Collection",
+ "Color: Gold",
+ "Commercial",
+ "Contemporary",
+ "Cork - 100%",
+ "Dining Room",
+ "display_variant",
+ "Eclectic",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Metallic Foil",
+ "Natural Wallcovering",
+ "Republic Of",
+ "Rustic",
+ "Silver",
+ "Solid",
+ "Texture",
+ "Textured",
+ "W3492-4",
+ "W3492.4.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128366"
+ },
+ {
+ "sku": "charles-paintable-supaglypta-wallpaper-gga-82654",
+ "handle": "charles-paintable-supaglypta-wallpaper-gga-82654",
+ "title": "Charles Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8c13c1069e7150edc12dd28a90799b01.jpg?v=1750790453",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Charles Paintable Supaglypta",
+ "Class A Fire Rated",
+ "Classic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Durable",
+ "Embossed",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Neutral",
+ "Off-white",
+ "Paintable",
+ "Phasing-2026-04",
+ "Residential",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Versatile",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/charles-paintable-supaglypta-wallpaper-gga-82654"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44446",
+ "handle": "franko-faux-metallic-patina-ffm-44446",
+ "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44446-sample-clean_b994ce49-b6a3-4862-a0a6-b4a03085f301.jpg?v=1774479137",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44446"
+ },
+ {
+ "sku": "addlington-type-ii-vinyl-wallcovering-xjc-47060",
+ "handle": "addlington-type-ii-vinyl-wallcovering-xjc-47060",
+ "title": "Addlington Type II Vinyl Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjc-47060-sample-addlington-type-ii-vinyl-wallpaper-hollywood-wallcoverings.jpg?v=1775697273",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/addlington-type-ii-vinyl-wallcovering-xjc-47060"
+ },
+ {
+ "sku": "hollywood-poolside-pebble-xhw-2010150",
+ "handle": "hollywood-poolside-pebble-xhw-2010150",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010150-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718364",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010150"
+ },
+ {
+ "sku": "dwc-1001622",
+ "handle": "dwc-1001622",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309063219.jpg?v=1775521178",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "NCW4308-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001622"
+ },
+ {
+ "sku": "art-de-la-table-gold-black-wallcovering-versace-1",
+ "handle": "art-de-la-table-gold-black-wallcovering-versace-1",
+ "title": "Art De La Table Gold Black Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/77dc518dd96259c0891ec84bf6d4fae5.webp?v=1773710663",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art de la Table",
+ "Art De La Table Gold Black Wallcovering",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Brown",
+ "Butterfly",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Brown",
+ "Dark Gray",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gold Black",
+ "Gray",
+ "Greek Key",
+ "Haute Couture",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Paste the wall",
+ "Silver",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 434.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/art-de-la-table-gold-black-wallcovering-versace-1"
+ },
+ {
+ "sku": "dwtt-72548-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72548-designer-wallcoverings-los-angeles",
+ "title": "Shangri-la Yellow and Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6860.jpg?v=1775153854",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Pattern",
+ "Shangri-La",
+ "silver",
+ "T8614",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white",
+ "yellow",
+ "Yellow and Grey"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72548-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010261",
+ "handle": "hollywood-fashion-district-xhw-2010261",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010261-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717475",
+ "tags": [
+ "Beige",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010261"
+ },
+ {
+ "sku": "dwtt-72298-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72298-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Brown on Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7615.jpg?v=1733892332",
+ "tags": [
+ "Architectural",
+ "beige",
+ "brown",
+ "Brown on Silver",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "T7615",
+ "Thibaut",
+ "Unknown",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72298-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53681",
+ "handle": "westville-contemporary-durable-walls-xje-53681",
+ "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53681-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736445",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53681"
+ },
+ {
+ "sku": "hollywood-and-western-xhw-2010100",
+ "handle": "hollywood-and-western-xhw-2010100",
+ "title": "Hollywood and Western | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010100-sample-hollywood-and-western-hollywood-wallcoverings.jpg?v=1775716926",
+ "tags": [
+ "Beige",
+ "Black",
+ "Charcoal",
+ "Coral",
+ "Crimson",
+ "Denim",
+ "Faux Wood",
+ "Graphite",
+ "Gray",
+ "Lilac",
+ "Navy",
+ "Olive",
+ "Platinum",
+ "Salmon",
+ "Silver",
+ "Slate",
+ "Stone",
+ "Tan",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-western-xhw-2010100"
+ },
+ {
+ "sku": "moroccan-silver-mica-wbs-39667",
+ "handle": "moroccan-silver-mica-wbs-39667",
+ "title": "Moroccan Silver Mica | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39667-sample-moroccan-silver-mica-hollywood-wallcoverings.jpg?v=1775726723",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Bricks and Stones",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Mica",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 95.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-silver-mica-wbs-39667"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010382",
+ "handle": "hollywood-contemporary-coast-xhw-2010382",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-volcanic_8ed2dfa2-6ed3-4af5-a11c-4ca6aae56c22.jpg?v=1777481090",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Samantha",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010382"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798",
+ "title": "Lister Lake 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/cirrus-fog.jpg?v=1777480672",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Pale Grey",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798"
+ },
+ {
+ "sku": "balzac-storm-romo",
+ "handle": "balzac-storm-romo",
+ "title": "Balzac Storm | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW103-06-balzac-wallcovering-storm_01.jpg?v=1776484876",
+ "tags": [
+ "Architectural",
+ "Background Color gray",
+ "Brick",
+ "charcoal",
+ "Commercial",
+ "Contemporary",
+ "Durable",
+ "Geometric",
+ "Glamorama Wallcovering",
+ "gray",
+ "Industrial",
+ "Lobby",
+ "Medium",
+ "Modern",
+ "Neutral",
+ "Office",
+ "Restaurant",
+ "Romo",
+ "silver",
+ "Stone",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "ZW103/06"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/balzac-storm-romo"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+ "title": "Hugo - Khaki | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3323_8.jpg?v=1762297605",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Grasscloth",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Linen",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3323_8-jpg"
+ },
+ {
+ "sku": "glamly-metal-on-vinyl-gpr-76620",
+ "handle": "glamly-metal-on-vinyl-gpr-76620",
+ "title": "Glamly Metal on Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76620-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714669",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "USFCID#vp860-039",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 64.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76620"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73173",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73173",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73173-sample-clean.jpg?v=1774483887",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Silver",
+ "stripe",
+ "textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73173"
+ },
+ {
+ "sku": "mica-madness-real-cork-chip-wallpapers-mic-98621",
+ "handle": "mica-madness-real-cork-chip-wallpapers-mic-98621",
+ "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1d13ceb2cc53fca0c0eed77d922f1bda.jpg?v=1775082717",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Cork",
+ "Gray",
+ "Light Silver Grey",
+ "Living Room",
+ "Metallic",
+ "Mica",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturals",
+ "Nickel",
+ "Office",
+ "Paper",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Retail",
+ "Silver",
+ "Solid/Textural",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98621"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66464",
+ "handle": "mr-diorio-wallpaper-xa8-66464",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7fa2495d98eebd02c237e9b257e59d12.jpg?v=1775124266",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Non-woven",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66464"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53055",
+ "handle": "boca-faux-finish-durable-walls-xww-53055",
+ "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53055-sample-boca-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775705823",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53055"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53769",
+ "handle": "juno-faux-silk-durable-walls-xje-53769",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53769-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720163",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Sand",
+ "Silver",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53769"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9444-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9444-jpg",
+ "title": "Maya - Aluminum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9444.jpg?v=1762302296",
+ "tags": [
+ "100% Vinyl",
+ "Aluminum",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Maya",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9444-jpg"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010179",
+ "handle": "hollywood-tailored-xhw-2010179",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-worth.jpg?v=1777480974",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010179"
+ },
+ {
+ "sku": "dwtt-71181-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71181-designer-wallcoverings-los-angeles",
+ "title": "Sierra Metallic Silver on Metallic Silver on Soft Blue | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4006_12476f97-5f54-4d9f-871b-1f039a273853.jpg?v=1733894533",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "Geometric",
+ "Light Blue",
+ "Metallic Silver on Soft Blue",
+ "Pattern",
+ "Silver",
+ "Surface Resource",
+ "T4006",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71181-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "title": "SM9510 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9509.jpg?v=1733872509",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9510-jpg"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "title": "Maidstone - Sand Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-grey_star.jpg?v=1777480137",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47942"
+ },
+ {
+ "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": "cotes-d-amore-durable-vinyl-dur-72142",
+ "handle": "cotes-d-amore-durable-vinyl-dur-72142",
+ "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72142-sample-clean.jpg?v=1774484541",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Taupe",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72142"
+ },
+ {
+ "sku": "dwtt-81009-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81009-designer-wallcoverings-los-angeles",
+ "title": "Kimono Grey Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-dwtt-81009-designer-wallcoverings-los-angeles.jpg?v=1775070987",
+ "tags": [
+ "Abstract",
+ "AT9854",
+ "Bedroom",
+ "Calm",
+ "Charcoal",
+ "Charcoal Gray",
+ "Concrete",
+ "Contemporary",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Dove Gray",
+ "Entryway",
+ "Forest Green",
+ "Geometric",
+ "Graphite",
+ "Green",
+ "Ivory",
+ "Jade",
+ "Kimono Geometric",
+ "Large Scale",
+ "Living Room",
+ "Mint Green",
+ "Modern",
+ "Moss",
+ "Nara",
+ "Off White",
+ "Office",
+ "Olive",
+ "Pattern",
+ "Pearl",
+ "Powder Blue",
+ "Powder Room",
+ "Sage Green",
+ "Seafoam",
+ "Serene",
+ "Silver",
+ "Sky Blue",
+ "Slate",
+ "Slate Gray",
+ "Sophisticated",
+ "Steel Blue",
+ "Stone",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 144.62,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81009-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tudor-paintable-anaglytpa-original-wallpaper-gga-82674",
+ "handle": "tudor-paintable-anaglytpa-original-wallpaper-gga-82674",
+ "title": "Tudor Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/06f488df471c093e9793aa0611cd9603.jpg?v=1750790425",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Fleur de Lis",
+ "Floral",
+ "French Country",
+ "Green",
+ "Jeffrey Stevens",
+ "Non-Woven",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Traditional",
+ "Tudor Paintable Anaglytpa Original",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tudor-paintable-anaglytpa-original-wallpaper-gga-82674"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "title": "Maidstone - Oyster Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-diamond_ad034a20-61e7-43da-99f1-a50cd75bd4c8.jpg?v=1777481198",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47940"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_bbo-4955-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_bbo-4955-jpg",
+ "title": "Bilbao - Platinum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bbo-4955.jpg?v=1762287470",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Bilbao",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Mylar",
+ "Platinum",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_bbo-4955-jpg"
+ },
+ {
+ "sku": "baroque-ornament-cream-silver-wallcovering-versace",
+ "handle": "baroque-ornament-cream-silver-wallcovering-versace",
+ "title": "Baroque Ornament Cream, Silver Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6ae9f17e781e6e9f49a83dc3528248e4.jpg?v=1773706284",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Baroque Ornament",
+ "Baroque Ornament Cream",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Italian",
+ "Light Beige",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Paste the wall",
+ "Silver Wallcovering",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 325.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baroque-ornament-cream-silver-wallcovering-versace"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44384",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44384",
+ "title": "Sharon's Striated Striped Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xss-44384-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733012",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Lemon",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44384"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73171",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73171",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73171-sample-clean.jpg?v=1774483873",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Paper",
+ "Serene",
+ "Silver",
+ "Smoke",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73171"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52324",
+ "handle": "marketfield-faux-durable-walls-xwh-52324",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52324-sample-marketfield-faux-durable-hollywood-wallcoverings.jpg?v=1775724181",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52324"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-420",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-420",
+ "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/b48f9a7bd655df7337477408441c7382_9ee1cf3f-7c51-4501-a609-f72292e4bc85.jpg?v=1745458298",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Gray",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-420"
+ },
+ {
+ "sku": "origami-by-innovations-usa-dwc-origami-11",
+ "handle": "origami-by-innovations-usa-dwc-origami-11",
+ "title": "Origami | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-11.jpg?v=1736198880",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Origami",
+ "Origami-11",
+ "Paper",
+ "Silver",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-11"
+ },
+ {
+ "sku": "dwtt-71458-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71458-designer-wallcoverings-los-angeles",
+ "title": "Andreas Stripe White Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14249_a124dbd7-b3e2-4745-83e8-e3d145a841a8.jpg?v=1733894035",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "cream",
+ "Imperial Garden",
+ "light gray",
+ "Pattern",
+ "silver",
+ "T14249",
+ "Thibaut",
+ "Traditional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering",
+ "White Pearl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71458-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+ "title": "Mass - Lake | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mass-5779.jpg?v=1762300233",
+ "tags": [
+ "23% Nylon",
+ "36% Wool",
+ "37% Cotton",
+ "4% Polyester",
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cotton",
+ "Lake",
+ "Mass",
+ "Metallic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mass-5779-jpg"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "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-58157-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725488",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58157"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93013",
+ "handle": "lucy-large-crocodile-croca-93013",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93013-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723175",
+ "tags": [
+ "Animal Print",
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Brick",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Dining Room",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Luxe",
+ "Moss",
+ "Paper Backed Vinyl",
+ "Silver",
+ "Sophisticated",
+ "Taupe Grey",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93013"
+ },
+ {
+ "sku": "dwtt-71257-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71257-designer-wallcoverings-los-angeles",
+ "title": "Ceriman Paperweave Silver on Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83016_5d1370c6-6732-4857-a9f1-0c77f4070bd2.jpg?v=1733894354",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Floral",
+ "Grey",
+ "light gray",
+ "Natural Resource 2",
+ "Pattern",
+ "T83016",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71257-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-ge20640bc",
+ "handle": "dwkk-ge20640bc",
+ "title": "Kravet Design - W3492-52 Slate Commercial Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_52_34f04674-c640-442c-8be7-975f2b1bb93e.jpg?v=1753122293",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Candice Olson Collection",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork - 100%",
+ "display_variant",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Republic Of",
+ "Rustic",
+ "Silver",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "W3492-52",
+ "W3492.52.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-ge20640bc"
+ },
+ {
+ "sku": "spalt-by-innovations-usa-dwc-spalt-2",
+ "handle": "spalt-by-innovations-usa-dwc-spalt-2",
+ "title": "Spalt | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Spalt-2.jpg?v=1736199103",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Innovations USA",
+ "Metallic",
+ "Silver",
+ "Spalt-2",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/spalt-by-innovations-usa-dwc-spalt-2"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dvts-520-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dvts-520-jpg",
+ "title": "Vista - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dvts-520_180b4f1b-726f-4084-be61-2f8fadaa5bef.jpg?v=1762293070",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Blue-gray",
+ "Digital Curated",
+ "Geometric",
+ "Mylar",
+ "Paper",
+ "Silver",
+ "Steel",
+ "Vista",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dvts-520-jpg"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47748",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47748",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47748-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714985",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pink",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47748"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2743",
+ "handle": "faux-leaf-squares-fls-2743",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2743-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711978",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2743"
+ },
+ {
+ "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": "jones-faux-grass-durable-walls-xwf-52209",
+ "handle": "jones-faux-grass-durable-walls-xwf-52209",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52209-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719842",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52209"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93015",
+ "handle": "lucy-large-crocodile-croca-93015",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93015-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723178",
+ "tags": [
+ "Amber",
+ "Animal Print",
+ "Apricot",
+ "Beige",
+ "Brass",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Embossed Texture",
+ "Gold",
+ "Golden",
+ "Gray",
+ "Indigo",
+ "Ivory",
+ "Khaki",
+ "Lilac",
+ "Lucy Large Crocodile Wallcovering",
+ "Maroon",
+ "Mustard",
+ "Navy",
+ "Ochre",
+ "Olive",
+ "Paper Backed Vinyl",
+ "Peach",
+ "Plum",
+ "Rust",
+ "Salmon",
+ "Sienna",
+ "Silver",
+ "Slate",
+ "Taupe",
+ "Teal",
+ "Umber",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93015"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kbt-5122-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kbt-5122-jpg",
+ "title": "Kabuto - Abalone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5122.jpg?v=1762298791",
+ "tags": [
+ "100% Mylar",
+ "Abalone",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Kabuto",
+ "Mylar",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5122-jpg"
+ },
+ {
+ "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_dnuv-511-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dnuv-511-jpg",
+ "title": "Digital Nouveau - Silver Sand | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dnuv-511.jpg?v=1762291189",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Digital Nouveau",
+ "Geometric",
+ "Lattice",
+ "Mylar",
+ "Paper",
+ "Silver",
+ "Silver Sand",
+ "Tan",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dnuv-511-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3294_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3294_8-jpg",
+ "title": "Marlu - Zinc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3294_8.jpg?v=1762301545",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Zinc"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3294_8-jpg"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73075",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73075",
+ "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73075-sample-clean.jpg?v=1774483353",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Farmhouse",
+ "Faux Wood",
+ "Floral",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-Woven",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Silver",
+ "textured",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73075"
+ },
+ {
+ "sku": "heritage-cream-silver-wallcovering-versace-1",
+ "handle": "heritage-cream-silver-wallcovering-versace-1",
+ "title": "Heritage Cream Silver Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4d8e2d5a6ba5561706b1be10682d9ae6.jpg?v=1773710628",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream Silver",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Glamorous",
+ "Heritage",
+ "Heritage Cream Silver Wallcovering",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Needs-Image",
+ "Off-white",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 434.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/heritage-cream-silver-wallcovering-versace-1"
+ },
+ {
+ "sku": "dwtt-71293-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71293-designer-wallcoverings-los-angeles",
+ "title": "Highline Silver on Aqua | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83060_ee9a2a77-a03a-4142-ae61-7d0392313bfc.jpg?v=1733894275",
+ "tags": [
+ "Architectural",
+ "Contemporary",
+ "light green",
+ "Natural Resource 2",
+ "Pattern",
+ "Silver on Aqua",
+ "T83060",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71293-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-80999-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80999-designer-wallcoverings-los-angeles",
+ "title": "Charlotte Raffia Black and Metallic Silver Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Nara-CharlotteRaffiaWP-01-GCR.jpg?v=1770341584",
+ "tags": [
+ "AT9842",
+ "Bedroom",
+ "Black",
+ "Calm",
+ "Charcoal",
+ "Charlotte Geomteric Fret Natural Raffia",
+ "Charlotte Geomteric Fret Natural Raffia Black",
+ "Contemporary",
+ "Cool Gray",
+ "Dining Room",
+ "Dove Gray",
+ "Elegant",
+ "Entryway",
+ "Geometric",
+ "Ivory",
+ "Light Gray",
+ "Living Room",
+ "Medium Gray",
+ "Medium Scale",
+ "Metallic",
+ "Metallic Silver",
+ "Modern",
+ "Nara",
+ "Neutral",
+ "Off-White",
+ "Office",
+ "Pattern",
+ "Pewter",
+ "Powder Room",
+ "Refined",
+ "Silver",
+ "Sophisticated",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering",
+ "Warm Gray"
+ ],
+ "max_price": 215.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80999-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-faux-silk-weave-xhw-2010342",
+ "handle": "hollywood-faux-silk-weave-xhw-2010342",
+ "title": "Hollywood Faux Silk Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010342-sample-hollywood-faux-silk-weave-hollywood-wallcoverings.jpg?v=1775717599",
+ "tags": [
+ "Ash",
+ "Black",
+ "Charcoal",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Khaki",
+ "Olive",
+ "Pewter",
+ "Silver",
+ "Stone",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 52.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-silk-weave-xhw-2010342"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66411",
+ "handle": "jolie-madam-wallpaper-xa1-66411",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/892d91b687eb8464e3902050d27548ea.jpg?v=1775120866",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dark Gray",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66411"
+ },
+ {
+ "sku": "eur-80114-ncw4120-designer-wallcoverings-los-angeles",
+ "handle": "eur-80114-ncw4120-designer-wallcoverings-los-angeles",
+ "title": "Holmwood 03 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496256563.jpg?v=1775522201",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Color: White",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Holmwood",
+ "Living Room",
+ "NCW4120",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Scroll",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80114-ncw4120-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47231",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47231",
+ "title": "Barnard Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/batiste-twilight_grey_a4987b1a-9955-410f-ba12-e91656cedaaa.jpg?v=1777481506",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Platinum",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47231"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3383_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3383_8-jpg",
+ "title": "Lyra - Carbon | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3383_8.jpg?v=1762300093",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Carbon",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3383_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3313_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3313_8-jpg",
+ "title": "Hugo - Jet | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3313_8.jpg?v=1762297238",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3313_8-jpg"
+ },
+ {
+ "sku": "dwtt-71421-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71421-designer-wallcoverings-los-angeles",
+ "title": "Ogden Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14260_e6b40042-1601-4e86-b688-a1343e560dc9.jpg?v=1733894102",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "brown",
+ "contemporary",
+ "gray",
+ "Imperial Garden",
+ "Metallic Silver",
+ "Pattern",
+ "silver",
+ "T14260",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71421-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71799-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71799-designer-wallcoverings-los-angeles",
+ "title": "Taza Metallic Silver on Metallic Gold on Beige | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35167_ef5d7213-6ebe-4369-a42f-26545378002f.jpg?v=1733893380",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "Graphic Resource",
+ "Metallic Gold on Beige",
+ "off-white",
+ "Pattern",
+ "T35167",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71799-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47820",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47820",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47820-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719375",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47820"
+ },
+ {
+ "sku": "dwtt-71628-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71628-designer-wallcoverings-los-angeles",
+ "title": "Gulf Shore Teal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T41117_5f6f0f6a-deca-414d-aff5-27f4f68b2924.jpg?v=1733893691",
+ "tags": [
+ "Architectural",
+ "contemporary",
+ "Grasscloth Resource 3",
+ "gray",
+ "Pattern",
+ "silver",
+ "T41117",
+ "teal",
+ "texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71628-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-modern-marble-xhw-2010321",
+ "handle": "hollywood-modern-marble-xhw-2010321",
+ "title": "Hollywood Modern Marble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010321-sample-clean.jpg?v=1774482921",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Marble",
+ "Marble Look",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010321"
+ },
+ {
+ "sku": "maryport-type-ii-vinyl-wallcovering-xmp-48005",
+ "handle": "maryport-type-ii-vinyl-wallcovering-xmp-48005",
+ "title": "Maryport Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmp-48005-maryport-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775724479",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Black",
+ "Blue",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Linen",
+ "Living Room",
+ "Luxe",
+ "Navy",
+ "Paper",
+ "Regencycore",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maryport-type-ii-vinyl-wallcovering-xmp-48005"
+ },
+ {
+ "sku": "delilah-brown-tulip-damask-wallpaper-cca-83241",
+ "handle": "delilah-brown-tulip-damask-wallpaper-cca-83241",
+ "title": "Delilah Brown Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/95d8fcc1d87ba2f235364b657db0dd90.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Floral",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-brown-tulip-damask-wallpaper-cca-83241"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-102-fgb-102",
+ "handle": "faux-glass-bead-wallpaper-102-fgb-102",
+ "title": "Faux Glass Bead Wallcovering - 102 Taupe Shimmer",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-102-sample-faux-glass-bead-wallcovering.jpg?v=1775711794",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Alabaster",
+ "Architectural",
+ "Bedroom",
+ "Bling",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercially Rated Cleanable",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Glass Bead Wallcovering",
+ "Glass Bead",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Platinum",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-102-fgb-102"
+ },
+ {
+ "sku": "eur-80180-ncw4181-designer-wallcoverings-los-angeles",
+ "handle": "eur-80180-ncw4181-designer-wallcoverings-los-angeles",
+ "title": "Sansui 07 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498648627.jpg?v=1775522606",
+ "tags": [
+ "Architectural",
+ "CATHAY",
+ "Charcoal",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Lattice",
+ "Living Room",
+ "NCW4181",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Sansui",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80180-ncw4181-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71304-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71304-designer-wallcoverings-los-angeles",
+ "title": "Taza Cork Metallic Gold | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83003_4b075f5e-12f6-454b-afab-05ab28db302d.jpg?v=1733894252",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "gold",
+ "Metallic Gold",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83003",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795",
+ "title": "Lister Lake 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/cirrus-sky.jpg?v=1777480665",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Pale Blue",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68167",
+ "handle": "nice-reima-wallpaper-xq8-68167",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11c7374734f84483aa9533b0cf11e5aa.jpg?v=1733882553",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Nice Reima",
+ "Office",
+ "Pale Grey",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Silver",
+ "Silver Sage",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68167"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53411",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53411",
+ "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-dojo.jpg?v=1777480833",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53411"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72272",
+ "handle": "essone-durable-vinyl-dur-72272",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72272-sample-clean.jpg?v=1774484966",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72272"
+ },
+ {
+ "sku": "moderni-modern-texture-xmm-44427",
+ "handle": "moderni-modern-texture-xmm-44427",
+ "title": "Moderni Modern Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44427-sample-moderni-modern-texture-hollywood-wallcoverings.jpg?v=1775726319",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Ivory",
+ "Maroon",
+ "Modern",
+ "Navy",
+ "Olive",
+ "Orange",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moderni-modern-texture-xmm-44427"
+ },
+ {
+ "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48545",
+ "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48545",
+ "title": "Twickenham Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XQM-48545-sample-clean.jpg?v=1774480588",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ebony",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "Office",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Twickenham Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48545"
+ },
+ {
+ "sku": "dwkk-129173",
+ "handle": "dwkk-129173",
+ "title": "W3762-5 Silver | Kravet Design |Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3762_5_788396e9-41ac-4786-bd60-13cc9dc01c47.jpg?v=1753121487",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Blue",
+ "display_variant",
+ "Geometric",
+ "Gray",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Navy",
+ "Non-Woven",
+ "Office",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3762-5",
+ "W3762.5.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129173"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010440",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010440",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010440-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717335",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Denim",
+ "Faux Wood",
+ "Lilac",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010440"
+ },
+ {
+ "sku": "spalt-by-innovations-usa-dwc-spalt-1",
+ "handle": "spalt-by-innovations-usa-dwc-spalt-1",
+ "title": "Spalt | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Spalt-1.jpg?v=1736199105",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Blue-gray",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Non-woven",
+ "Silver",
+ "Spalt",
+ "Spalt-1",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/spalt-by-innovations-usa-dwc-spalt-1"
+ },
+ {
+ "sku": "hollywood-and-vine-xhw-201038",
+ "handle": "hollywood-and-vine-xhw-201038",
+ "title": "Hollywood and Vine",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201038-sample-hollywood-and-vine.jpg?v=1775716808",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-vine-xhw-201038"
+ },
+ {
+ "sku": "hollywood-poolside-pebble-xhw-2010148",
+ "handle": "hollywood-poolside-pebble-xhw-2010148",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010148-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718349",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Indigo",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010148"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49322",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49322",
+ "title": "Oxford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/baccarat-lumiere.jpg?v=1777480351",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49322"
+ },
+ {
+ "sku": "dwtt-71202-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71202-designer-wallcoverings-los-angeles",
+ "title": "Ashley Metallic Silver on Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89172_95b5fb1a-0f81-47af-8d3f-f49dd6734536.jpg?v=1733894490",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Damask",
+ "Damask Resource 4",
+ "off-white",
+ "Pattern",
+ "Pearl",
+ "T89172",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71202-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "title": "Pippy's Peacock - Teal Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53622-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716638",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53622"
+ },
+ {
+ "sku": "dwtt-72150-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72150-designer-wallcoverings-los-angeles",
+ "title": "Andros Metallic Silver on Light Brown | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwtt-72150-designer-wallcoverings-los-angeles-swatch-spin.gif?v=1771174422",
+ "tags": [
+ "Architectural",
+ "beige",
+ "brown",
+ "Grasscloth Resource 2",
+ "Light Brown",
+ "Pattern",
+ "T3686",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72150-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71536-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71536-designer-wallcoverings-los-angeles",
+ "title": "Wallcoverings Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11008_a10a8662-65a9-4237-947d-0f489af86d22.jpg?v=1733893884",
+ "tags": [
+ "Abstract",
+ "Animal",
+ "Bedroom",
+ "Contemporary",
+ "Dining Room",
+ "Gray",
+ "Living Room",
+ "Medium Scale",
+ "Modern",
+ "Non-Woven",
+ "Off-White",
+ "Pattern",
+ "REVIEW",
+ "Silver",
+ "Sophisticated",
+ "T11008",
+ "Thibaut",
+ "Thibaut Wallcoverings",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71536-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "edward-paintable-supaglypta-wallpaper-gga-82653",
+ "handle": "edward-paintable-supaglypta-wallpaper-gga-82653",
+ "title": "Edward Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/41e6f9d8f6ff07f8a5d7de58a6da3a38.jpg?v=1750790455",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Army",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Edward Paintable Supaglypta",
+ "Green",
+ "Jeffrey Stevens",
+ "Laurel",
+ "Light Gray",
+ "Minimalist",
+ "Moss",
+ "Non-Woven",
+ "Off-White",
+ "Paintable",
+ "Phasing-2026-04",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edward-paintable-supaglypta-wallpaper-gga-82653"
+ },
+ {
+ "sku": "eur-80200-ncw4185-designer-wallcoverings-los-angeles",
+ "handle": "eur-80200-ncw4185-designer-wallcoverings-los-angeles",
+ "title": "Mahayana 03 - Cool Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499435059.jpg?v=1775522720",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Silver",
+ "Living Room",
+ "Mahayana",
+ "Minimalist",
+ "Modern",
+ "NCW4185",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80200-ncw4185-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49259",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49259",
+ "title": "Hereford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/malachite-moonstone_f20d9a5b-d3d1-48ae-8cf0-c7806bbde4cb.jpg?v=1777481497",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49259"
+ },
+ {
+ "sku": "hollywood-luxury-solids-xhw-2010392",
+ "handle": "hollywood-luxury-solids-xhw-2010392",
+ "title": "Hollywood Luxury Solids | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010392-sample-hollywood-luxury-solids-hollywood-wallcoverings.jpg?v=1775717988",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 49.89,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-luxury-solids-xhw-2010392"
+ },
+ {
+ "sku": "dwtt-71237-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71237-designer-wallcoverings-los-angeles",
+ "title": "Rowan Damask Metallic Gold on Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89131.jpg?v=1762227979",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Color: Gold",
+ "Damask",
+ "Damask Resource 4",
+ "Dining Room",
+ "Floral",
+ "gold",
+ "Grandmillennial",
+ "Living Room",
+ "Luxe",
+ "Metallic Gold on Silver",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Rowan Damask",
+ "Rowan Damask Metallic Gold on",
+ "Silver",
+ "Sophisticated",
+ "T89131",
+ "Thibaut",
+ "Traditional",
+ "Wallcovering",
+ "white",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71237-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44396",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44396",
+ "title": "Sharon's Striated Striped Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xss-44396-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733054",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Ivory",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44396"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blg-5636-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blg-5636-jpg",
+ "title": "Belgrade - Marble | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5636.jpg?v=1762287711",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Belgrade",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Marble",
+ "RAMPART®",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5636-jpg"
+ },
+ {
+ "sku": "dwtt-71283-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71283-designer-wallcoverings-los-angeles",
+ "title": "Metal Linen Metallic White and Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83036_0fdd345a-2e1a-4197-bcaf-92eeded30984.jpg?v=1733894299",
+ "tags": [
+ "Architectural",
+ "brown",
+ "Damask",
+ "gray",
+ "Natural Resource 2",
+ "Pattern",
+ "T83036",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white",
+ "White and Silver"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71283-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44285",
+ "handle": "seeing-circles-wallcovering-xsc-44285",
+ "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-44285-sample-seeing-circles-hollywood-wallcoverings.jpg?v=1775732875",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Champagne",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44285"
+ },
+ {
+ "sku": "yasu-silver-brunschwig-fils",
+ "handle": "yasu-silver-brunschwig-fils",
+ "title": "Yasu Silver | Brunschwig & Fils",
+ "vendor": "Brunschwig & Fils",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P8015111_11_926bf78a-0113-4b3d-a601-d75cad06b09c.jpg?v=1777019993",
+ "tags": [
+ "Bedroom",
+ "Beige",
+ "Brunschwig & Fils",
+ "Contemporary",
+ "Cream",
+ "Kravet",
+ "Living Room",
+ "Minimalist",
+ "New Arrival",
+ "Office",
+ "Origin: Japan",
+ "Scandinavian",
+ "Spa",
+ "Textural",
+ "Wallcovering"
+ ],
+ "max_price": 5906.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yasu-silver-brunschwig-fils"
+ },
+ {
+ "sku": "dwtt-71417-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71417-designer-wallcoverings-los-angeles",
+ "title": "Andreas Stripe Metallic Silver on White | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T14244.jpg?v=1762229737",
+ "tags": [
+ "ANDREAS STRIPE",
+ "Architectural",
+ "Bedroom",
+ "Color: White",
+ "Contemporary",
+ "Geometric",
+ "gray",
+ "Greek Key",
+ "Hallway",
+ "Imperial Garden",
+ "Living Room",
+ "Metallic Silver on White",
+ "Minimalist",
+ "Off-white",
+ "Pattern",
+ "Serene",
+ "silver",
+ "Stripe",
+ "T14244",
+ "Thibaut",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71417-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53113",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53113",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53113-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716047",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Medium Grey",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53113"
+ },
+ {
+ "sku": "corkytown-real-cork-wallpaper-cork-98613",
+ "handle": "corkytown-real-cork-wallpaper-cork-98613",
+ "title": "Corkytown Real Cork | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/053741b2baef5307f3163caaa9a31b45.jpg?v=1775081797",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Cork",
+ "Hotel Lobby",
+ "Industrial",
+ "Living Room",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corkytown-real-cork-wallpaper-cork-98613"
+ },
+ {
+ "sku": "hollywood-poolside-pebble-xhw-2010151",
+ "handle": "hollywood-poolside-pebble-xhw-2010151",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010151-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718407",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Gold",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010151"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824",
+ "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-white_alps.jpg?v=1777480690",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824"
+ },
+ {
+ "sku": "dwtt-70842-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-70842-designer-wallcoverings-los-angeles",
+ "title": "Echo Metallic Silver on White | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10453_0df3b535-113e-423f-a9dd-d549f196cdde.jpg?v=1733895243",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "contemporary",
+ "Metallic Silver on White",
+ "Modern Resource 2",
+ "Pattern",
+ "silver",
+ "stripe",
+ "T10453",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-70842-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44377",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44377",
+ "title": "Sharon's Striated Striped Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xss-44377-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775732988",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44377"
+ },
+ {
+ "sku": "dwtt-71251-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71251-designer-wallcoverings-los-angeles",
+ "title": "Herringbone Weave Metallic Silver on Navy | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83026_32c09274-1e1d-4ce9-85f8-7314560fdbe5.jpg?v=1733894367",
+ "tags": [
+ "Architectural",
+ "blue",
+ "Geometric",
+ "Metallic Silver on Navy",
+ "Natural Resource 2",
+ "Pattern",
+ "silver",
+ "T83026",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71251-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+ "handle": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+ "title": "Horse Shoe Contemporary Bay Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53726-sample-horse-shoe-contemporary-bay-durable-hollywood-wallcoverings.jpg?v=1775719241",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Vinyl",
+ "Wallcovering",
+ "Year of the Horse",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/horse-shoe-contemporary-bay-durable-walls-xje-53726"
+ },
+ {
+ "sku": "dwtt-71297-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71297-designer-wallcoverings-los-angeles",
+ "title": "Ceriman Paperweave Silver on Champagne | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83019_129b1942-5734-428a-a25c-3d737da053ed.jpg?v=1733894268",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Champagne",
+ "Contemporary",
+ "gold",
+ "light brown",
+ "Natural Resource 2",
+ "Pattern",
+ "Solid",
+ "T83019",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71297-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "regal-lattice-screen-printed-wallpaper-tre-12907",
+ "handle": "regal-lattice-screen-printed-wallpaper-tre-12907",
+ "title": "Regal Lattice - Screen Printed Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3547fe79068d43fd86725b501b7c7f01.jpg?v=1572309178",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Gray",
+ "Metallic",
+ "Modern",
+ "Paper",
+ "Screen Print",
+ "Silver",
+ "Stripe",
+ "Suede",
+ "Textured",
+ "Trellis",
+ "Wallcovering"
+ ],
+ "max_price": 142.16,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12907"
+ },
+ {
+ "sku": "dwtt-80296-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80296-designer-wallcoverings-los-angeles",
+ "title": "Ashton Green Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Bristol-AshtonWP-HoldenStripeFAB-green-EnsburyFernFAB-beige.jpg?v=1773244164",
+ "tags": [
+ "Ashton Small Scale Trees",
+ "AT57875",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Contemporary",
+ "Coral",
+ "Cream",
+ "Dining Room",
+ "Earth Tones",
+ "Entryway",
+ "Foliage",
+ "Forest Green",
+ "Green",
+ "Hunter Green",
+ "Indigo",
+ "Ivory",
+ "Khaki",
+ "Light Gray",
+ "Living Room",
+ "Maroon",
+ "Moss Green",
+ "Natural",
+ "Navy",
+ "Off-White",
+ "Office",
+ "Olive",
+ "Olive Green",
+ "Pattern",
+ "Peaceful",
+ "Plum",
+ "Powder Room",
+ "Sage Green",
+ "Salmon",
+ "Sand",
+ "Serene",
+ "Silver",
+ "Small Scale",
+ "Sophisticated",
+ "Taupe",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm Gray"
+ ],
+ "max_price": 118.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80296-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_jai9-5369-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_jai9-5369-jpg",
+ "title": "Jaipur - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/jai9-5369.jpg?v=1762298004",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Jaipur",
+ "Light Gray",
+ "Paper",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_jai9-5369-jpg"
+ },
+ {
+ "sku": "dwtt-71318-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71318-designer-wallcoverings-los-angeles",
+ "title": "Universe Texture Metallic on Dark Brown | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83070_4389dc72-03a6-4dab-bfda-3f69eebfefe0.jpg?v=1733894229",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "brown",
+ "Collection Name",
+ "gold",
+ "Metallic on Dark Brown",
+ "Pattern",
+ "silver",
+ "T83070",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71318-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72539-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72539-designer-wallcoverings-los-angeles",
+ "title": "Shangri-la Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6835.jpg?v=1775153728",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "brown",
+ "Chinoiserie",
+ "Floral",
+ "gray",
+ "green",
+ "Pattern",
+ "red",
+ "Shangri-La",
+ "Silver",
+ "T8648",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72539-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80169-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80169-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 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_7513498222643.jpg?v=1775522542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Living Room",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Regencycore",
+ "ROSSLYN",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80169-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72034",
+ "handle": "provence-durable-vinyl-dur-72034",
+ "title": "Provence Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72034-sample-clean.jpg?v=1774484055",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Concrete",
+ "Contemporary",
+ "Cool",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Provence Durable Vinyl",
+ "Silver",
+ "Slate Gray",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/provence-durable-vinyl-dur-72034"
+ },
+ {
+ "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_kam-5111-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5111-jpg",
+ "title": "Kami - Frost | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5111.jpg?v=1762298718",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Frost",
+ "Geometric",
+ "Gray",
+ "Kami",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5111-jpg"
+ },
+ {
+ "sku": "hollywood-sunset-stripe-xhw-201068",
+ "handle": "hollywood-sunset-stripe-xhw-201068",
+ "title": "Hollywood Sunset Stripe | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201068-sample-hollywood-sunset-stripe-hollywood-wallcoverings.jpg?v=1775718961",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-sunset-stripe-xhw-201068"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47777",
+ "handle": "halifax-specialty-wallcovering-xlk-47777",
+ "title": "Halifax Specialty | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlk-47777-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715800",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47777"
+ },
+ {
+ "sku": "dwtt-71781-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71781-designer-wallcoverings-los-angeles",
+ "title": "Taza Metallic Silver | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T35173.jpg?v=1762233746",
+ "tags": [
+ "Architectural",
+ "Graphic Resource",
+ "gray",
+ "light gray",
+ "Metallic Silver",
+ "Pattern",
+ "Scenic",
+ "silver",
+ "T35173",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71781-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71183-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71183-designer-wallcoverings-los-angeles",
+ "title": "Sandia Metallic Silver on Charcoal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4008_0bd37460-422a-4807-a66c-e18e1149347f.jpg?v=1733894528",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "gray",
+ "Metallic Silver on Charcoal",
+ "Pattern",
+ "Surface Resource",
+ "T4008",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71183-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "camila-purple-modern-damask-wallpaper-wallpaper-cca-82841",
+ "handle": "camila-purple-modern-damask-wallpaper-wallpaper-cca-82841",
+ "title": "Camila Purple Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2bd0521a9c326717b2be9a7208ac5bf5_6b4ab5cc-72ea-4cbd-817d-decf3e308a55.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gray",
+ "LA Walls",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-purple-modern-damask-wallpaper-wallpaper-cca-82841"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+ "title": "Kabuto - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5124.jpg?v=1762298865",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Industrial",
+ "Kabuto",
+ "Metallic",
+ "Mylar",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5124-jpg"
+ },
+ {
+ "sku": "dwtt-81007-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81007-designer-wallcoverings-los-angeles",
+ "title": "Kimono Eggplant Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-dwtt-81007-designer-wallcoverings-los-angeles.jpg?v=1775070978",
+ "tags": [
+ "Artistic",
+ "AT9852",
+ "Bedroom",
+ "Beige",
+ "Bohemian",
+ "Bold",
+ "Brown",
+ "Contemporary",
+ "Coral",
+ "Cream",
+ "Deep Purple",
+ "Dining Room",
+ "Eclectic",
+ "Eggplant",
+ "Energetic",
+ "Entryway",
+ "Geometric",
+ "Global",
+ "Ikat",
+ "Indigo",
+ "Ivory",
+ "Kimono Geometric",
+ "Large Scale",
+ "Lavender",
+ "Lime Green",
+ "Living Room",
+ "Maroon",
+ "Mauve",
+ "Multi-Color",
+ "Nara",
+ "Navy",
+ "Off White",
+ "Office",
+ "Olive",
+ "Pattern",
+ "Plum",
+ "Powder Blue",
+ "Powder Room",
+ "Sage Green",
+ "Salmon",
+ "Silver",
+ "Sky Blue",
+ "Sophisticated",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Turquoise",
+ "Wallcovering"
+ ],
+ "max_price": 144.62,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81007-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwss-72685",
+ "handle": "dwss-72685",
+ "title": "Karolina dark blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/807-76_image1_1d798f85-5630-4b04-a224-b48a23683f6c.jpg?v=1646105061",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "DARK BLUE",
+ "Gray",
+ "Karolina",
+ "Karolina dark blue Sample",
+ "Midnightblue",
+ "P807-76",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Silver",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72685"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53115",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53115",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53115-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716062",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53115"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5023-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5023-jpg",
+ "title": "Ballari - Zinc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5023.jpg?v=1762288272",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Ballari",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Zinc"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5023-jpg"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48573",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48573",
+ "title": "Ventnor Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqq-48573-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735720",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Stucco",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48573"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3381_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3381_8-jpg",
+ "title": "Lyra - Slate | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3381_8.jpg?v=1762300016",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3381_8-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2763",
+ "handle": "faux-leaf-squares-fls-2763",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2763-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712039",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Textured",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2763"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53541",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53541",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-bronze.jpg?v=1777480878",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53541"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58046",
+ "handle": "sunset-stone-vinyl-dwx-58046",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58046-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735124",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Stone",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Natural Look",
+ "Off-white",
+ "Pale Grey",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Stone",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58046"
+ },
+ {
+ "sku": "dwtt-80298-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80298-designer-wallcoverings-los-angeles",
+ "title": "Ashton Slate Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57877.jpg?v=1776161657",
+ "tags": [
+ "Ashton Small Scale Trees",
+ "AT57877",
+ "Bedroom",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Contemporary",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Dusty Blue",
+ "Entryway",
+ "Foliage",
+ "Gray",
+ "Ivory",
+ "Living Room",
+ "Mist Gray",
+ "Off White",
+ "Office",
+ "Pale Blue",
+ "Pattern",
+ "Peaceful",
+ "Pearl White",
+ "Powder Blue",
+ "Serene",
+ "Silver",
+ "Slate",
+ "Slate Blue",
+ "Small Scale",
+ "Soft Blue",
+ "Sophisticated",
+ "Steel Gray",
+ "Stone Gray",
+ "Study",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 118.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80298-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dech-490-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dech-490-jpg",
+ "title": "Digital Echo - Soft Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dech-490.jpg?v=1762290971",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Digital Echo",
+ "Geometric",
+ "Light Gray",
+ "Mylar",
+ "Paper",
+ "Silver",
+ "Soft Gray",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dech-490-jpg"
+ },
+ {
+ "sku": "panino-s-patina-squares-pps-44468",
+ "handle": "panino-s-patina-squares-pps-44468",
+ "title": "Panino's Patina Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PPS-44468-sample-clean_308af797-195c-46bc-b076-0017f86edc08.jpg?v=1774479204",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Panino's Patina Squares",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/panino-s-patina-squares-pps-44468"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68175",
+ "handle": "nice-reima-wallpaper-xq8-68175",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/60494bd3b6fbc1689b87cc20055cf466.jpg?v=1733882569",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chartreuse",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68175"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52927",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52927",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52927-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734517",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Silver Gray",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52927"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_qnt-5549-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_qnt-5549-jpg",
+ "title": "Quinault - Cloudy Day | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/QNT-5549_2024-09-13-182834_eyya.jpg?v=1762303591",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Cloudy Day",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Quinault",
+ "RAMPART®",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_qnt-5549-jpg"
+ },
+ {
+ "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+ "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-58168-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724221",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Taupe",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58168"
+ },
+ {
+ "sku": "hollywood-faux-silk-weave-xhw-2010346",
+ "handle": "hollywood-faux-silk-weave-xhw-2010346",
+ "title": "Hollywood Faux Silk Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010346-sample-hollywood-faux-silk-weave-hollywood-wallcoverings.jpg?v=1775717633",
+ "tags": [
+ "Beige",
+ "Black",
+ "Charcoal",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Khaki",
+ "Olive",
+ "Silver",
+ "Slate",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 52.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-silk-weave-xhw-2010346"
+ },
+ {
+ "sku": "croydon-type-ii-vinyl-wallcovering-xkm-47475",
+ "handle": "croydon-type-ii-vinyl-wallcovering-xkm-47475",
+ "title": "Croydon Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkm-47475-sample-croydon-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775709430",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Concrete",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Pale Beige",
+ "Rustic",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/croydon-type-ii-vinyl-wallcovering-xkm-47475"
+ },
+ {
+ "sku": "dwtt-71228-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71228-designer-wallcoverings-los-angeles",
+ "title": "Passaro Damask Cream on Metallic Metallic Silver on Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89140_e6cd375d-b731-4843-a78e-8d2b0c696425.jpg?v=1733894426",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 4",
+ "gray",
+ "light gray",
+ "Metallic Silver on Grey",
+ "Pattern",
+ "T89140",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71228-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52782",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52782",
+ "title": "Steuben Embossed Vertical Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52782-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734811",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue",
+ "Living Room",
+ "Sage",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52782"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5106-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5106-jpg",
+ "title": "Kami - Nickel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5106.jpg?v=1762298536",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gray",
+ "Kami",
+ "Nickel",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5106-jpg"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73133",
+ "handle": "hilo-highway-diamond-grass-hlw-73133",
+ "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-73133-sample-clean.jpg?v=1774483643",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Serene",
+ "Silver",
+ "Slate Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73133"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+ "title": "Rossana - True Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ros-4146.jpg?v=1762304939",
+ "tags": [
+ "100% Mylar",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Metallic",
+ "Mylar",
+ "Rossana",
+ "Silver",
+ "Textured",
+ "True Silver",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ros-4146-jpg"
+ },
+ {
+ "sku": "i-love-baroque-medusa-stripe-white-silver-wallcovering-versace-2",
+ "handle": "i-love-baroque-medusa-stripe-white-silver-wallcovering-versace-2",
+ "title": "I Love Baroque Medusa Stripe White Silver Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e33776573cb1793e07bc33c9daeb2af5.jpg?v=1773710578",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Greek Key",
+ "I Love Baroque Medusa Stripe",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Needs-Image",
+ "Off-white",
+ "Paste the wall",
+ "Regencycore",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 434.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-white-silver-wallcovering-versace-2"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47731",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47731",
+ "title": "Harrison Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlg-47731-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716311",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47731"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72227",
+ "handle": "saint-lore-durable-vinyl-dur-72227",
+ "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-72227-sample-clean.jpg?v=1774484819",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72227"
+ },
+ {
+ "sku": "seymour-paintable-supaglypta-wallpaper-gga-82657",
+ "handle": "seymour-paintable-supaglypta-wallpaper-gga-82657",
+ "title": "Seymour Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/914ded9053c6c7789d6567e7ad3de819.jpg?v=1750790449",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Production",
+ "Class A Fire Rated",
+ "Classic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Custom",
+ "Customize",
+ "Discontinued",
+ "Embossed",
+ "Geometric",
+ "Global",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Set Decorator",
+ "Set Design",
+ "Seymour Paintable Supaglypta",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seymour-paintable-supaglypta-wallpaper-gga-82657"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47613",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47613",
+ "title": "Earby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkz-47613-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710393",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Non-woven",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47613"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..1d90b97
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "silverleafwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "silverleafwallpaper",
+ "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..acb4c17
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "silverleafwallpaper",
+ "version": "0.1.0",
+ "description": "SILVER LEAF — 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..b3e6dbe
--- /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">S</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..5dc856d
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..9205416
--- /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>SILVER LEAF — Cool light</title>
+<meta name="description" content="SILVER LEAF · Cool light. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0c0c12">
+<link rel="canonical" href="https://silverleafwallpaper.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: #0c0c12;
+ --paper: #ffffff;
+ --muted: #9a9aac;
+ --line: rgba(255,255,255,0.10);
+ --accent: #c0c0c8;
+ --bg-soft: #181820;
+ --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('sl_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">Cool Light</div>
+ <div class="center-mark">SILVER LEAF<span class="tm">.</span><span class="sub">Cool light</span></div>
+ <div class="meta-line">Silver · Platinum · Chrome · Mirror<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">Silver · Platinum · Chrome · Mirror</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">SILVER LEAF</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated silver · platinum · chrome · mirror 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">silverleafwallpaper</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>silverleafwallpaper.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 = "silverleafwallpaper";
+ 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('sl_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('sl_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('sl_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..b3b51cb
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * SILVER LEAF — 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 || 9852;
+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: "Silverleaf Wallpaper", zdColor: "#c0c0c8", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "silverleafwallpaper" });
+
+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 = ["silver","foil","mirror","abstract","luxe","botanical"];
+ 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://silverleafwallpaper.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://silverleafwallpaper.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(`silverleafwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..1fabd7c
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "silverleafwallpaper",
+ "siteName": "Silver Leaf Wallpaper",
+ "domain": "silverleafwallpaper.com",
+ "nicheKeyword": "silver leaf",
+ "tagline": "Genuine silver leaf, applied by hand.",
+ "heroHeadline": "SILVER LEAF WALLPAPER",
+ "heroSub": "Genuine silver leaf, applied by hand.",
+ "theme": {
+ "accent": "#c8c8d4"
+ },
+ "rails": [
+ "silver",
+ "antique",
+ "tarnished",
+ "platinum",
+ "chrome",
+ "iridescent"
+ ],
+ "port": 9912
+}
(oldest)
·
back to Silverleafwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero eeb91d7 →