← back to Vinylwallpaper
initial scaffold (gitify-all 2026-05-06)
4832e7cb646ac28b195b471e8b0f90b168faec36 · 2026-05-06 10:25:51 -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 4832e7cb646ac28b195b471e8b0f90b168faec36
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:51 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 | 21823 ++++++++++++++++++++++++++++++++++++++++++++++++
package-lock.json | 865 ++
package.json | 14 +
public/favicon.svg | 4 +
public/hero-bg.jpg | Bin 0 -> 372450 bytes
public/index.html | 613 ++
server.js | 107 +
site.config.json | 20 +
11 files changed, 23754 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..1bbb99f
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,21823 @@
+[
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5085-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5085-jpg",
+ "title": "Ashlar - Ocean | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5085.jpg?v=1762287125",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Ocean",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5085-jpg"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48205",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48205",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48205-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729900",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ebony",
+ "Eggplant",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Mahogany",
+ "Purple",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48205"
+ },
+ {
+ "sku": "cody-cantina-wallpaper-xb1-66494",
+ "handle": "cody-cantina-wallpaper-xb1-66494",
+ "title": "Cody Cantina Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e28264c73837893cdecd7574a48444b.jpg?v=1775126558",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Cody Cantina Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crimson",
+ "Geometric",
+ "Hotel Lobby",
+ "Light Coral",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Pale Violetred",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Red",
+ "Rose",
+ "Stripe",
+ "Striped",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.61,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66494"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44039",
+ "handle": "carved-squares-wallcovering-xcs-44039",
+ "title": "Carved Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44039-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707196",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44039"
+ },
+ {
+ "sku": "aubrey-milk-crystal-texture-wallpaper-cca-83283",
+ "handle": "aubrey-milk-crystal-texture-wallpaper-cca-83283",
+ "title": "Aubrey Milk Crystal Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/60cd277be08dfd98c80e6b7484367a3d.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "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/aubrey-milk-crystal-texture-wallpaper-cca-83283"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad9501-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad9501-jpg",
+ "title": "Ambient Design - AD9501 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9500.jpg?v=1733874163",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Beige",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9501-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br003-jpg",
+ "title": "BR003 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br002.jpg?v=1733873702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br003-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010360",
+ "handle": "hollywood-contemporary-coast-xhw-2010360",
+ "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-coconut_14c372dd-ee2a-443c-b1d8-9edc1ac038cf.jpg?v=1777481068",
+ "tags": [
+ "35.04 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: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Stripe",
+ "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-2010360"
+ },
+ {
+ "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": "brooker-contemporary-durable-walls-xww-52999",
+ "handle": "brooker-contemporary-durable-walls-xww-52999",
+ "title": "Brooker Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gramercy-birdcage.jpg?v=1777480750",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooker-contemporary-durable-walls-xww-52999"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47300",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47300",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47300-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704088",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Berkeley Type 2 Vinyl",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Denim Blue",
+ "Estimated Type: Linen",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Solid",
+ "Sophisticated",
+ "Steelblue",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47300"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9513-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9513-jpg",
+ "title": "Armor Paint - AR9513 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9512.jpg?v=1733873880",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9513-jpg"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48580",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48580",
+ "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-48580-sample-clean.jpg?v=1774480659",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Grey",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Industrial",
+ "Living Room",
+ "Moody",
+ "Office",
+ "Rustic",
+ "Slate Grey",
+ "Solid",
+ "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-48580"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52115",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52115",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52115-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707121",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Beige",
+ "Linear",
+ "Living Room",
+ "Olive Green",
+ "Organic Modern",
+ "Pale Beige",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52115"
+ },
+ {
+ "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": "groveland-vertical-durable-walls-xwt-53429",
+ "handle": "groveland-vertical-durable-walls-xwt-53429",
+ "title": "Groveland Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53429-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715109",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Light Blue Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Slate Blue",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53429"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10374-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10374-jpg",
+ "title": "Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10374.jpg?v=1762285993",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10374-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2504",
+ "handle": "faux-leaf-squares-fls-2504",
+ "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-2504-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711868",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Dark Seagreen",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2504"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72078",
+ "handle": "la-roche-durable-vinyl-dur-72078",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72078-sample-clean.jpg?v=1774484310",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72078"
+ },
+ {
+ "sku": "eastport-beige-arabelle-stripe-wallpaper-cca-83140",
+ "handle": "eastport-beige-arabelle-stripe-wallpaper-cca-83140",
+ "title": "Eastport Beige Arabelle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/223d810982b5687ed965cbfb4d3fc8e1.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eastport-beige-arabelle-stripe-wallpaper-cca-83140"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10420m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10420m-jpg",
+ "title": "ST10420M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10419m.jpg?v=1733872150",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10420m-jpg"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47307",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47307",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47307-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704266",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47307"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44386",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44386",
+ "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-44386-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733019",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44386"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_sm8013-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm8013-jpg",
+ "title": "SM8013 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm8012.jpg?v=1733872538",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8013-jpg"
+ },
+ {
+ "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": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-smooth_satin_35ae9a7d-ee5a-444b-ad40-83ac2d23ad16.jpg?v=1777481094",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Stone Gray",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010409"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010380",
+ "handle": "hollywood-contemporary-coast-xhw-2010380",
+ "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-gardenia_7a5cd27e-ba58-46e8-ad6b-39305078569c.jpg?v=1777481087",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Ivory",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "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 Grain",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010380"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+ "title": "Lyra - Linen | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3382_8.jpg?v=1762300054",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Linen",
+ "Lyra",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3382_8-jpg"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9491",
+ "handle": "chinese-fret-walls-cfw-9491",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9491-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708071",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9491"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44053",
+ "handle": "carved-squares-wallcovering-xcs-44053",
+ "title": "Jutely Woven Walls - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44053-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707232",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Fawn",
+ "geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Orange",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44053"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9468_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9468_8-jpg",
+ "title": "Orbit - Jalapeno | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9468_8.jpg?v=1762302851",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Jalapeno",
+ "Orbit",
+ "Polycarbonate",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9468_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5010-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5010-jpg",
+ "title": "Shift Plus - Cream | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5010.jpg?v=1762305609",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "RAMPART®",
+ "Shift Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5010-jpg"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58048",
+ "handle": "sunset-stone-vinyl-dwx-58048",
+ "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-58048-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735131",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Natural Look",
+ "Oatmeal",
+ "Pale Brown",
+ "Rustic",
+ "Sand",
+ "Stone",
+ "Stucco",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58048"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48278",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48278",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48278-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731508",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Sage Green",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48278"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10378-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10378-jpg",
+ "title": "Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10378.jpg?v=1762286107",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10378-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10335-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10335-jpg",
+ "title": "Ambient Design - AD10335 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10003.jpg?v=1733874119",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10335-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3285_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3285_8-jpg",
+ "title": "Marlu - Cornsilk | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3285_8.jpg?v=1762301208",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Cornsilk",
+ "Geometric",
+ "Light Brown",
+ "Marlu",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3285_8-jpg"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73055",
+ "handle": "coldwater-hills-panels-hlw-73055",
+ "title": "Coldwater Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73055-sample-clean.jpg?v=1774483239",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73055"
+ },
+ {
+ "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": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+ "handle": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+ "title": "Capri Lavender Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/248109dec3381ef4a1b6ec2ac77eb2fa.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-lavender-floral-scroll-wallpaper-cca-83048"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2874",
+ "handle": "peter-s-plastered-walls-ppw-2874",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2874-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729061",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2874"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-samite.jpg?v=1777481101",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sand",
+ "Silk Texture",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010414"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5351-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5351-jpg",
+ "title": "Ashlar - Amber | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5351.jpg?v=1762287162",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "RAMPART®",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5351-jpg"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72375",
+ "handle": "vaticano-durable-vinyl-dur-72375",
+ "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-72375-sample-clean.jpg?v=1774485261",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cornflower Blue",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72375"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53062",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53062",
+ "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-53062-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53062"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72133",
+ "handle": "seine-marne-durable-vinyl-dur-72133",
+ "title": "Raked Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72133-sample-clean.jpg?v=1774484510",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72133"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47768",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47768",
+ "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-47768-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715679",
+ "tags": [
+ "Halewood Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47768"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72233",
+ "handle": "saint-lore-durable-vinyl-dur-72233",
+ "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-72233-sample-clean.jpg?v=1774484850",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Red",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72233"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-204-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-204-jpg",
+ "title": "WonderWood® - Zebrawood Qtd | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-204f.jpg?v=1762312208",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Natural",
+ "Reconstituted",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®",
+ "Zebrawood Qtd"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-204-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9465_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9465_8-jpg",
+ "title": "Orbit - Earl Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9465_8.jpg?v=1762302746",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Earl Gray",
+ "Geometric",
+ "Orbit",
+ "Polycarbonate",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9465_8-jpg"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52257",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52257",
+ "title": "Lafayette Modern Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52257-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721102",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Rose Gold",
+ "Living Room",
+ "Modern",
+ "Organic Modern",
+ "Pink",
+ "Rose Gold",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52257"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vct-9137-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vct-9137-jpg",
+ "title": "Victoria - Napa | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vct-9137.jpg?v=1762311707",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Lattice",
+ "Napa",
+ "Purple",
+ "Textured",
+ "Victoria",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vct-9137-jpg"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47657",
+ "handle": "fairford-vinyl-wallcovering-xlb-47657",
+ "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-47657-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711603",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Olive Green",
+ "Orange",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47657"
+ },
+ {
+ "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": "haute-sena-durable-vinyl-dur-72311",
+ "handle": "haute-sena-durable-vinyl-dur-72311",
+ "title": "Haute Sena Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72311-sample-clean.jpg?v=1774485131",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72311"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34128",
+ "handle": "fukaura-durable-vinyl-xrm-34128",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d604ed8feede45bd36f7ea5cdd283912_4ef476e1-3dc7-431c-bbf6-2e423c8ff2e8.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "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-34128"
+ },
+ {
+ "sku": "highlands-honeycomb-wood-weave-hlw-73063",
+ "handle": "highlands-honeycomb-wood-weave-hlw-73063",
+ "title": "Highlands Honeycomb Wood Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73063-sample-clean.jpg?v=1774483291",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Faux Wood",
+ "Forest Green",
+ "Geometric",
+ "Green",
+ "Highlands Honeycomb Wood Weave",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Wood"
+ ],
+ "max_price": 31.09,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/highlands-honeycomb-wood-weave-hlw-73063"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+ "title": "Maidstone - Mist 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-mercury_c2e37df8-0dec-4cbd-bc93-88e86552a1a4.jpg?v=1777481365",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Brown",
+ "Charcoal",
+ "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",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Stone Look",
+ "Stripe",
+ "Taupe",
+ "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-47951"
+ },
+ {
+ "sku": "modulo-pampas-romo",
+ "handle": "modulo-pampas-romo",
+ "title": "Modulo Pampas | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W967-01-modulo-wallcovering-pampas_04.jpg?v=1776485158",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Contemporary",
+ "Embossed Wallcovering",
+ "Geometric",
+ "Hotel",
+ "Kabu Wallcoverings",
+ "Medium",
+ "Modulo",
+ "Non-Woven",
+ "off-white",
+ "Office",
+ "Retail",
+ "Romo",
+ "Scandinavian",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "W967/01",
+ "Wallcovering",
+ "Warm Beige"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/modulo-pampas-romo"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2868",
+ "handle": "peter-s-plastered-walls-ppw-2868",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2868-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729042",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2868"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+ "title": "Maya - Catalina | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9449.jpg?v=1762302475",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Catalina",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9449-jpg"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48166-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728399",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48166"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47751",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47751",
+ "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-47751-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715546",
+ "tags": [
+ "Faux Wood",
+ "Halewood Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47751"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34326",
+ "handle": "sannohe-budget-vinyl-xcf-34326",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9c98bde114ed8b86793da5bf0bf660a9_7101c606-a248-4271-a015-fe3ae6656342.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34326"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48200-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729764",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48200"
+ },
+ {
+ "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": "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": "sharon-s-striated-striped-vinyl-xss-44389",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44389",
+ "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-44389-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733030",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44389"
+ },
+ {
+ "sku": "zoe-champagne-coco-damask-wallpaper-cca-83265",
+ "handle": "zoe-champagne-coco-damask-wallpaper-cca-83265",
+ "title": "Zoe Champagne Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/33ad1a13cb8533b52178f11502b501f3.jpg?v=1572309982",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Espresso",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zoe Champagne Coco Damask Wallcovering"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-champagne-coco-damask-wallpaper-cca-83265"
+ },
+ {
+ "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": "vanderbilt-durable-walls-xwp-52597",
+ "handle": "vanderbilt-durable-walls-xwp-52597",
+ "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-yellow_bell.jpg?v=1777480645",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwp-52597"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10267b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10267b-jpg",
+ "title": "EM10267B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10266b.jpg?v=1733873320",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM10267B",
+ "Light Brown",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10267b-jpg"
+ },
+ {
+ "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": "montpelier-wallpaper-xp4-68082",
+ "handle": "montpelier-wallpaper-xp4-68082",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/db7e45f4a78b07aefb4ee359ba41e0fb.jpg?v=1733882434",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Montpelier",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68082"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47621",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47621",
+ "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-47621-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710583",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bronze",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dark Taupe",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Rustic",
+ "Solid",
+ "Suede",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47621"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44001",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44001",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44001-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701937",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44001"
+ },
+ {
+ "sku": "amity-bear-bleeding-heart-scroll-wallpaper-cca-83257",
+ "handle": "amity-bear-bleeding-heart-scroll-wallpaper-cca-83257",
+ "title": "Amity Bear Bleeding Heart Scroll | LA Walls",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5c50d3d8e550e720372a47c6954a78c0.jpg?v=1747080315",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallpapers Wallpapers Walls",
+ "Wallpapers Wallpapers Walls: Chela Ciccio",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-bear-bleeding-heart-scroll-wallpaper-cca-83257"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48575",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48575",
+ "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-48575-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735727",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Stucco",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48575"
+ },
+ {
+ "sku": "mason-chocolate-stripe-texture-wallpaper-cca-82922",
+ "handle": "mason-chocolate-stripe-texture-wallpaper-cca-82922",
+ "title": "Mason Chocolate Stripe Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d865ad1f35ad1c2ee987f34b27035b4a.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mason-chocolate-stripe-texture-wallpaper-cca-82922"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52087",
+ "handle": "canal-texture-durable-walls-xwa-52087",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-cream.jpg?v=1777480386",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52087"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "title": "Resham - Laurel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5508.jpg?v=1762304075",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Laurel",
+ "Light Gray",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5508-jpg"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68174",
+ "handle": "nice-reima-wallpaper-xq8-68174",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9bde1cc36d4f9ecd02b109e9d7fca342.jpg?v=1733882567",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Dot",
+ "Geometric",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Phillip Romano Commercial",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68174"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58113",
+ "handle": "floating-bubbles-vinyl-dwx-58113",
+ "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-58113-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713413",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gold",
+ "Modern",
+ "Organic",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58113"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2520",
+ "handle": "faux-leaf-squares-fls-2520",
+ "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-2520-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711921",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2520"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93031",
+ "handle": "lucy-large-crocodile-croca-93031",
+ "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-93031-sample-clean_cead575a-9cb5-4606-884d-8b7fdd3f22a0.jpg?v=1774479224",
+ "tags": [
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "Jade",
+ "Light Gray",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Modern",
+ "Ocean",
+ "Office",
+ "Paper Backed Vinyl",
+ "Smoke",
+ "Solid",
+ "Sophisticated",
+ "Steel",
+ "Storm",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93031"
+ },
+ {
+ "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": "sharon-s-striated-striped-vinyl-xss-44376",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44376",
+ "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-44376-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775732984",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44376"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44391",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44391",
+ "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-44391-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733037",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44391"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66469",
+ "handle": "mr-diorio-wallpaper-xa8-66469",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/15f0062f34213a759ad3f19f74711d67.jpg?v=1775124857",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Entryway",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66469"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52567",
+ "handle": "le-madison-durable-walls-xwk-52567",
+ "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-52567-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721683",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Light Taupe",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52567"
+ },
+ {
+ "sku": "eur-80280-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80280-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 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_7513502154803.jpg?v=1775523135",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Off-white",
+ "Pale Grey",
+ "Palmetto",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80280-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49264",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49264",
+ "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-turquoise_c895ef29-20e5-4359-a737-9afb5f61cd83.jpg?v=1777481557",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Green",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Luxe",
+ "Marble",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Moody",
+ "Olive",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49264"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58141",
+ "handle": "artisma-croco-vinyl-dwx-58141",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58141-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775698947",
+ "tags": [
+ "54\" Width",
+ "Animal Skin",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crocodile",
+ "Faux Leather",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58141"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73156",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73156",
+ "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-73156-sample-clean.jpg?v=1774483783",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Orange",
+ "Burnt Umber",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73156"
+ },
+ {
+ "sku": "gabriella-black-ogge-busy-toss-wallpaper-wallpaper-cca-82866",
+ "handle": "gabriella-black-ogge-busy-toss-wallpaper-wallpaper-cca-82866",
+ "title": "Gabriella Black Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3bfe9ca28b688feeca59e057253deb40.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "LA Walls",
+ "Leopard",
+ "Maximalist",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-black-ogge-busy-toss-wallpaper-wallpaper-cca-82866"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_seg-6005-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_seg-6005-jpg",
+ "title": "Segment - Heather | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/seg-6005.jpg?v=1762305575",
+ "tags": [
+ "37% Polyester",
+ "63% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Heather",
+ "Purple",
+ "Segment",
+ "stripe",
+ "Tan",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_seg-6005-jpg"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9372",
+ "handle": "faux-wild-rice-fwr-9372",
+ "title": "Faux Wild Rice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwr-9372-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712093",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Faux Wild Rice",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Textured",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9372"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br004-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br004-jpg",
+ "title": "BR004 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br003.jpg?v=1733873700",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br004-jpg"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48214",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48214",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48214-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730127",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lemon",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48214"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53416",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53416",
+ "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-henna.jpg?v=1777480840",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53416"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52458",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52458",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ruche-pleat.jpg?v=1777480620",
+ "tags": [
+ "1970s Retro",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mid-century Modern",
+ "Off-white",
+ "Retro",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52458"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br010-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br010-jpg",
+ "title": "BR010 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br009.jpg?v=1733873690",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br010-jpg"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44380",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44380",
+ "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-44380-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775732998",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44380"
+ },
+ {
+ "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_dug-5465-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5465-jpg",
+ "title": "Douglas - Elm | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5465.jpg?v=1762292684",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Brown",
+ "Douglas",
+ "Elm",
+ "Paper",
+ "RAMPART®",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5465-jpg"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72284",
+ "handle": "st-dennis-durable-vinyl-dur-72284",
+ "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-72284-sample-clean.jpg?v=1774485025",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brushstroke",
+ "Burnt Orange",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Orange",
+ "Sophisticated",
+ "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-72284"
+ },
+ {
+ "sku": "anjuna-textured-vinyl-wallpaper-inw-1799",
+ "handle": "anjuna-textured-vinyl-wallpaper-inw-1799",
+ "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-1799-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698710",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "CONTEMPORARY",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Luxe",
+ "Off-white",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "UK",
+ "VINYL",
+ "Wallcovering"
+ ],
+ "max_price": 51.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anjuna-textured-vinyl-wallpaper-inw-1799"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10361-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10361-jpg",
+ "title": "Ambient Design - AD10361 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10360.jpg?v=1733874060",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10361-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2517",
+ "handle": "faux-leaf-squares-fls-2517",
+ "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-2517-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711912",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2517"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76631",
+ "handle": "rustic-glam-vinyl-gpr-76631",
+ "title": "Rustic Glam Vinyl",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76631-sample-rustic-glam-vinyl.jpg?v=1775731634",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bling",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Glass Bead",
+ "Hand Crafted",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Mural",
+ "Office",
+ "Organic Modern",
+ "Sand",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wheat",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76631"
+ },
+ {
+ "sku": "madison-s-raked-texture-vinyl-xmm-44270",
+ "handle": "madison-s-raked-texture-vinyl-xmm-44270",
+ "title": "Madison's Raked Texture Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44270-sample-madison-s-raked-texture-vinyl-hollywood-wallcoverings.jpg?v=1775723252",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 35.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/madison-s-raked-texture-vinyl-xmm-44270"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3377_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3377_8-jpg",
+ "title": "Lyra - Mist | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3377_8.jpg?v=1762299868",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Lyra",
+ "Mist",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3377_8-jpg"
+ },
+ {
+ "sku": "kiligano-libra-wallpaper-xg4-66910",
+ "handle": "kiligano-libra-wallpaper-xg4-66910",
+ "title": "Kiligano Libra Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/392643173743526fc84998d7fc828dd0.jpg?v=1572309570",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Kiligano Libra Wallcovering",
+ "Light Gray",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66910"
+ },
+ {
+ "sku": "anjuna-textured-vinyl-wallpaper-inw-0999",
+ "handle": "anjuna-textured-vinyl-wallpaper-inw-0999",
+ "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-0999-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698630",
+ "tags": [
+ "CONTEMPORARY",
+ "Textured",
+ "UK",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anjuna-textured-vinyl-wallpaper-inw-0999"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5048-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5048-jpg",
+ "title": "Dasma - Nickel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5048.jpg?v=1762292020",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Nickel",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5048-jpg"
+ },
+ {
+ "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": "brooke-paintable-anaglytpa-original-wallpaper-gga-82668",
+ "handle": "brooke-paintable-anaglytpa-original-wallpaper-gga-82668",
+ "title": "Brooke Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d95f94c7bb60f0c410bce82625c5dec9.jpg?v=1750790434",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brooke Paintable Anaglytpa Original",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Minimalist",
+ "Paintable",
+ "Phasing-2026-04",
+ "Scandinavian",
+ "Series: Brewster",
+ "Soft White",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "Wool"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooke-paintable-anaglytpa-original-wallpaper-gga-82668"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47663",
+ "handle": "fairford-vinyl-wallcovering-xlb-47663",
+ "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-47663-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711767",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47663"
+ },
+ {
+ "sku": "gesso-spacedust-romo",
+ "handle": "gesso-spacedust-romo",
+ "title": "Gesso Spacedust | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW106-04-gesso-wallcovering-spacedust_01.jpg?v=1776485298",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color gray",
+ "Commercial",
+ "Contemporary",
+ "Contemporary Wallcovering",
+ "Gesso",
+ "Glamorama Wallcovering",
+ "gray",
+ "Healthcare",
+ "light gray",
+ "Medium",
+ "Minimalist",
+ "Office",
+ "Retail",
+ "Romo",
+ "Silver Gray",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "ZW106/04"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gesso-spacedust-romo"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52647-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709252",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Cream",
+ "Estimated Type: Paper",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52647"
+ },
+ {
+ "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": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-salt_water_9de91a37-3593-49bd-acee-801ce0cd1c8e.jpg?v=1777480335",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Organic Modern",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49313"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2890",
+ "handle": "peter-s-plastered-walls-ppw-2890",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2890-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729114",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coffee",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Ochre",
+ "Sepia",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2890"
+ },
+ {
+ "sku": "ilead-rectangle-texture-vinyl-xir-44340",
+ "handle": "ilead-rectangle-texture-vinyl-xir-44340",
+ "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-44340-sample-ilead-rectangle-texture-vinyl-hollywood-wallcoverings.jpg?v=1775719486",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ilead-rectangle-texture-vinyl-xir-44340"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73056",
+ "handle": "coldwater-hills-panels-hlw-73056",
+ "title": "Coldwater Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73056-sample-clean.jpg?v=1774483248",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Coldwater Hills",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lavender",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Purple",
+ "Rustic",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73056"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52328",
+ "handle": "marketfield-faux-durable-walls-xwh-52328",
+ "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-valerian.jpg?v=1777480473",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dark Blue",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Solid",
+ "textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52328"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58042",
+ "handle": "sunset-stone-vinyl-dwx-58042",
+ "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-58042-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735118",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Gold",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Faux Stone",
+ "Gold",
+ "Golden Tan",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gold",
+ "Living Room",
+ "Mustard Yellow",
+ "Natural Look",
+ "Organic Modern",
+ "Rustic",
+ "Stone",
+ "Stucco",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58042"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10248-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10248-jpg",
+ "title": "SM10248 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10247.jpg?v=1733872464",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10248-jpg"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2880",
+ "handle": "peter-s-plastered-walls-ppw-2880",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2880-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729082",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2880"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44017",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44017",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44017-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701993",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44017"
+ },
+ {
+ "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": "mia-green-faux-zebra-stripes-wallpaper-wallpaper-cca-82856",
+ "handle": "mia-green-faux-zebra-stripes-wallpaper-wallpaper-cca-82856",
+ "title": "Mia Green Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8799da5d2b143923bfef5859f5246d03.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "Green",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Takumi",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-green-faux-zebra-stripes-wallpaper-wallpaper-cca-82856"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9434-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9434-jpg",
+ "title": "Maya - Citrus | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9434.jpg?v=1762301941",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Citrus",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9434-jpg"
+ },
+ {
+ "sku": "ilead-rectangle-texture-vinyl-xir-44342",
+ "handle": "ilead-rectangle-texture-vinyl-xir-44342",
+ "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-44342-sample-ilead-rectangle-texture-vinyl-hollywood-wallcoverings.jpg?v=1775719493",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ilead-rectangle-texture-vinyl-xir-44342"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72083",
+ "handle": "la-roche-durable-vinyl-dur-72083",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72083-sample-clean.jpg?v=1774484341",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "La Roche Durable Vinyl",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Pink",
+ "Rose Taupe",
+ "Rustic",
+ "Silk",
+ "Silk Texture",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72083"
+ },
+ {
+ "sku": "dwqw-56962-handle",
+ "handle": "dwqw-56962-handle",
+ "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Jade | Architectural Wallcoverings",
+ "vendor": "Malibu Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31714.jpg?v=1748380584",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Background Color Jade",
+ "Bohemian",
+ "Boho Rhapsody",
+ "Class \"A\" Fire Rated",
+ "Class \"A\" Fire Rated | Suitable for Residential and Commercial",
+ "Commercial",
+ "Embossed",
+ "Embossed Vinyl",
+ "Indie Linen Embossed Vinyl",
+ "Jade",
+ "jade green",
+ "Light Duty",
+ "light gray",
+ "Low Traffic",
+ "Malibu Wallcovering",
+ "Residential",
+ "Residential Use",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwqw-56962-handle"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53276",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53276",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53276-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710176",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53276"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47328",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47328",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47328-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704820",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47328"
+ },
+ {
+ "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": "ashbourne-type-ii-vinyl-wallcovering-xjg-47095",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47095",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47095-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699543",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Estimated Type: Textured",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47095"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10342-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10342-jpg",
+ "title": "Ambient Design - AD10342 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10341.jpg?v=1733874103",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10342-jpg"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47760",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47760",
+ "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-47760-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715616",
+ "tags": [
+ "Faux Wood",
+ "Halewood Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47760"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47148",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47148",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47148-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700976",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Eggshell",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47148"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48127",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48127",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48127-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728077",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48127"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47332-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704927",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47332"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66614",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66614",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d8bcb9d94077da0d5c2cd677c745927f.jpg?v=1775133568",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Teal",
+ "Gray",
+ "Green",
+ "Lanvin Arpergeo Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Olive",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Striped",
+ "Teal",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66614"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+ "title": "Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10366.jpg?v=1762285784",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10366-jpg"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66465",
+ "handle": "mr-diorio-wallpaper-xa8-66465",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce2de2f0129839a4415f480362863233.jpg?v=1775124479",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hotel Lobby",
+ "Light Beige",
+ "Living Room",
+ "Mr. Diorio Wallcovering",
+ "Off-white",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66465"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2750",
+ "handle": "faux-leaf-squares-fls-2750",
+ "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-2750-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711998",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Rosy Brown",
+ "Rosy Brown",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2750"
+ },
+ {
+ "sku": "necker-island-black",
+ "handle": "necker-island-black",
+ "title": "Native - Black Sustainable Bio-Based | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Aire-Bio_Native_Black.jpg?v=1772569988",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bio-Based",
+ "Black",
+ "Bleach Cleanable",
+ "CA TB 117 Compliant",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Contemporary",
+ "Contract Grade",
+ "Dark Tones",
+ "Deep",
+ "DWHQ",
+ "Ebony",
+ "Eco-Friendly",
+ "Fabric",
+ "Finish",
+ "FR Additives Free",
+ "Gray",
+ "Green Building",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "IMO 8.2 Certified",
+ "IMO Marine Grade",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "NFPA 260 Compliant",
+ "Onyx",
+ "Performance Fabric",
+ "PFAS-Free",
+ "Phthalate-Free",
+ "Polyester Blend",
+ "PVC-Free",
+ "Smooth",
+ "Solid",
+ "Solid Color",
+ "Texture",
+ "Textured",
+ "Uniform Texture",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/necker-island-black"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9448-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9448-jpg",
+ "title": "Maya - Absolute | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9448.jpg?v=1762302439",
+ "tags": [
+ "100% Vinyl",
+ "Absolute",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9448-jpg"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44388",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44388",
+ "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-44388-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733026",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44388"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2936",
+ "handle": "frank-s-faux-finish-fff-2936",
+ "title": "Frank's Faux Finish Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fff-2936-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714268",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2936"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5019-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5019-jpg",
+ "title": "Shift - Heather Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5019.jpg?v=1762305928",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Heather Gray",
+ "Light Beige",
+ "RAMPART®",
+ "Shift",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5019-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2531",
+ "handle": "faux-leaf-squares-fls-2531",
+ "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-2531-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711958",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Saddlebrown",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2531"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010361",
+ "handle": "hollywood-contemporary-coast-xhw-2010361",
+ "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/XHW-2010361-sample-clean.jpg?v=1774482574",
+ "tags": [
+ "35.04 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",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Light Taupe",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Pale Beige",
+ "Samantha",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "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-2010361"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10391xl-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10391xl-jpg",
+ "title": "Armor XL | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10391xl.jpg?v=1762286332",
+ "tags": [
+ "Architectural",
+ "Armor XL",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10391xl-jpg"
+ },
+ {
+ "sku": "eur-80282-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80282-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 06 - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502220339.jpg?v=1775523148",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Cream",
+ "Hallway",
+ "Living Room",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Palmetto",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80282-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72158",
+ "handle": "st-silken-durable-vinyl-dur-72158",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72158-sample-clean.jpg?v=1774484612",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72158"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66409",
+ "handle": "jolie-madam-wallpaper-xa1-66409",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/28e7b6a41bb2b8a87889c20b9c577ca0.jpg?v=1775120634",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66409"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9493",
+ "handle": "chinese-fret-walls-cfw-9493",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9493-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708079",
+ "tags": [
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9493"
+ },
+ {
+ "sku": "villa-velore-durable-vinyl-dur-72324",
+ "handle": "villa-velore-durable-vinyl-dur-72324",
+ "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-72324-sample-clean.jpg?v=1774485189",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72324"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72172",
+ "handle": "st-silken-durable-vinyl-dur-72172",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72172-sample-clean.jpg?v=1774484661",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Sage",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Sage Green",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72172"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53534",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53534",
+ "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-cottonwood_894f249b-117d-4fb7-a34c-f5fad178bf4b.jpg?v=1777481401",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53534"
+ },
+ {
+ "sku": "eur-80407-ncw4394-designer-wallcoverings-los-angeles",
+ "handle": "eur-80407-ncw4394-designer-wallcoverings-los-angeles",
+ "title": "Posingford Leaves 02 - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506971699.jpg?v=1775523889",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Living Room",
+ "NCW4394",
+ "NCW4394-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Posingford Leaves",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80407-ncw4394-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52453",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52453",
+ "title": "Rivington Rice Paper Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52453-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730791",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52453"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52164",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52164",
+ "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-pyrite_6f31a569-1c53-4ceb-a9d8-d2d8d978e15c.jpg?v=1777481491",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52164"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9495",
+ "handle": "chinese-fret-walls-cfw-9495",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9495-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708085",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9495"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66468",
+ "handle": "mr-diorio-wallpaper-xa8-66468",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b83a01426625ba59fcda32981b59d90a_688cb4fa-a421-4118-bdb5-614bc9a94967.jpg?v=1775124737",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66468"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "title": "Sparta - Mineral | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5036.jpg?v=1762308622",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Mineral",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5036-jpg"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwj-52399",
+ "handle": "prince-vertical-emboss-durable-walls-xwj-52399",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-sonata.jpg?v=1777480575",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwj-52399"
+ },
+ {
+ "sku": "mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858",
+ "handle": "mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858",
+ "title": "Mia Black Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/39e9fd350137a121891d8d4671c529d3.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "Faux Effects",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858"
+ },
+ {
+ "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": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "handle": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "title": "Whisper Lilac Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5add5db6c445cba55b3642419331eefd.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Light Gray",
+ "Lilac",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898"
+ },
+ {
+ "sku": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "handle": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "title": "Aubrey Milk Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3d59d8eeae52c723c75a813813803f8f.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Medallion",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248"
+ },
+ {
+ "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": "suva-3-stripe-wallpaper-trf-56879",
+ "handle": "suva-3-stripe-wallpaper-trf-56879",
+ "title": "Suva 3\" Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/989293ed0eb7e36e5cc0331f35f50c36.jpg?v=1750789688",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "broad stripe",
+ "cabana",
+ "Charcoal Gray",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gray",
+ "Jeffrey Stevens",
+ "Modern",
+ "Modern Tropics",
+ "Paper",
+ "Pattern",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "stripe",
+ "texture",
+ "Traditional",
+ "USA",
+ "vertical",
+ "Vinyl",
+ "Wallcovering",
+ "wide stripe"
+ ],
+ "max_price": 73.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/suva-3-stripe-wallpaper-trf-56879"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58119",
+ "handle": "floating-bubbles-vinyl-dwx-58119",
+ "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-58119-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713580",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Minimalist",
+ "Neutral",
+ "Organic",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58119"
+ },
+ {
+ "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": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+ "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-52940-sample-clean.jpg?v=1774481753",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2884",
+ "handle": "peter-s-plastered-walls-ppw-2884",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2884-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729095",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2884"
+ },
+ {
+ "sku": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "handle": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "title": "Captiva Light Pink Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/990a597d9507031518df912cab255638.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-light-pink-floral-toss-wallpaper-cca-83046"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9512-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9512-jpg",
+ "title": "SM9512 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9511.jpg?v=1733872505",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9512-jpg"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52106",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52106",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52106-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707089",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Linear",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52106"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48132",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48132",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48132-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728193",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Deep Blue",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Non-woven",
+ "Olive Green",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48132"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47325",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47325",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47325-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704738",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47325"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2932",
+ "handle": "frank-s-faux-finish-fff-2932",
+ "title": "Frank's Faux Finish Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fff-2932-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714255",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2932"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dss111-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dss111-jpg",
+ "title": "Soft Spots - Smoke | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dss111.jpg?v=1762292287",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Paper",
+ "Purple",
+ "Smoke",
+ "Soft Spots",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dss111-jpg"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76635",
+ "handle": "rustic-glam-vinyl-gpr-76635",
+ "title": "Rustic Glam Vinyl",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76635-sample-rustic-glam-vinyl.jpg?v=1775731651",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bling",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Glass Bead",
+ "Green",
+ "Hallway",
+ "Hand Crafted",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Mural",
+ "Organic",
+ "Rustic",
+ "Sage",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76635"
+ },
+ {
+ "sku": "mia-bone-faux-zebra-stripes-wallpaper-wallpaper-cca-82860",
+ "handle": "mia-bone-faux-zebra-stripes-wallpaper-wallpaper-cca-82860",
+ "title": "Mia Bone Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/07a3593337fc68a936c1952473d02a12.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bone",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-bone-faux-zebra-stripes-wallpaper-wallpaper-cca-82860"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2870",
+ "handle": "peter-s-plastered-walls-ppw-2870",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2870-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729048",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2870"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10344-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10344-jpg",
+ "title": "Ambient Design - AD10344 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10343.jpg?v=1733874099",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cream",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10344-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+ "title": "Sparta - Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5300.jpg?v=1762309063",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Lattice",
+ "Oak",
+ "RAMPART®",
+ "Sparta",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5300-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10409-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10409-jpg",
+ "title": "ST10409 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10408.jpg?v=1733872178",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Pink",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10409-jpg"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72263",
+ "handle": "essone-durable-vinyl-dur-72263",
+ "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-72263-sample-clean.jpg?v=1774484920",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72263"
+ },
+ {
+ "sku": "programa-piento-durable-vinyl-dur-72433",
+ "handle": "programa-piento-durable-vinyl-dur-72433",
+ "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-72433-sample-clean.jpg?v=1774485536",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Estimated Type: Vinyl",
+ "Geometric",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Olive Brown",
+ "Programa Piento Durable Vinyl",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/programa-piento-durable-vinyl-dur-72433"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34136",
+ "handle": "fukaura-durable-vinyl-xrm-34136",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d42a493201fd673d436d2c2f0293b39a_53371983-55f5-4844-a8c6-f02e0721ef04.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "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-34136"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2876",
+ "handle": "peter-s-plastered-walls-ppw-2876",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2876-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729067",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Mediterranean",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2876"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_jai9-5367-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_jai9-5367-jpg",
+ "title": "Jaipur - Saffron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/jai9-5367.jpg?v=1762297932",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Jaipur",
+ "Khaki",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_jai9-5367-jpg"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58154",
+ "handle": "artisma-croco-vinyl-dwx-58154",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58154-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699342",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Skin",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crocodile",
+ "Dark Gray",
+ "Faux Leather",
+ "Gray-Green",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58154"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-207-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-207-jpg",
+ "title": "WonderWood® - Maple Qtd | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-207f.jpg?v=1762312308",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Brown",
+ "Maple Qtd",
+ "Natural",
+ "Reconstituted",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-207-jpg"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72219",
+ "handle": "saint-lore-durable-vinyl-dur-72219",
+ "title": "Soft Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72219-sample-clean.jpg?v=1774484779",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72219"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47103",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47103",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47103-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699747",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Estimated Type: Suede",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47103"
+ },
+ {
+ "sku": "sag-harbor-warm-taupe-wallcovering-phillipe-romano",
+ "handle": "sag-harbor-warm-taupe-wallcovering-phillipe-romano",
+ "title": "Sag Harbor - Warm Taupe Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XmrRk0TFaAzxZDlskRv9mCBrMaqCGOMtsdwUGA8U.jpg?v=1776190126",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fire Rated",
+ "Full Roll",
+ "Hollywood Vinyls Vol. 1",
+ "Light Beige",
+ "mfr:DWHV-101095",
+ "Minimalist",
+ "Off White",
+ "Pale Beige",
+ "Phillipe Romano",
+ "Sag Harbor",
+ "Textured",
+ "Vinyl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sag-harbor-warm-taupe-wallcovering-phillipe-romano"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+ "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-airglow_5ee96262-b47b-45e1-8092-fcd0c54474ed.jpg?v=1777481242",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72108",
+ "handle": "gironde-durable-vinyl-dur-72108",
+ "title": "Raked Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72108-sample-clean.jpg?v=1774484417",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Dark Teal",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72108"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72239",
+ "handle": "saint-brittany-durable-vinyl-dur-72239",
+ "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-72239-sample-clean.jpg?v=1774484871",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Pale Blue",
+ "Serene",
+ "Solid",
+ "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-72239"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-agave_34188f03-f3bc-4e1e-90e5-efc5bf703da8.jpg?v=1777481369",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Sage",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53169"
+ },
+ {
+ "sku": "eur-80327-ncw4305-designer-wallcoverings-los-angeles",
+ "handle": "eur-80327-ncw4305-designer-wallcoverings-los-angeles",
+ "title": "Pampelonne 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_7513504317491.jpg?v=1775523402",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "NCW4305",
+ "NCW4305-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Off-white",
+ "Organic Modern",
+ "Pampelonne",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80327-ncw4305-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47733",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47733",
+ "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-47733-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716367",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Estimated Type: Non-woven",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Neoclassical",
+ "Solid",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47733"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72222",
+ "handle": "saint-lore-durable-vinyl-dur-72222",
+ "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-72222-sample-clean.jpg?v=1774484795",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72222"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "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-pagoda.jpg?v=1777480833",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53413"
+ },
+ {
+ "sku": "bosa-marina-boardwalk-wood-grain-wbs-39634",
+ "handle": "bosa-marina-boardwalk-wood-grain-wbs-39634",
+ "title": "Bosa Marina Boardwalk Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39634-sample-bosa-marina-boardwalk-wood-grain-hollywood-wallcoverings.jpg?v=1775705849",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux",
+ "Faux Wood",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Olive Green",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bosa-marina-boardwalk-wood-grain-wbs-39634"
+ },
+ {
+ "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": "rivington-rice-paper-durable-vinyl-walls-xwj-52447",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52447",
+ "title": "Rivington Rice Paper Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52447-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730763",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Pale Yellow",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52447"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5515-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5515-jpg",
+ "title": "Resham - Classic Blue | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5515.jpg?v=1762304318",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Classic Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Navy",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5515-jpg"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66517",
+ "handle": "cody-couture-wallpaper-xb2-66517",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8f293f02ac6fa9d6bc00a3fb7c2e786.jpg?v=1775128597",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-White",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66517"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52103",
+ "handle": "canal-texture-durable-walls-xwd-52103",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-raisin.jpg?v=1777480414",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52103"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53288",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53288",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53288-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710229",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53288"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010296",
+ "handle": "hollywood-getty-texture-xhw-2010296",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-elle.jpg?v=1777481027",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010296"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66401",
+ "handle": "jolie-madam-wallpaper-xa1-66401",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3424759787935e921dcaf48c31abbf8c.jpg?v=1775119697",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Farmhouse",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66401"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2753",
+ "handle": "faux-leaf-squares-fls-2753",
+ "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-2753-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775712008",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Gray",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2753"
+ },
+ {
+ "sku": "saco-espresso-parker-stripe-wallpaper-cca-83198",
+ "handle": "saco-espresso-parker-stripe-wallpaper-cca-83198",
+ "title": "Saco Espresso Parker Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4c13b4bc14d3ad10a9d9aa1b273cfbad.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Farmhouse",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Lodge",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Wood",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saco-espresso-parker-stripe-wallpaper-cca-83198"
+ },
+ {
+ "sku": "georgina-criss-cross-vinyl-xgc-44433",
+ "handle": "georgina-criss-cross-vinyl-xgc-44433",
+ "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-44433-sample-georgina-criss-cross-vinyl-hollywood-wallcoverings.jpg?v=1775714432",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Geometric",
+ "Ivory",
+ "Latte",
+ "Mink",
+ "Olive",
+ "Stone",
+ "Taupe",
+ "Umber",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/georgina-criss-cross-vinyl-xgc-44433"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48238-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731290",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48238"
+ },
+ {
+ "sku": "asha-aquamarine-lotus-texture-wallpaper-cca-83277",
+ "handle": "asha-aquamarine-lotus-texture-wallpaper-cca-83277",
+ "title": "Asha Aquamarine Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f4274eaadd1d99d6876186cd07488020.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Glitter",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-aquamarine-lotus-texture-wallpaper-cca-83277"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2635",
+ "handle": "pleated-perfect-paradise-ppp-2635",
+ "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-2635-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729205",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2635"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66707",
+ "handle": "zebilini-wallpaper-xd6-66707",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/feed78056d00f66bc85049315933ed2f.jpg?v=1775133810",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Geometric",
+ "Gold",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Yellow",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66707"
+ },
+ {
+ "sku": "biejing-embossed-walls-bew-9501",
+ "handle": "biejing-embossed-walls-bew-9501",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9501-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705123",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9501"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9517-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9517-jpg",
+ "title": "SM9517 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9515.jpg?v=1733872498",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9517-jpg"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66471",
+ "handle": "mr-diorio-wallpaper-xa8-66471",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/879e1052e91546e3db8a24922bea8ac2.jpg?v=1775125085",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Grasscloth",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66471"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916",
+ "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-52916-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734476",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Luxe",
+ "Minimalist",
+ "Modern",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72058",
+ "handle": "saint-helene-durable-vinyl-dur-72058",
+ "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-72058-sample-clean.jpg?v=1774484192",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "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-72058"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44012",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44012",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44012-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701975",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44012"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_kam-5101-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5101-jpg",
+ "title": "Kami - Gold Leaf | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5101.jpg?v=1762298354",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gold",
+ "Gold Leaf",
+ "Kami",
+ "Metallic",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5101-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2747",
+ "handle": "faux-leaf-squares-fls-2747",
+ "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-2747-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711991",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2747"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47217",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47217",
+ "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/xjp-47217-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702261",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Tan",
+ "Barnard Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47217"
+ },
+ {
+ "sku": "hollywood-tower-deco-xhw-201046",
+ "handle": "hollywood-tower-deco-xhw-201046",
+ "title": "Hollywood Tower Deco | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/avant-pave.jpg?v=1777480913",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Art Deco",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tower-deco-xhw-201046"
+ },
+ {
+ "sku": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "handle": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "title": "Presque Isle Sand Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b20099d2016922a67d736b2f78eafb8e.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/presque-isle-sand-regal-stripe-wallpaper-cca-83118"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2529",
+ "handle": "faux-leaf-squares-fls-2529",
+ "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-2529-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711952",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2529"
+ },
+ {
+ "sku": "kittery-brick-affinity-stria-wallpaper-cca-83137",
+ "handle": "kittery-brick-affinity-stria-wallpaper-cca-83137",
+ "title": "Kittery Brick Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/86fbcc9218a5c9975ece2f334a984895.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kittery-brick-affinity-stria-wallpaper-cca-83137"
+ },
+ {
+ "sku": "glyph-by-innovations-usa-dwc-glyph-5",
+ "handle": "glyph-by-innovations-usa-dwc-glyph-5",
+ "title": "Glyph | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-5.jpg?v=1736199456",
+ "tags": [
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glyph-5",
+ "Gray",
+ "Innovations USA",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 3.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-5"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3286_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3286_8-jpg",
+ "title": "Marlu - Alabaster | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3286_8.jpg?v=1762301244",
+ "tags": [
+ "100% Vinyl",
+ "Alabaster",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Marlu",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3286_8-jpg"
+ },
+ {
+ "sku": "montpelier-wallpaper-xp4-68083",
+ "handle": "montpelier-wallpaper-xp4-68083",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/acc70166bd89dc511fcf99bf78b865ab.jpg?v=1733882436",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Montpelier",
+ "Organic",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68083"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47729",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47729",
+ "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-47729-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716265",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Grandmillennial",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy",
+ "Solid",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47729"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2888_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2888_8-jpg",
+ "title": "Grove - Latte | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2888_8.jpg?v=1762296093",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grasscloth",
+ "Grove",
+ "Latte",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2888_8-jpg"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47098",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47098",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47098-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699618",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47098"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72135",
+ "handle": "seine-marne-durable-vinyl-dur-72135",
+ "title": "Raked Faux Suede - Light Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72135-sample-clean.jpg?v=1774484520",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Charcoal",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72135"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9810-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9810-jpg",
+ "title": "Armor Paint - AR9810 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9809.jpg?v=1733873870",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Green",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9810-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_poit-5838-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_poit-5838-jpg",
+ "title": "Points - Deep Space | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/poit-5838.jpg?v=1762303154",
+ "tags": [
+ "15% Wool",
+ "30% Nylon",
+ "55% Polyester",
+ "Abstract",
+ "Architectural",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Deep Space",
+ "Points",
+ "Polyester",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_poit-5838-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9466_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9466_8-jpg",
+ "title": "Orbit - Matcha | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9466_8.jpg?v=1762302782",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Matcha",
+ "Orbit",
+ "Polycarbonate",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9466_8-jpg"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48275",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48275",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpq-48275-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731423",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48275"
+ },
+ {
+ "sku": "dwc-1001607",
+ "handle": "dwc-1001607",
+ "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_4693307916339.jpg?v=1775521083",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "NCW4305-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001607"
+ },
+ {
+ "sku": "amity-wheat-bleeding-heart-texture-wallpaper-cca-83289",
+ "handle": "amity-wheat-bleeding-heart-texture-wallpaper-cca-83289",
+ "title": "Amity Wheat Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/db22860fefbc4b31a88707ce5217b632.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-wheat-bleeding-heart-texture-wallpaper-cca-83289"
+ },
+ {
+ "sku": "ilead-rectangle-texture-vinyl-xir-44345",
+ "handle": "ilead-rectangle-texture-vinyl-xir-44345",
+ "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-44345-sample-ilead-rectangle-texture-vinyl-hollywood-wallcoverings.jpg?v=1775719500",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ilead-rectangle-texture-vinyl-xir-44345"
+ },
+ {
+ "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": "faux-leaf-squares-fls-2507",
+ "handle": "faux-leaf-squares-fls-2507",
+ "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-2507-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711878",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2507"
+ },
+ {
+ "sku": "meander-border-metallic-red-wallcovering-versace",
+ "handle": "meander-border-metallic-red-wallcovering-versace",
+ "title": "Meander Border Metallic, Red Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a8132d7035c2674e2606f3bca5cf7837.jpg?v=1773706318",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick Red",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Gold",
+ "Greek Key",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxury",
+ "Meander Border",
+ "Meander Border Metallic",
+ "Neoclassical",
+ "Paper",
+ "Paste the wall",
+ "Red",
+ "Red Wallcovering",
+ "Regencycore",
+ "Sophisticated",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/meander-border-metallic-red-wallcovering-versace"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-lake.jpg?v=1777480706",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47323",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47323",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47323-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704683",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47323"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9489-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9489-jpg",
+ "title": "Lune - Lace | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9489.jpg?v=1762299259",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Lace",
+ "Lattice",
+ "Lune",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9489-jpg"
+ },
+ {
+ "sku": "dry-erase-it-lighter-beige-dry-erase-it-lighter-beige",
+ "handle": "dry-erase-it-lighter-beige-dry-erase-it-lighter-beige",
+ "title": "Dry Erase It - Lighter Beige | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dry-erase-it-lighter-beige-sample-dry-erase-it-lighter-beige-hollywood.jpg?v=1775710356",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dry Erase It",
+ "Dry Erase It - Lighter Beige Wallcovering",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Minimalist",
+ "Paper",
+ "Solid",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wood"
+ ],
+ "max_price": 305.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dry-erase-it-lighter-beige-dry-erase-it-lighter-beige"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44393",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44393",
+ "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-44393-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775733044",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44393"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9511-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9511-jpg",
+ "title": "SM9511 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9510.jpg?v=1733872507",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Green",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9511-jpg"
+ },
+ {
+ "sku": "frederick-beige-quatrefoil-medallion-wallpaper-cca-82944",
+ "handle": "frederick-beige-quatrefoil-medallion-wallpaper-cca-82944",
+ "title": "Frederick Beige Quatrefoil Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bdfd43b806ede2a9c1c531998f05df89.jpg?v=1572309963",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Prepasted",
+ "Quatrefoil",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frederick-beige-quatrefoil-medallion-wallpaper-cca-82944"
+ },
+ {
+ "sku": "gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864",
+ "handle": "gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864",
+ "title": "Gabriella Aqua Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a89f0c43a3454c6c84e939588a03c6ac.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "LA Walls",
+ "Leopard",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48446",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48446",
+ "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-48446-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735052",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Serene",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48446"
+ },
+ {
+ "sku": "yves-goriga-durable-vinyl-dur-72460",
+ "handle": "yves-goriga-durable-vinyl-dur-72460",
+ "title": "Yves Goriga Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72460-sample-clean.jpg?v=1774485650",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick Red",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Quatrefoil",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yves-goriga-durable-vinyl-dur-72460"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52377",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52377",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWH-52377-sample-clean.jpg?v=1774481264",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52377"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+ "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-52674-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726364",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Leed Walls",
+ "Metallic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52674"
+ },
+ {
+ "sku": "floating-fibers-dwx-58187",
+ "handle": "floating-fibers-dwx-58187",
+ "title": "Floating Fibers | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58187-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714143",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Olive Green",
+ "Fiber",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Olive Green",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58187"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34333",
+ "handle": "sannohe-budget-vinyl-xcf-34333",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6312c58e3eea3939e77c676d3bdcf513_75353de8-0ef7-483a-932c-7e1e3475d61e.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34333"
+ },
+ {
+ "sku": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "handle": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "title": "Dylan Beige Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/17cb5ce99e864c47c875e18e6b43763a.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-beige-candy-stripe-wallpaper-cca-82977"
+ },
+ {
+ "sku": "saint-guyane-durable-vinyl-dur-72249",
+ "handle": "saint-guyane-durable-vinyl-dur-72249",
+ "title": "Saint Guyane Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72249-sample-clean.jpg?v=1774484911",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Embossed",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "Living Room",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Tropical",
+ "Tropical Leaf",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-guyane-durable-vinyl-dur-72249"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52094",
+ "handle": "canal-texture-durable-walls-xwa-52094",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-spice.jpg?v=1777480398",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Brown",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52094"
+ },
+ {
+ "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": "eur-80281-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80281-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 05 - Warm 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_7513502187571.jpg?v=1775523142",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Palmetto",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80281-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48206-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729926",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48206"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2755",
+ "handle": "faux-leaf-squares-fls-2755",
+ "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-2755-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775712014",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2755"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48210",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48210",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48210-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730023",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Burgundy",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Golden Brown",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Hunter Green",
+ "Luxe",
+ "Luxurious",
+ "Marble White",
+ "Navy Blue",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Red",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48210"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp11394-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp11394-jpg",
+ "title": "SP11394 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_SP11389.jpg?v=1733872349",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp11394-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9505-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9505-jpg",
+ "title": "ST9505 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9504.jpg?v=1733872253",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9505-jpg"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53107",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53107",
+ "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-53107-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716022",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Orange",
+ "Organic Modern",
+ "Tangerine",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53107"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48175",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48175",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48175-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728596",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48175"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53417",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53417",
+ "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-salt_glow.jpg?v=1777480840",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic",
+ "Organic Modern",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53417"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48581",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48581",
+ "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-48581-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735801",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stucco",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48581"
+ },
+ {
+ "sku": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "handle": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "title": "Asha Gold Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5d4a363f07f49d7ada8dda4ca37bee3d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-gold-lotus-damask-wallpaper-cca-83234"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76628",
+ "handle": "rustic-glam-vinyl-gpr-76628",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76628-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731762",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "USFCID#vp885-059",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76628"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dcpa-450-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dcpa-450-jpg",
+ "title": "Catalpa - Redwood | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DCPA-450.jpg?v=1762290936",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Catalpa",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Paper",
+ "Redwood",
+ "Rustic",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dcpa-450-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5051-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5051-jpg",
+ "title": "Dasma - Sapphire | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5051.jpg?v=1762292130",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Gray",
+ "Light Blue",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5051-jpg"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47776",
+ "handle": "halifax-specialty-wallcovering-xlk-47776",
+ "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-47776-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715774",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Modern",
+ "Orange",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47776"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2745",
+ "handle": "faux-leaf-squares-fls-2745",
+ "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-2745-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711985",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2745"
+ },
+ {
+ "sku": "dylan-taupe-candy-stripe-wallpaper-cca-82978",
+ "handle": "dylan-taupe-candy-stripe-wallpaper-cca-82978",
+ "title": "Dylan Taupe Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3b8c84df2881fc560e852e8793e54bda.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-taupe-candy-stripe-wallpaper-cca-82978"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5393-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5393-jpg",
+ "title": "Glasgow - Bluebird | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5393.jpg?v=1762296956",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Bluebird",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Glasgow",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5393-jpg"
+ },
+ {
+ "sku": "hollywood-modern-marble-xhw-2010324",
+ "handle": "hollywood-modern-marble-xhw-2010324",
+ "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-mediterranean_sea_8e76e05f-258d-4f1b-b6e4-a899aa47d355.jpg?v=1777481272",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Teal",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Teal",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Gray",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Marble",
+ "Marble Look",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "smooth",
+ "Teal",
+ "Turquoise",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010324"
+ },
+ {
+ "sku": "wells-cream-candy-stripe-wallpaper-cca-83225",
+ "handle": "wells-cream-candy-stripe-wallpaper-cca-83225",
+ "title": "Wells Cream Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/26a0c2c70dc5770cec6a4156eab92049.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-cream-candy-stripe-wallpaper-cca-83225"
+ },
+ {
+ "sku": "asha-pearl-lotus-damask-wallpaper-cca-83232",
+ "handle": "asha-pearl-lotus-damask-wallpaper-cca-83232",
+ "title": "Asha Pearl Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5b185b350d35f7062ccda68d532c62c8.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pearl-lotus-damask-wallpaper-cca-83232"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72269",
+ "handle": "essone-durable-vinyl-dur-72269",
+ "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-72269-sample-clean.jpg?v=1774484951",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Navy",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "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-72269"
+ },
+ {
+ "sku": "mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863",
+ "handle": "mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863",
+ "title": "Mia Aqua Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/22ff70a16b353288de81988e5a6db42f.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9490-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9490-jpg",
+ "title": "Lune - Sky | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9490.jpg?v=1762299294",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Lattice",
+ "Light Blue",
+ "Lune",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9490-jpg"
+ },
+ {
+ "sku": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "handle": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "title": "Delilah Cream Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e9aad6c07fa0483b2b58f6b77ece20ee.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-cream-tulip-damask-wallpaper-cca-83240"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76643",
+ "handle": "rustic-glam-vinyl-gpr-76643",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76643-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Hollywood Regency",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Red",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "USFCID#vp885-159",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76643"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58044",
+ "handle": "sunset-stone-vinyl-dwx-58044",
+ "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-58044-sample-clean_0c275fe6-0a11-4424-9f74-e20be11d27d2.jpg?v=1774479271",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Green",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Green",
+ "Deep Olive Green",
+ "Embossed Texture",
+ "Faux Stone",
+ "Forest Green",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural Look",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stone",
+ "Stucco",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58044"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2637",
+ "handle": "pleated-perfect-paradise-ppp-2637",
+ "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-2637-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729212",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2637"
+ },
+ {
+ "sku": "kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874",
+ "handle": "kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874",
+ "title": "Kenley Orange Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab2bdd929d8b0e6e6a2c70d27070dc58.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Orange",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874"
+ },
+ {
+ "sku": "biejing-embossed-walls-bew-9504",
+ "handle": "biejing-embossed-walls-bew-9504",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9504-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705129",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9504"
+ },
+ {
+ "sku": "eur-80167-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80167-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 02 - Pale Aqua Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498157107.jpg?v=1775522529",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Grey",
+ "Light Blue",
+ "Living Room",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Blue",
+ "Paper",
+ "ROSSLYN",
+ "Scroll",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80167-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "amity-champagne-bleeding-heart-texture-wallpaper-cca-83285",
+ "handle": "amity-champagne-bleeding-heart-texture-wallpaper-cca-83285",
+ "title": "Amity Champagne Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2ce63d26b0c44e7ac2862299f29a51e2.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Glitter",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-champagne-bleeding-heart-texture-wallpaper-cca-83285"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_fdn-5413-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_fdn-5413-jpg",
+ "title": "Foundation Plus - Concrete Mix | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5413.jpg?v=1762294604",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete Mix",
+ "Foundation Plus",
+ "Gray",
+ "Industrial",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5413-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5472-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5472-jpg",
+ "title": "Douglas - Laurel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5472.jpg?v=1762292930",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Douglas",
+ "Gray",
+ "Laurel",
+ "Light Gray",
+ "Paper",
+ "RAMPART®",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5472-jpg"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47651",
+ "handle": "fairford-vinyl-wallcovering-xlb-47651",
+ "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-47651-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711441",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47651"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwk-52588",
+ "handle": "vanderbilt-durable-walls-xwk-52588",
+ "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-luna.jpg?v=1777480630",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52588"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5055-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5055-jpg",
+ "title": "Forge - Granite | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5055.jpg?v=1762294915",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Forge",
+ "Granite",
+ "Gray",
+ "Industrial",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5055-jpg"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49326",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49326",
+ "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/xvg-49326-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728314",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Oxford Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49326"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47893",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47893",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47893-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722440",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47893"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010177",
+ "handle": "hollywood-tailored-xhw-2010177",
+ "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-park_row.jpg?v=1777480970",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Brown",
+ "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 Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Taupe",
+ "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-2010177"
+ },
+ {
+ "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_ad10341-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10341-jpg",
+ "title": "Ambient Design - AD10341 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10340.jpg?v=1733874105",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maroon",
+ "Red",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10341-jpg"
+ },
+ {
+ "sku": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "handle": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "title": "Leia Sage Lace Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ea102f1cb1aa9b9278d7df1f44dc1a7.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lace",
+ "Prepasted",
+ "Sage",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leia-sage-lace-damask-wallpaper-cca-83252"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72182",
+ "handle": "st-silkey-durable-vinyl-dur-72182",
+ "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-72182-sample-clean.jpg?v=1774484705",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Pale Gray",
+ "Paper",
+ "Serene",
+ "Solid",
+ "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-72182"
+ },
+ {
+ "sku": "franny-pink-scroll-texture-wallpaper-cca-83033",
+ "handle": "franny-pink-scroll-texture-wallpaper-cca-83033",
+ "title": "Franny Pink Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47d4ab41fb08ec8734cdaed441b51fb6.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franny-pink-scroll-texture-wallpaper-cca-83033"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_abs-5655-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_abs-5655-jpg",
+ "title": "Absolute - Primrose | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/abs-5655.jpg?v=1762357301",
+ "tags": [
+ "100% Vinyl",
+ "Absolute",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Primrose",
+ "Purple",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_abs-5655-jpg"
+ },
+ {
+ "sku": "jumping-small-mural-by-retro-walls-rtr-37251",
+ "handle": "jumping-small-mural-by-retro-walls-rtr-37251",
+ "title": "Jumping Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fe09c14c08faf6ae322afac216d4b122.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Blue",
+ "Boy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Horse",
+ "Insect",
+ "Multi",
+ "Mural",
+ "Orange",
+ "Scenic",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumping-small-mural-by-retro-walls-rtr-37251"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53200",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53200",
+ "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-53200-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710049",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray Beige",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53200"
+ },
+ {
+ "sku": "biejing-embossed-walls-bew-9509",
+ "handle": "biejing-embossed-walls-bew-9509",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9509-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705144",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9509"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73080",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73080",
+ "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-73080-sample-clean.jpg?v=1774483380",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Farmhouse",
+ "Faux Wood",
+ "Floral",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73080"
+ },
+ {
+ "sku": "villa-velore-durable-vinyl-dur-72329",
+ "handle": "villa-velore-durable-vinyl-dur-72329",
+ "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-72329-sample-clean.jpg?v=1774485209",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72329"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "title": "Lafayette Modern Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52254-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721082",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52254"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66711",
+ "handle": "zebilini-wallpaper-xd6-66711",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/005854b1605e026e81eaba2281680a76.jpg?v=1775134288",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66711"
+ },
+ {
+ "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73273",
+ "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73273",
+ "title": "Caterina Embossed Vinyl - Type 2 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-73273-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707575",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Caterina Embossed Vinyl",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Sand",
+ "Scandinavian",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73273"
+ },
+ {
+ "sku": "biejing-embossed-walls-bew-9499",
+ "handle": "biejing-embossed-walls-bew-9499",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9499-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705120",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9499"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3321_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3321_8-jpg",
+ "title": "Hugo - Seashell | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3321_8.jpg?v=1762297530",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Seashell",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3321_8-jpg"
+ },
+ {
+ "sku": "eur-80201-ncw4185-designer-wallcoverings-los-angeles",
+ "handle": "eur-80201-ncw4185-designer-wallcoverings-los-angeles",
+ "title": "Mahayana 04 - Seafoam Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499533363.jpg?v=1775522726",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Mahayana",
+ "Minimalist",
+ "NCW4185",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Pale Green",
+ "Paper",
+ "Seafoam Green",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80201-ncw4185-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "nassau-contemporary-emboosed-walls-xwh-52329",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52329",
+ "title": "Nassau Contemporary Emboosed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nest-white_egg.jpg?v=1777480475",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52329"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vapor-vr003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vapor-vr003-jpg",
+ "title": "Vapor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vapor-vr003.jpg?v=1762311619",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Gray",
+ "Scuffmaster",
+ "Textured",
+ "Vapor",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vapor-vr003-jpg"
+ },
+ {
+ "sku": "eur-80358-ncw4352-designer-wallcoverings-los-angeles",
+ "handle": "eur-80358-ncw4352-designer-wallcoverings-los-angeles",
+ "title": "Bonnelles Diamond 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_7513505333299.jpg?v=1775523594",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Bonnelles Diamond",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Grey",
+ "Hallway",
+ "Leaf",
+ "LES INDIENNES",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "NCW4352",
+ "NCW4352-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Organic Modern",
+ "Pale Gray",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80358-ncw4352-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blg-5639-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blg-5639-jpg",
+ "title": "Belgrade - Limestone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5639.jpg?v=1762287826",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Belgrade",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "Limestone",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5639-jpg"
+ },
+ {
+ "sku": "biscay-bay-birch-wood-grain-wbs-39606",
+ "handle": "biscay-bay-birch-wood-grain-wbs-39606",
+ "title": "Biscay Bay Birch Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39606-sample-biscay-bay-birch-wood-grain-hollywood-wallcoverings.jpg?v=1775705196",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Tomato",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Walnut",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 54.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-birch-wood-grain-wbs-39606"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47758",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47758",
+ "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-47758-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715601",
+ "tags": [
+ "Faux Wood",
+ "Halewood Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47758"
+ },
+ {
+ "sku": "surry-lavender-soft-stripe-wallpaper-cca-83219",
+ "handle": "surry-lavender-soft-stripe-wallpaper-cca-83219",
+ "title": "Surry Lavender Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/928072c82a231f3fde8a710d525f67e0.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/surry-lavender-soft-stripe-wallpaper-cca-83219"
+ },
+ {
+ "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": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "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-53111-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716039",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53111"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53052",
+ "handle": "boca-faux-finish-durable-walls-xww-53052",
+ "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/hanami-vapor.jpg?v=1777480759",
+ "tags": [
+ "abstract",
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Linen",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Non-woven",
+ "Off-white",
+ "Sophisticated",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53052"
+ },
+ {
+ "sku": "surry-sky-soft-stripe-wallpaper-cca-83215",
+ "handle": "surry-sky-soft-stripe-wallpaper-cca-83215",
+ "title": "Surry Sky Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/056fc16272b4e56b1337723a5b50e31d.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Green",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/surry-sky-soft-stripe-wallpaper-cca-83215"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9469_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9469_8-jpg",
+ "title": "Orbit - Charcoal | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9469_8.jpg?v=1762302885",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Orbit",
+ "Polycarbonate",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9469_8-jpg"
+ },
+ {
+ "sku": "haute-sena-durable-vinyl-dur-72314",
+ "handle": "haute-sena-durable-vinyl-dur-72314",
+ "title": "Haute Sena Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72314-sample-clean.jpg?v=1774485146",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72314"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2872",
+ "handle": "peter-s-plastered-walls-ppw-2872",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2872-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729054",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2872"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5051-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5051-jpg",
+ "title": "Forge - Limestone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5051.jpg?v=1762294777",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "Limestone",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5051-jpg"
+ },
+ {
+ "sku": "georgina-criss-cross-vinyl-xgc-44429",
+ "handle": "georgina-criss-cross-vinyl-xgc-44429",
+ "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-44429-sample-georgina-criss-cross-vinyl-hollywood-wallcoverings.jpg?v=1775714418",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Geometric",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/georgina-criss-cross-vinyl-xgc-44429"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53692",
+ "handle": "westville-contemporary-durable-walls-xje-53692",
+ "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-53692-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736489",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53692"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5056-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5056-jpg",
+ "title": "Forge - Emerald | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5056.jpg?v=1762294950",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "Green",
+ "Olive",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5056-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dgbj-532-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dgbj-532-jpg",
+ "title": "Green Bog Jasper - Sage | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dgbj-532.jpg?v=1762291132",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Green",
+ "Green Bog Jasper",
+ "Light Beige",
+ "Orange",
+ "Paper",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dgbj-532-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010372",
+ "handle": "hollywood-contemporary-coast-xhw-2010372",
+ "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/XHW-2010372-sample-clean.jpg?v=1774482616",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Baby Blue",
+ "Background Color Blue",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Sky Blue",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "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-2010372"
+ },
+ {
+ "sku": "biscay-bay-black-walnut-wood-grain-wbs-39618",
+ "handle": "biscay-bay-black-walnut-wood-grain-wbs-39618",
+ "title": "Biscay Bay Black Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39618-sample-biscay-bay-black-wood-grain-hollywood-wallcoverings.jpg?v=1775705222",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Hollywood Wallcoverings",
+ "Latte",
+ "Living Room",
+ "Minimalist",
+ "Mink",
+ "Mushroom",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-black-walnut-wood-grain-wbs-39618"
+ },
+ {
+ "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": "millinocket-beige-illusion-stripe-wallpaper-cca-83116",
+ "handle": "millinocket-beige-illusion-stripe-wallpaper-cca-83116",
+ "title": "Millinocket Beige Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/88980bf329c1d76429edb898ab08a3e6.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-beige-illusion-stripe-wallpaper-cca-83116"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58041",
+ "handle": "sunset-stone-vinyl-dwx-58041",
+ "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-58041-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735115",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Living Room",
+ "Natural Look",
+ "Sand",
+ "Stone",
+ "Stucco",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58041"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66833",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66833",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/50fc44ba56eb64dd60450ad30d136b5a.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Light Gray",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66833"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2628",
+ "handle": "pleated-perfect-paradise-ppp-2628",
+ "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-2628-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729186",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Light Yellow",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2628"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49317",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49317",
+ "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-coconut_tree_6fd77a8b-9d78-41d6-b89e-be4d8900ed7e.jpg?v=1777481139",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49317"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWT-53474-sample-clean.jpg?v=1774482107",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53474"
+ },
+ {
+ "sku": "topiary-menagerie-large-mural-by-retro-walls-rtr-37246",
+ "handle": "topiary-menagerie-large-mural-by-retro-walls-rtr-37246",
+ "title": "Topiary Menagerie Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e4ce63bf13c134951999a0be03345efd.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Gray",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Owl",
+ "Rhinoceros",
+ "Scenic",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/topiary-menagerie-large-mural-by-retro-walls-rtr-37246"
+ },
+ {
+ "sku": "bar-and-restaurant-wallpaper-ideas-video-100001",
+ "handle": "bar-and-restaurant-wallpaper-ideas-video-100001",
+ "title": "Bar and Restaurant Ideas | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Video-100001-clean.jpg?v=1774478994",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bar and Restaurant Ideas Wallcovering",
+ "Bar and Restaurant Ideas",
+ "Bathroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gothic",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Maximalist",
+ "Novelty",
+ "Paper",
+ "Playful",
+ "Powder Room",
+ "Rustic",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bar-and-restaurant-wallpaper-ideas-video-100001"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwj-52483",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwj-52483",
+ "title": "Shubert Faux Rice Paper Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52483-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733124",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwj-52483"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9483-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9483-jpg",
+ "title": "Lune - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9483.jpg?v=1762299051",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Lattice",
+ "Lune",
+ "Pink",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9483-jpg"
+ },
+ {
+ "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": "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": "ludlow-blue-paisley-wallpaper-cca-82915",
+ "handle": "ludlow-blue-paisley-wallpaper-cca-82915",
+ "title": "Ludlow Blue Paisley Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4ba15b366076591cb8059c1a8082d095.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ludlow-blue-paisley-wallpaper-cca-82915"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10353-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10353-jpg",
+ "title": "Ambient Design - AD10353 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10350.jpg?v=1733874084",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10353-jpg"
+ },
+ {
+ "sku": "eloise-lavender-damask-wallpaper-cca-82996",
+ "handle": "eloise-lavender-damask-wallpaper-cca-82996",
+ "title": "Eloise Lavender Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0e20fb1111c36556985ad78c7d1bbc7a.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "String",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eloise-lavender-damask-wallpaper-cca-82996"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10205-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10205-jpg",
+ "title": "SP10205 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10204.jpg?v=1733872394",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10205-jpg"
+ },
+ {
+ "sku": "puget-s-pineapple-scr-7915",
+ "handle": "puget-s-pineapple-scr-7915",
+ "title": "Puget's Pineapple",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dfda2890df9f5c0553e103f4a91dd7a2.jpg?v=1572309083",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Aubergine Yellow",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Light Yellow",
+ "Maroon",
+ "Paper",
+ "Puget's Pineapple",
+ "Red",
+ "Screen Print",
+ "Tropical",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "Yellow"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puget-s-pineapple-scr-7915"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48582",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48582",
+ "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-48582-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735805",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Industrial",
+ "Light Beige",
+ "Light Grey",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Pale Grey",
+ "Rustic",
+ "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-48582"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9406-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9406-jpg",
+ "title": "ST9406 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9405.jpg?v=1733872277",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Gray",
+ "Minimalist",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9406-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5000-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5000-jpg",
+ "title": "Grain - Sapele | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5000.jpg?v=1762295164",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Grain",
+ "RAMPART®",
+ "Sapele",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5000-jpg"
+ },
+ {
+ "sku": "highlands-honeycomb-wood-weave-hlw-73062",
+ "handle": "highlands-honeycomb-wood-weave-hlw-73062",
+ "title": "Highlands Honeycomb Wood Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73062-sample-clean.jpg?v=1774483286",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Slategray",
+ "Faux Wood",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Highlands Honeycomb Wood Weave",
+ "Hollywood Wallcoverings",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Powder Room",
+ "Serene",
+ "Slate Gray",
+ "Teal",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Wood"
+ ],
+ "max_price": 31.09,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/highlands-honeycomb-wood-weave-hlw-73062"
+ },
+ {
+ "sku": "mazarin-by-innovations-usa-dwc-mazarin-6",
+ "handle": "mazarin-by-innovations-usa-dwc-mazarin-6",
+ "title": "Mazarin | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-6.jpg?v=1736198923",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Innovations USA",
+ "Light Beige",
+ "Mazarin",
+ "Mazarin-6",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-6"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010368",
+ "handle": "hollywood-contemporary-coast-xhw-2010368",
+ "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/XHW-2010368-sample-clean.jpg?v=1774482600",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Auburn",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Scandinavian",
+ "Serene",
+ "Taupe",
+ "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",
+ "Yellow"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010368"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48452",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48452",
+ "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-48452-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735077",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48452"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9513-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9513-jpg",
+ "title": "ST9513 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9511.jpg?v=1733872237",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "ST9513",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9513-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2525",
+ "handle": "faux-leaf-squares-fls-2525",
+ "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-2525-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711939",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Yellow",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2525"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9461_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9461_8-jpg",
+ "title": "Orbit - Mudslide | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9461_8.jpg?v=1762302606",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Mauve",
+ "Mudslide",
+ "Orbit",
+ "Polycarbonate",
+ "Purple",
+ "Single Dominant Background Color Word",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9461_8-jpg"
+ },
+ {
+ "sku": "anjuna-textured-vinyl-wallpaper-inw-1499",
+ "handle": "anjuna-textured-vinyl-wallpaper-inw-1499",
+ "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-1499-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698677",
+ "tags": [
+ "CONTEMPORARY",
+ "Textured",
+ "UK",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anjuna-textured-vinyl-wallpaper-inw-1499"
+ },
+ {
+ "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": "la-roche-durable-vinyl-dur-72067",
+ "handle": "la-roche-durable-vinyl-dur-72067",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72067-sample-clean.jpg?v=1774484247",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72067"
+ },
+ {
+ "sku": "nicky-light-blue-textured-pinstripe-wallpaper-cca-83029",
+ "handle": "nicky-light-blue-textured-pinstripe-wallpaper-cca-83029",
+ "title": "Nicky Light Blue Textured Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ca0d537998ccd087e975aa54349f4094.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Children",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nicky-light-blue-textured-pinstripe-wallpaper-cca-83029"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5044-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5044-jpg",
+ "title": "Dasma - Cordovan | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5044.jpg?v=1762291873",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Cordovan",
+ "Dark Brown",
+ "Dasma",
+ "Grasscloth",
+ "Red-brown",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5044-jpg"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52680",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52680",
+ "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-52680-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726391",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Estimated Type: Vinyl",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52680"
+ },
+ {
+ "sku": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "handle": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "title": "Millinocket Fog Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f11d43a9aef56024d0ba8f9f66fa2d3d.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-fog-illusion-stripe-wallpaper-cca-83113"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66602",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66602",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16c5d58b6a98fa0d2e11cc0ae08f0910.jpg?v=1775131845",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66602"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53538",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53538",
+ "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-sprout.jpg?v=1777480868",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Yellow",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Yellow",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53538"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5074-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5074-jpg",
+ "title": "Ashlar - Frost | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5074.jpg?v=1762286715",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Frost",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5074-jpg"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9484",
+ "handle": "chinese-fret-walls-cfw-9484",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9484-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708046",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9484"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66839",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66839",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/82d9880ee0de3b3c4c100bb8efde2827.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Light Beige",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66839"
+ },
+ {
+ "sku": "brooker-contemporary-durable-walls-xww-52995",
+ "handle": "brooker-contemporary-durable-walls-xww-52995",
+ "title": "Brooker Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gramercy-studio_white.jpg?v=1777480743",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-white",
+ "Plaid",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooker-contemporary-durable-walls-xww-52995"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52582",
+ "handle": "le-madison-durable-walls-xwk-52582",
+ "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-52582-sample-clean.jpg?v=1774481424",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52582"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9402-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9402-jpg",
+ "title": "ST9402 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9401.jpg?v=1733872285",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9402-jpg"
+ },
+ {
+ "sku": "crowns-roses-black-gold-cream-wallcovering-versace",
+ "handle": "crowns-roses-black-gold-cream-wallcovering-versace",
+ "title": "Crowns & Roses Black, Gold, Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/87b8808ddd3a84d086afc728fa772670.jpg?v=1773706296",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Cream Wallcovering",
+ "Crowns & Roses",
+ "Crowns & Roses Black",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Glamorous",
+ "Gold",
+ "Haute Couture",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Paste the wall",
+ "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-black-gold-cream-wallcovering-versace"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920",
+ "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-52920-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734495",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Navy",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66709",
+ "handle": "zebilini-wallpaper-xd6-66709",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4f908a58dfcd7cccb552ff723e60704d.jpg?v=1775134052",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Geometric",
+ "Green",
+ "Light Green",
+ "Living Room",
+ "Minimalist",
+ "Nursery",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66709"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52321",
+ "handle": "marketfield-faux-durable-walls-xwh-52321",
+ "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-angelica.jpg?v=1777480462",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52321"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76639",
+ "handle": "rustic-glam-vinyl-gpr-76639",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76639-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731921",
+ "tags": [
+ "Amber",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Rustic",
+ "Terracotta",
+ "Textured",
+ "Traditional",
+ "USFCID#vp885-129",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76639"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+ "title": "Sparta - Raw Linen | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5304.jpg?v=1762309207",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Lattice",
+ "RAMPART®",
+ "Raw Linen",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5304-jpg"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72178",
+ "handle": "st-silken-durable-vinyl-dur-72178",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72178-sample-clean.jpg?v=1774484685",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tangerine",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72178"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72404",
+ "handle": "rivo-dulce-durable-vinyl-dur-72404",
+ "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-72404-sample-clean.jpg?v=1774485396",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Oatmeal",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Sand",
+ "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-72404"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72097",
+ "handle": "rhone-durable-vinyl-dur-72097",
+ "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-72097-sample-clean.jpg?v=1774484388",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Charcoal",
+ "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",
+ "Non-woven",
+ "Orange",
+ "Organic Modern",
+ "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-72097"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52376",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52376",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52376-sample-pearl-bay-vertical-faux-durable-hollywood-wallcoverings.jpg?v=1775729023",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue",
+ "Light Periwinkle",
+ "Living Room",
+ "Modern",
+ "Periwinkle",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52376"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52441",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52441",
+ "title": "Rivington Rice Paper Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52441-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730738",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52441"
+ },
+ {
+ "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48535",
+ "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48535",
+ "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-48535-sample-clean.jpg?v=1774480564",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Raw Umber",
+ "Sienna",
+ "Solid",
+ "Textured",
+ "Twickenham Type 2 Vinyl Wallcovering",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48535"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_cct-2672-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_cct-2672-jpg",
+ "title": "Connections - Camel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cct-2672.jpg?v=1762289719",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Connections",
+ "Contract",
+ "Geometric",
+ "Off-white",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_cct-2672-jpg"
+ },
+ {
+ "sku": "casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106",
+ "handle": "casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106",
+ "title": "Casco Bay Plum Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2cbb5266c5310227eca4528d10ad6c51.jpg?v=1572309969",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Casco Bay Plum Ombre Pinstripe Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Plum",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66533",
+ "handle": "tigressa-bargea-wallpaper-xb3-66533",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/928b90adfce0abda5744f6019eb83c0e.jpg?v=1775129826",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66533"
+ },
+ {
+ "sku": "eur-80140-ncw4127-designer-wallcoverings-los-angeles",
+ "handle": "eur-80140-ncw4127-designer-wallcoverings-los-angeles",
+ "title": "Strome 02 - 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_7513497075763.jpg?v=1775522343",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "BRAEMAR",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "NCW4127",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Strome",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80140-ncw4127-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": "hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402",
+ "handle": "hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402",
+ "title": "Hairly Hide - Faux Vinyl Hide - Burnt Orange Spice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fvh-40402-sample-hairly-hide-faux-vinyl-hide-burnt-orange-spice-hollywood.jpg?v=1775715526",
+ "tags": [
+ "Architectural",
+ "Bold",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 204.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72243",
+ "handle": "saint-brittany-durable-vinyl-dur-72243",
+ "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-72243-sample-clean.jpg?v=1774484886",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Dusty Rose",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Pink",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "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-72243"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34327",
+ "handle": "sannohe-budget-vinyl-xcf-34327",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fa7ae485c5a9fa3a8b6d3299b925ecb7_5961805e-5d13-4029-8946-9bbaa1da6c8e.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Light Brown",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34327"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72301",
+ "handle": "la-voltere-durable-vinyl-dur-72301",
+ "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-72301-sample-clean.jpg?v=1774485106",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Charcoal",
+ "Dark Gray",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Solid",
+ "Sophisticated",
+ "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-72301"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+ "title": "Shift - Harvest | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5014.jpg?v=1762305752",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Harvest",
+ "RAMPART®",
+ "Shift",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5014-jpg"
+ },
+ {
+ "sku": "ludlow-chocolate-paisley-wallpaper-cca-82917",
+ "handle": "ludlow-chocolate-paisley-wallpaper-cca-82917",
+ "title": "Ludlow Chocolate Paisley Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/29e030a2513e6a883c38c2fc1930f688.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Chocolate",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ludlow-chocolate-paisley-wallpaper-cca-82917"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5083-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5083-jpg",
+ "title": "Ashlar - Blockade | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5083.jpg?v=1762287053",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Blockade",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5083-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5040-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5040-jpg",
+ "title": "Dasma - Fawn | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5040.jpg?v=1762291717",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5040-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5072-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5072-jpg",
+ "title": "Ashlar - Henna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5072.jpg?v=1762286650",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Henna",
+ "RAMPART®",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5072-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5047-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5047-jpg",
+ "title": "Sparta - Espresso | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5047.jpg?v=1762309024",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Sparta",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5047-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp9507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9507-jpg",
+ "title": "SP9507 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9506.jpg?v=1733872416",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp9507-jpg"
+ },
+ {
+ "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": "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": "tigressa-bargea-wallpaper-xb3-66521",
+ "handle": "tigressa-bargea-wallpaper-xb3-66521",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/372bd94435305de19eb0ef3904894d31.jpg?v=1775128999",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Neutral",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66521"
+ },
+ {
+ "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": "whisper-sky-blue-scroll-texture-wallpaper-wallpaper-cca-82896",
+ "handle": "whisper-sky-blue-scroll-texture-wallpaper-wallpaper-cca-82896",
+ "title": "Whisper Sky Blue Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4601fa8ccb1d964a34b380144ad463ef.jpg?v=1572309959",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Lightblue",
+ "Palegreen",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-sky-blue-scroll-texture-wallpaper-wallpaper-cca-82896"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010300",
+ "handle": "hollywood-getty-texture-xhw-2010300",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-sonia_cad7ccd8-4459-44dd-aeb1-388400579384.jpg?v=1777481533",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Getty Texture",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010300"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66715",
+ "handle": "zebilini-wallpaper-xd6-66715",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/59df5d3afac50c60ff5532f0b50ce328.jpg?v=1775134707",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Circles",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gold",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-White",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66715"
+ },
+ {
+ "sku": "millinocket-charcoal-illusion-stripe-wallpaper-cca-83114",
+ "handle": "millinocket-charcoal-illusion-stripe-wallpaper-cca-83114",
+ "title": "Millinocket Charcoal Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7508cc63576d2fe963c8d703aa96e4fc.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-charcoal-illusion-stripe-wallpaper-cca-83114"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5473-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5473-jpg",
+ "title": "Douglas - Sycamore | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5473.jpg?v=1762292965",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Douglas",
+ "Paper",
+ "RAMPART®",
+ "Sycamore",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5473-jpg"
+ },
+ {
+ "sku": "southampton-stelvio-wallcovering-phillipe-romano",
+ "handle": "southampton-stelvio-wallcovering-phillipe-romano",
+ "title": "Southampton - Stelvio Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2oruHrJhIF0pSBcWNMEbJcGHvwKCz7nP15ThfFVy.jpg?v=1776190152",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Fire Rated",
+ "Full Roll",
+ "Hollywood Vinyls Vol. 1",
+ "mfr:DWHV-101177",
+ "Off-white",
+ "Phillipe Romano",
+ "Southampton",
+ "Textured",
+ "Traditional",
+ "Vinyl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/southampton-stelvio-wallcovering-phillipe-romano"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52373",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52373",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/perplex-breathless.jpg?v=1777480541",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52373"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53604",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53604",
+ "title": "Mansion Marble - Mocha Torino Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-gulf_coast_57100b30-8447-4c3f-8ac9-c36f6c7cdab6.jpg?v=1777481463",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Blue Grey",
+ "Light Gray",
+ "Living Room",
+ "Lovela Faux Vertical Durable",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Non-woven",
+ "Organic Modern",
+ "Pale Blue",
+ "Pale Grey",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53604"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72276",
+ "handle": "essone-durable-vinyl-dur-72276",
+ "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-72276-sample-clean.jpg?v=1774484986",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72276"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-206-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-206-jpg",
+ "title": "WonderWood® - Maple Fc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-206f.jpg?v=1762312275",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Light Brown",
+ "Maple Fc",
+ "Natural",
+ "Reconstituted",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-206-jpg"
+ },
+ {
+ "sku": "gianna-lilac-texture-wallpaper-wallpaper-cca-82880",
+ "handle": "gianna-lilac-texture-wallpaper-wallpaper-cca-82880",
+ "title": "Gianna Lilac Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/055cbb8811406f324c680227e7474e22.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gianna-lilac-texture-wallpaper-wallpaper-cca-82880"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44374",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44374",
+ "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-44374-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775732977",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44374"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72148",
+ "handle": "cote-marine-durable-vinyl-dur-72148",
+ "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-72148-sample-clean.jpg?v=1774484571",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Navy",
+ "Office",
+ "Serene",
+ "Slate Gray",
+ "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-72148"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9443-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9443-jpg",
+ "title": "Maya - Android | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9443.jpg?v=1762302261",
+ "tags": [
+ "100% Vinyl",
+ "Android",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Green",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9443-jpg"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58151",
+ "handle": "artisma-croco-vinyl-dwx-58151",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58151-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699257",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Print",
+ "Animal Skin",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Damask",
+ "Dark Brown",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Emerald Green",
+ "Faux Leather",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Modern",
+ "Navy Blue",
+ "Neutral",
+ "Paper",
+ "Regencycore",
+ "Restaurant",
+ "Scratch Resistant",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58151"
+ },
+ {
+ "sku": "shagreen-lapis-romo",
+ "handle": "shagreen-lapis-romo",
+ "title": "Shagreen Lapis | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW104-07-shagreen-wallcovering-lapis_01.jpg?v=1776485326",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color blue-gray",
+ "blue-gray",
+ "Commercial",
+ "Contemporary",
+ "Contemporary Wallcovering",
+ "dark gray",
+ "Deep Charcoal",
+ "Glamorama Wallcovering",
+ "gray",
+ "Healthcare",
+ "Hospitality",
+ "Light Gray",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Romo",
+ "Shagreen",
+ "Slate Blue",
+ "Small",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "ZW104/07"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shagreen-lapis-romo"
+ },
+ {
+ "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": "saint-lore-durable-vinyl-dur-72232",
+ "handle": "saint-lore-durable-vinyl-dur-72232",
+ "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-72232-sample-clean.jpg?v=1774484845",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Sophisticated",
+ "Taupe",
+ "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-72232"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48212",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48212",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48212-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730072",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48212"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "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-53204-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710068",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53204"
+ },
+ {
+ "sku": "ilead-rectangle-texture-vinyl-xir-44344",
+ "handle": "ilead-rectangle-texture-vinyl-xir-44344",
+ "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-44344-sample-ilead-rectangle-texture-vinyl-hollywood-wallcoverings.jpg?v=1775719497",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ilead-rectangle-texture-vinyl-xir-44344"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47620",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47620",
+ "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-47620-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710556",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sand",
+ "Serene",
+ "Solid",
+ "Suede",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47620"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53239",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53239",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53239-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710138",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53239"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010186",
+ "handle": "hollywood-tailored-xhw-2010186",
+ "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-carrere.jpg?v=1777480984",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Ecru",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010186"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10407-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10407-jpg",
+ "title": "ST10407 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10406.jpg?v=1733872184",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10407-jpg"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72029",
+ "handle": "provence-durable-vinyl-dur-72029",
+ "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-72029-sample-clean.jpg?v=1774484036",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Provence Durable Vinyl",
+ "Serene",
+ "Solid",
+ "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-72029"
+ },
+ {
+ "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48541",
+ "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48541",
+ "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-48541-sample-twickenham-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735492",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Twickenham Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48541"
+ },
+ {
+ "sku": "eur-80314-ncw4302-designer-wallcoverings-los-angeles",
+ "handle": "eur-80314-ncw4302-designer-wallcoverings-los-angeles",
+ "title": "Mourlot 04 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513503760435.jpg?v=1775523320",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "LES REVES",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Mourlot",
+ "NCW4302",
+ "NCW4302-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Green",
+ "Paper",
+ "Serene",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80314-ncw4302-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_am10331-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_am10331-jpg",
+ "title": "Ambient Metallic | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/am10331.jpg?v=1762285264",
+ "tags": [
+ "Abstract",
+ "Ambient Metallic",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Metallic",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_am10331-jpg"
+ },
+ {
+ "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": "pearl-bay-vertical-faux-durable-walls-xwh-52374",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52374",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/perplex-windswept.jpg?v=1777480544",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Taupe",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52374"
+ },
+ {
+ "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": "glyph-by-innovations-usa-dwc-glyph-7",
+ "handle": "glyph-by-innovations-usa-dwc-glyph-7",
+ "title": "Glyph | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-7.jpg?v=1736199451",
+ "tags": [
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glyph-7",
+ "Gray",
+ "Innovations USA",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 3.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-7"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2618",
+ "handle": "pleated-perfect-paradise-ppp-2618",
+ "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-2618-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729153",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2618"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53464",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53464",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWT-53464-sample-clean.jpg?v=1774482092",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Sienna",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53464"
+ },
+ {
+ "sku": "camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840",
+ "handle": "camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840",
+ "title": "Camila Lilac Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6ed3a9091307458f7700bb5e226dae92_72be2b7a-ca25-4124-bf72-b2095bd9a55f.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lilac",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5510-jpg",
+ "title": "Resham Plus - Gris | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5510.jpg?v=1762304144",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Gris",
+ "RAMPART®",
+ "Resham Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5510-jpg"
+ },
+ {
+ "sku": "rangeley-brass-new-avalon-stripe-wallpaper-cca-83125",
+ "handle": "rangeley-brass-new-avalon-stripe-wallpaper-cca-83125",
+ "title": "Rangeley Brass New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9ebeaedbf92a927534a7f7990f4fad98.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-brass-new-avalon-stripe-wallpaper-cca-83125"
+ },
+ {
+ "sku": "biscay-bay-tight-wood-grain-wbs-39615",
+ "handle": "biscay-bay-tight-wood-grain-wbs-39615",
+ "title": "Biscay Bay Tight Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39615-sample-biscay-bay-tight-wood-grain-hollywood-wallcoverings.jpg?v=1775705598",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Hollywood Wallcoverings",
+ "Honey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Warm",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-tight-wood-grain-wbs-39615"
+ },
+ {
+ "sku": "dwkk-137723",
+ "handle": "dwkk-137723",
+ "title": "Parterre - Indigo Blue By G P & J Baker | Signature |Modern Geometric Wallcovering Print",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45081_2_2fa64d0e-f6ed-4971-8352-983618db7d5a.jpg?v=1753303590",
+ "tags": [
+ "20.488In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Bw45081.2.0",
+ "Commercial",
+ "Contemporary",
+ "Denim Blue",
+ "display_variant",
+ "Fretwork",
+ "G P & J Baker",
+ "Geometric",
+ "GP & J Baker",
+ "Hallway",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Off-white",
+ "Paper",
+ "Parterre",
+ "Pattern",
+ "Print",
+ "Signature",
+ "Sophisticated",
+ "Textured",
+ "Transitional",
+ "United Kingdom",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-137723"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9400r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9400r-jpg",
+ "title": "EM9400R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_elw-2323.jpg?v=1733873363",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM9400R",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9400r-jpg"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52099",
+ "handle": "canal-texture-durable-walls-xwd-52099",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-sandalwood.jpg?v=1777480406",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52099"
+ },
+ {
+ "sku": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "handle": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "title": "Natalia Blue Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47c919234233c22b6a5d9c7705f2d228.jpg?v=1572309956",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Leaf",
+ "Pink",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824"
+ },
+ {
+ "sku": "castine-charcoal-tuscan-stripe-wallpaper-cca-83209",
+ "handle": "castine-charcoal-tuscan-stripe-wallpaper-cca-83209",
+ "title": "Castine Charcoal Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/856a7413b2d0e2a5853944959b81331d_dcd9e565-f869-4d8b-8856-ce20256feffa.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/castine-charcoal-tuscan-stripe-wallpaper-cca-83209"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10414-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10414-jpg",
+ "title": "ST10414 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10413.jpg?v=1733872162",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10414-jpg"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010304",
+ "handle": "hollywood-getty-texture-xhw-2010304",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-troy.jpg?v=1777481041",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Getty Texture",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010304"
+ },
+ {
+ "sku": "mediterranean-texture-red-wallcovering-versace",
+ "handle": "mediterranean-texture-red-wallcovering-versace",
+ "title": "Mediterranean Texture Red Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/53086f4f5bab1216d70527e04b8f1b93.jpg?v=1773706326",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Mediterranean Texture",
+ "Mediterranean Texture Red Wallcovering",
+ "Off-white",
+ "Paste the wall",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mediterranean-texture-red-wallcovering-versace"
+ },
+ {
+ "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73265",
+ "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73265",
+ "title": "Caterina Embossed Vinyl - Type 2 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-73265-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707357",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caterina Embossed Vinyl",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Embossed",
+ "Embossed Texture",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Scandinavian",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73265"
+ },
+ {
+ "sku": "eur-80237-ncw4204-designer-wallcoverings-los-angeles",
+ "handle": "eur-80237-ncw4204-designer-wallcoverings-los-angeles",
+ "title": "Kershaw Plain 07 - Sapphire Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500680243.jpg?v=1775522904",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "FONTIBRE",
+ "Glamorous",
+ "Gold",
+ "Kershaw Plain",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Marble",
+ "Navy",
+ "NCW4204",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80237-ncw4204-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47235",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47235",
+ "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/xjp-47235-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702733",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Blue",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Conference Room",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Glamorous",
+ "Gold",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Navy",
+ "Non-woven",
+ "Regencycore",
+ "Restaurant",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47235"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58130",
+ "handle": "jutely-vinyl-dwx-58130",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58130-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720302",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Brown",
+ "Natural Look",
+ "Neutral",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58130"
+ },
+ {
+ "sku": "palazzo-lane-wood-metal-chevron-hlw-73145",
+ "handle": "palazzo-lane-wood-metal-chevron-hlw-73145",
+ "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73145-sample-clean.jpg?v=1774483719",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Palazzo Lane",
+ "Sophisticated",
+ "Tan",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Wood"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73145"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52313",
+ "handle": "marketfield-faux-durable-walls-xwh-52313",
+ "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-white_willow.jpg?v=1777480450",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Oatmeal",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52313"
+ },
+ {
+ "sku": "hollywood-modern-marble-xhw-2010329",
+ "handle": "hollywood-modern-marble-xhw-2010329",
+ "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-celestine_05a0733d-bc9a-4b5a-8c9e-2bd7068d81af.jpg?v=1777481406",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Blue",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Marble",
+ "Marble Look",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Navy",
+ "Samantha",
+ "Serene",
+ "Sky Blue",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010329"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912",
+ "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-52912-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734457",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Slate Grey",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912"
+ },
+ {
+ "sku": "contempo-diamond-vinyl-dwx-58020",
+ "handle": "contempo-diamond-vinyl-dwx-58020",
+ "title": "Contempo Diamond Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58020-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709061",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Diamond",
+ "Durable",
+ "Geometric",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/contempo-diamond-vinyl-dwx-58020"
+ },
+ {
+ "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": "austin-grey-plaid-wallpaper-cca-82962",
+ "handle": "austin-grey-plaid-wallpaper-cca-82962",
+ "title": "Austin Grey Plaid Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/da265c34b61a7abf31892dfe38cd9051.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Plaid",
+ "Plaids",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/austin-grey-plaid-wallpaper-cca-82962"
+ },
+ {
+ "sku": "versace-wallpaper-european-import-ver-47240",
+ "handle": "versace-wallpaper-european-import-ver-47240",
+ "title": "Versace Wallcovering",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/56dada260a09c91fa1a00c4c22ad5686.jpg?v=1745423159",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "European",
+ "Gold",
+ "Luxury",
+ "Purple",
+ "Red",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Versace",
+ "Versace Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 123.86,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-wallpaper-european-import-ver-47240"
+ },
+ {
+ "sku": "dwqw-56964-handle",
+ "handle": "dwqw-56964-handle",
+ "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Apricot | Architectural Wallcoverings",
+ "vendor": "Malibu Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31721.jpg?v=1748380580",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Background Color apricot",
+ "Background Color Rosy Brown",
+ "Bohemian",
+ "Boho Rhapsody",
+ "Class \"A\" Fire Rated",
+ "Commercial",
+ "Embossed Vinyl",
+ "Fabric",
+ "Indie Linen Embossed Vinyl",
+ "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl",
+ "Light Beige",
+ "Light Duty",
+ "Low Traffic",
+ "Residential",
+ "Residential Use",
+ "Rosy Brown",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwqw-56964-handle"
+ },
+ {
+ "sku": "gibby-charcoal-leafy-scroll-wallpaper-wallpaper-cca-82852",
+ "handle": "gibby-charcoal-leafy-scroll-wallpaper-wallpaper-cca-82852",
+ "title": "Gibby Charcoal Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bfe5b79b32e87d2e1a4d036a4d142232.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leaf",
+ "Off-White",
+ "Prepasted",
+ "Scroll",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-charcoal-leafy-scroll-wallpaper-wallpaper-cca-82852"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_abs-5662-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_abs-5662-jpg",
+ "title": "Absolute - Khaki | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/abs-5662.jpg?v=1762357551",
+ "tags": [
+ "100% Vinyl",
+ "Absolute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_abs-5662-jpg"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53109",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53109",
+ "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-53109-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716035",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53109"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47468",
+ "handle": "crosby-acoustical-wallcovering-xkl-47468",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/631dd761c66a9580d21ce5b1f5ac8fd9.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Polyester",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47468"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49265",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49265",
+ "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-hematite.jpg?v=1777480051",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive Green",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49265"
+ },
+ {
+ "sku": "under-water-waves-xuw-44154",
+ "handle": "under-water-waves-xuw-44154",
+ "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-44154-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735589",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44154"
+ },
+ {
+ "sku": "jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818",
+ "handle": "jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818",
+ "title": "Jada White Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0c43d29a94f42b1967e0e3472d55539e.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gray",
+ "LA Walls",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Unpasted",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68173",
+ "handle": "nice-reima-wallpaper-xq8-68173",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/38c595229a932d751b7a7c662180dc66.jpg?v=1733882565",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68173"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2759",
+ "handle": "faux-leaf-squares-fls-2759",
+ "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-2759-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712027",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2759"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72159",
+ "handle": "st-silken-durable-vinyl-dur-72159",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72159-sample-clean.jpg?v=1774484617",
+ "tags": [
+ "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",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72159"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2890_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2890_8-jpg",
+ "title": "Grove - Sienna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2890_8.jpg?v=1762296163",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dark Brown",
+ "Grove",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2890_8-jpg"
+ },
+ {
+ "sku": "eur-80209-ncw4186-designer-wallcoverings-los-angeles",
+ "handle": "eur-80209-ncw4186-designer-wallcoverings-los-angeles",
+ "title": "Khitan 06 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499959347.jpg?v=1775522768",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "CATHAY",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Gold",
+ "Grandmillennial",
+ "Khitan",
+ "Light Blue",
+ "Living Room",
+ "Luxe",
+ "NCW4186",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Pale Blue",
+ "Paper",
+ "Regencycore",
+ "Sophisticated",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80209-ncw4186-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010370",
+ "handle": "hollywood-contemporary-coast-xhw-2010370",
+ "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/XHW-2010370-sample-clean.jpg?v=1774482946",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Modern",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "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-2010370"
+ },
+ {
+ "sku": "zoe-ocean-coco-texture-wallpaper-cca-83295",
+ "handle": "zoe-ocean-coco-texture-wallpaper-cca-83295",
+ "title": "Zoe Ocean Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/00fa2eec64b085d5ce63404ea3ec9e4d.jpg?v=1572309984",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Gray",
+ "LA Walls",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-ocean-coco-texture-wallpaper-cca-83295"
+ },
+ {
+ "sku": "groveland-vertical-durable-walls-xwt-53422",
+ "handle": "groveland-vertical-durable-walls-xwt-53422",
+ "title": "Groveland Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53422-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715078",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Dot",
+ "Geometric",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53422"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5110-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5110-jpg",
+ "title": "Grain - Poplar | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5110.jpg?v=1762295874",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Grain",
+ "Gray",
+ "Light Gray",
+ "Poplar",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5110-jpg"
+ },
+ {
+ "sku": "dwkk-129715",
+ "handle": "dwkk-129715",
+ "title": "W3917-5 Blue | Kravet Design | Ronald Redding Traveler |Modern Animal Skins Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3917_5_3c3052bb-8819-4d4c-8b1a-54f2654472bc.jpg?v=1753322420",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Animal Skin",
+ "Animal Skins",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Biophilic",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Giraffe",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Non-Woven",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Pattern",
+ "Print",
+ "Ronald Redding Traveler",
+ "Seafoam",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3917-5",
+ "W3917.5.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129715"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9441-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9441-jpg",
+ "title": "Maya - Bittersweet | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9441.jpg?v=1762302189",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Bittersweet",
+ "Brown",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9441-jpg"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72096",
+ "handle": "rhone-durable-vinyl-dur-72096",
+ "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-72096-sample-clean.jpg?v=1774484383",
+ "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",
+ "Off-white",
+ "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-72096"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72450",
+ "handle": "via-del-marnie-durable-vinyl-dur-72450",
+ "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-72450-sample-clean.jpg?v=1774485625",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "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-72450"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66538",
+ "handle": "tigressa-bargea-wallpaper-xb3-66538",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/235479ae8aae1ec6426f4cc0b2654920.jpg?v=1775130173",
+ "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",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66538"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48223",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48223",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48223-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730919",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48223"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5002-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5002-jpg",
+ "title": "Grain - Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5002.jpg?v=1762295235",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain",
+ "Oak",
+ "RAMPART®",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5002-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+ "title": "Glasgow - Copper | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5383.jpg?v=1762296706",
+ "tags": [
+ "100% Vinyl",
+ "abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Contract",
+ "Copper",
+ "geometric",
+ "Glasgow",
+ "Gray",
+ "Metallic",
+ "Orange",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5383-jpg"
+ },
+ {
+ "sku": "madison-s-raked-texture-vinyl-xmm-44261",
+ "handle": "madison-s-raked-texture-vinyl-xmm-44261",
+ "title": "Madison's Raked Texture Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44261-sample-madison-s-raked-texture-vinyl-hollywood-wallcoverings.jpg?v=1775723220",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 35.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/madison-s-raked-texture-vinyl-xmm-44261"
+ },
+ {
+ "sku": "whisper-purple-scroll-texture-wallpaper-wallpaper-cca-82890",
+ "handle": "whisper-purple-scroll-texture-wallpaper-wallpaper-cca-82890",
+ "title": "Whisper Purple Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/33afe3763b0fa0f1ef9673393e493a5d.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-purple-scroll-texture-wallpaper-wallpaper-cca-82890"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72102",
+ "handle": "gironde-durable-vinyl-dur-72102",
+ "title": "Gironde Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72102-sample-clean.jpg?v=1774484402",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Green",
+ "Living Room",
+ "Minimalist",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72102"
+ },
+ {
+ "sku": "ornament-border-black-white-metallic-wallcovering-versace",
+ "handle": "ornament-border-black-white-metallic-wallcovering-versace",
+ "title": "Ornament Border Black White Metallic Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/802549e6a4359c3d4efa81dc1571182b.jpg?v=1773706362",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Arabesque",
+ "Architectural",
+ "Bedroom",
+ "Black White Metallic",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Dark Brown",
+ "Dark Gray",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Ornament Border",
+ "Ornament Border Black White Metallic Wallcovering",
+ "Paper",
+ "Paste the wall",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ornament-border-black-white-metallic-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp9505-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9505-jpg",
+ "title": "SP9505 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9504.jpg?v=1733872420",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp9505-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5103-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5103-jpg",
+ "title": "Grain - White Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5103.jpg?v=1762295625",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White Oak",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5103-jpg"
+ },
+ {
+ "sku": "biscay-bay-tight-hickory-wood-grain-wbs-39621",
+ "handle": "biscay-bay-tight-hickory-wood-grain-wbs-39621",
+ "title": "Biscay Bay Tight Hickory Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39621-sample-biscay-bay-tight-hickory-wood-grain-hollywood-wallcoverings.jpg?v=1775705574",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Bricks and Stones",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed Texture",
+ "Estimated Type: Wood Grain",
+ "Faux",
+ "Faux Wood",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Walnut",
+ "White",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-tight-hickory-wood-grain-wbs-39621"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2867",
+ "handle": "peter-s-plastered-walls-ppw-2867",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2867-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729039",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Olive",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2867"
+ },
+ {
+ "sku": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+ "handle": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+ "title": "Natalia Moss Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/73cc07073de8f7b9b4e324dff0ba2d94.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826"
+ },
+ {
+ "sku": "beckett-beige-scroll-texture-wallpaper-cca-82960",
+ "handle": "beckett-beige-scroll-texture-wallpaper-cca-82960",
+ "title": "Beckett Beige Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/baa2cc993b1382bd2d2727827a130e73.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Marble",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/beckett-beige-scroll-texture-wallpaper-cca-82960"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5078-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5078-jpg",
+ "title": "Acute - Tungsten | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5078.jpg?v=1762283588",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Geometric",
+ "Paper",
+ "Tungsten",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5078-jpg"
+ },
+ {
+ "sku": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+ "handle": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+ "title": "Castine Blue Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/673a2be4549fccc187a7e0b5ae98cf22.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/castine-blue-tuscan-stripe-wallpaper-cca-83212"
+ },
+ {
+ "sku": "wells-beige-candy-stripe-wallpaper-cca-83227",
+ "handle": "wells-beige-candy-stripe-wallpaper-cca-83227",
+ "title": "Wells Beige Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a5379dcbf4eb02952f4f4f3727cbf558.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-beige-candy-stripe-wallpaper-cca-83227"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66611",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66611",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6760bf7609c989f421c26c0dc02778a8.jpg?v=1775133005",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Blue",
+ "Living Room",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66611"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66470",
+ "handle": "mr-diorio-wallpaper-xa8-66470",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b7b9831432dbb3b233e2c16fb5a741f7.jpg?v=1775124973",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "I’ll generate the one-word",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "real color names as requested.",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Walnut",
+ "White"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66470"
+ },
+ {
+ "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": "vernon-durable-walls-xwp-52691",
+ "handle": "vernon-durable-walls-xwp-52691",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52691-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735763",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52691"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72057",
+ "handle": "saint-helene-durable-vinyl-dur-72057",
+ "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-72057-sample-clean.jpg?v=1774484187",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "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-72057"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "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-47640-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711022",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Terra Cotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47640"
+ },
+ {
+ "sku": "contempo-diamond-vinyl-dwx-58019",
+ "handle": "contempo-diamond-vinyl-dwx-58019",
+ "title": "Contempo Diamond Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58019-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709058",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Diamond",
+ "Durable",
+ "Geometric",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/contempo-diamond-vinyl-dwx-58019"
+ },
+ {
+ "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+ "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+ "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47707-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712695",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47707"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47879",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47879",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47879-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722066",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47879"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-569-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-569-jpg",
+ "title": "Metamorphosis - Rust | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-569.jpg?v=1762300837",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Metamorphosis",
+ "Olefin",
+ "Tan",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-569-jpg"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66528",
+ "handle": "tigressa-bargea-wallpaper-xb3-66528",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/38f84202d2ceba1d800df8d8af1adb0e.jpg?v=1775129489",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "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-66528"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5057-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5057-jpg",
+ "title": "Forge - Tenorite | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5057.jpg?v=1762294985",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "RAMPART®",
+ "Tenorite",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5057-jpg"
+ },
+ {
+ "sku": "dwkk-127660",
+ "handle": "dwkk-127660",
+ "title": "Chinchilla - Antique 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/W0054_01_CAC_fbe3ce1b-3cbe-423b-ac06-1b80625bc1cc.jpg?v=1726037693",
+ "tags": [
+ "20.875In",
+ "Antique",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Chinchilla",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Light Beige",
+ "Living Room",
+ "Print",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "Traditional",
+ "Transitional",
+ "United Kingdom",
+ "Vinyl",
+ "W0054/01.Cac.0",
+ "Wallcovering",
+ "Warm",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%",
+ "Yellow"
+ ],
+ "max_price": 197.65,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127660"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10355-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10355-jpg",
+ "title": "Ambient Design - AD10355 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10354.jpg?v=1733874078",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10355-jpg"
+ },
+ {
+ "sku": "dwkk-115500",
+ "handle": "dwkk-115500",
+ "title": "Regent - Light Oak | Kravet Couture | Andrew Martin Engineer | Novelty Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10013_6_27874d63-ad69-4c90-b9a8-dbf73f05aa3f.jpg?v=1753123192",
+ "tags": [
+ "26.5In",
+ "AI-Analyzed-v2",
+ "Amw10013.6.0",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Brown",
+ "display_variant",
+ "Farmhouse",
+ "Hallway",
+ "India",
+ "Kravet",
+ "Kravet Couture",
+ "Light Oak",
+ "Living Room",
+ "Novelty",
+ "Paper - 100%",
+ "Print",
+ "Regent",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-115500"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47823",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47823",
+ "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-47823-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719452",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Ivory",
+ "Living Room",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47823"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vr004-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vr004-jpg",
+ "title": "VR004 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_vct-9137.jpg?v=1733872027",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Lattice",
+ "Purple",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vr004-jpg"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47742",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47742",
+ "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-47742-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714901",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47742"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sdy-3346_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sdy-3346_8-jpg",
+ "title": "Sadeya - Iris | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sdy-3346_8.jpg?v=1762305469",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Iris",
+ "Sadeya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sdy-3346_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10375-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10375-jpg",
+ "title": "Armor Paint - AR10375 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10374.jpg?v=1733873844",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Brown",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10375-jpg"
+ },
+ {
+ "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": "ashbourne-type-ii-vinyl-wallcovering-xjg-47155",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47155",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47155-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775701152",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47155"
+ },
+ {
+ "sku": "allesandra-embossed-vinyl-wallpaper-type-ii-15",
+ "handle": "allesandra-embossed-vinyl-wallpaper-type-ii-15",
+ "title": "Allesandra Embossed Vinyl - Type II | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xvd-73056-allesandra-embossed-vinyl-type-ii-hollywood.jpg?v=1775698089",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Russet Brown",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 49.89,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/allesandra-embossed-vinyl-wallpaper-type-ii-15"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10377-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10377-jpg",
+ "title": "Armor Paint - AR10377 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10376.jpg?v=1733873840",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Single Dominant Background Color Word",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10377-jpg"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47735",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47735",
+ "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-47735-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716416",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Harrison Type 2 Vinyl",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47735"
+ },
+ {
+ "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48544",
+ "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48544",
+ "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-48544-sample-twickenham-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735498",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Pale Grey",
+ "Serene",
+ "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-48544"
+ },
+ {
+ "sku": "zoe-snow-coco-damask-wallpaper-cca-83259",
+ "handle": "zoe-snow-coco-damask-wallpaper-cca-83259",
+ "title": "Zoe Snow Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d74b03b9c132a929a1e789e759cde90a.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Art Nouveau",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-snow-coco-damask-wallpaper-cca-83259"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st11391-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st11391-jpg",
+ "title": "ST11391 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11387.jpg?v=1733872120",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11391-jpg"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66463",
+ "handle": "mr-diorio-wallpaper-xa8-66463",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a45a044830015109e2f7ce88a205295.jpg?v=1775124140",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Entryway",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Non-woven",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66463"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ril-6371-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ril-6371-jpg",
+ "title": "Riley - Onyx | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6371.jpg?v=1762304564",
+ "tags": [
+ "27% Polyester",
+ "73% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Polka Dot",
+ "Riley",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ril-6371-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_turn-tun-6296-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_turn-tun-6296-jpg",
+ "title": "Turn - Fawn | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/turn-tun-6296.jpg?v=1762311487",
+ "tags": [
+ "24% Nylon",
+ "76% Polyester",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Polyester",
+ "Textured",
+ "Turn",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_turn-tun-6296-jpg"
+ },
+ {
+ "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": "peter-s-plastered-walls-ppw-2886",
+ "handle": "peter-s-plastered-walls-ppw-2886",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2886-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729101",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2886"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10421m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10421m-jpg",
+ "title": "ST10421M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10420m.jpg?v=1733872148",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10421m-jpg"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72154",
+ "handle": "cote-marine-durable-vinyl-dur-72154",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72154-sample-clean.jpg?v=1774484591",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "lattice",
+ "Light Beige",
+ "Living Room",
+ "Rustic",
+ "textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72154"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47761",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47761",
+ "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-47761-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715623",
+ "tags": [
+ "Faux Wood",
+ "Halewood Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47761"
+ },
+ {
+ "sku": "oxford-white-brick-texture-wallpaper-cca-82958",
+ "handle": "oxford-white-brick-texture-wallpaper-cca-82958",
+ "title": "Oxford White Brick Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c2e83ede172b80f14dfdbdadba8c42f8.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Expanded Vinyl",
+ "Farmhouse",
+ "Faux",
+ "Faux Effects",
+ "Gray",
+ "Industrial",
+ "LA Walls",
+ "Masculine",
+ "Peelable",
+ "Series: Brewster",
+ "Textured",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-white-brick-texture-wallpaper-cca-82958"
+ },
+ {
+ "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"
+ },
+ {
+ "sku": "yoni-grey-dancing-stars-wallpaper-cca-83020",
+ "handle": "yoni-grey-dancing-stars-wallpaper-cca-83020",
+ "title": "Yoni Grey Dancing Stars Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab5541d7e71438e50c2f3d8f87e42ab7.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Children",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stars",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yoni-grey-dancing-stars-wallpaper-cca-83020"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52391",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52391",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52391-sample-prince-vertical-emboss-durable-hollywood-wallcoverings.jpg?v=1775729391",
+ "tags": [
+ "74%-100% post-consumer (Eco-fi polyester)",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Embossed",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Polyester",
+ "remaining fiber is pre-consumer (polyester)",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52391"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72386",
+ "handle": "vaticano-durable-vinyl-dur-72386",
+ "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-72386-sample-clean.jpg?v=1774485314",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Pale Grey",
+ "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-72386"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34129",
+ "handle": "fukaura-durable-vinyl-xrm-34129",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0d48636ad1fa917d35a51fadb304c5de_eaa18bda-ddbe-40a5-80f0-3aa3e802c501.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Commercial and Residential - Cleanable",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fukaura-durable-vinyl-xrm-34129"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2764",
+ "handle": "faux-leaf-squares-fls-2764",
+ "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-2764-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712042",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Off-white",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2764"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9405-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9405-jpg",
+ "title": "ST9405 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9404.jpg?v=1733872279",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Gray",
+ "Minimalist",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9405-jpg"
+ },
+ {
+ "sku": "rob-s-folk-art-animals-scr-8165",
+ "handle": "rob-s-folk-art-animals-scr-8165",
+ "title": "Rob's Folk Art Animals",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5dc6350ff8222184486def0932ead021_e3f6b2c7-1d37-46dd-950a-b9ffaca36171.jpg?v=1572309108",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Deer",
+ "Designer Wallcoverings",
+ "Dog",
+ "Paper",
+ "Red",
+ "Red on Off-white",
+ "Rob's Folk Art Animals",
+ "Rooster",
+ "Screen Print",
+ "Toile",
+ "Traditional",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 193.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rob-s-folk-art-animals-scr-8165"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48168",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48168",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48168-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728433",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Minimalist",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Paper",
+ "Sage",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48168"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72068",
+ "handle": "la-roche-durable-vinyl-dur-72068",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72068-sample-clean.jpg?v=1774484252",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Light Taupe",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72068"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5354-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5354-jpg",
+ "title": "Ashlar - Flint | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5354.jpg?v=1762287274",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Flint",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5354-jpg"
+ },
+ {
+ "sku": "robertocavalliwallpaper_dwrc18026-jpg",
+ "handle": "robertocavalliwallpaper_dwrc18026-jpg",
+ "title": "Roberto Cavalli Wallcovering",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/RobertoCavalliWallpaper_dwrc18026.jpg?v=1587153861",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "European",
+ "Fauna",
+ "Imported",
+ "Italian",
+ "Leopard",
+ "Roberto Cavalli Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Volume 7",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc18026-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9493-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9493-jpg",
+ "title": "Lune - Noir | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9493.jpg?v=1762299398",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Lune",
+ "Noir",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9493-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": "foster-grey-linen-stucco-wallpaper-cca-82955",
+ "handle": "foster-grey-linen-stucco-wallpaper-cca-82955",
+ "title": "Foster Grey Linen Stucco Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/111b56c0e233d418d8e209f44dd0a9a7.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Brown",
+ "Linen",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Solid",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/foster-grey-linen-stucco-wallpaper-cca-82955"
+ },
+ {
+ "sku": "hollywood-modern-wood-xhw-2010202",
+ "handle": "hollywood-modern-wood-xhw-2010202",
+ "title": "Hollywood Modern Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/intarsia-craft_3b7f3c32-e1f1-487e-90e4-89ebf95a4cbf.jpg?v=1777481469",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Modern Wood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 50.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010202"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47775",
+ "handle": "halifax-specialty-wallcovering-xlk-47775",
+ "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-47775-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715747",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Pale Gold",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47775"
+ },
+ {
+ "sku": "dwkk-129710",
+ "handle": "dwkk-129710",
+ "title": "Kravet Design - W3916-16 Beige Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3916_16_e7893dfe-86dd-458b-8a72-bcb83ecf2aba.jpg?v=1753322429",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Paper",
+ "Pattern",
+ "Plaid",
+ "Plaid / Check",
+ "Print",
+ "Ronald Redding Traveler",
+ "Rustic Charm",
+ "Serene",
+ "Tartan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "United States",
+ "Vinyl",
+ "W3916-16",
+ "W3916.16.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129710"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_sm8007-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm8007-jpg",
+ "title": "SM8007 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm8006.jpg?v=1733872547",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8007-jpg"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+ "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-52682-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726398",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52682"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913",
+ "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-52913-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734460",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Gray",
+ "Greige",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913"
+ },
+ {
+ "sku": "glyph-by-innovations-usa-dwc-glyph-4",
+ "handle": "glyph-by-innovations-usa-dwc-glyph-4",
+ "title": "Glyph | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-4.jpg?v=1736199457",
+ "tags": [
+ "Architectural",
+ "ASTM E84",
+ "Blue",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glyph-4",
+ "Gray",
+ "Innovations USA",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 3.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-4"
+ },
+ {
+ "sku": "montpelier-wallpaper-xp4-68080",
+ "handle": "montpelier-wallpaper-xp4-68080",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96bcfd7423ded8f9d037f66d04b25c17.jpg?v=1733882422",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Montpelier",
+ "Organic",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68080"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-220_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-220_8-jpg",
+ "title": "WonderWood® - Black Ebony, Qtd | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WWDF-220f.jpg?v=1762312743",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Black",
+ "Black Ebony Qtd",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Natural",
+ "Reconstituted",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-220_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st11350m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st11350m-jpg",
+ "title": "ST11350M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10429m.jpg?v=1733872131",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11350m-jpg"
+ },
+ {
+ "sku": "hollywood-antique-damask-xhw-2010218",
+ "handle": "hollywood-antique-damask-xhw-2010218",
+ "title": "Hollywood Antique Damask | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/luca-canvas_87c8db7b-c7c5-468a-9ef7-f0f0f52327b7.jpg?v=1777481269",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Antique",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Damask",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Antique Damask",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Rustic",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-antique-damask-xhw-2010218"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwp-52599",
+ "handle": "vanderbilt-durable-walls-xwp-52599",
+ "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-serrano.jpg?v=1777480648",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mahogany",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwp-52599"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66540",
+ "handle": "tigressa-bargea-wallpaper-xb3-66540",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1995c87f908c6e35e7720833c23732ca.jpg?v=1775130300",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Purple",
+ "Geometric",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Plum",
+ "Spa",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66540"
+ },
+ {
+ "sku": "sharon-s-striated-striped-vinyl-xss-44375",
+ "handle": "sharon-s-striated-striped-vinyl-xss-44375",
+ "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-44375-sample-sharon-s-striated-striped-vinyl-hollywood-wallcoverings.jpg?v=1775732981",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sharon-s-striated-striped-vinyl-xss-44375"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66507",
+ "handle": "cody-couture-wallpaper-xb2-66507",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f8e5fc427d7389a92a7f2a51b0759c4d.jpg?v=1775127703",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66507"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52368",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52368",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52368-sample-pearl-bay-vertical-faux-durable-hollywood-wallcoverings.jpg?v=1775728998",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Russet Brown",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52368"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53068",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53068",
+ "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-53068-sample-clean.jpg?v=1774481813",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53068"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..c433933
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,865 @@
+{
+ "name": "vinylwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "vinylwallpaper",
+ "version": "0.1.0",
+ "dependencies": {
+ "dotenv": "^17.4.2",
+ "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/dotenv": {
+ "version": "17.4.2",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
+ "integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "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..9c329a8
--- /dev/null
+++ b/package.json
@@ -0,0 +1,14 @@
+{
+ "name": "vinylwallpaper",
+ "version": "0.1.0",
+ "description": "VINYL WALLPAPER — DW family vertical",
+ "main": "server.js",
+ "scripts": {
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "dotenv": "^17.4.2",
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..3a85c28
--- /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">V</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..11eb8ae
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..2e000f6
--- /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>VINYL WALLPAPER — Built to last</title>
+<meta name="description" content="VINYL WALLPAPER · Built to last. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0c1218">
+<link rel="canonical" href="https://vinylwallpaper.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: #0c1218;
+ --paper: #ffffff;
+ --muted: #8a96a4;
+ --line: rgba(255,255,255,0.10);
+ --accent: #80a8c8;
+ --bg-soft: #16202a;
+ --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('vinyl_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">Type II Spec</div>
+ <div class="center-mark">VINYL WALLPAPER<span class="tm">.</span><span class="sub">Built to last</span></div>
+ <div class="meta-line">Vinyl · Type II · Class A · Scrubbable<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">Vinyl · Type II · Class A · Scrubbable</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">VINYL WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated vinyl · type ii · class a · scrubbable 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">vinylwallpaper</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>vinylwallpaper.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 = "vinylwallpaper";
+ 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('vinyl_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('vinyl_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('vinyl_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..0039a87
--- /dev/null
+++ b/server.js
@@ -0,0 +1,107 @@
+/**
+ * VINYL WALLPAPER — DW family vertical
+ * Curated slice from live designerwallcoverings.com Shopify catalog.
+ */
+try { require('dotenv').config(); } catch (e) {}
+const express = require('express');
+const path = require('path');
+const fs = require('fs');
+
+const PORT = process.env.PORT || 9863;
+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();
+app.use(express.json({ limit: "256kb" }));
+const cfg = require('../_shared/site-config').load(__dirname);
+require("./_universal-contact")(app, cfg.contact);
+require("./_universal-auth")(app, cfg.auth);
+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 = ["hospitality","healthcare","natural","abstract","botanical","commercial"];
+ 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://vinylwallpaper.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://vinylwallpaper.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(`vinylwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..baeefac
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,20 @@
+{
+ "slug": "vinylwallpaper",
+ "siteName": "Vinyl Wallpaper",
+ "domain": "vinylwallpaper.com",
+ "nicheKeyword": "vinyl",
+ "tagline": "Type II commercial, scrubbable.",
+ "heroHeadline": "VINYL WALLPAPER",
+ "heroSub": "Type II commercial, scrubbable.",
+ "theme": {
+ "accent": "#5a6a8a"
+ },
+ "rails": [
+ "type-ii",
+ "commercial",
+ "hospitality",
+ "healthcare",
+ "contract",
+ "wipe-clean"
+ ]
+}
(oldest)
·
back to Vinylwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 74659a6 →