[object Object]

← back to Ffepurchasing

initial scaffold (gitify-all 2026-05-06)

404c252dc37706d6191c374c0d2fb7bbcc3947d9 · 2026-05-06 10:25:40 -0700 · Steve Abrams

Files touched

Diff

commit 404c252dc37706d6191c374c0d2fb7bbcc3947d9
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed May 6 10:25:40 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    | 22518 ++++++++++++++++++++++++++++++++++++++++++++++++
 package-lock.json     |   852 ++
 package.json          |    13 +
 public/favicon.svg    |     4 +
 public/hero-bg.jpg    |   Bin 0 -> 372450 bytes
 public/index.html     |   613 ++
 server.js             |   110 +
 site.config.json      |    21 +
 11 files changed, 24439 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=>({'<':'&lt;','>':'&gt;','&':'&amp;','"':'&quot;',"'":'&#39;'}[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..d17e2d5
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,22518 @@
+[
+  {
+    "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": "chesterfield-acoustical-wallcovering-xjz-47387",
+    "handle": "chesterfield-acoustical-wallcovering-xjz-47387",
+    "title": "Chesterfield  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/858bf2aef3f6d89b6cbecbfa5bb2f0f0.jpg?v=1572310051",
+    "tags": [
+      "100% recycled polyester",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Fabric-backed Vinyl",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Polyester",
+      "Serene",
+      "Smoke Gray",
+      "Stripe",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47387"
+  },
+  {
+    "sku": "dwss-72702",
+    "handle": "dwss-72702",
+    "title": "Anton honey sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/814-22_image1_9cb187c9-41b3-443f-93d2-122eeacb0578.jpg?v=1646105124",
+    "tags": [
+      "Anton",
+      "Anton honey  sample",
+      "Architectural",
+      "Art Nouveau",
+      "Arts & Crafts",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Floral",
+      "P814-22",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Tan",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72702"
+  },
+  {
+    "sku": "shubert-faux-rice-paper-durable-walls-xwk-52495",
+    "handle": "shubert-faux-rice-paper-durable-walls-xwk-52495",
+    "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/XWK-52495-sample-clean.jpg?v=1774481373",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Teal",
+      "Living Room",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52495"
+  },
+  {
+    "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": "dwkk-137695",
+    "handle": "dwkk-137695",
+    "title": "Ferns - Teal By G P & J Baker | Signature Ii Wallpapers |Botanical & Floral  Wallcovering Print",
+    "vendor": "GP & J Baker",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45044_12_10468b62-c33f-4d82-b001-f3be48a5a244.jpg?v=1753303637",
+    "tags": [
+      "20.488In",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Botanical & Floral",
+      "Bw45044.12.0",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "Dusty Rose",
+      "Ferns",
+      "G P & J Baker",
+      "Golden Brown",
+      "GP & J Baker",
+      "Green",
+      "Hallway",
+      "Leaf",
+      "Living Room",
+      "Non Woven - 100%",
+      "Organic",
+      "Paper",
+      "Pattern",
+      "Pink",
+      "Print",
+      "Seafoam Green",
+      "Signature Ii Wallpapers",
+      "Snail",
+      "Teal",
+      "Traditional",
+      "United Kingdom",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-137695"
+  },
+  {
+    "sku": "dwkk-127698",
+    "handle": "dwkk-127698",
+    "title": "Rafi - Parchment  By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_06_CAC_7b22b5fe-928c-4943-a0df-c19d41021c0e.jpg?v=1726037788",
+    "tags": [
+      "20.875In",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Hallway",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Paper",
+      "Parchment",
+      "Print",
+      "Rafi",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "Transitional",
+      "United Kingdom",
+      "W0060/06.Cac.0",
+      "Wallcovering",
+      "White",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127698"
+  },
+  {
+    "sku": "dwss-72585",
+    "handle": "dwss-72585",
+    "title": "Aralia green 270x180 sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/640-04FS_image1_f1e68809-c44c-4c88-b36b-7994cc1e46e2.jpg?v=1646104739",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Aralia",
+      "Aralia green 270x180  sample",
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Green",
+      "GREEN 270X180",
+      "Light Green",
+      "P640-04FS",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72585"
+  },
+  {
+    "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": "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": "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": "canal-stripe-texture-durable-walls-xwd-52117",
+    "handle": "canal-stripe-texture-durable-walls-xwd-52117",
+    "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-52117-sample-clean.jpg?v=1774481067",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "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",
+      "Denim Blue",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Gray",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Blue",
+      "Linear",
+      "Living Room",
+      "Minimalist",
+      "Pattern",
+      "Serene",
+      "Slate Blue",
+      "Steel Blue",
+      "Stripe",
+      "Striped",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 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-52117"
+  },
+  {
+    "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48393",
+    "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48393",
+    "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XPY-48393-sample-clean.jpg?v=1774480473",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Skelton Type 2 Vinyl  Wallcovering",
+      "Solid",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48393"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar9400-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar9400-jpg",
+    "title": "Armor Paint - AR9400 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_am11390.jpg?v=1733873914",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Khaki",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9400-jpg"
+  },
+  {
+    "sku": "dwkk-127823",
+    "handle": "dwkk-127823",
+    "title": "Tonquin Wp - Chartreuse Yellow By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Botanical & Floral Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0134_02_CAC_d743926d-3d95-487b-9bba-a0e6f1c8e751.jpg?v=1753321581",
+    "tags": [
+      "20.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Chartreuse",
+      "Chinoiserie",
+      "Chintz",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Cream",
+      "Dark Green",
+      "Dining Room",
+      "display_variant",
+      "English Country",
+      "Floral",
+      "Gold",
+      "Grandmillennial",
+      "Living Room",
+      "Mustard Yellow",
+      "Non Woven - 100%",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Teal",
+      "Tonquin Wp",
+      "Traditional",
+      "United Kingdom",
+      "W0134/02.Cac.0",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127823"
+  },
+  {
+    "sku": "splice-by-innovations-usa-dwc-splice-6",
+    "handle": "splice-by-innovations-usa-dwc-splice-6",
+    "title": "Splice | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Splice-6.jpg?v=1736198829",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Almond",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Innovations USA",
+      "Lemon",
+      "Light Gray",
+      "Non-woven",
+      "Splice",
+      "Splice-6",
+      "Stripe",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/splice-by-innovations-usa-dwc-splice-6"
+  },
+  {
+    "sku": "bleinheim-lanvino-wallpaper-xe7-66831",
+    "handle": "bleinheim-lanvino-wallpaper-xe7-66831",
+    "title": "Bleinheim Lanvino Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9967d167de18a287f2b1080b81a1954a.jpg?v=1572309567",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bleinheim Lanvino Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Light Beige",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textured",
+      "Traditional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 37.27,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66831"
+  },
+  {
+    "sku": "ncw4305-03",
+    "handle": "ncw4305-03",
+    "title": "Les Rêves Pampelonne Beige - 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_4497262575667.jpg?v=1775520335",
+    "tags": [
+      "Abstract",
+      "Almond",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "NCW4305-03",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4305-03"
+  },
+  {
+    "sku": "dwkk-127821",
+    "handle": "dwkk-127821",
+    "title": "Sapphire Garden Wp - Sapphire Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0133_03_CAC_a9a8aad3-b13d-4286-a969-f5eae1686fb6.jpg?v=1753321584",
+    "tags": [
+      "20.5In",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Charcoal Grey",
+      "Chinoiserie",
+      "Chinoiserie Panel",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Cornflower Blue",
+      "Cottagecore",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Golden Yellow",
+      "Grandmillennial",
+      "Gray",
+      "Green",
+      "Living Room",
+      "Monkey",
+      "Non Woven - 100%",
+      "Olive Green",
+      "Orange",
+      "Paper",
+      "Pattern",
+      "Peach",
+      "Print",
+      "Sapphire Garden Wp",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Traditional",
+      "United Kingdom",
+      "W0133/03.Cac.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127821"
+  },
+  {
+    "sku": "corsham-acoustical-wallcovering-xku-47548",
+    "handle": "corsham-acoustical-wallcovering-xku-47548",
+    "title": "Corsham  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eb9313b68f2b5fcdb49a0933d1321f42.jpg?v=1572310057",
+    "tags": [
+      "100% recycled polyester",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Fabric-backed Vinyl",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Living Room",
+      "Organic Modern",
+      "Polyester",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47548"
+  },
+  {
+    "sku": "ncw4395-04",
+    "handle": "ncw4395-04",
+    "title": "Ashdown Kingsley Silver/Ivory - Neutral Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266901043.jpg?v=1775520865",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4395-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4395-04"
+  },
+  {
+    "sku": "eur-80442-ncw4494-designer-wallcoverings-los-angeles",
+    "handle": "eur-80442-ncw4494-designer-wallcoverings-los-angeles",
+    "title": "Meridor Stripe 02 - 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_7513508151347.jpg?v=1775524114",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Green",
+      "Leaf",
+      "Light Blue",
+      "Meridor Stripe",
+      "NCW4494",
+      "NCW4494-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Organic Modern",
+      "Pale Beige",
+      "Paper",
+      "Seafoam Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Stripe",
+      "Traditional",
+      "Tropical",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80442-ncw4494-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "cotes-d-amore-durable-vinyl-dur-72144",
+    "handle": "cotes-d-amore-durable-vinyl-dur-72144",
+    "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72144-sample-clean.jpg?v=1774484550",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Taupe",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Gray",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72144"
+  },
+  {
+    "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52346",
+    "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52346",
+    "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-sunshine.jpg?v=1777480503",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Basketweave",
+      "Bedroom",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Faux",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Golden Yellow",
+      "Grasscloth",
+      "Grasscloth Look",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Natural",
+      "Natural Texture",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 63.57,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52346"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2617",
+    "handle": "pleated-perfect-paradise-ppp-2617",
+    "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-2617-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729150",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Embossed",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Moss",
+      "Off-White",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2617"
+  },
+  {
+    "sku": "amity-olive-bleeding-heart-texture-wallpaper-cca-83288",
+    "handle": "amity-olive-bleeding-heart-texture-wallpaper-cca-83288",
+    "title": "Amity Olive Bleeding Heart Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d03ef16a0a8102ecf8a9e74af2d334a8.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "LA Walls",
+      "Lightgray",
+      "Pale Green",
+      "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/amity-olive-bleeding-heart-texture-wallpaper-cca-83288"
+  },
+  {
+    "sku": "dwss-72540",
+    "handle": "dwss-72540",
+    "title": "Sten offwhite Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/583-01_image1_2f51e757-e301-4401-94fd-b980eecf4c33.jpg?v=1646104592",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Ivory",
+      "Minimalist",
+      "OFFWHITE",
+      "P583-01",
+      "Paper",
+      "Sandberg",
+      "Solid",
+      "Sten",
+      "Sten offwhite  Sample",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72540"
+  },
+  {
+    "sku": "tony-s-thick-embossed-vinyl-xtt-44472",
+    "handle": "tony-s-thick-embossed-vinyl-xtt-44472",
+    "title": "Tony's Thick Embossed Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xtt-44472-sample-tony-s-thick-embossed-vinyl-hollywood-wallcoverings.jpg?v=1775735340",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Textured",
+      "Tile",
+      "Tony's Thick Embossed Vinyl",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tony-s-thick-embossed-vinyl-xtt-44472"
+  },
+  {
+    "sku": "faux-glass-bead-wallpaper-110-deep-gold-fgb-110",
+    "handle": "faux-glass-bead-wallpaper-110-deep-gold-fgb-110",
+    "title": "Faux Glass Bead Wallpaper - 110 Deep Gold",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-110-sample-faux-glass-bead-wallpaper.jpg?v=1775711848",
+    "tags": [
+      "110 Deep Gold",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bling",
+      "Commercial",
+      "Fabric",
+      "Faux Finish",
+      "Glass Bead",
+      "Hollywood Wallcoverings",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 82.74,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-110-deep-gold-fgb-110"
+  },
+  {
+    "sku": "patoa-librato-wallpaper-xb7-66591",
+    "handle": "patoa-librato-wallpaper-xb7-66591",
+    "title": "Patoa Librato Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74378fab115542fcd8e134b98ba6ecd5.jpg?v=1775130578",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "cellulose",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Entryway",
+      "Grasscloth",
+      "Gray",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Natural Wallcovering",
+      "Office",
+      "Patoa Librato Wallcovering",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Solid/Textural",
+      "Striped",
+      "Textured",
+      "Transitional",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 52.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66591"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+    "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-rice.jpg?v=1777480781",
+    "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",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Texture",
+      "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": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53166"
+  },
+  {
+    "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48204",
+    "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48204",
+    "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-48204-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729871",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Chartreuse",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Pale Yellow",
+      "Ramsey Type 2 Vinyl  Wallcovering",
+      "Sage",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48204"
+  },
+  {
+    "sku": "benedict-canyon-sisal-hlw-73037",
+    "handle": "benedict-canyon-sisal-hlw-73037",
+    "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73037-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703758",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Natural Texture",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Sage Green",
+      "Sisal",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 51.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73037"
+  },
+  {
+    "sku": "art-de-la-table-gold-wallcovering-versace-3",
+    "handle": "art-de-la-table-gold-wallcovering-versace-3",
+    "title": "Art De La Table Gold Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/148d29b63d8f03c91bf9e5dcfe46c0e8.jpg?v=1773710528",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art De La Table",
+      "Art De La Table Gold Wallcovering",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Gold",
+      "Golden Brown",
+      "Golden Tan",
+      "Goldenrod",
+      "Grasscloth",
+      "Italian",
+      "Living Room",
+      "Luxe",
+      "Luxury",
+      "Needs-Image",
+      "Solid",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/art-de-la-table-gold-wallcovering-versace-3"
+  },
+  {
+    "sku": "barnes-blue-paisley-damask-wallpaper-cca-82910",
+    "handle": "barnes-blue-paisley-damask-wallpaper-cca-82910",
+    "title": "Barnes Blue Paisley Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8c5d60a5e3ea04c565f2b9aaf57b146.jpg?v=1572309961",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "dicontinued",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Masculine",
+      "Paisley",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barnes-blue-paisley-damask-wallpaper-cca-82910"
+  },
+  {
+    "sku": "nassau-contemporary-emboosed-walls-xwh-52330",
+    "handle": "nassau-contemporary-emboosed-walls-xwh-52330",
+    "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-windswept.jpg?v=1777480477",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52330"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br024-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br024-jpg",
+    "title": "BR024 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br023.jpg?v=1733873668",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Blue",
+      "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_br024-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+    "title": "Dasma - Aquamarine | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5049.jpg?v=1762292057",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Aquamarine",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Dasma",
+      "Grasscloth",
+      "Gray",
+      "Light Blue",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5049-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_fwd-101-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_fwd-101-jpg",
+    "title": "Flower - Quince | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwd-101.jpg?v=1762295019",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Digital Curated",
+      "Flower",
+      "Geometric",
+      "Gray",
+      "Light Gray",
+      "Quince",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fwd-101-jpg"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52941",
+    "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52941",
+    "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-52941-sample-clean.jpg?v=1774481759",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "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-52941"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10233-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10233-jpg",
+    "title": "SM10233 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10232.jpg?v=1733872493",
+    "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_sm10233-jpg"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66467",
+    "handle": "mr-diorio-wallpaper-xa8-66467",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b83a01426625ba59fcda32981b59d90a.jpg?v=1775124720",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Light Beige",
+      "Light Gray",
+      "Mr. Diorio Wallcovering",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textured",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66467"
+  },
+  {
+    "sku": "eur-80211-ncw4186-designer-wallcoverings-los-angeles",
+    "handle": "eur-80211-ncw4186-designer-wallcoverings-los-angeles",
+    "title": "Khitan 08 - 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_7513500024883.jpg?v=1775522777",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "CATHAY",
+      "Champagne",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Dining Room",
+      "Grandmillennial",
+      "Khitan",
+      "Living Room",
+      "Luxe",
+      "NCW4186",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paisley",
+      "Paper",
+      "Regencycore",
+      "Scroll",
+      "Sophisticated",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80211-ncw4186-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "gramercy-emerald",
+    "handle": "gramercy-emerald",
+    "title": "GRAMERCY Emerald",
+    "vendor": "Mind the Gap",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Class A Fire Rated",
+      "Commercial",
+      "Dark Green",
+      "Emerald Green",
+      "Geometric",
+      "Gold",
+      "GRAMERCY Emerald",
+      "Maximalist",
+      "Mind the Gap",
+      "Non-woven",
+      "Pattern",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gramercy-emerald"
+  },
+  {
+    "sku": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+    "handle": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+    "title": "Camila Silver Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bc6114cf3f8763c3a886d89ebab27e3.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "LA Walls",
+      "Light Blue",
+      "Metallic",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Takumi",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-silver-modern-damask-wallpaper-wallpaper-cca-82848"
+  },
+  {
+    "sku": "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": "eastport-ivory-arabelle-stripe-wallpaper-cca-83139",
+    "handle": "eastport-ivory-arabelle-stripe-wallpaper-cca-83139",
+    "title": "Eastport Ivory Arabelle Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a4e9b195b6a9640eccb1f3a8b7cce7a.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Embossed",
+      "Ivory",
+      "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/eastport-ivory-arabelle-stripe-wallpaper-cca-83139"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9488",
+    "handle": "chinese-fret-walls-cfw-9488",
+    "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-9488-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708059",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Elegant Vinyls Vol. 1",
+      "Fretwork",
+      "Geometric",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9488"
+  },
+  {
+    "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": "rivington-rice-paper-durable-vinyl-walls-xwj-52444",
+    "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52444",
+    "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-52444-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730748",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Golden Brown",
+      "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-52444"
+  },
+  {
+    "sku": "dry-erase-it-light-goose-grey-dry-erase-it-light-goose-grey",
+    "handle": "dry-erase-it-light-goose-grey-dry-erase-it-light-goose-grey",
+    "title": "Dry Erase It - Light Goose Grey | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dry-erase-it-light-goose-grey-sample-dry-erase-it-light-goose-grey-hollywood.jpg?v=1775710353",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dry Erase It",
+      "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-light-goose-grey-dry-erase-it-light-goose-grey"
+  },
+  {
+    "sku": "kennebunk-denim-textured-pinstripe-wallpaper-cca-83097",
+    "handle": "kennebunk-denim-textured-pinstripe-wallpaper-cca-83097",
+    "title": "Kennebunk Denim Textured Pinstripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2a2224b0f0bf7fa4402a5198d0344116.jpg?v=1572309968",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Denim",
+      "Discontinued",
+      "Easy Walls",
+      "Kennebunk Denim Textured Pinstripe Wallcovering",
+      "LA Walls",
+      "Light Blue",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kennebunk-denim-textured-pinstripe-wallpaper-cca-83097"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-424",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-424",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ecd526970fb97ba795f6c9ae587d76f7_e3e7dbdf-95d9-4439-a116-5a89699acb98.jpg?v=1745458287",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Light Brown",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 19.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-424"
+  },
+  {
+    "sku": "ncw4350-06",
+    "handle": "ncw4350-06",
+    "title": "Les Indiennes Les Indiennes Black/Gilver/Copper - Black Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263755315.jpg?v=1775520471",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Multi",
+      "NCW4350-06",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4350-06"
+  },
+  {
+    "sku": "lafayette-modern-embossed-durable-walls-xwf-52253",
+    "handle": "lafayette-modern-embossed-durable-walls-xwf-52253",
+    "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-52253-sample-clean.jpg?v=1774481134",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Dark Gray",
+      "Embossed",
+      "Embossed Texture",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Moody",
+      "Organic Modern",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52253"
+  },
+  {
+    "sku": "hainsville-faux-leather-durable-walls-xwt-53380",
+    "handle": "hainsville-faux-leather-durable-walls-xwt-53380",
+    "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-loire_e598bc96-7c73-476d-9336-b76ab1dd81d3.jpg?v=1777481524",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Faux Leather",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53380"
+  },
+  {
+    "sku": "hollywood-modern-wood-xhw-2010206",
+    "handle": "hollywood-modern-wood-xhw-2010206",
+    "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-tessellate_8d1a14da-5dcf-456f-a085-5dd463f1cf27.jpg?v=1777481266",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "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",
+      "Geometric",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Grain",
+      "Wood Look",
+      "Yellow"
+    ],
+    "max_price": 50.75,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010206"
+  },
+  {
+    "sku": "contempo-diamond-vinyl-dwx-58017",
+    "handle": "contempo-diamond-vinyl-dwx-58017",
+    "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-58017-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709051",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Blue Gray",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Diamond",
+      "Geometric",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Blue Gray",
+      "Modern",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/contempo-diamond-vinyl-dwx-58017"
+  },
+  {
+    "sku": "marketfield-faux-durable-walls-xwh-52327",
+    "handle": "marketfield-faux-durable-walls-xwh-52327",
+    "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-nautilus.jpg?v=1777480471",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Deep Teal",
+      "Faux",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Solid",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52327"
+  },
+  {
+    "sku": "ncw4353-03",
+    "handle": "ncw4353-03",
+    "title": "Nina Campbell Wallcoverings - 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_4497264574515.jpg?v=1775520562",
+    "tags": [
+      "Architectural",
+      "Art Nouveau",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gold",
+      "Multi",
+      "NCW4353-03",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4353-03"
+  },
+  {
+    "sku": "iksel-wall-panel-murals-at-designer-wallcoverings-iksel",
+    "handle": "iksel-wall-panel-murals-at-designer-wallcoverings-iksel",
+    "title": "IKSEL Wall Panel Murals at Designer s Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IKSEL-clean.jpg?v=1774482697",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Chinoiserie",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Coral",
+      "Cottagecore",
+      "Dining Room",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Living Room",
+      "Moss",
+      "Mural",
+      "Orange",
+      "Paper",
+      "Peach",
+      "Red",
+      "Sage Green",
+      "Serene",
+      "Smoke",
+      "Taupe",
+      "Teal",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/iksel-wall-panel-murals-at-designer-wallcoverings-iksel"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2887",
+    "handle": "peter-s-plastered-walls-ppw-2887",
+    "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-2887-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729104",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "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-2887"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+    "title": "Lyra - Smoke | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3368_8.jpg?v=1762299544",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Lyra",
+      "Smoke",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3368_8-jpg"
+  },
+  {
+    "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_ad9806-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad9806-jpg",
+    "title": "Ambient Design - AD9806 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9800.jpg?v=1733874129",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Ambient Design",
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Paper",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9806-jpg"
+  },
+  {
+    "sku": "dwss-72543",
+    "handle": "dwss-72543",
+    "title": "Sten light grey Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/583-11_image1_a1e4c6ba-d7f5-4575-a8c4-b6acaa06f7e8.jpg?v=1646104600",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "LIGHT GREY",
+      "P583-11",
+      "Paper",
+      "Sandberg",
+      "Sten",
+      "Sten light grey  Sample",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72543"
+  },
+  {
+    "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": "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": "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": "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": "verwood-type-ii-vinyl-wallcovering-xqr-48589",
+    "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48589",
+    "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-48589-sample-clean.jpg?v=1774480668",
+    "tags": [
+      "20 oz",
+      "41 Inch Width",
+      "41\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dining Room",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Gray",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Industrial",
+      "Living Room",
+      "Moody",
+      "Rustic",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Width: 41\"",
+      "Wood",
+      "Wood Look",
+      "Yellow"
+    ],
+    "max_price": 12.6,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48589"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2875",
+    "handle": "peter-s-plastered-walls-ppw-2875",
+    "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-2875-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729064",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "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-2875"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwh-52392",
+    "handle": "prince-vertical-emboss-durable-walls-xwh-52392",
+    "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-cosi.jpg?v=1777480565",
+    "tags": [
+      "74%-100% post-consumer (Eco-fi polyester)",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Polyester",
+      "remaining fiber is pre-consumer (polyester)",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52392"
+  },
+  {
+    "sku": "ncw4390-02",
+    "handle": "ncw4390-02",
+    "title": "Nina Campbell Wallcoverings - 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_4497265262643.jpg?v=1775520683",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "NCW4390-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Stripe",
+      "Teal",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4390-02"
+  },
+  {
+    "sku": "animal-alphabet-small-mural-by-retro-walls-rtr-37201",
+    "handle": "animal-alphabet-small-mural-by-retro-walls-rtr-37201",
+    "title": "Animal Alphabet Small Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/516f3b6711d92e1f8127425c9fb7a585_b2f33374-7e00-4f12-a9f7-cba18379bff9.jpg?v=1572309701",
+    "tags": [
+      "Animal/Insects",
+      "Animals",
+      "Ant",
+      "Architectural",
+      "Bear",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cow",
+      "Deer",
+      "Elephant",
+      "Fauna",
+      "Frog",
+      "Giraffe",
+      "Gray",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Horse",
+      "Iguana",
+      "Jaguar",
+      "Kangaroo",
+      "Lion",
+      "Monkey",
+      "Mural",
+      "Numbat",
+      "Ostrich",
+      "Paper",
+      "Pig",
+      "Quail",
+      "Rabbit",
+      "Sheep",
+      "Traditional Whimsy",
+      "Turtle",
+      "Unicorn",
+      "Vulture",
+      "Wallcovering",
+      "Whimsical",
+      "White",
+      "Wolf"
+    ],
+    "max_price": 84,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/animal-alphabet-small-mural-by-retro-walls-rtr-37201"
+  },
+  {
+    "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": "martin-s-metallic-grasscloth-vinyl-dwx-58171",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58171",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58171-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724297",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "Gray",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Striped",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58171"
+  },
+  {
+    "sku": "dwss-72582",
+    "handle": "dwss-72582",
+    "title": "Lene pink Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/639-04_image1_6a88d904-4888-4e1a-8edd-09d900ed7040.jpg?v=1646104730",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Lene",
+      "Lene pink  Sample",
+      "Light Blue",
+      "Light Pink",
+      "Light Yellow",
+      "P639-04",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72582"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72047",
+    "handle": "saint-helene-durable-vinyl-dur-72047",
+    "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-72047-sample-clean.jpg?v=1774484125",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Solid",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72047"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72300",
+    "handle": "la-voltere-durable-vinyl-dur-72300",
+    "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-72300-sample-clean.jpg?v=1774485101",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "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-72300"
+  },
+  {
+    "sku": "shubert-faux-rice-paper-durable-walls-xwk-52498",
+    "handle": "shubert-faux-rice-paper-durable-walls-xwk-52498",
+    "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/xwk-52498-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733199",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52498"
+  },
+  {
+    "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": "doral-faux-silk-durable-walls-xwc-53231",
+    "handle": "doral-faux-silk-durable-walls-xwc-53231",
+    "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53231-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710347",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Green",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53231"
+  },
+  {
+    "sku": "groveland-vertical-durable-walls-xwt-53426",
+    "handle": "groveland-vertical-durable-walls-xwt-53426",
+    "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-53426-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715093",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "LEED",
+      "Leed Walls",
+      "Light Green",
+      "Living Room",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53426"
+  },
+  {
+    "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": "vintage-alphabet-large-mural-by-retro-walls-rtr-37202",
+    "handle": "vintage-alphabet-large-mural-by-retro-walls-rtr-37202",
+    "title": "Vintage Alphabet Large Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/78293d2ea1cac3a3ad4e057a0eb49b31.jpg?v=1572309701",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Black",
+      "Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Multi",
+      "Mural",
+      "Paper",
+      "Red",
+      "Stripe",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical"
+    ],
+    "max_price": 94,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vintage-alphabet-large-mural-by-retro-walls-rtr-37202"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9486",
+    "handle": "chinese-fret-walls-cfw-9486",
+    "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-9486-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708053",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Elegant Vinyls Vol. 1",
+      "Fretwork",
+      "Geometric",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9486"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2508",
+    "handle": "faux-leaf-squares-fls-2508",
+    "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-2508-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711882",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "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-2508"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53159",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53159",
+    "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-bamboo.jpg?v=1777480770",
+    "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: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Golden Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Stripe",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53159"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2889",
+    "handle": "peter-s-plastered-walls-ppw-2889",
+    "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-2889-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729111",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Mediterranean",
+      "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-2889"
+  },
+  {
+    "sku": "canal-damask-durable-vinyl-xwa-52077",
+    "handle": "canal-damask-durable-vinyl-xwa-52077",
+    "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52077-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707050",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grandmillennial",
+      "Green",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Pale Beige",
+      "Pattern",
+      "Sage Green",
+      "Scroll",
+      "Serene",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vine",
+      "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-damask-durable-vinyl-xwa-52077"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+    "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-47334-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704980",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Dining Room",
+      "Estimated Type: Paper",
+      "Grandmillennial",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Regencycore",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47334"
+  },
+  {
+    "sku": "hainsville-faux-leather-durable-walls-xwt-53377",
+    "handle": "hainsville-faux-leather-durable-walls-xwt-53377",
+    "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-earthy_eaea08f7-b0c2-42cb-8dea-7ee55c66a535.jpg?v=1777481419",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Faux Leather",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53377"
+  },
+  {
+    "sku": "ncw4353-04",
+    "handle": "ncw4353-04",
+    "title": "Nina Campbell Wallcoverings - Spring 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_4497264607283.jpg?v=1775520568",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Green",
+      "Leaf",
+      "Multi",
+      "NCW4353-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4353-04"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+    "title": "Douglas - Beech | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5470.jpg?v=1762292862",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beech",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Cream",
+      "Douglas",
+      "Paper",
+      "RAMPART®",
+      "Scandinavian",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5470-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em9734r-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em9734r-jpg",
+    "title": "EM9734R | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9733r.jpg?v=1733873330",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM9734R",
+      "Gray",
+      "Light Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9734r-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gsg9-5384-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gsg9-5384-jpg",
+    "title": "Glasgow - Gold | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5384.jpg?v=1762296743",
+    "tags": [
+      "100% Vinyl",
+      "abstract",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "contemporary",
+      "Contract",
+      "geometric",
+      "Glasgow",
+      "Gold",
+      "Metallic",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5384-jpg"
+  },
+  {
+    "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47685",
+    "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47685",
+    "title": "Ferndown 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-47685-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712226",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "stripe",
+      "Taupe",
+      "textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47685"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_abs-5656-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_abs-5656-jpg",
+    "title": "Absolute - Honey | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/abs-5656.jpg?v=1762357340",
+    "tags": [
+      "100% Vinyl",
+      "Absolute",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Class A Fire Rating",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Khaki",
+      "Plaid",
+      "RAMPART®",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_abs-5656-jpg"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2871",
+    "handle": "peter-s-plastered-walls-ppw-2871",
+    "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-2871-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729051",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Mediterranean",
+      "Orange",
+      "Terracotta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2871"
+  },
+  {
+    "sku": "hollywood-contemporary-coast-xhw-2010365",
+    "handle": "hollywood-contemporary-coast-xhw-2010365",
+    "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-malibu_e2405168-696c-4dc6-942b-4a0a1ae383ba.jpg?v=1777481395",
+    "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",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Extra Heavy Duty",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Organic Modern",
+      "Samantha",
+      "Serene",
+      "Stripe",
+      "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-2010365"
+  },
+  {
+    "sku": "rocheforte-wallpaper-xq6-68157",
+    "handle": "rocheforte-wallpaper-xq6-68157",
+    "title": "Rocheforte | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xq6-68157-sample-rocheforte-hollywood-wallcoverings.jpg?v=1775730807",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Baroque",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Damask",
+      "Dining Room",
+      "Glamorous",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Medallion",
+      "non-woven",
+      "Off-white",
+      "Phillip Romano Commercial",
+      "Regencycore",
+      "Rocheforte",
+      "Scroll",
+      "Tan",
+      "Taupe",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 218.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rocheforte-wallpaper-xq6-68157"
+  },
+  {
+    "sku": "john-s-thick-embossed-vinyl-xjt-44465",
+    "handle": "john-s-thick-embossed-vinyl-xjt-44465",
+    "title": "John's Thick Embossed Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7ba36c0feed4ca3ab85a10fe489b9b47.jpg?v=1733880981",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Check",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "John's Thick Embossed Vinyl",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Textured",
+      "Tile",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/john-s-thick-embossed-vinyl-xjt-44465"
+  },
+  {
+    "sku": "riad-iznik-romo",
+    "handle": "riad-iznik-romo",
+    "title": "Riad Iznik | Romo",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW173-01-riad-wallcovering-iznik_01.jpg?v=1776398540",
+    "tags": [
+      "Architectural",
+      "Background Color beige",
+      "beige",
+      "brown",
+      "Burnished Bronze",
+      "Collage IV",
+      "Commercial",
+      "Conference Room",
+      "Contemporary",
+      "Geometric",
+      "Grasscloth",
+      "Handcrafted Wallcovering",
+      "Light Beige",
+      "Lobby",
+      "Medium",
+      "Midnight Navy",
+      "Minimalist",
+      "MW173/01",
+      "Natural",
+      "navy",
+      "Office",
+      "Riad",
+      "Romo",
+      "Scandinavian",
+      "Stripe",
+      "Texture",
+      "Wallcovering",
+      "Warm Taupe"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/riad-iznik-romo"
+  },
+  {
+    "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": "shin-pewter-golden-scroll-texture-wallpaper-cca-83270",
+    "handle": "shin-pewter-golden-scroll-texture-wallpaper-cca-83270",
+    "title": "Shin Pewter Golden Scroll Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2a72d3a43591660941b664c97043c410.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/shin-pewter-golden-scroll-texture-wallpaper-cca-83270"
+  },
+  {
+    "sku": "dwkk-137714",
+    "handle": "dwkk-137714",
+    "title": "Langdale Trellis - Soft Aqua By G P & J Baker | Signature Ii Wallpapers |Modern Geometric Wallcovering Print",
+    "vendor": "GP & J Baker",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45071_11_8339e2a9-3b03-4ce7-a304-e37ce38cdd8b.jpg?v=1753303608",
+    "tags": [
+      "20.488In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Bw45071.11.0",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "G P & J Baker",
+      "Geometric",
+      "GP & J Baker",
+      "Hallway",
+      "Langdale Trellis",
+      "Lattice",
+      "Light Blue",
+      "Living Room",
+      "Modern",
+      "Non Woven - 100%",
+      "Pale Turquoise",
+      "Paper",
+      "Print",
+      "Serene",
+      "Signature Ii Wallpapers",
+      "Soft Aqua",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Trellis",
+      "Turquoise",
+      "United Kingdom",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-137714"
+  },
+  {
+    "sku": "hollywood-getty-texture-xhw-2010303",
+    "handle": "hollywood-getty-texture-xhw-2010303",
+    "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-oceania.jpg?v=1777481040",
+    "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 Teal",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Teal",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Getty Texture",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Serene",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "Turquoise",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 24.96 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 62.33,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010303"
+  },
+  {
+    "sku": "beckett-taupe-scroll-texture-wallpaper-cca-82959",
+    "handle": "beckett-taupe-scroll-texture-wallpaper-cca-82959",
+    "title": "Beckett Taupe Scroll Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e90d532412876e78bd84efaed3840a96.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/beckett-taupe-scroll-texture-wallpaper-cca-82959"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2757",
+    "handle": "faux-leaf-squares-fls-2757",
+    "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-2757-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712021",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2757"
+  },
+  {
+    "sku": "khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832",
+    "handle": "khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832",
+    "title": "Khloe Pink Girly Floral Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9c8ba200bdbb22ae547266902e140b98.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Flowers",
+      "Green",
+      "LA Walls",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Vine",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832"
+  },
+  {
+    "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": "peter-s-plastered-walls-ppw-2883",
+    "handle": "peter-s-plastered-walls-ppw-2883",
+    "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-2883-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729092",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Mediterranean",
+      "Solid",
+      "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-2883"
+  },
+  {
+    "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52439",
+    "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52439",
+    "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-52439-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730731",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Organic Modern",
+      "Rustic",
+      "Sand",
+      "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-52439"
+  },
+  {
+    "sku": "corsham-acoustical-wallcovering-xku-47549",
+    "handle": "corsham-acoustical-wallcovering-xku-47549",
+    "title": "Corsham  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52ecf630f09a5cb35c69167688b99bc3.jpg?v=1572310057",
+    "tags": [
+      "100% recycled polyester",
+      "Architectural",
+      "Bedroom",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Fabric",
+      "Fabric-backed Vinyl",
+      "Hollywood Acoustical",
+      "Living Room",
+      "Maroon",
+      "Polyester",
+      "Red",
+      "Rustic",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47549"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10242-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10242-jpg",
+    "title": "SM10242 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10241.jpg?v=1733872475",
+    "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_sm10242-jpg"
+  },
+  {
+    "sku": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+    "handle": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+    "title": "Colbert 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_7513505529907.jpg?v=1775523633",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Colbert",
+      "Commercial",
+      "Contemporary",
+      "Dusty Rose",
+      "Leaf",
+      "LES INDIENNES",
+      "Light Blue",
+      "Living Room",
+      "NCW4353",
+      "NCW4353-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Off White",
+      "Organic Modern",
+      "Pale Blue",
+      "Paper",
+      "Pink",
+      "Scandinavian",
+      "Serene",
+      "Taupe",
+      "Wallcovering",
+      "Whimsical"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80366-ncw4353-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "decorator-grasscloth-vol-2-by-phillipe-romano-488-445",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-445",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2e5b04f552307a5ebe4664b2a79ce1a1_ae7ecc7c-0d1c-4215-8753-2ebfa2f7ad8a.jpg?v=1745458233",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Light Brown",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 19.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-445"
+  },
+  {
+    "sku": "dwc-1001666",
+    "handle": "dwc-1001666",
+    "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_4693311225907.jpg?v=1775521462",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4390-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Stripe",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001666"
+  },
+  {
+    "sku": "dwss-72643",
+    "handle": "dwss-72643",
+    "title": "Nils light red Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/704-34_image1_6db1d69a-2615-4818-b106-48187f711d57.jpg?v=1646104928",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Coral",
+      "Gray",
+      "LIGHT RED",
+      "Nils",
+      "Nils light red  Sample",
+      "P704-34",
+      "Paper",
+      "Pink",
+      "Sandberg",
+      "Stripe",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72643"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48179",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48179",
+    "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-48179-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728684",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Brown",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Minimalist",
+      "Modern",
+      "Non-woven",
+      "Office",
+      "Organic Modern",
+      "Primary Suite",
+      "Silver Gray",
+      "Solid",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48179"
+  },
+  {
+    "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": "st-silken-durable-vinyl-dur-72179",
+    "handle": "st-silken-durable-vinyl-dur-72179",
+    "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-72179-sample-clean.jpg?v=1774484690",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Dusty Blue",
+      "Grasscloth",
+      "Gray",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Slate Blue",
+      "Solid",
+      "Textured",
+      "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-72179"
+  },
+  {
+    "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": "ventnor-vinyl-wallcovering-xqq-48569",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48569",
+    "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-48569-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735714",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Textured",
+      "Traditional",
+      "Ventnor  Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48569"
+  },
+  {
+    "sku": "canal-stripe-texture-durable-walls-xwd-52114",
+    "handle": "canal-stripe-texture-durable-walls-xwd-52114",
+    "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-52114-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707118",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Linear",
+      "Living Room",
+      "Organic Modern",
+      "Pattern",
+      "Stripe",
+      "Striped",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "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-52114"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47646",
+    "handle": "fairford-vinyl-wallcovering-xlb-47646",
+    "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-47646-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711307",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47646"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+    "title": "Dasma - Buff | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5038.jpg?v=1762291641",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Cream",
+      "Dasma",
+      "Grasscloth",
+      "Light Brown",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5038-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dsm-5052-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dsm-5052-jpg",
+    "title": "Dasma - Umber | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5052.jpg?v=1762292169",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Dasma",
+      "Grasscloth",
+      "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-5052-jpg"
+  },
+  {
+    "sku": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849",
+    "handle": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849",
+    "title": "Gibby Purple Leafy Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/88fd9b7372678c41808b5659967b5762.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "LA Walls",
+      "Leaf",
+      "Prepasted",
+      "Purple",
+      "Scroll",
+      "Scrolls",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+    "title": "Marlu - Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3296_8.jpg?v=1762301619",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Gray",
+      "Marlu",
+      "Metallic",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3296_8-jpg"
+  },
+  {
+    "sku": "edward-paintable-supaglypta-wallpaper-gga-82653",
+    "handle": "edward-paintable-supaglypta-wallpaper-gga-82653",
+    "title": "Edward Paintable Supaglypta | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/41e6f9d8f6ff07f8a5d7de58a6da3a38.jpg?v=1750790455",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Army",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Discontinued",
+      "Edward Paintable Supaglypta",
+      "Green",
+      "Jeffrey Stevens",
+      "Laurel",
+      "Light Gray",
+      "Minimalist",
+      "Moss",
+      "Non-Woven",
+      "Off-White",
+      "Paintable",
+      "Phasing-2026-04",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Unpasted",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White"
+    ],
+    "max_price": 49.02,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/edward-paintable-supaglypta-wallpaper-gga-82653"
+  },
+  {
+    "sku": "daytona-faux-embossed-durable-walls-xwc-53273",
+    "handle": "daytona-faux-embossed-durable-walls-xwc-53273",
+    "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-53273-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710169",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Tan",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53273"
+  },
+  {
+    "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": "rhone-durable-vinyl-dur-72091",
+    "handle": "rhone-durable-vinyl-dur-72091",
+    "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-72091-sample-clean.jpg?v=1774484359",
+    "tags": [
+      "Abstract",
+      "Amethyst",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Purple",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Hallway",
+      "Herringbone",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Living Room",
+      "Modern",
+      "Purple",
+      "Sky Blue",
+      "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-72091"
+  },
+  {
+    "sku": "tere-trente-durable-vinyl-dur-72398",
+    "handle": "tere-trente-durable-vinyl-dur-72398",
+    "title": "Tere Trente Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72398-sample-clean.jpg?v=1774485365",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Ecru",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Latte",
+      "Light Beige",
+      "Living Room",
+      "Oatmeal",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Tere Trente Durable Vinyl",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tere-trente-durable-vinyl-dur-72398"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+    "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-safflower.jpg?v=1777480775",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wheat",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53163"
+  },
+  {
+    "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": "hollywood-modern-wood-xhw-2010207",
+    "handle": "hollywood-modern-wood-xhw-2010207",
+    "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-woodwork_5f387c38-af65-4f69-909f-657ba44f3c3c.jpg?v=1777481261",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Office",
+      "Organic",
+      "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": 50.75,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010207"
+  },
+  {
+    "sku": "jonesport-ivory-cabin-stripe-wallpaper-cca-83174",
+    "handle": "jonesport-ivory-cabin-stripe-wallpaper-cca-83174",
+    "title": "Jonesport Ivory Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c856284a315519dfae2dc111d22ad64c.jpg?v=1572309971",
+    "tags": [
+      "Americana",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Red",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jonesport-ivory-cabin-stripe-wallpaper-cca-83174"
+  },
+  {
+    "sku": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+    "handle": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+    "title": "Harpswell Butter Herringbone Awning Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6927d546780cfe7430b01865e2759859_4578bc0a-8baa-456d-be09-4967045dff0b.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Herringbone",
+      "LA Walls",
+      "Light Yellow",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Takumi",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153"
+  },
+  {
+    "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": "dwss-72691",
+    "handle": "dwss-72691",
+    "title": "Alva forest green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/809-38_image1_e36977ec-9882-4f14-82ae-6f48aa50a0b4.jpg?v=1646105091",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Alva",
+      "Alva forest green  sample",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "FOREST GREEN",
+      "Gray",
+      "Off-white",
+      "P809-38",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Traditional",
+      "Victorian",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72691"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73122",
+    "handle": "puna-drive-natural-grassweave-hlw-73122",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73122-sample-clean.jpg?v=1774483564",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Coastal",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73122"
+  },
+  {
+    "sku": "whisper-aqua-scroll-texture-wallpaper-wallpaper-cca-82892",
+    "handle": "whisper-aqua-scroll-texture-wallpaper-wallpaper-cca-82892",
+    "title": "Whisper Aqua Scroll Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2f8488e188cf8a871d37f750cf97f8e0.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Green",
+      "Kids",
+      "LA Walls",
+      "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/whisper-aqua-scroll-texture-wallpaper-wallpaper-cca-82892"
+  },
+  {
+    "sku": "vandal-by-innovations-usa-dwc-vandal-2",
+    "handle": "vandal-by-innovations-usa-dwc-vandal-2",
+    "title": "Vandal | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Vandal-2.jpg?v=1736199026",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Green",
+      "Innovations USA",
+      "Light Gray",
+      "Non-woven",
+      "Vandal",
+      "Vandal-2",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vandal-by-innovations-usa-dwc-vandal-2"
+  },
+  {
+    "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48281",
+    "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48281",
+    "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/roanoke-graphite.jpg?v=1777480157",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Rushden Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Silver",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48281"
+  },
+  {
+    "sku": "dwkk-129766",
+    "handle": "dwkk-129766",
+    "title": "W3928 - 315 Ivory | Kravet Design | Ronald Redding Arts & Crafts | Botanical & Floral Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3928_315_9c328816-9e05-4214-81dd-f7122efe828c.jpg?v=1753322317",
+    "tags": [
+      "27In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Non Woven - 100%",
+      "Nursery",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Ronald Redding Arts & Crafts",
+      "Sage Green",
+      "Serene",
+      "Sky Blue",
+      "Tan",
+      "Taupe",
+      "Traditional",
+      "United States",
+      "W3928",
+      "W3928.315.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129766"
+  },
+  {
+    "sku": "aubrey-beige-crystal-texture-wallpaper-cca-83282",
+    "handle": "aubrey-beige-crystal-texture-wallpaper-cca-83282",
+    "title": "Aubrey Beige Crystal Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2d9e8e166c933a2c7ade23c33c4f0dcd.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Off-White",
+      "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-beige-crystal-texture-wallpaper-cca-83282"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2623",
+    "handle": "pleated-perfect-paradise-ppp-2623",
+    "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-2623-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729169",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Pleated Perfect Paradise",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2623"
+  },
+  {
+    "sku": "dylan-cream-candy-stripe-wallpaper-cca-82979",
+    "handle": "dylan-cream-candy-stripe-wallpaper-cca-82979",
+    "title": "Dylan Cream Candy Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ed5566aef834fd8f19b5328fcf3f6d2d.jpg?v=1572309964",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Gold",
+      "LA Walls",
+      "Masculine",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 49.01,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dylan-cream-candy-stripe-wallpaper-cca-82979"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+    "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-47145-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700894",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Ashbourne Type 2 Vinyl",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Khaki",
+      "Living Room",
+      "Minimalist",
+      "Pale Yellow",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47145"
+  },
+  {
+    "sku": "wtw0454fire",
+    "handle": "wtw0454fire",
+    "title": "Fire Island Grass - Cream | Scalamandre",
+    "vendor": "Scalamandre Wallpaper",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0454FIRE.jpg?v=1745346314",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Cream",
+      "FIRE ISLAND GRASS",
+      "Grasscloth",
+      "Scalamandre Wallcovering",
+      "Stripe",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Wallcovering",
+      "White",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wtw0454fire"
+  },
+  {
+    "sku": "dwc-1001693",
+    "handle": "dwc-1001693",
+    "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_4693312766003.jpg?v=1775521641",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Arabesque",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Light Gray",
+      "NCW4396-01",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001693"
+  },
+  {
+    "sku": "eur-80241-ncw4205-designer-wallcoverings-los-angeles",
+    "handle": "eur-80241-ncw4205-designer-wallcoverings-los-angeles",
+    "title": "Barbary Toile 03 - Airy 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_7513500778547.jpg?v=1775522923",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Barbary Toile",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cornflower Blue",
+      "FONTIBRE",
+      "Living Room",
+      "Monkey",
+      "NCW4205",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Palm",
+      "Palm Trees",
+      "Paper",
+      "Playful",
+      "Scenic",
+      "Toile",
+      "Tropical",
+      "Wallcovering",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80241-ncw4205-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "origami-by-innovations-usa-dwc-origami-4",
+    "handle": "origami-by-innovations-usa-dwc-origami-4",
+    "title": "Origami | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-4.jpg?v=1736198893",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Innovations USA",
+      "Origami",
+      "Origami-4",
+      "Paper",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-4"
+  },
+  {
+    "sku": "dwc-1001608",
+    "handle": "dwc-1001608",
+    "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_4693308211251.jpg?v=1775521089",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Light Gray",
+      "NCW4305-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Non-woven",
+      "Textured",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001608"
+  },
+  {
+    "sku": "eur-80427-ncw4491-designer-wallcoverings-los-angeles",
+    "handle": "eur-80427-ncw4491-designer-wallcoverings-los-angeles",
+    "title": "Almora 02 - 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_7513507659827.jpg?v=1775524023",
+    "tags": [
+      "Almora",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Lavender",
+      "Living Room",
+      "Mustard Yellow",
+      "NCW4491",
+      "NCW4491-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Purple",
+      "Sage Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80427-ncw4491-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "reeds-drive-wild-grass-hlw-73068",
+    "handle": "reeds-drive-wild-grass-hlw-73068",
+    "title": "Reeds Drive - Wild Grass | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73068-sample-clean.jpg?v=1774483316",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Forest Green",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Sage",
+      "Textured",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73068"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dstm-540-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dstm-540-jpg",
+    "title": "Stromatolite - Mercury | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dstm-540.jpg?v=1762292359",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Digital Curated",
+      "Gold",
+      "Mercury",
+      "Mylar",
+      "Paper",
+      "Red",
+      "Stromatolite",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dstm-540-jpg"
+  },
+  {
+    "sku": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+    "handle": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+    "title": "Kenley Peach Polka Dots Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16aba4aa128b036e99224eaf17806ab7.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Paper",
+      "Peach",
+      "Polka Dots",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873"
+  },
+  {
+    "sku": "marketfield-faux-durable-walls-xwh-52318",
+    "handle": "marketfield-faux-durable-walls-xwh-52318",
+    "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52318-sample-marketfield-faux-durable-hollywood-wallcoverings.jpg?v=1775724159",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Camel",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Faux",
+      "Faux Finish",
+      "Gold",
+      "Golden Tan",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52318"
+  },
+  {
+    "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49330",
+    "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49330",
+    "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-49330-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728327",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Light Beige",
+      "Living Room",
+      "Oxford Type 2 Vinyl  Wallcovering",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49330"
+  },
+  {
+    "sku": "faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105",
+    "handle": "faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105",
+    "title": "Faux Glass Bead Wallpaper - 105 Deep Aged Gold",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-105-sample-faux-glass-bead-wallpaper.jpg?v=1775711830",
+    "tags": [
+      "105 Deep Aged Gold",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bling",
+      "Commercial",
+      "Commercially Rated Cleanable",
+      "Fabric",
+      "Faux Finish",
+      "Glass Bead",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Textured",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 82.74,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-105-deep-aged-gold-fgb-105"
+  },
+  {
+    "sku": "ethan-sky-star-wallpaper-cca-83034",
+    "handle": "ethan-sky-star-wallpaper-cca-83034",
+    "title": "Ethan Sky Star Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c47fa5829c3b343f7b56c3e4556343d2.jpg?v=1572309966",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stars",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ethan-sky-star-wallpaper-cca-83034"
+  },
+  {
+    "sku": "hollywood-antique-damask-xhw-2010217",
+    "handle": "hollywood-antique-damask-xhw-2010217",
+    "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-aquarelle_f5726e93-25cc-456f-a988-cfebf808a278.jpg?v=1777481296",
+    "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 White",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Purple",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grandmillennial",
+      "Healthcare",
+      "Hollywood Antique Damask",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Lavender",
+      "Light Blue",
+      "Light Grey",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Non-woven",
+      "Pattern",
+      "Purple",
+      "Serene",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 53.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-antique-damask-xhw-2010217"
+  },
+  {
+    "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53536",
+    "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53536",
+    "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-nile_green.jpg?v=1777480864",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Blue-gray",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Green",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53536"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+    "title": "Grain Plus - Silver Birch | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5003.jpg?v=1762295271",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Grain Plus",
+      "Light Gray",
+      "RAMPART®",
+      "Silver Birch",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5003-jpg"
+  },
+  {
+    "sku": "dwkk-138761",
+    "handle": "dwkk-138761",
+    "title": "Bohemian Travels - Silver Grey By Mulberry | Bohemian Romance |Novelty  Wallcovering Print",
+    "vendor": "Mulberry",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FG077_J125_3a572ad1-14e3-4963-9009-53b623967d9c.jpg?v=1753291681",
+    "tags": [
+      "26.989In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bohemian",
+      "Bohemian Romance",
+      "Bohemian Travels",
+      "Commercial",
+      "display_variant",
+      "Fg077.J125.0",
+      "Gray",
+      "Map",
+      "Maps",
+      "Mulberry",
+      "Non Woven - 100%",
+      "Novelty",
+      "Paper",
+      "Print",
+      "Scenic",
+      "Ships",
+      "Traditional",
+      "United Kingdom",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-138761"
+  },
+  {
+    "sku": "lovela-faux-vertical-durable-walls-xwo-53619",
+    "handle": "lovela-faux-vertical-durable-walls-xwo-53619",
+    "title": "Pippy's Peacock - Silver Room Setting Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-terra_cotta.jpg?v=1777480910",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Rustic",
+      "Sienna",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53619"
+  },
+  {
+    "sku": "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": "ventnor-vinyl-wallcovering-xqq-48572",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48572",
+    "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-48572-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735717",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Organic",
+      "Rustic",
+      "Stucco",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48572"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_hug-3317_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_hug-3317_8-jpg",
+    "title": "Hugo - Tawny | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3317_8.jpg?v=1762297381",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Herringbone",
+      "Hugo",
+      "Tawny",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3317_8-jpg"
+  },
+  {
+    "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+    "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+    "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-copper.jpg?v=1777480861",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Organic Modern",
+      "Rustic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53533"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2516",
+    "handle": "faux-leaf-squares-fls-2516",
+    "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-2516-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711909",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Contemporary",
+      "disco",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2516"
+  },
+  {
+    "sku": "ncw4393-03",
+    "handle": "ncw4393-03",
+    "title": "Ashdown Benmore Green/Aqua - 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_4497265950771.jpg?v=1775520782",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Green",
+      "Leaf",
+      "Light Blue",
+      "Light Green",
+      "Multi",
+      "NCW4393-03",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Tropical",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4393-03"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2620",
+    "handle": "pleated-perfect-paradise-ppp-2620",
+    "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-2620-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729159",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Jade",
+      "Light Teal",
+      "Moss",
+      "Stripe",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2620"
+  },
+  {
+    "sku": "medusa-circle-gold-silver-white-wallcovering-versace",
+    "handle": "medusa-circle-gold-silver-white-wallcovering-versace",
+    "title": "Medusa Circle Gold, Silver, White Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9c1537072d6cbe731cbed47fb5faedfa.jpg?v=1773706330",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Geometric",
+      "Glamorous",
+      "Gold",
+      "Gray",
+      "Italian",
+      "Light Beige",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Medallion",
+      "Medusa Circle",
+      "Medusa Circle Gold",
+      "Neoclassical",
+      "Off-white",
+      "Paste the wall",
+      "Regencycore",
+      "Silver",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "White Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/medusa-circle-gold-silver-white-wallcovering-versace"
+  },
+  {
+    "sku": "kia-island-palm-shadow-wallpaper-trf-56860",
+    "handle": "kia-island-palm-shadow-wallpaper-trf-56860",
+    "title": "Kia Island Palm Shadow | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab0187666f11ab54b914c945ecb48a19.jpg?v=1750789730",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Discontinued",
+      "floral",
+      "flowers",
+      "grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Jeffrey Stevens",
+      "jungle",
+      "large scale",
+      "leaf",
+      "Modern",
+      "Modern Tropics",
+      "Natural",
+      "Non-Woven",
+      "palm",
+      "Prepasted - Washable - Strippable",
+      "rain forest",
+      "Series: York",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "trees",
+      "tropical",
+      "USA",
+      "Wallcovering",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56860"
+  },
+  {
+    "sku": "glyph-by-innovations-usa-dwc-glyph-2",
+    "handle": "glyph-by-innovations-usa-dwc-glyph-2",
+    "title": "Glyph | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-2.jpg?v=1736199461",
+    "tags": [
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Glyph-2",
+      "Green",
+      "Innovations USA",
+      "Olive",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 3.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-2"
+  },
+  {
+    "sku": "fukaura-durable-vinyl-xrm-34134",
+    "handle": "fukaura-durable-vinyl-xrm-34134",
+    "title": "Fukaura Durable Vinyl",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f7ee80f70186b3acc72bfd8b2d9ad26e_5d332c98-198c-4658-b045-2d6b893c2037.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-34134"
+  },
+  {
+    "sku": "vandal-by-innovations-usa-dwc-vandal-6",
+    "handle": "vandal-by-innovations-usa-dwc-vandal-6",
+    "title": "Vandal | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Vandal-6.jpg?v=1736199021",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Innovations USA",
+      "Light Gray",
+      "Non-woven",
+      "Orange",
+      "Teal",
+      "Vandal",
+      "Vandal-6",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vandal-by-innovations-usa-dwc-vandal-6"
+  },
+  {
+    "sku": "conrad-blue-map-wallpaper-cca-82941",
+    "handle": "conrad-blue-map-wallpaper-cca-82941",
+    "title": "Conrad Blue Map Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8b75d4b49e538b454cc3d727049e29c.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gold",
+      "LA Walls",
+      "Novelty",
+      "Paper",
+      "Prepasted",
+      "Scenic",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/conrad-blue-map-wallpaper-cca-82941"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44440",
+    "handle": "franko-faux-metallic-patina-ffm-44440",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44440-sample-clean_5e9b389d-a9f9-437a-9e2c-e87067d287ad.jpg?v=1774479128",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Moody",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44440"
+  },
+  {
+    "sku": "villa-velore-durable-vinyl-dur-72326",
+    "handle": "villa-velore-durable-vinyl-dur-72326",
+    "title": "Villa Velore Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72326-sample-clean.jpg?v=1774485199",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72326"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_nes-3799-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_nes-3799-jpg",
+    "title": "Neso - Aristocrat | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nes-3799.jpg?v=1762302510",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Aristocrat",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Embossed",
+      "Geometric",
+      "Neso",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_nes-3799-jpg"
+  },
+  {
+    "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": "canal-stripe-texture-durable-walls-xwd-52113",
+    "handle": "canal-stripe-texture-durable-walls-xwd-52113",
+    "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-52113-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707114",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Gold",
+      "Grasscloth",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Linear",
+      "Living Room",
+      "Pattern",
+      "Stripe",
+      "Striped",
+      "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\"",
+      "Yellow"
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52113"
+  },
+  {
+    "sku": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+    "handle": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+    "title": "Asha Pearl Lotus Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/05be3c8ff17cd44c99b5c5482a6410a9.jpg?v=1572309983",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Gray",
+      "Non-Woven",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/asha-pearl-lotus-texture-wallpaper-cca-83274"
+  },
+  {
+    "sku": "asha-sand-lotus-damask-wallpaper-cca-83236",
+    "handle": "asha-sand-lotus-damask-wallpaper-cca-83236",
+    "title": "Asha Sand Lotus Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/28629b77f38c77f7233042f353885a89.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Bling",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Glitter",
+      "LA Walls",
+      "Prepasted",
+      "Sand",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/asha-sand-lotus-damask-wallpaper-cca-83236"
+  },
+  {
+    "sku": "lovela-faux-vertical-durable-walls-xwo-53615",
+    "handle": "lovela-faux-vertical-durable-walls-xwo-53615",
+    "title": "Lovela Faux Vertical Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-starlet.jpg?v=1777480903",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Golden Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Organic Modern",
+      "Rustic",
+      "Textured",
+      "Transitional",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53615"
+  },
+  {
+    "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47637",
+    "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47637",
+    "title": "Edgware Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47637-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710959",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Light Silver",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47637"
+  },
+  {
+    "sku": "emerson-rust-paisley-stripe-wallpaper-cca-82908",
+    "handle": "emerson-rust-paisley-stripe-wallpaper-cca-82908",
+    "title": "Emerson Rust Paisley Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4990de5fa4d82aefe376f85d5747ad96.jpg?v=1572309961",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Global",
+      "LA Walls",
+      "Masculine",
+      "Orange",
+      "Paisley",
+      "Prepasted",
+      "Rust",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/emerson-rust-paisley-stripe-wallpaper-cca-82908"
+  },
+  {
+    "sku": "dwkk-129177",
+    "handle": "dwkk-129177",
+    "title": "W3763-5 Blue | Kravet Design |Geometric Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3763_5_d6ef1f46-c648-40e8-81ee-8a0615f4e54d.jpg?v=1753121477",
+    "tags": [
+      "27In",
+      "Abstract",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Teal",
+      "display_variant",
+      "Geometric",
+      "Gray",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Modern",
+      "Non-Woven",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Slate Blue",
+      "Sophisticated",
+      "Textured",
+      "United States",
+      "Vinyl",
+      "W3763-5",
+      "W3763.5.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129177"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_grv-2889_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_grv-2889_8-jpg",
+    "title": "Grove - Ecru | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2889_8.jpg?v=1762296128",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Grove",
+      "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-2889_8-jpg"
+  },
+  {
+    "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+    "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+    "title": "Maidstone - Dusk Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmh-47953-sample-maidstone-dusk-type-ii-vinyl-hollywood.jpg?v=1775723337",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Faux Finish",
+      "Faux Stone",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Green",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Olive",
+      "Living Room",
+      "Maidstone Type 2 Vinyl  Wallcovering",
+      "Office",
+      "Organic Modern",
+      "Sage Green",
+      "Serene",
+      "Stone Look",
+      "Stripe",
+      "Textured",
+      "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": 55.38,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47953"
+  },
+  {
+    "sku": "dwkk-121630",
+    "handle": "dwkk-121630",
+    "title": "Primavera - Azul Blue By Gaston Y Daniela | Gaston Dos Collection |Botanical & Floral  Wallcovering Print",
+    "vendor": "Gaston Y Daniela",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDW5108_002_7f3a6515-189f-44d2-b830-7df7ae4e440b.jpg?v=1753293847",
+    "tags": [
+      "20.8In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Azul",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Gaston Dos Collection",
+      "Gaston Y Daniela",
+      "Gdw5108.002.0",
+      "Japonisme",
+      "Living Room",
+      "Midnightblue",
+      "Navy",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Primavera",
+      "Print",
+      "Serene",
+      "Spain",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-121630"
+  },
+  {
+    "sku": "dwkk-138285",
+    "handle": "dwkk-138285",
+    "title": "Hakan - Ivory White By Threads | Vinyl Wallcovering Collection I |Solid Texture Wallcovering Print",
+    "vendor": "Threads",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/EW15023_104_5c202b7b-1b19-4d0e-8869-b8c0d8d9099c.jpg?v=1753291736",
+    "tags": [
+      "26.989In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Ew15023.104.0",
+      "Hakan",
+      "Ivory",
+      "Paper - 100%",
+      "Print",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Threads",
+      "United Kingdom",
+      "Vinyl",
+      "Vinyl Wallcovering Collection I",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-138285"
+  },
+  {
+    "sku": "eur-80373-ncw4354-designer-wallcoverings-los-angeles",
+    "handle": "eur-80373-ncw4354-designer-wallcoverings-los-angeles",
+    "title": "Garance 03 - 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_7513505792051.jpg?v=1775523678",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Garance",
+      "Grandmillennial",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "LES INDIENNES",
+      "Light Grey",
+      "Living Room",
+      "Medallion",
+      "Mid-century",
+      "Mid-Century Modern",
+      "NCW4354",
+      "NCW4354-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Sophisticated",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80373-ncw4354-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "floating-bubbles-vinyl-dwx-58123",
+    "handle": "floating-bubbles-vinyl-dwx-58123",
+    "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-58123-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713693",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Bubbles",
+      "Burnt Sienna",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Dark Brown",
+      "Durable",
+      "Easy To Clean",
+      "Embossed Texture",
+      "Estimated Type: Textured",
+      "Grandmillennial",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Ivory",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Modern",
+      "Neutral",
+      "Orange",
+      "Organic",
+      "Regencycore",
+      "Residential",
+      "Solid",
+      "Taupe",
+      "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/floating-bubbles-vinyl-dwx-58123"
+  },
+  {
+    "sku": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+    "handle": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+    "title": "Tahlia Pink Stucco Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c156cb1926d7a868f133593ae46ef7f8.jpg?v=1572309966",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Kids",
+      "LA Walls",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tahlia-pink-stucco-texture-wallpaper-cca-83026"
+  },
+  {
+    "sku": "eur-80288-ncw4276-designer-wallcoverings-los-angeles",
+    "handle": "eur-80288-ncw4276-designer-wallcoverings-los-angeles",
+    "title": "Perdana 04 - Airy 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_7513502384179.jpg?v=1775523179",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Butterfly",
+      "Chinoiserie",
+      "Chintz",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "COROMANDEL",
+      "Cottagecore",
+      "Dining Room",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Light Blue",
+      "Light Gray",
+      "Living Room",
+      "Navy Blue",
+      "NCW4276",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Perdana",
+      "Sage Green",
+      "Serene",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80288-ncw4276-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-426",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-426",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/21a6b3dbfe330c4fe0dcbe1da557ed94_37f701ee-e365-4d15-bdb8-b0d4c9a2abb4.jpg?v=1745458282",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Lattice",
+      "Maroon",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Red",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 16.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-426"
+  },
+  {
+    "sku": "hollywood-antique-damask-xhw-2010214",
+    "handle": "hollywood-antique-damask-xhw-2010214",
+    "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-vellum_6f8abc2b-8c18-45a7-b8c7-2839a651cb15.jpg?v=1777481546",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Antique",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grandmillennial",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Medallion",
+      "Mfr-Image-Refreshed",
+      "Non-woven",
+      "Off-white",
+      "Pattern",
+      "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-2010214"
+  },
+  {
+    "sku": "saint-brittany-durable-vinyl-dur-72246",
+    "handle": "saint-brittany-durable-vinyl-dur-72246",
+    "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-72246-sample-clean.jpg?v=1774484901",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Brown",
+      "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",
+      "Modern",
+      "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-72246"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926",
+    "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926",
+    "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52926-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734514",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52926"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dtam-471-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dtam-471-jpg",
+    "title": "Tamarack - Butternut | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DTAM-471.jpg?v=1762292503",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Butternut",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Digital Curated",
+      "Light Brown",
+      "Paper",
+      "Rustic",
+      "Stripe",
+      "Tamarack",
+      "Tan",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dtam-471-jpg"
+  },
+  {
+    "sku": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+    "handle": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+    "title": "Kent Beige Faux Grasscloth Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91a17198ae07f76f275862d9de59ce49.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Grasscloth",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "LA Walls",
+      "Masculine",
+      "Natural",
+      "Natural Wallcovering",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "Woven",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kent-beige-faux-grasscloth-wallpaper-cca-82925"
+  },
+  {
+    "sku": "dwss-72658",
+    "handle": "dwss-72658",
+    "title": "Bok yellow Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/710-22_image1_a133b380-a8a2-42c3-a2ee-409c6785a392.jpg?v=1646104972",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bok",
+      "Bok yellow  Sample",
+      "Class A Fire Rated",
+      "Commercial",
+      "Fretwork",
+      "Geometric",
+      "Light Yellow",
+      "P710-22",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72658"
+  },
+  {
+    "sku": "camila-black-modern-damask-wallpaper-wallpaper-cca-82845",
+    "handle": "camila-black-modern-damask-wallpaper-wallpaper-cca-82845",
+    "title": "Camila Black Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b2b960498e0ed9d8d628cb4a9ed18e7.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "Dark Olive",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "LA Walls",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-black-modern-damask-wallpaper-wallpaper-cca-82845"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_br029-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br029-jpg",
+    "title": "BR029 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br028.jpg?v=1733873655",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "BR029",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br029-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ad9513-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad9513-jpg",
+    "title": "Ambient Design - AD9513 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9512.jpg?v=1733874140",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9513-jpg"
+  },
+  {
+    "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894",
+    "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894",
+    "title": "St Lawrence Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xws-52894-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734574",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52894"
+  },
+  {
+    "sku": "dwh-49100",
+    "handle": "dwh-49100",
+    "title": "Victoria Vintage Cream Self Adhesive Removable",
+    "vendor": "DW Home",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11829338-victoria-vintage-cream-by-designerwallcoverings_2.jpg?v=1630457904",
+    "tags": [
+      "1920s",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Classic",
+      "Commercial",
+      "display_variant",
+      "DW Home",
+      "Exclusive",
+      "Floral",
+      "Historic",
+      "Light Goldenrodyellow",
+      "No Samples Available",
+      "Paper",
+      "Restoration",
+      "Self Adhesive Removable",
+      "Stripe",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Victoria Vintage",
+      "Victoria Vintage Cream Self Adhesive Removable",
+      "Vintage",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 480.45,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwh-49100"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73114",
+    "handle": "puna-drive-natural-grassweave-hlw-73114",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73114-sample-clean.jpg?v=1774483526",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "Living Room",
+      "Minimalist",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Puna Drive",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73114"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+    "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-47311-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704383",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Berkeley Type 2 Vinyl  Wallcovering",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Cream",
+      "Glamorous",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Luxe",
+      "Luxurious",
+      "Paper",
+      "Regencycore",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47311"
+  },
+  {
+    "sku": "dwc-1001626",
+    "handle": "dwc-1001626",
+    "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_4693309259827.jpg?v=1775521204",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Light Gray",
+      "NCW4350-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001626"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9494",
+    "handle": "chinese-fret-walls-cfw-9494",
+    "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-9494-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708082",
+    "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-9494"
+  },
+  {
+    "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": "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": "wolfgordonwallcovering_dwwg_ad10359-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad10359-jpg",
+    "title": "Ambient Design - AD10359 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10358.jpg?v=1733874064",
+    "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_ad10359-jpg"
+  },
+  {
+    "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": "marketfield-faux-durable-walls-xwh-52316",
+    "handle": "marketfield-faux-durable-walls-xwh-52316",
+    "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-portobello.jpg?v=1777480455",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52316"
+  },
+  {
+    "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": "dwc-1001634",
+    "handle": "dwc-1001634",
+    "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_4693309751347.jpg?v=1775521255",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Green",
+      "NCW4351-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001634"
+  },
+  {
+    "sku": "hollywood-crystal-xhw-2010107",
+    "handle": "hollywood-crystal-xhw-2010107",
+    "title": "Hollywood Crystal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-carnelian.jpg?v=1777480960",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Crystal",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010107"
+  },
+  {
+    "sku": "bleinheim-lanvino-wallpaper-xe7-66836",
+    "handle": "bleinheim-lanvino-wallpaper-xe7-66836",
+    "title": "Bleinheim Lanvino Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab0881c2dec5c854722e4ddb1440785d.jpg?v=1572309567",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bleinheim Lanvino Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Light Brown",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Tan",
+      "Textured",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 37.27,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66836"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72406",
+    "handle": "rivo-dulce-durable-vinyl-dur-72406",
+    "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-72406-sample-clean.jpg?v=1774485406",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Rivo Dulce Durable Vinyl",
+      "Sand",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72406"
+  },
+  {
+    "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": "word-walls-scr-8128",
+    "handle": "word-walls-scr-8128",
+    "title": "Word Walls",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a561dc29892a6b981c8ffb0b7927f65f.jpg?v=1572309108",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Gray",
+      "Light Blue",
+      "Luxury Screen Printed Wallpapers",
+      "Paper",
+      "Screen Print",
+      "Wallcovering",
+      "Whimsical",
+      "Whimsical Screen Prints Vol. 1",
+      "White"
+    ],
+    "max_price": 263.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/word-walls-scr-8128"
+  },
+  {
+    "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": "limoges-durable-vinyl-dur-72021",
+    "handle": "limoges-durable-vinyl-dur-72021",
+    "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-72021-sample-clean.jpg?v=1774484014",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Energetic",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Limoges Durable Vinyl",
+      "Living Room",
+      "Modern",
+      "Non-woven",
+      "Orange",
+      "Peach",
+      "Raspberry",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72021"
+  },
+  {
+    "sku": "logan-brown-croc-texture-wallpaper-cca-82971",
+    "handle": "logan-brown-croc-texture-wallpaper-cca-82971",
+    "title": "Logan Brown Croc Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ff75b8e562a0596523ed9ac80f68edf.jpg?v=1572309963",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Crocodile",
+      "Discontinued",
+      "Embossed",
+      "Expanded Vinyl",
+      "Faux",
+      "Faux Effects",
+      "LA Walls",
+      "Masculine",
+      "Peelable",
+      "Prepasted",
+      "Series: Brewster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/logan-brown-croc-texture-wallpaper-cca-82971"
+  },
+  {
+    "sku": "daytona-faux-embossed-durable-walls-xwc-53271",
+    "handle": "daytona-faux-embossed-durable-walls-xwc-53271",
+    "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-53271-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710157",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53271"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwj-52396",
+    "handle": "prince-vertical-emboss-durable-walls-xwj-52396",
+    "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-opera_white.jpg?v=1777480571",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwj-52396"
+  },
+  {
+    "sku": "komo-diamond-bamboo-wallpaper-trf-56824",
+    "handle": "komo-diamond-bamboo-wallpaper-trf-56824",
+    "title": "Komo Diamond Bamboo | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b6dbc5bfb9ee9ce55a73ce425eefbdbb.jpg?v=1750789757",
+    "tags": [
+      "arbor",
+      "Architectural",
+      "Asian",
+      "bamboo",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "dark grey",
+      "diamond",
+      "Discontinued",
+      "frame work",
+      "Geometric",
+      "grille",
+      "Jeffrey Stevens",
+      "lattice",
+      "light aqua",
+      "Light Blue",
+      "Light Blue-Gray",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "Off-White",
+      "Paper",
+      "Prepasted - Washable - Strippable",
+      "screen",
+      "Series: York",
+      "Textured",
+      "treillage",
+      "trellis",
+      "tropical",
+      "USA",
+      "Wallcovering",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/komo-diamond-bamboo-wallpaper-trf-56824"
+  },
+  {
+    "sku": "saint-lore-durable-vinyl-dur-72227",
+    "handle": "saint-lore-durable-vinyl-dur-72227",
+    "title": "Saint Lore Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72227-sample-clean.jpg?v=1774484819",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72227"
+  },
+  {
+    "sku": "geode-by-innovations-usa-dwc-geode-8",
+    "handle": "geode-by-innovations-usa-dwc-geode-8",
+    "title": "Geode | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Geode-8.jpg?v=1736199484",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geode",
+      "Geode-8",
+      "Gold",
+      "Gray",
+      "Innovations USA",
+      "Non-woven",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/geode-by-innovations-usa-dwc-geode-8"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10232-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10232-jpg",
+    "title": "SM10232 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_SM10231.jpg?v=1733872495",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Gray",
+      "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_sm10232-jpg"
+  },
+  {
+    "sku": "dwkk-127695",
+    "handle": "dwkk-127695",
+    "title": "Rafi - Granite  By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_03_CAC_2849cb27-bc4d-43fb-9312-162a7ffcd62c.jpg?v=1726037781",
+    "tags": [
+      "20.875In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Grey",
+      "display_variant",
+      "Granite",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Non-woven",
+      "Print",
+      "Rafi",
+      "Solid",
+      "Sophisticated",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "United Kingdom",
+      "Vinyl",
+      "W0060/03.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127695"
+  },
+  {
+    "sku": "dwc-1001583",
+    "handle": "dwc-1001583",
+    "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_4693306409011.jpg?v=1775520943",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Green",
+      "NCW4300-03",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Taupe",
+      "Teal",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001583"
+  },
+  {
+    "sku": "frank-s-faux-finish-fff-2935",
+    "handle": "frank-s-faux-finish-fff-2935",
+    "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-2935-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714265",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Cream",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Moire",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 36.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2935"
+  },
+  {
+    "sku": "dwc-1001665",
+    "handle": "dwc-1001665",
+    "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_4693311193139.jpg?v=1775521455",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Maize",
+      "Mustard Yellow",
+      "NCW4390-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Off-white",
+      "Paper",
+      "Stripe",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001665"
+  },
+  {
+    "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48536",
+    "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48536",
+    "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-48536-sample-twickenham-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735479",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48536"
+  },
+  {
+    "sku": "dwc-1001687",
+    "handle": "dwc-1001687",
+    "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_4693312438323.jpg?v=1775521602",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Floral",
+      "NCW4395-01",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Teal",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001687"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-439",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-439",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cb647430b242bdf2009deeab081d961b_20d3cb13-96e4-4bbb-9841-09106e269750.jpg?v=1745458248",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Gray",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 12.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-439"
+  },
+  {
+    "sku": "regal-lattice-screen-printed-wallpaper-tre-12907",
+    "handle": "regal-lattice-screen-printed-wallpaper-tre-12907",
+    "title": "Regal Lattice - Screen Printed Wallcovering",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3547fe79068d43fd86725b501b7c7f01.jpg?v=1572309178",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gray",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Screen Print",
+      "Silver",
+      "Stripe",
+      "Suede",
+      "Textured",
+      "Trellis",
+      "Wallcovering"
+    ],
+    "max_price": 142.16,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12907"
+  },
+  {
+    "sku": "daytona-faux-embossed-durable-walls-xwc-53285",
+    "handle": "daytona-faux-embossed-durable-walls-xwc-53285",
+    "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-53285-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710214",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53285"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44445",
+    "handle": "franko-faux-metallic-patina-ffm-44445",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44445-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714293",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Dark Gray",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44445"
+  },
+  {
+    "sku": "eur-70042-designer-wallcoverings-los-angeles",
+    "handle": "eur-70042-designer-wallcoverings-los-angeles",
+    "title": "Palasini Teal | Designers Guild Europe",
+    "vendor": "Designers Guild",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/22362_0fcec480-4848-49a8-92f7-3ce45db1e44a.webp?v=1738613772",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Designers Guild",
+      "Designers Guild Europe",
+      "Dot",
+      "Hallway",
+      "Light Blue",
+      "Light Gray",
+      "Living Room",
+      "Luxury",
+      "Navy",
+      "Non-Woven",
+      "Organic Modern",
+      "Palasini",
+      "PDG647",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-70042-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-g2b817173",
+    "handle": "dwkk-g2b817173",
+    "title": "Malatesta - Silver Silver By Lee Jofa |  | Damask Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2014100_11_dd836987-ecc0-4368-8896-cb7af39196cd.jpg?v=1753291353",
+    "tags": [
+      "34In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "China",
+      "Commercial",
+      "Damask",
+      "display_variant",
+      "Fabric",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Lee Jofa",
+      "Luxury",
+      "Malatesta",
+      "Non-Wallcovering",
+      "P2014100.11.0",
+      "Paper",
+      "Print",
+      "Silver",
+      "Sisal - 85%;Cotton - 15%",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g2b817173"
+  },
+  {
+    "sku": "gundelson-gunny-sack-vinyl-dwx-58099",
+    "handle": "gundelson-gunny-sack-vinyl-dwx-58099",
+    "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58099-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715152",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Burlap",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Durable",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Modern",
+      "Neutral",
+      "Tan",
+      "Textile Weave",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58099"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+    "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-indigo.jpg?v=1777480795",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Teal",
+      "Bedroom",
+      "Blue",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "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-53175"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_grv-2899_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_grv-2899_8-jpg",
+    "title": "Grove - Wisteria | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2899_8.jpg?v=1762296488",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Grove",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wisteria",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2899_8-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": "chinese-fret-walls-cfw-9490",
+    "handle": "chinese-fret-walls-cfw-9490",
+    "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-9490-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708066",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Elegant Vinyls Vol. 1",
+      "Fretwork",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9490"
+  },
+  {
+    "sku": "tahiti-scenic-wallpaper-trf-56818",
+    "handle": "tahiti-scenic-wallpaper-trf-56818",
+    "title": "Tahiti Scenic | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/134459a080a9afa968cb76c4447cf87e.jpg?v=1750789764",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Asian",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Bridge",
+      "bright",
+      "cabana",
+      "Chinoiserie",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Denim Blue",
+      "Discontinued",
+      "Elephant",
+      "floral",
+      "flowers",
+      "Jeffrey Stevens",
+      "light to dark blue",
+      "medium scale",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "novelty",
+      "Off-White",
+      "overall",
+      "pagoda",
+      "Paper",
+      "Pastel",
+      "Prepasted - Washable - Strippable",
+      "scenic",
+      "Series: York",
+      "Traditional",
+      "tropical",
+      "USA",
+      "Wallcovering",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56818"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72413",
+    "handle": "rivo-dulce-durable-vinyl-dur-72413",
+    "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-72413-sample-clean.jpg?v=1774485440",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Rivo Dulce Durable Vinyl",
+      "Serene",
+      "Slate Gray",
+      "Solid",
+      "Textured",
+      "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-72413"
+  },
+  {
+    "sku": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+    "handle": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+    "title": "Anahi Light Pink Forest Fauna Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a4bc515949001796aa5e3fdc6fe8a04.jpg?v=1572309964",
+    "tags": [
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Bird",
+      "Botanical",
+      "Commercial",
+      "Deer",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Flowers",
+      "LA Walls",
+      "Light Pink",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Rabbit",
+      "Series: Brewster",
+      "Strippable",
+      "Trees",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/anahi-light-pink-forest-fauna-wallpaper-cca-82985"
+  },
+  {
+    "sku": "dwkk-129103",
+    "handle": "dwkk-129103",
+    "title": "W3733-1 Ivory | Kravet Design | Ronald Redding | Solid Texture Wallcovering",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3733_1_de4cc822-764b-4d2a-a1af-5a6bf2a12e77.jpg?v=1753121554",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cork - 100%",
+      "display_variant",
+      "Ivory",
+      "Kravet",
+      "Kravet Design",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Non-Woven",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "Ronald Redding",
+      "Scandinavian",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "United States",
+      "W3733-1",
+      "W3733.1.0",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129103"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_cct-2673-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_cct-2673-jpg",
+    "title": "Connections - Tan | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cct-2673.jpg?v=1762289756",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Connections",
+      "Contract",
+      "Geometric",
+      "Light Gray",
+      "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-2673-jpg"
+  },
+  {
+    "sku": "dwss-72707",
+    "handle": "dwss-72707",
+    "title": "Alfred willow green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/815-28_image1_5cbdab38-c0de-497c-b602-f764ecf76ad1.jpg?v=1646105144",
+    "tags": [
+      "Alfred",
+      "Alfred willow green  sample",
+      "Architectural",
+      "Commercial",
+      "Gray",
+      "P815-28",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Stripe",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "WILLOW GREEN"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72707"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47126",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47126",
+    "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-47126-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700375",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Ashbourne Type 2 Vinyl",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47126"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73123",
+    "handle": "puna-drive-natural-grassweave-hlw-73123",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73123-sample-clean.jpg?v=1774483569",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Coastal",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Light Brown",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Olive",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Sage",
+      "Tan",
+      "Textured",
+      "Tropical",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73123"
+  },
+  {
+    "sku": "gianna-purple-texture-wallpaper-wallpaper-cca-82885",
+    "handle": "gianna-purple-texture-wallpaper-wallpaper-cca-82885",
+    "title": "Gianna Purple Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b82ff3bf78297ddd91375f585b27aac.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Effects",
+      "Gray",
+      "LA Walls",
+      "Lattice",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gianna-purple-texture-wallpaper-wallpaper-cca-82885"
+  },
+  {
+    "sku": "medusa-label-metallic-black-white-wallcovering-versace",
+    "handle": "medusa-label-metallic-black-white-wallcovering-versace",
+    "title": "Medusa Label Metallic, Black, White Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1957e67e8c29a8e79e3490a7f4a9fbc3.jpg?v=1773706355",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Geometric",
+      "Gray",
+      "Greek Key",
+      "Haute Couture",
+      "Italian",
+      "Light Gray",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Medusa Label",
+      "Medusa Label Metallic",
+      "Neoclassical",
+      "Off-white",
+      "Paste the wall",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "White Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/medusa-label-metallic-black-white-wallcovering-versace"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72050",
+    "handle": "saint-helene-durable-vinyl-dur-72050",
+    "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-72050-sample-clean.jpg?v=1774484146",
+    "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",
+      "Light Beige",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72050"
+  },
+  {
+    "sku": "saint-brittany-durable-vinyl-dur-72235",
+    "handle": "saint-brittany-durable-vinyl-dur-72235",
+    "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72235-sample-clean.jpg?v=1774484855",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72235"
+  },
+  {
+    "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52348",
+    "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52348",
+    "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-khaki.jpg?v=1777480506",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Golden Yellow",
+      "Grasscloth",
+      "Grasscloth Look",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Mustard Yellow",
+      "Natural",
+      "Natural Texture",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 63.57,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52348"
+  },
+  {
+    "sku": "fusuma-parchment-romo",
+    "handle": "fusuma-parchment-romo",
+    "title": "Fusuma Parchment | Romo Wallcovering",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW170-01-fusuma-wallcovering-parchment_01.jpg?v=1776398815",
+    "tags": [
+      "Architectural",
+      "Background Color beige",
+      "beige",
+      "Collage IV",
+      "Commercial",
+      "Conference Room",
+      "Contemporary",
+      "Cream",
+      "Durable",
+      "Easy To Clean",
+      "Geometric",
+      "light brown",
+      "Lobby",
+      "Medium",
+      "Minimalist",
+      "Modern",
+      "MW170/01",
+      "Neutral",
+      "Office",
+      "Romo",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fusuma-parchment-romo"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_ad10337-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad10337-jpg",
+    "title": "Ambient Design - AD10337 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10336.jpg?v=1733874115",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "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_ad10337-jpg"
+  },
+  {
+    "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": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+    "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-47329-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704847",
+    "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",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47329"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72408",
+    "handle": "rivo-dulce-durable-vinyl-dur-72408",
+    "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-72408-sample-clean.jpg?v=1774485416",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Ecru",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Off-white",
+      "Organic Modern",
+      "Rivo Dulce Durable Vinyl",
+      "Serene",
+      "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/rivo-dulce-durable-vinyl-dur-72408"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73111",
+    "handle": "puna-drive-natural-grassweave-hlw-73111",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73111-sample-clean.jpg?v=1774483505",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73111"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-440",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-440",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8970edc6a9ddd89d63d94f66b98c7b26_9028b00b-8b7e-4bc5-bf26-9d99f91e5d4f.jpg?v=1745458246",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Light Brown",
+      "Light Gray",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Textured",
+      "Tropical",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 16.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-440"
+  },
+  {
+    "sku": "dwkk-g54fcd96c",
+    "handle": "dwkk-g54fcd96c",
+    "title": "Ikat Stripe Wp - Azure Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_155_62710527-d0d5-416b-b3b9-fa1550553877.jpg?v=1753291839",
+    "tags": [
+      "27.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Blithfield",
+      "Blue",
+      "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "display_variant",
+      "Fabric",
+      "Ikat",
+      "Ikat Stripe Wp",
+      "Ikat/Southwest/Kilims",
+      "Lee Jofa",
+      "Light Blue",
+      "Luxury",
+      "Pattern",
+      "Pbfc-3531.155.0",
+      "Print",
+      "Stripe",
+      "Stripes",
+      "United States",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g54fcd96c"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_fdn-5412-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_fdn-5412-jpg",
+    "title": "Foundation Plus - Pigment | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5412.jpg?v=1762294570",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Foundation Plus",
+      "Gray",
+      "Light Gray",
+      "Non-woven",
+      "Pigment",
+      "RAMPART®",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5412-jpg"
+  },
+  {
+    "sku": "zoe-snow-coco-texture-wallpaper-cca-83292",
+    "handle": "zoe-snow-coco-texture-wallpaper-cca-83292",
+    "title": "Zoe Snow Coco Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/67ed6df3aa596bac95c571eaf2a622a3.jpg?v=1572309983",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "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/zoe-snow-coco-texture-wallpaper-cca-83292"
+  },
+  {
+    "sku": "versace-green-embossed-wallcovering-versace",
+    "handle": "versace-green-embossed-wallcovering-versace",
+    "title": "Versace Green Embossed Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0a6f8f65ab1dec58ce278bfc65c08403.jpg?v=1773706418",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "display_variant",
+      "Embossed",
+      "Farmhouse",
+      "Forest Green",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Italian",
+      "Linen Texture",
+      "Living Room",
+      "Luxury",
+      "Organic Modern",
+      "Paste the wall",
+      "Sage Green",
+      "Sea Green",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Green Embossed",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-green-embossed-wallcovering-versace"
+  },
+  {
+    "sku": "dwkk-115495",
+    "handle": "dwkk-115495",
+    "title": "Oxford - Charcoal | 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/AMW10010_21_96e5acd2-fa42-4b24-8c87-2800f361cad8.jpg?v=1753123202",
+    "tags": [
+      "26.5In",
+      "Amw10010.21.0",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Charcoal",
+      "Commercial",
+      "Contemporary",
+      "Dark Academia",
+      "display_variant",
+      "Eclectic",
+      "Gray",
+      "Grey",
+      "India",
+      "Industrial",
+      "Kravet",
+      "Kravet Couture",
+      "Living Room",
+      "Moody",
+      "Novelty",
+      "Off-white",
+      "Office",
+      "Oxford",
+      "Paper",
+      "Paper - 100%",
+      "Print",
+      "Rustic",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-115495"
+  },
+  {
+    "sku": "cesare-acoustical-walls-act-73260",
+    "handle": "cesare-acoustical-walls-act-73260",
+    "title": "Cesare Acoustical Walls",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/64df95d5427dfad88ae9cdd95118bfe7.jpg?v=1572309803",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Cesare Acoustical Walls",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Light Brown",
+      "Living Room",
+      "Organic Modern",
+      "Phillip Romano Commercial",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-act-73260"
+  },
+  {
+    "sku": "rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129",
+    "handle": "rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129",
+    "title": "Rangeley Aqua New Avalon Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52be891af14fd3172d4154a9b8216996.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "LA Walls",
+      "Light Green",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10200-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10200-jpg",
+    "title": "SP10200 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9515.jpg?v=1733872404",
+    "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_sp10200-jpg"
+  },
+  {
+    "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47645",
+    "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47645",
+    "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-47645-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711142",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Pale Grey",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47645"
+  },
+  {
+    "sku": "pauline-s-retro-geometric-scr-8002",
+    "handle": "pauline-s-retro-geometric-scr-8002",
+    "title": "Pauline's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9092bce2599e0c8a6f04624c9558ebde.jpg?v=1572309104",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Designer Wallcoverings",
+      "Floral",
+      "Ivory",
+      "Light Blue",
+      "Mid-Century Modern",
+      "Paper",
+      "Pauline's Retro Geometric",
+      "Powder",
+      "Screen Print",
+      "Steel",
+      "vinyl",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White"
+    ],
+    "max_price": 146.18,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pauline-s-retro-geometric-scr-8002"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+    "title": "Hugo - Khaki | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3323_8.jpg?v=1762297605",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Grasscloth",
+      "Gray",
+      "Herringbone",
+      "Hugo",
+      "Light Gray",
+      "Linen",
+      "Silver",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3323_8-jpg"
+  },
+  {
+    "sku": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+    "handle": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+    "title": "Oakland Mauve Grasscloth Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5f180b806d04f3188d92b81d60c8fd06.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Grasscloth",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "LA Walls",
+      "Light Brown",
+      "Mauve",
+      "Natural",
+      "Natural Wallcovering",
+      "Oakland Mauve Grasscloth Stripe Wallcovering",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 49.01,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oakland-mauve-grasscloth-stripe-wallpaper-cca-83165"
+  },
+  {
+    "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": "millinocket-cream-illusion-stripe-wallpaper-cca-83112",
+    "handle": "millinocket-cream-illusion-stripe-wallpaper-cca-83112",
+    "title": "Millinocket Cream Illusion Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a5bfcf1b9e1bf6b9653925503bc4039d.jpg?v=1572309969",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "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/millinocket-cream-illusion-stripe-wallpaper-cca-83112"
+  },
+  {
+    "sku": "dwss-72463",
+    "handle": "dwss-72463",
+    "title": "Sigfrid cream Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/425-01_image1_a6836dcd-1c81-4c11-9356-d68610f01051.jpg?v=1646104347",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Nouveau",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Off-white",
+      "P425-01",
+      "Paper",
+      "Sandberg",
+      "Sigfrid",
+      "Sigfrid cream  Sample",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72463"
+  },
+  {
+    "sku": "dwc-1001585",
+    "handle": "dwc-1001585",
+    "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_4693342912563.jpg?v=1775521668",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "Light Gray",
+      "NCW4300-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001585"
+  },
+  {
+    "sku": "st-dennis-durable-vinyl-dur-72288",
+    "handle": "st-dennis-durable-vinyl-dur-72288",
+    "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-72288-sample-clean.jpg?v=1774485046",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Modern",
+      "Off-white",
+      "Sage Green",
+      "Serene",
+      "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-72288"
+  },
+  {
+    "sku": "siti-diabla-durable-vinyl-dur-72435",
+    "handle": "siti-diabla-durable-vinyl-dur-72435",
+    "title": "Siti Diabla Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72435-sample-clean.jpg?v=1774485546",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Herringbone",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Pale Beige",
+      "Serene",
+      "Siti Diabla Durable Vinyl",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/siti-diabla-durable-vinyl-dur-72435"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blg-5632-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blg-5632-jpg",
+    "title": "Belgrade - Verde | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5632.jpg?v=1762287561",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Belgrade",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Green",
+      "Green",
+      "RAMPART®",
+      "Textured",
+      "Verde",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5632-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9513-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9513-jpg",
+    "title": "SM9513 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9512.jpg?v=1733872504",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "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_sm9513-jpg"
+  },
+  {
+    "sku": "gianna-blackberry-texture-wallpaper-wallpaper-cca-82879",
+    "handle": "gianna-blackberry-texture-wallpaper-wallpaper-cca-82879",
+    "title": "Gianna Blackberry Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1b4ec75e87cefefd6dcbe8fcc21040a6.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Effects",
+      "LA Walls",
+      "Mauve",
+      "Pink",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gianna-blackberry-texture-wallpaper-wallpaper-cca-82879"
+  },
+  {
+    "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": "eur-80536-pcl695-designer-wallcoverings-los-angeles",
+    "handle": "eur-80536-pcl695-designer-wallcoverings-los-angeles",
+    "title": "Malmaison Botanical 03 Black | Christian Lacroix Europe",
+    "vendor": "Christian Lacroix Europe",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/56566_c75a3b26-d1ab-4c49-abce-284360a7979e.webp?v=1738950906",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Botanical",
+      "Christian Lacroix Europe",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "Dramatic",
+      "Eclectic",
+      "Floral",
+      "Green",
+      "INCROYABLE ET MARVEILLEUS",
+      "Lavender",
+      "Light Peach",
+      "Living Room",
+      "Malmaison Botanical",
+      "Maximalist",
+      "Moss",
+      "Non-Woven",
+      "Orange",
+      "Pale Yellow",
+      "Pastel Pink",
+      "Pattern",
+      "PCL695",
+      "Pink",
+      "Purple",
+      "Sage Green",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80536-pcl695-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "harpswell-cream-herringbone-awning-stripe-wallpaper-cca-83159",
+    "handle": "harpswell-cream-herringbone-awning-stripe-wallpaper-cca-83159",
+    "title": "Harpswell Cream Herringbone Awning Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/12b994df0e8738ccdecea99836daad79.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Harpswell Cream Herringbone Awning Stripe Wallcovering",
+      "LA Walls",
+      "Light Beige",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harpswell-cream-herringbone-awning-stripe-wallpaper-cca-83159"
+  },
+  {
+    "sku": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+    "handle": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+    "title": "Steuben Aqua Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/368f6eec141e7fdf697ff54cd40f71b7.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Aqua",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Coral",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Steuben Aqua Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-aqua-turf-stripe-wallpaper-cca-83169"
+  },
+  {
+    "sku": "eur-80424-ncw4490-designer-wallcoverings-los-angeles",
+    "handle": "eur-80424-ncw4490-designer-wallcoverings-los-angeles",
+    "title": "Foret 04 - 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_7513507561523.jpg?v=1775524003",
+    "tags": [
+      "ANIMAL/INSECTS",
+      "Architectural",
+      "Bedroom",
+      "bird",
+      "Birds",
+      "Botanical",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Deer",
+      "Flower",
+      "Foret",
+      "Grandmillennial",
+      "Green",
+      "Living Room",
+      "NCW4490",
+      "NCW4490-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Off-white",
+      "Paper",
+      "Sage",
+      "Scenic",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Toile",
+      "Traditional",
+      "Tree",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80424-ncw4490-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "vernon-durable-walls-xwr-52698",
+    "handle": "vernon-durable-walls-xwr-52698",
+    "title": "Vernon Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52698-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735785",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Dark Olive Green",
+      "Grasscloth",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Leed Walls",
+      "Living Room",
+      "Office",
+      "Olive",
+      "Olive Green",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vernon Durable",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52698"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp9503-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp9503-jpg",
+    "title": "SP9503 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9502.jpg?v=1733872424",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Blue",
+      "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_sp9503-jpg"
+  },
+  {
+    "sku": "dwkk-129223",
+    "handle": "dwkk-129223",
+    "title": "W3781-3 Green | Kravet Design | Tropical Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3781_3_d24754a5-9704-4fc9-9785-5af047eba1dd.jpg?v=1753291935",
+    "tags": [
+      "20.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Botanical",
+      "Commercial",
+      "display_variant",
+      "Green",
+      "Kravet",
+      "Kravet Design",
+      "Leaf",
+      "Light Green",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Tropical",
+      "United States",
+      "W3781-3",
+      "W3781.3.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129223"
+  },
+  {
+    "sku": "sebago-blue-dry-brush-stripe-wallpaper-cca-83101",
+    "handle": "sebago-blue-dry-brush-stripe-wallpaper-cca-83101",
+    "title": "Sebago Blue Dry Brush Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d0da64b1d5e2929d82f52121b92d2c6c.jpg?v=1572309968",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Gray",
+      "Non-woven",
+      "Prepasted",
+      "Sebago Blue Dry Brush Stripe Wallcovering",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sebago-blue-dry-brush-stripe-wallpaper-cca-83101"
+  },
+  {
+    "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": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+    "handle": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+    "title": "Steuben Wheat Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c41844e9e4c4cf5752f9573c81379fb.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Steuben Wheat Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "Wheat",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-wheat-turf-stripe-wallpaper-cca-83167"
+  },
+  {
+    "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48585",
+    "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48585",
+    "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-48585-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735815",
+    "tags": [
+      "20 oz",
+      "41 Inch Width",
+      "41\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Copper",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Orange",
+      "Organic Modern",
+      "Rustic",
+      "Seafoam Green",
+      "Teal",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "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-48585"
+  },
+  {
+    "sku": "colby-pink-love-spots-wallpaper-cca-83001",
+    "handle": "colby-pink-love-spots-wallpaper-cca-83001",
+    "title": "Colby Pink Love Spots Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aafaf3e0e93f56dfbfe5ae941cad3790.jpg?v=1572309965",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "Geometric",
+      "Green",
+      "LA Walls",
+      "Paper",
+      "Pink",
+      "Polka Dots",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/colby-pink-love-spots-wallpaper-cca-83001"
+  },
+  {
+    "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": "hallandale-rice-paper-effect-durable-walls-xwt-53460",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53460",
+    "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-53460-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715854",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallandale Rice Paper Effect Durable",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Organic Modern",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53460"
+  },
+  {
+    "sku": "cody-couture-wallpaper-xb2-66518",
+    "handle": "cody-couture-wallpaper-xb2-66518",
+    "title": "Cody Couture Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/89703cb2b7c087d28608eca46d62e489.jpg?v=1775128728",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Cody Couture Wallcovering",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Geometric",
+      "Gray",
+      "Hotel Lobby",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Silver",
+      "Textural",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 50.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66518"
+  },
+  {
+    "sku": "marseilles-durable-vinyl-dur-72003",
+    "handle": "marseilles-durable-vinyl-dur-72003",
+    "title": "Marseilles Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72003-sample-clean.jpg?v=1774483916",
+    "tags": [
+      "AI-Analyzed-v2",
+      "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",
+      "Living Room",
+      "Marseilles Durable Vinyl",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72003"
+  },
+  {
+    "sku": "lanvin-arpergeo-wallpaper-xb8-66605",
+    "handle": "lanvin-arpergeo-wallpaper-xb8-66605",
+    "title": "Lanvin Arpergeo Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c71da520066935dd7352452217184be2.jpg?v=1775132191",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Dining Room",
+      "Lanvin Arpergeo Wallcovering",
+      "Living Room",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Red",
+      "Stripe",
+      "Striped",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66605"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dtup-481-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dtup-481-jpg",
+    "title": "Tupelo - Driftwood | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DTUP-481.jpg?v=1762292610",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Digital Curated",
+      "Driftwood",
+      "Paper",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Tupelo",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dtup-481-jpg"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwa-52095",
+    "handle": "canal-texture-durable-walls-xwa-52095",
+    "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-red.jpg?v=1777480400",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Terracotta",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Color: Red",
+      "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",
+      "Light Terracotta",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Red",
+      "Rustic",
+      "Stripe",
+      "Terracotta",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "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-xwa-52095"
+  },
+  {
+    "sku": "gianna-ice-texture-wallpaper-wallpaper-cca-82883",
+    "handle": "gianna-ice-texture-wallpaper-wallpaper-cca-82883",
+    "title": "Gianna Ice Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/61de9e558cfab653c70a71f23232efff.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Effects",
+      "LA Walls",
+      "Light Blue",
+      "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-ice-texture-wallpaper-wallpaper-cca-82883"
+  },
+  {
+    "sku": "dwkk-128415",
+    "handle": "dwkk-128415",
+    "title": "Mirage - Aqua Light Blue | Kravet Design | Sarah Richardson Wallcovering |Modern Ikat/Southwest/Kilims Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3509_315_444029d1-787e-4ab5-ae65-56d3bf72ed85.jpg?v=1753292769",
+    "tags": [
+      "20.5In",
+      "abstract",
+      "Aqua",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Cellulose - 50%;Other - 30%;Polyester - 20%",
+      "Coastal",
+      "Commercial",
+      "contemporary",
+      "display_variant",
+      "ikat",
+      "Ikat/Southwest/Kilims",
+      "Kravet",
+      "Kravet Design",
+      "Light Blue",
+      "Light Gray",
+      "Light Green",
+      "Light Grey",
+      "Living Room",
+      "Mirage",
+      "Modern",
+      "Non-woven",
+      "Off-white",
+      "Pale Yellow",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Sarah Richardson Wallcovering",
+      "Serene",
+      "smooth",
+      "Transitional",
+      "United Kingdom",
+      "W3509.315.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128415"
+  },
+  {
+    "sku": "dwss-72639",
+    "handle": "dwss-72639",
+    "title": "Einar blue Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/702-56_image1_0736eedb-b7a8-4431-b286-40617c3207de.jpg?v=1646104917",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Commercial",
+      "Einar",
+      "Einar blue  Sample",
+      "Geometric",
+      "Lattice",
+      "P702-56",
+      "Paper",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72639"
+  },
+  {
+    "sku": "nicky-sky-textured-pinstripe-wallpaper-cca-83030",
+    "handle": "nicky-sky-textured-pinstripe-wallpaper-cca-83030",
+    "title": "Nicky Sky Textured Pinstripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a840708a1f5b29ad1e205d9a4bdb909c.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "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-sky-textured-pinstripe-wallpaper-cca-83030"
+  },
+  {
+    "sku": "indian-shores-faux-effect-durable-walls-xwo-53641",
+    "handle": "indian-shores-faux-effect-durable-walls-xwo-53641",
+    "title": "Indian Shores Faux Effect Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53641-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719532",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cool",
+      "Dark Teal",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53641"
+  },
+  {
+    "sku": "calais-red-grain-stripe-wallpaper-cca-83190",
+    "handle": "calais-red-grain-stripe-wallpaper-cca-83190",
+    "title": "Calais Red Grain Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3499948a7533a0b6d63733b39f272f51.jpg?v=1572309972",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Fabric",
+      "Farmhouse",
+      "Gray",
+      "LA Walls",
+      "Prepasted",
+      "Red",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Woven",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/calais-red-grain-stripe-wallpaper-cca-83190"
+  },
+  {
+    "sku": "eur-80429-ncw4491-designer-wallcoverings-los-angeles",
+    "handle": "eur-80429-ncw4491-designer-wallcoverings-los-angeles",
+    "title": "Almora 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_7513507725363.jpg?v=1775524037",
+    "tags": [
+      "Almora",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Hallway",
+      "Ivory",
+      "Living Room",
+      "NCW4491",
+      "NCW4491-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Sage Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Sky Blue",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80429-ncw4491-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ncw4301-01",
+    "handle": "ncw4301-01",
+    "title": "Les Rêves Beau Rivage Duck Egg/Taupe - 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_4497261625395.jpg?v=1775520183",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Light Blue",
+      "Mid-Century Modern",
+      "NCW4301-01",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4301-01"
+  },
+  {
+    "sku": "eur-80345-ncw4350-designer-wallcoverings-los-angeles",
+    "handle": "eur-80345-ncw4350-designer-wallcoverings-los-angeles",
+    "title": "Les Indiennes Paisley Damask 02 - Grey Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504940083.jpg?v=1775523517",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Damask",
+      "Gray",
+      "LES INDIENNES",
+      "Les Indiennes Paisley Damask",
+      "NCW4350",
+      "NCW4350-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80345-ncw4350-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwc-1001615",
+    "handle": "dwc-1001615",
+    "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_4693308670003.jpg?v=1775521134",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bohemian",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Geometric",
+      "Light Blue",
+      "NCW4306-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Stripe",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001615"
+  },
+  {
+    "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73276",
+    "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73276",
+    "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-73276-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707662",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Caterina Embossed Vinyl",
+      "Champagne",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Paper",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Navy Blue",
+      "Phillip Romano Commercial",
+      "Solid",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73276"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10225-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10225-jpg",
+    "title": "SP10225 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10223.jpg?v=1733872357",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "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_sp10225-jpg"
+  },
+  {
+    "sku": "dwkk-139953",
+    "handle": "dwkk-139953",
+    "title": "Baldwin Stripe Wp - Poppy Red By Lee Jofa | Sarah Bartholomew Wallpapers | Stripes Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2022100_19.jpg?v=1753302323",
+    "tags": [
+      "27In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Baldwin Stripe Wp",
+      "Bedroom",
+      "Brick Red",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "display_variant",
+      "Farmhouse",
+      "Hallway",
+      "Lee Jofa",
+      "Living Room",
+      "P2022100.19.0",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Pear",
+      "Poppy",
+      "Print",
+      "Red",
+      "Stripe",
+      "Stripes",
+      "Traditional",
+      "United States",
+      "Wallcovering",
+      "Warm",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-139953"
+  },
+  {
+    "sku": "randolph-natural-wine-crates-wallpaper-cca-82935",
+    "handle": "randolph-natural-wine-crates-wallpaper-cca-82935",
+    "title": "Randolph Natural Wine Crates Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1f3a17e3451c7e06d4c9f366907ad187.jpg?v=1572309962",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "European",
+      "Farmhouse",
+      "Faux",
+      "Faux Effects",
+      "LA Walls",
+      "Masculine",
+      "Natural",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/randolph-natural-wine-crates-wallpaper-cca-82935"
+  },
+  {
+    "sku": "dwss-72723",
+    "handle": "dwss-72723",
+    "title": "Lillie garden green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/829-38_image1_fe0eff5e-b256-4805-8009-299e631e6fdd.jpg?v=1646105202",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "GARDEN GREEN",
+      "Gray",
+      "Light Gray",
+      "Lillie",
+      "Lillie garden green  sample",
+      "Ogee",
+      "P829-38",
+      "Paper",
+      "Sandberg",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72723"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47656",
+    "handle": "fairford-vinyl-wallcovering-xlb-47656",
+    "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-47656-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711579",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Estimated Type: Paper",
+      "Glamorous",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Luxe",
+      "Navy Blue",
+      "Off-white",
+      "Regencycore",
+      "Solid",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47656"
+  },
+  {
+    "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": "juno-faux-silk-durable-walls-xje-53756",
+    "handle": "juno-faux-silk-durable-walls-xje-53756",
+    "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53756-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720099",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Juno Faux Silk Durable",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53756"
+  },
+  {
+    "sku": "westville-contemporary-durable-walls-xje-53682",
+    "handle": "westville-contemporary-durable-walls-xje-53682",
+    "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-53682-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736448",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Organic Modern",
+      "Pale Grey",
+      "Seafoam Green",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53682"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ad10354-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad10354-jpg",
+    "title": "Ambient Design - AD10354 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10353.jpg?v=1733874081",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10354-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ron-3345-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ron-3345-jpg",
+    "title": "Ronan - Glint | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ron-3345.jpg?v=1762304906",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Glint",
+      "Light Brown",
+      "Ronan",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ron-3345-jpg"
+  },
+  {
+    "sku": "aubrey-alabaster-crystal-texture-wallpaper-cca-83284",
+    "handle": "aubrey-alabaster-crystal-texture-wallpaper-cca-83284",
+    "title": "Aubrey Alabaster Crystal Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aa5e74b3c61b5a0185fdbbd38b8c36be.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Gray",
+      "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-alabaster-crystal-texture-wallpaper-cca-83284"
+  },
+  {
+    "sku": "mason-light-grey-stripe-texture-wallpaper-cca-82923",
+    "handle": "mason-light-grey-stripe-texture-wallpaper-cca-82923",
+    "title": "Mason Light Grey Stripe Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14602e03a16ebb6042459dce858d7b05.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Grey",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mason-light-grey-stripe-texture-wallpaper-cca-82923"
+  },
+  {
+    "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48579",
+    "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48579",
+    "title": "Verwood Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqr-48579-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735798",
+    "tags": [
+      "20 oz",
+      "41 Inch Width",
+      "41\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Concrete",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Industrial",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Organic",
+      "Pale Taupe",
+      "Rustic",
+      "Silver",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Width: 41\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 12.6,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48579"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em9505-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em9505-jpg",
+    "title": "EM9505 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9504.jpg?v=1733873353",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM9505",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9505-jpg"
+  },
+  {
+    "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": "hollywood-crystal-xhw-2010108",
+    "handle": "hollywood-crystal-xhw-2010108",
+    "title": "Hollywood Crystal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-sandstone.jpg?v=1777480963",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Crystal",
+      "Estimated Type: Paper",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Off-white",
+      "Serene",
+      "Textured",
+      "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": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010108"
+  },
+  {
+    "sku": "cody-couture-wallpaper-xb2-66514",
+    "handle": "cody-couture-wallpaper-xb2-66514",
+    "title": "Cody Couture Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d24e5ea345a4d6a3e38fb1b0243e5acb.jpg?v=1775128302",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Cody Couture Wallcovering",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Geometric",
+      "Gray",
+      "Hotel Lobby",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textural",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 50.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66514"
+  },
+  {
+    "sku": "belfast-aqua-galop-stripe-wallpaper-cca-83131",
+    "handle": "belfast-aqua-galop-stripe-wallpaper-cca-83131",
+    "title": "Belfast Aqua Galop Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ca0e7c3e0cf115a0aa19cc40ba20bb13.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/belfast-aqua-galop-stripe-wallpaper-cca-83131"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73073",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73073",
+    "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-73073-sample-clean.jpg?v=1774483344",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "stripe",
+      "Taupe",
+      "textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73073"
+  },
+  {
+    "sku": "gundelson-gunny-sack-vinyl-dwx-58103",
+    "handle": "gundelson-gunny-sack-vinyl-dwx-58103",
+    "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58103-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715263",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Basketweave",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Burlap",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Cream",
+      "Dark Brown",
+      "Durable",
+      "Easy-clean",
+      "Embossed Texture",
+      "Emerald Green",
+      "Glamorous",
+      "Gold",
+      "Grasscloth",
+      "Green",
+      "High-traffic",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Light Brown",
+      "Luxe",
+      "Luxurious",
+      "Modern",
+      "Navy Blue",
+      "Neutral",
+      "Off-white",
+      "Restaurant",
+      "Tan",
+      "Taupe",
+      "Textile Weave",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58103"
+  },
+  {
+    "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47642",
+    "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47642",
+    "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-47642-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711084",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Brown",
+      "Edgware Type 2 Vinyl  Wallcovering",
+      "Emerald Green",
+      "Geometric",
+      "Gold",
+      "Grasscloth",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Lattice",
+      "Luxe",
+      "Navy Blue",
+      "Neoclassical",
+      "Plantation",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47642"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2527",
+    "handle": "faux-leaf-squares-fls-2527",
+    "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-2527-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711945",
+    "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-2527"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st9514-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st9514-jpg",
+    "title": "ST9514 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9513.jpg?v=1733872234",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Paper",
+      "Solid",
+      "ST9514",
+      "Wallcovering",
+      "White",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9514-jpg"
+  },
+  {
+    "sku": "dwkk-127812",
+    "handle": "dwkk-127812",
+    "title": "Golden Parrot Wp - Noir Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0130_04_CAC_90b58e72-53e2-4788-8328-70314725ab07.jpg?v=1753321599",
+    "tags": [
+      "20.5In",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Butterfly",
+      "Charcoal",
+      "Chinoiserie",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "Coral",
+      "Dining Room",
+      "display_variant",
+      "Emerald Green",
+      "Floral",
+      "Golden Parrot Wp",
+      "Golden Yellow",
+      "Grandmillennial",
+      "Green",
+      "Lavender",
+      "Living Room",
+      "Noir",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Novelty",
+      "Paper",
+      "Pink",
+      "Print",
+      "Purple",
+      "Red",
+      "Rose",
+      "Sky Blue",
+      "Sophisticated",
+      "Traditional",
+      "Tropical",
+      "United Kingdom",
+      "W0130/04.Cac.0",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127812"
+  },
+  {
+    "sku": "dwkk-129227",
+    "handle": "dwkk-129227",
+    "title": "W3783-5 Blue | Kravet Design | Botanical & Floral Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3783_5_30261b98-f893-44f0-89d4-867f03afc921.jpg?v=1753291928",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "display_variant",
+      "Floral",
+      "Kravet",
+      "Kravet Design",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Scandinavian",
+      "United States",
+      "W3783-5",
+      "W3783.5.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129227"
+  },
+  {
+    "sku": "varick-durable-walls-xwp-52607",
+    "handle": "varick-durable-walls-xwp-52607",
+    "title": "Varick Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52607-sample-varick-durable-hollywood-wallcoverings.jpg?v=1775735683",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/varick-durable-walls-xwp-52607"
+  },
+  {
+    "sku": "chesterfield-acoustical-wallcovering-xjz-47385",
+    "handle": "chesterfield-acoustical-wallcovering-xjz-47385",
+    "title": "Chesterfield  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1227b10bb6bc1b67cd1421595d8ff98b.jpg?v=1572310051",
+    "tags": [
+      "100% recycled polyester",
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Fabric-backed Vinyl",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Latte",
+      "Light Beige",
+      "Living Room",
+      "Polyester",
+      "Rustic",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Walnut",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47385"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47144",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47144",
+    "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-47144-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700866",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Ashbourne Type 2 Vinyl",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Yellow",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47144"
+  },
+  {
+    "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": "canal-stripe-texture-durable-walls-xwd-52108",
+    "handle": "canal-stripe-texture-durable-walls-xwd-52108",
+    "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-52108-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707096",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Linear",
+      "Living Room",
+      "Pattern",
+      "Serene",
+      "Stripe",
+      "Striped",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 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-52108"
+  },
+  {
+    "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": "lilli-brown-happy-dots-wallpaper-cca-82995",
+    "handle": "lilli-brown-happy-dots-wallpaper-cca-82995",
+    "title": "Lilli Brown Happy Dots Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/142882009782a98c9ecf96a34c541011.jpg?v=1572309964",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Commercial",
+      "Discontinued",
+      "Dot",
+      "Dots",
+      "Easy Walls",
+      "Geometric",
+      "LA Walls",
+      "Multi",
+      "Paper",
+      "Polka Dots",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lilli-brown-happy-dots-wallpaper-cca-82995"
+  },
+  {
+    "sku": "dwss-72688",
+    "handle": "dwss-72688",
+    "title": "Fredrik yellow Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/808-22_image1_b2e9db00-17c6-47f0-af1b-3cf1bdb2757b.jpg?v=1646105073",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Fredrik",
+      "Fredrik yellow  Sample",
+      "Geometric",
+      "Japonisme",
+      "Light Goldenrodyellow",
+      "P808-22",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72688"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+    "title": "Dasma - Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5047_50412f01-1807-46cc-9514-4d1f10afa98d.jpg?v=1762291983",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Dasma",
+      "Grasscloth",
+      "Gray",
+      "Light Gray",
+      "Minimalist",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5047-jpg"
+  },
+  {
+    "sku": "asha-gilver-lotus-damask-wallpaper-cca-83233",
+    "handle": "asha-gilver-lotus-damask-wallpaper-cca-83233",
+    "title": "Asha Gilver Lotus Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/953a612f280856ca4ab13abfd12a81d9.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-gilver-lotus-damask-wallpaper-cca-83233"
+  },
+  {
+    "sku": "mazarin-by-innovations-usa-dwc-mazarin-7",
+    "handle": "mazarin-by-innovations-usa-dwc-mazarin-7",
+    "title": "Mazarin | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-7.jpg?v=1736198921",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gold",
+      "Innovations USA",
+      "Latte",
+      "Mazarin",
+      "Mazarin-7",
+      "Paper",
+      "Sepia",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-7"
+  },
+  {
+    "sku": "zoe-ice-coco-damask-wallpaper-cca-83260",
+    "handle": "zoe-ice-coco-damask-wallpaper-cca-83260",
+    "title": "Zoe Ice Coco Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e81534860a2b19d82fd455a76ab09dd.jpg?v=1572309982",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Embossed",
+      "Faux",
+      "Faux Suede",
+      "LA Walls",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Suede",
+      "Traditional",
+      "Vinyl",
+      "VINYL/FAUX LEATHER",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zoe-ice-coco-damask-wallpaper-cca-83260"
+  },
+  {
+    "sku": "mazarin-by-innovations-usa-dwc-mazarin-9",
+    "handle": "mazarin-by-innovations-usa-dwc-mazarin-9",
+    "title": "Mazarin | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-9.jpg?v=1736198919",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Innovations USA",
+      "Light Gray",
+      "Mazarin",
+      "Mazarin-9",
+      "Non-woven",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-9"
+  },
+  {
+    "sku": "eur-80135-ncw4126-designer-wallcoverings-los-angeles",
+    "handle": "eur-80135-ncw4126-designer-wallcoverings-los-angeles",
+    "title": "Huntly 06 - Pale Gray Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496944691.jpg?v=1775522322",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "BRAEMAR",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Glamorous",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Huntly",
+      "Lattice",
+      "Living Room",
+      "NCW4126",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Pale Grey",
+      "Paper",
+      "Silver",
+      "Sophisticated",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80135-ncw4126-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "hainsville-faux-leather-durable-walls-xwt-53386",
+    "handle": "hainsville-faux-leather-durable-walls-xwt-53386",
+    "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-tuscany_f173dc7c-9192-41f7-bf31-93a140adf195.jpg?v=1777481541",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Camel",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Faux Leather",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Orange",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53386"
+  },
+  {
+    "sku": "eur-80300-ncw4300-designer-wallcoverings-los-angeles",
+    "handle": "eur-80300-ncw4300-designer-wallcoverings-los-angeles",
+    "title": "Collioure 02 - 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_7513502777395.jpg?v=1775523243",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Collioure",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "Geometric",
+      "LES REVES",
+      "Light Blue",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "NCW4300",
+      "NCW4300-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Organic Modern",
+      "Paper",
+      "Serene",
+      "Taupe",
+      "Vases",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80300-ncw4300-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "barnes-rust-paisley-damask-wallpaper-cca-82911",
+    "handle": "barnes-rust-paisley-damask-wallpaper-cca-82911",
+    "title": "Barnes Rust Paisley Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce82d83043536140046b9e708813815a.jpg?v=1572309961",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Masculine",
+      "Modern",
+      "Orange",
+      "Paisley",
+      "Paper",
+      "Prepasted",
+      "Rust",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barnes-rust-paisley-damask-wallpaper-cca-82911"
+  },
+  {
+    "sku": "versace-brand-design-colourful-wallcovering-versace",
+    "handle": "versace-brand-design-colourful-wallcovering-versace",
+    "title": "Versace Brand Design Colourful Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1ffb883deb2c31541a66c9ceb3b9ce00.jpg?v=1773706386",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "Colourful",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Gold",
+      "Grandmillennial",
+      "Greek Key",
+      "Green",
+      "Italian",
+      "Light Green",
+      "Living Room",
+      "Luxury",
+      "Mint Green",
+      "Multi",
+      "Neoclassical",
+      "Pale Pink",
+      "Paste the wall",
+      "Pink",
+      "Purple",
+      "Regencycore",
+      "Sage Green",
+      "Serene",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Brand Design",
+      "Versace Brand Design Colourful Wallcovering",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-brand-design-colourful-wallcovering-versace"
+  },
+  {
+    "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+    "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+    "title": "Maidstone - Sand Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-grey_star.jpg?v=1777480137",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Stone",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Maidstone Type 2 Vinyl  Wallcovering",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Serene",
+      "Silver",
+      "Stone Look",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 55.38,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47942"
+  },
+  {
+    "sku": "vernon-durable-walls-xwp-52692",
+    "handle": "vernon-durable-walls-xwp-52692",
+    "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-52692-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735766",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Leed Walls",
+      "Linen Texture",
+      "Living Room",
+      "Olive",
+      "Organic Modern",
+      "Serene",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52692"
+  },
+  {
+    "sku": "hollywood-antique-damask-xhw-2010216",
+    "handle": "hollywood-antique-damask-xhw-2010216",
+    "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-pigment.jpg?v=1777481017",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "AI-Analyzed-v2",
+      "Antique",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grandmillennial",
+      "Healthcare",
+      "Hollywood Antique Damask",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Medallion",
+      "Mfr-Image-Refreshed",
+      "Non-woven",
+      "Off-white",
+      "Pattern",
+      "Sophisticated",
+      "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-2010216"
+  },
+  {
+    "sku": "ventnor-vinyl-wallcovering-xqq-48570",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48570",
+    "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-48570-sample-clean.jpg?v=1774480637",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Olive Brown",
+      "Organic Modern",
+      "Rustic",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48570"
+  },
+  {
+    "sku": "labasa-taupe-zebra-wbs-39655",
+    "handle": "labasa-taupe-zebra-wbs-39655",
+    "title": "Labasa Taupe Zebra | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39655-sample-labasa-taupe-zebra-hollywood-wallcoverings.jpg?v=1775721027",
+    "tags": [
+      "Abstract",
+      "Animal Print",
+      "Animal Skin",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Beige",
+      "Bricks and Stones",
+      "Brown",
+      "Champagne",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Fauna",
+      "Faux",
+      "Glamorous",
+      "Hallway",
+      "Hollywood Regency",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Non-Woven",
+      "Paper",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "Walnut",
+      "Wood",
+      "Yellow",
+      "Zebra"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/labasa-taupe-zebra-wbs-39655"
+  },
+  {
+    "sku": "sannohe-budget-vinyl-xcf-34332",
+    "handle": "sannohe-budget-vinyl-xcf-34332",
+    "title": "Sannohe Budget Vinyl",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0936a6466f28e672e13a8dfc18602bc2_c5fa68f0-2a03-43df-8148-eadca8fc7401.jpg?v=1572310416",
+    "tags": [
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Phillipe Romano",
+      "Phillipe Romano Essential Textures",
+      "Phillipe Romano Vinyls",
+      "Textured",
+      "Type I Durable Commercial and Residential - Cleanable - Affordable",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34332"
+  },
+  {
+    "sku": "dwkk-115503",
+    "handle": "dwkk-115503",
+    "title": "Timber - White | Kravet Couture | Andrew Martin Engineer | Animal/Insects Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10014_116_8547f8c4-6d38-4e7b-ae49-4a4827e55689.jpg?v=1753123183",
+    "tags": [
+      "26.5In",
+      "AI-Analyzed-v2",
+      "Amw10014.116.0",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bathroom",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Coastal Farmhouse",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Farmhouse",
+      "Gray",
+      "Hallway",
+      "India",
+      "Kravet",
+      "Kravet Couture",
+      "Light Taupe",
+      "Minimalist",
+      "Oatmeal",
+      "Organic",
+      "Paper - 100%",
+      "Print",
+      "Rustic",
+      "Scandinavian",
+      "Silver Gray",
+      "Texture",
+      "Textured",
+      "Timber",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-115503"
+  },
+  {
+    "sku": "kabu-shadow-romo",
+    "handle": "kabu-shadow-romo",
+    "title": "Kabu Shadow | Romo Wallcovering",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W968-06-kabu-wallcovering-shadow_03.jpg?v=1776485101",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Background Color single dominant color",
+      "Charcoal",
+      "Commercial",
+      "Conference Room",
+      "Contemporary",
+      "Deep Charcoal",
+      "Embossed Wallcovering",
+      "Gray",
+      "Industrial",
+      "Kabu",
+      "Kabu Wallcoverings",
+      "Lobby",
+      "Medium",
+      "Minimalist",
+      "Non-woven",
+      "Office",
+      "Romo",
+      "Slate Blue",
+      "Texture",
+      "Textured",
+      "W968/06",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kabu-shadow-romo"
+  },
+  {
+    "sku": "singing-small-mural-by-retro-walls-rtr-37255",
+    "handle": "singing-small-mural-by-retro-walls-rtr-37255",
+    "title": "Singing Small Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e8b177a32b3ab21ce22d82edac5635dd.jpg?v=1572309703",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Balls",
+      "Bed",
+      "Blue",
+      "Books",
+      "Chest",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dog",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Lamp",
+      "Multi",
+      "Mural",
+      "Paper",
+      "Pictures",
+      "Pink",
+      "Scenic",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 84,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/singing-small-mural-by-retro-walls-rtr-37255"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dbrq-300-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dbrq-300-jpg",
+    "title": "Baroque - Tungsten | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DBRQ-300-Swatch.jpg?v=1762290794",
+    "tags": [
+      "100% Mylar",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Baroque",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Damask",
+      "Digital Curated",
+      "Geometric",
+      "Gray",
+      "Light Gray",
+      "Mylar",
+      "Paper",
+      "Tungsten",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dbrq-300-jpg"
+  },
+  {
+    "sku": "rustic-glam-vinyl-gpr-76627",
+    "handle": "rustic-glam-vinyl-gpr-76627",
+    "title": "Rustic Glam Vinyl",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76627-sample-rustic-glam-vinyl.jpg?v=1775731621",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Bling",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Glass Bead",
+      "Hallway",
+      "Hand Crafted",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Mural",
+      "Pale Beige",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76627"
+  },
+  {
+    "sku": "versace-plain-gold-wallcovering-versace",
+    "handle": "versace-plain-gold-wallcovering-versace",
+    "title": "Versace Plain Gold Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9458baf0d981fe45fa5c0cde2a0ca442.jpg?v=1773706459",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Estimated Type: Paper",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Mustard",
+      "Office",
+      "Organic Modern",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-gold-wallcovering-versace"
+  },
+  {
+    "sku": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+    "handle": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+    "title": "Mia Peach Faux Zebra Stripes Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/730be7789c53ba7ca7f92576d3a886c5.jpg?v=1572309958",
+    "tags": [
+      "Animal Prints",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Faux",
+      "Gray",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Yellow",
+      "Zebra"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2763",
+    "handle": "faux-leaf-squares-fls-2763",
+    "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2763-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712039",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Faux Leaf Squares",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "Minimalist",
+      "Silver",
+      "Textured",
+      "vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2763"
+  },
+  {
+    "sku": "douglas-red-vintage-planes-wallpaper-cca-82937",
+    "handle": "douglas-red-vintage-planes-wallpaper-cca-82937",
+    "title": "Douglas Red Vintage Planes Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b2818f88f8d74083e706e6cbd83f5bd9.jpg?v=1572309962",
+    "tags": [
+      "Airplane",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Industrial",
+      "LA Walls",
+      "Masculine",
+      "Novelty",
+      "Paper",
+      "Prepasted",
+      "Red",
+      "Scenic",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vintage",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/douglas-red-vintage-planes-wallpaper-cca-82937"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10419m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10419m-jpg",
+    "title": "ST10419M | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10418m.jpg?v=1733872152",
+    "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_st10419m-jpg"
+  },
+  {
+    "sku": "daytona-faux-contemporary-durable-walls-xwc-53208",
+    "handle": "daytona-faux-contemporary-durable-walls-xwc-53208",
+    "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53208-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710086",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53208"
+  },
+  {
+    "sku": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+    "handle": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+    "title": "Batley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjr-47258-sample-batley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702943",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/batley-type-ii-vinyl-wallcovering-xjr-47258"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72171",
+    "handle": "st-silken-durable-vinyl-dur-72171",
+    "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-72171-sample-clean.jpg?v=1774484656",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Purple",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Dusty Lavender",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Mauve",
+      "Minimalist",
+      "Purple",
+      "Serene",
+      "Silk",
+      "Solid",
+      "Taupe",
+      "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-72171"
+  },
+  {
+    "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47692",
+    "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47692",
+    "title": "Ferndown 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-47692-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712378",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ferndown Type 2 Vinyl  Wallcovering",
+      "Gold",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Olive",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47692"
+  },
+  {
+    "sku": "komo-diamond-bamboo-wallpaper-trf-56826",
+    "handle": "komo-diamond-bamboo-wallpaper-trf-56826",
+    "title": "Komo Diamond Bamboo | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/00132dc3564fb1e786d1f2061f6e56cb.jpg?v=1750789755",
+    "tags": [
+      "arbor",
+      "Architectural",
+      "Asian",
+      "bamboo",
+      "Beige",
+      "bright yellow green",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "diamond",
+      "Discontinued",
+      "Farmhouse",
+      "frame work",
+      "Geometric",
+      "Green",
+      "grille",
+      "Jeffrey Stevens",
+      "lattice",
+      "Lime Green",
+      "medium green",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "off white",
+      "Paper",
+      "Prepasted - Washable - Strippable",
+      "screen",
+      "Series: York",
+      "Textured",
+      "treillage",
+      "trellis",
+      "tropical",
+      "USA",
+      "Wallcovering",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/komo-diamond-bamboo-wallpaper-trf-56826"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sft-5011-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sft-5011-jpg",
+    "title": "Shift - Coral | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5011.jpg?v=1762305644",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Coral",
+      "Geometric",
+      "Pink",
+      "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-5011-jpg"
+  },
+  {
+    "sku": "faux-glass-bead-wallpaper-102-fgb-102",
+    "handle": "faux-glass-bead-wallpaper-102-fgb-102",
+    "title": "Faux Glass Bead Wallcovering - 102 Taupe Shimmer",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-102-sample-faux-glass-bead-wallcovering.jpg?v=1775711794",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Alabaster",
+      "Architectural",
+      "Bedroom",
+      "Bling",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercially Rated Cleanable",
+      "Contemporary",
+      "Faux Finish",
+      "Faux Glass Bead Wallcovering",
+      "Glass Bead",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Platinum",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 82.74,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-102-fgb-102"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72294",
+    "handle": "la-voltere-durable-vinyl-dur-72294",
+    "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-72294-sample-clean.jpg?v=1774485076",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Slate Gray",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72294"
+  },
+  {
+    "sku": "crosby-acoustical-wallcovering-xkl-47471",
+    "handle": "crosby-acoustical-wallcovering-xkl-47471",
+    "title": "Crosby  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/abf4222264ffbb1df99a743811f43963.jpg?v=1572310054",
+    "tags": [
+      "100% Recycled Polyester",
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Fabric",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Living Room",
+      "Organic Modern",
+      "Polyester",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47471"
+  },
+  {
+    "sku": "oakland-stone-grasscloth-stripe-wallpaper-cca-83164",
+    "handle": "oakland-stone-grasscloth-stripe-wallpaper-cca-83164",
+    "title": "Oakland Stone Grasscloth Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3ffba3aa2c44fec72e6c77f9ae27f748.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Grasscloth",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Gray",
+      "LA Walls",
+      "Light Beige",
+      "Natural",
+      "Natural Wallcovering",
+      "Oakland Stone Grasscloth Stripe Wallcovering",
+      "Off-white",
+      "Prepasted",
+      "Series: Brewster",
+      "Stone",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oakland-stone-grasscloth-stripe-wallpaper-cca-83164"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+    "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-48173-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728542",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48173"
+  },
+  {
+    "sku": "jonesport-navy-cabin-stripe-wallpaper-cca-83178",
+    "handle": "jonesport-navy-cabin-stripe-wallpaper-cca-83178",
+    "title": "Jonesport Navy Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab5f33da7b0703511165d46f616d2cca.jpg?v=1572309971",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Navy",
+      "Paper",
+      "Prepasted",
+      "Red",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jonesport-navy-cabin-stripe-wallpaper-cca-83178"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar9503-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar9503-jpg",
+    "title": "Armor Paint - AR9503 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9502.jpg?v=1733873905",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Light Blue",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9503-jpg"
+  },
+  {
+    "sku": "eur-80317-ncw4303-designer-wallcoverings-los-angeles",
+    "handle": "eur-80317-ncw4303-designer-wallcoverings-los-angeles",
+    "title": "Camille 03 - 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_7513503957043.jpg?v=1775523339",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Camille",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Hallway",
+      "Lattice",
+      "LES REVES",
+      "Light Blue",
+      "Living Room",
+      "NCW4303",
+      "NCW4303-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Pale Turquoise",
+      "Paper",
+      "Sage Green",
+      "Serene",
+      "Traditional",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80317-ncw4303-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "twinkle-twinkle-large-mural-by-retro-walls-rtr-37258",
+    "handle": "twinkle-twinkle-large-mural-by-retro-walls-rtr-37258",
+    "title": "Twinkle Twinkle Large Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d2e5e4dbb7a15416396a41484e30530.jpg?v=1572309703",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bird",
+      "Blue",
+      "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",
+      "House",
+      "Multi",
+      "Mural",
+      "Mushroom",
+      "Purple",
+      "Red",
+      "Scenic",
+      "Star",
+      "Teal",
+      "Traditional Whimsy",
+      "Vinyl",
+      "Wallcovering",
+      "Whimsical",
+      "Yellow"
+    ],
+    "max_price": 94,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twinkle-twinkle-large-mural-by-retro-walls-rtr-37258"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2528",
+    "handle": "faux-leaf-squares-fls-2528",
+    "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-2528-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711949",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Faux Finish",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "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-2528"
+  },
+  {
+    "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": "fairford-vinyl-wallcovering-xlb-47650",
+    "handle": "fairford-vinyl-wallcovering-xlb-47650",
+    "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-47650-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711414",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Seafoam",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47650"
+  },
+  {
+    "sku": "lanvin-arpergeo-wallpaper-xb8-66603",
+    "handle": "lanvin-arpergeo-wallpaper-xb8-66603",
+    "title": "Lanvin Arpergeo Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6a6ca04f82a7ca3ed5505ec10bee4f7.jpg?v=1775131958",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Geometric",
+      "Gray",
+      "Lanvin Arpergeo Wallcovering",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Stripe",
+      "Tan",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66603"
+  },
+  {
+    "sku": "st-dennis-durable-vinyl-dur-72283",
+    "handle": "st-dennis-durable-vinyl-dur-72283",
+    "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-72283-sample-clean.jpg?v=1774485020",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Blue",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Moody",
+      "Slate Grey",
+      "Teal",
+      "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-72283"
+  },
+  {
+    "sku": "andrew-wheat-ships-wallpaper-cca-82931",
+    "handle": "andrew-wheat-ships-wallpaper-cca-82931",
+    "title": "Andrew Wheat Ships Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6fc1199deb7bb39c95bf2bfe824b302b.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Nautical",
+      "Paper",
+      "Prepasted",
+      "Sailboats",
+      "Scenic",
+      "Series: Brewster",
+      "Ships",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "Wheat",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/andrew-wheat-ships-wallpaper-cca-82931"
+  },
+  {
+    "sku": "susie-pink-chevron-wallpaper-cca-83036",
+    "handle": "susie-pink-chevron-wallpaper-cca-83036",
+    "title": "Susie Pink Chevron Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/863936ee67c10001ceab04198d5994b6.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Chevron",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Geometric",
+      "Kids",
+      "LA Walls",
+      "Light Green",
+      "Modern",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/susie-pink-chevron-wallpaper-cca-83036"
+  },
+  {
+    "sku": "dwc-1001594",
+    "handle": "dwc-1001594",
+    "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_4693307129907.jpg?v=1775520994",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Light Green",
+      "NCW4302-03",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001594"
+  },
+  {
+    "sku": "tahlia-ocean-stucco-texture-wallpaper-cca-83025",
+    "handle": "tahlia-ocean-stucco-texture-wallpaper-cca-83025",
+    "title": "Tahlia Ocean Stucco Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3ddbaacc301f674d2771ad16850d5635.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Children",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Kids",
+      "LA Walls",
+      "Light Blue",
+      "Ocean",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tahlia-ocean-stucco-texture-wallpaper-cca-83025"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ash-5070-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ash-5070-jpg",
+    "title": "Ashlar - Straw | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5070.jpg?v=1762286574",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Ashlar",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Cream",
+      "RAMPART®",
+      "Straw",
+      "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-5070-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5024-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5024-jpg",
+    "title": "Ballari - Chrome | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5024.jpg?v=1762288308",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "Architectural",
+      "Ballari",
+      "Chrome",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gray",
+      "Industrial",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5024-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blg-5636-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blg-5636-jpg",
+    "title": "Belgrade - Marble | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5636.jpg?v=1762287711",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Belgrade",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Marble",
+      "RAMPART®",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5636-jpg"
+  },
+  {
+    "sku": "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": "harrison-type-ii-vinyl-wallcovering-xlg-47722",
+    "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47722",
+    "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-47722-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716087",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Harrison Type 2 Vinyl  Wallcovering",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47722"
+  },
+  {
+    "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47694",
+    "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47694",
+    "title": "Ferndown 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-47694-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712432",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ferndown Type 2 Vinyl  Wallcovering",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47694"
+  },
+  {
+    "sku": "paul-s-retro-geometric-scr-8016",
+    "handle": "paul-s-retro-geometric-scr-8016",
+    "title": "Paul's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bf039698d3f47e7fbb6a181d28ef6585.jpg?v=1572309104",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Luxury Screen Printed Wallpapers",
+      "Mid-Century Modern",
+      "Paper",
+      "Screen Print",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1"
+    ],
+    "max_price": 146.18,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paul-s-retro-geometric-scr-8016"
+  },
+  {
+    "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-80301-ncw4300-designer-wallcoverings-los-angeles",
+    "handle": "eur-80301-ncw4300-designer-wallcoverings-los-angeles",
+    "title": "Collioure 03 - Aqua 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_7513502810163.jpg?v=1775523249",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Collioure",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "Green",
+      "Hallway",
+      "LES REVES",
+      "Living Room",
+      "NCW4300",
+      "NCW4300-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "Paper",
+      "Sage Green",
+      "Seafoam Green",
+      "Serene",
+      "Taupe",
+      "Teal",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80301-ncw4300-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66474",
+    "handle": "mr-diorio-wallpaper-xa8-66474",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fe1919674f2e1f62ea550304ce7c9ac7.jpg?v=1775125430",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Gold",
+      "Khaki",
+      "Living Room",
+      "Mr. Diorio Wallcovering",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66474"
+  },
+  {
+    "sku": "eur-80126-ncw4123-designer-wallcoverings-los-angeles",
+    "handle": "eur-80126-ncw4123-designer-wallcoverings-los-angeles",
+    "title": "Abbotsford 07 - Cool Gray Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496649779.jpg?v=1775522278",
+    "tags": [
+      "Abbotsford",
+      "Architectural",
+      "Bedroom",
+      "BRAEMAR",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "NCW4123",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Serene",
+      "Stripe",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80126-ncw4123-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "colby-lavender-love-spots-wallpaper-cca-83003",
+    "handle": "colby-lavender-love-spots-wallpaper-cca-83003",
+    "title": "Colby Lavender Love Spots Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3af9e47b886dbf49d740ae9158e8713b.jpg?v=1572309965",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "Geometric",
+      "LA Walls",
+      "Lavender",
+      "Paper",
+      "Polka Dots",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Strippable",
+      "Teal",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/colby-lavender-love-spots-wallpaper-cca-83003"
+  },
+  {
+    "sku": "ncw4351-05",
+    "handle": "ncw4351-05",
+    "title": "Les Indiennes Baville Blue/Taupe - 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_4497264050227.jpg?v=1775520497",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4351-05",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4351-05"
+  },
+  {
+    "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": "dwc-1001675",
+    "handle": "dwc-1001675",
+    "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_4693311684659.jpg?v=1775521522",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Floral White",
+      "NCW4392-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001675"
+  },
+  {
+    "sku": "cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194",
+    "handle": "cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194",
+    "title": "Cape Elizabeth Beige Lookout Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab5accd077b72c4822e381eee0118029.jpg?v=1572309972",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194"
+  },
+  {
+    "sku": "douglas-blue-vintage-planes-wallpaper-cca-82939",
+    "handle": "douglas-blue-vintage-planes-wallpaper-cca-82939",
+    "title": "Douglas Blue Vintage Planes Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/688904c4fdfad7b1c2295a83871cead6.jpg?v=1572309962",
+    "tags": [
+      "Airplane",
+      "Architectural",
+      "Blue",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Industrial",
+      "LA Walls",
+      "Masculine",
+      "Novelty",
+      "Paper",
+      "Prepasted",
+      "Scenic",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vintage",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/douglas-blue-vintage-planes-wallpaper-cca-82939"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72065",
+    "handle": "la-roche-durable-vinyl-dur-72065",
+    "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-72065-sample-clean.jpg?v=1774484237",
+    "tags": [
+      "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",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Pale Beige",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72065"
+  },
+  {
+    "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": "versace-plain-black-wallcovering-versace",
+    "handle": "versace-plain-black-wallcovering-versace",
+    "title": "Versace Plain Black Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/d632c94c8e2af9f2ce9ba47973ce8ecb.jpg?v=1773706471",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Estimated Type: Paper",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Moody",
+      "Office",
+      "Paste the wall",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-black-wallcovering-versace"
+  },
+  {
+    "sku": "vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836",
+    "handle": "vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836",
+    "title": "Vanessa White Henna Brocade Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/45766882022ade37d5794a6580198513.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Kids",
+      "LA Walls",
+      "Modern",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836"
+  },
+  {
+    "sku": "origami-by-innovations-usa-dwc-origami-7",
+    "handle": "origami-by-innovations-usa-dwc-origami-7",
+    "title": "Origami | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-7.jpg?v=1736198889",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gold",
+      "Innovations USA",
+      "Origami",
+      "Origami-7",
+      "Paper",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-7"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66476",
+    "handle": "mr-diorio-wallpaper-xa8-66476",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d1f9fc6698570f62050ddd6fa6425f41.jpg?v=1775125754",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hotel Lobby",
+      "Light Brown",
+      "Living Room",
+      "Mr. Diorio Wallcovering",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66476"
+  },
+  {
+    "sku": "biejing-embossed-walls-bew-9498",
+    "handle": "biejing-embossed-walls-bew-9498",
+    "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-9498-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705116",
+    "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-9498"
+  },
+  {
+    "sku": "sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901",
+    "handle": "sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901",
+    "title": "Sullivan Lilac Ombre Vine Trail Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b4ac54a862758569e3d13f2310ce9b42.jpg?v=1572309961",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "Kids",
+      "LA Walls",
+      "Leaf",
+      "Lilac",
+      "Multi",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901"
+  },
+  {
+    "sku": "ford-brown-danby-marble-wallpaper-cca-82975",
+    "handle": "ford-brown-danby-marble-wallpaper-cca-82975",
+    "title": "Ford Brown Danby Marble Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/07ce056a54a22056fd7962555fa21e54.jpg?v=1572309964",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Marble",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ford-brown-danby-marble-wallpaper-cca-82975"
+  },
+  {
+    "sku": "eur-80308-ncw4301-designer-wallcoverings-los-angeles",
+    "handle": "eur-80308-ncw4301-designer-wallcoverings-los-angeles",
+    "title": "Beau Rivage 05 - Chartreuse 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_7513503301683.jpg?v=1775523287",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bathroom",
+      "Beau Rivage",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Gray",
+      "Green",
+      "LES REVES",
+      "Lime Green",
+      "Living Room",
+      "Mid-century",
+      "Mid-Century Modern",
+      "Moss",
+      "NCW4301",
+      "NCW4301-05",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Spruce",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80308-ncw4301-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875",
+    "handle": "kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875",
+    "title": "Kenley Taupe Polka Dots Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/13e55af7272e8e4a3c06f1931df00179.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Paper",
+      "Polka Dots",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875"
+  },
+  {
+    "sku": "eur-80319-ncw4303-designer-wallcoverings-los-angeles",
+    "handle": "eur-80319-ncw4303-designer-wallcoverings-los-angeles",
+    "title": "Camille 05 - Pink Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504022579.jpg?v=1775523352",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Camille",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Floral",
+      "Grandmillennial",
+      "Lattice",
+      "LES REVES",
+      "Light Pink",
+      "NCW4303",
+      "NCW4303-05",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Off-white",
+      "Paper",
+      "Pink",
+      "Powder Room",
+      "Rose",
+      "Serene",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80319-ncw4303-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ncw4307-04",
+    "handle": "ncw4307-04",
+    "title": "Les Rêves Domiers Indigo/Ivory - 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_4497263001651.jpg?v=1775520406",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Geometric",
+      "NCW4307-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Stripe",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4307-04"
+  },
+  {
+    "sku": "origami-by-innovations-usa-dwc-origami-3",
+    "handle": "origami-by-innovations-usa-dwc-origami-3",
+    "title": "Origami | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-3.jpg?v=1736198895",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Geometric",
+      "Innovations USA",
+      "Mid-Century Modern",
+      "Origami",
+      "Origami-3",
+      "Paper",
+      "Tan",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-3"
+  },
+  {
+    "sku": "ncw4306-01",
+    "handle": "ncw4306-01",
+    "title": "Nina Campbell Wallcoverings - Coral Blush Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262706739.jpg?v=1775520354",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "NCW4306-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Pink",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4306-01"
+  },
+  {
+    "sku": "dwc-1001641",
+    "handle": "dwc-1001641",
+    "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_4693310046259.jpg?v=1775521299",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Green",
+      "Light Green",
+      "NCW4352-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001641"
+  },
+  {
+    "sku": "cesare-acoustical-walls-act-73255",
+    "handle": "cesare-acoustical-walls-act-73255",
+    "title": "Cesare Acoustical Walls",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/88a674e21f6df68315b8d8cb0396deae.jpg?v=1572309803",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Cesare Acoustical Walls",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Light Brown",
+      "Living Room",
+      "Oatmeal",
+      "Organic Modern",
+      "Phillip Romano Commercial",
+      "Rustic",
+      "Sand",
+      "Solid",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-act-73255"
+  },
+  {
+    "sku": "dwkk-127705",
+    "handle": "dwkk-127705",
+    "title": "Sandstone - Bronze  By Clarke And Clarke | Clarke & Clarke Reflections |Geometric Texture Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0061_02_CAC_7caf371b-ea90-450d-8a12-07bad91d6a8c.jpg?v=1726037804",
+    "tags": [
+      "20.875In",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brick",
+      "Brown",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Taupe",
+      "display_variant",
+      "Geometric",
+      "Hallway",
+      "Light Beige",
+      "Living Room",
+      "Non-Woven",
+      "Print",
+      "Rustic",
+      "Sandstone",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Tile",
+      "Traditional",
+      "Transitional",
+      "United Kingdom",
+      "Vinyl",
+      "W0061/02.Cac.0",
+      "Wallcovering",
+      "Warm",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 182.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127705"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ril-6373-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ril-6373-jpg",
+    "title": "Riley - Turquoise | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6373.jpg?v=1762304635",
+    "tags": [
+      "27% Polyester",
+      "73% Acrylic",
+      "Acrylic",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Polka Dot",
+      "Riley",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "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-6373-jpg"
+  },
+  {
+    "sku": "ncw4308-04",
+    "handle": "ncw4308-04",
+    "title": "Les Rêves Portavo Coral/Ivory - Orange Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263198259.jpg?v=1775520432",
+    "tags": [
+      "Architectural",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Coral",
+      "Geometric",
+      "Metallic",
+      "NCW4308-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Pink",
+      "Silver",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4308-04"
+  },
+  {
+    "sku": "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": "frederick-brown-quatrefoil-medallion-wallpaper-cca-82949",
+    "handle": "frederick-brown-quatrefoil-medallion-wallpaper-cca-82949",
+    "title": "Frederick Brown Quatrefoil Medallion Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9e2d88bd57d36645802fe8b074f85287.jpg?v=1572309963",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Frederick Brown Quatrefoil Medallion Wallcovering",
+      "LA Walls",
+      "Masculine",
+      "Paper",
+      "Prepasted",
+      "Quatrefoil",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/frederick-brown-quatrefoil-medallion-wallpaper-cca-82949"
+  },
+  {
+    "sku": "versace-plain-glitter-gold-cream-wallcovering-versace",
+    "handle": "versace-plain-glitter-gold-cream-wallcovering-versace",
+    "title": "Versace Plain Glitter Gold, Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c0f71a29af59bb8980ec7de9eb316446.jpg?v=1773706480",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream Wallcovering",
+      "display_variant",
+      "Gold",
+      "Gray",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Mustard Yellow",
+      "Office",
+      "Paper",
+      "Paste the wall",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain Glitter",
+      "Versace Plain Glitter Gold",
+      "Versace VI",
+      "Wallcovering",
+      "Walnut Brown",
+      "Warm",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-glitter-gold-cream-wallcovering-versace"
+  },
+  {
+    "sku": "chesterfield-acoustical-wallcovering-xjz-47390",
+    "handle": "chesterfield-acoustical-wallcovering-xjz-47390",
+    "title": "Chesterfield  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/344b9fd3d609db5d0887d1c6decc87c2.jpg?v=1572310051",
+    "tags": [
+      "100% recycled polyester",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Fabric-backed Vinyl",
+      "Farmhouse",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Living Room",
+      "Polyester",
+      "Rustic",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47390"
+  },
+  {
+    "sku": "nancy-wallpaper-xq7-68163",
+    "handle": "nancy-wallpaper-xq7-68163",
+    "title": "Nancy | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e7e791ec296fb0bd458076b277493c34.jpg?v=1733882468",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal Skin",
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Crocodile",
+      "Dark Gold",
+      "Faux Leather",
+      "Glamorous",
+      "Gold",
+      "Haute Couture",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Khaki",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Maximalist",
+      "Metallic Gold",
+      "Nancy",
+      "non-woven",
+      "Phillip Romano Commercial",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nancy-wallpaper-xq7-68163"
+  },
+  {
+    "sku": "frank-s-faux-finish-fff-2933",
+    "handle": "frank-s-faux-finish-fff-2933",
+    "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-2933-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714258",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Faux Finish",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Khaki",
+      "Light Goldenrodyellow",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 36.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2933"
+  },
+  {
+    "sku": "mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857",
+    "handle": "mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857",
+    "title": "Mia Pink Faux Zebra Stripes Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0b62946781f52da914ecf128b06950f7.jpg?v=1572309958",
+    "tags": [
+      "Animal Prints",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Faux",
+      "LA Walls",
+      "Light Pink",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Zebra"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857"
+  },
+  {
+    "sku": "norman-rust-medallion-wallpaper-cca-82951",
+    "handle": "norman-rust-medallion-wallpaper-cca-82951",
+    "title": "Norman Rust Medallion Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/43331d772a722584505d1756582069e0.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Geometric",
+      "LA Walls",
+      "Masculine",
+      "Medallion",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/norman-rust-medallion-wallpaper-cca-82951"
+  },
+  {
+    "sku": "tigressa-bargea-wallpaper-xb3-66522",
+    "handle": "tigressa-bargea-wallpaper-xb3-66522",
+    "title": "Tigressa Bargea Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ed4965f3f400ec410a614debcedc9847.jpg?v=1775129065",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Geometric",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Tan",
+      "Textured",
+      "Tigressa Bargea Wallcovering",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 37.2,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66522"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10408-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10408-jpg",
+    "title": "ST10408 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10407.jpg?v=1733872181",
+    "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_st10408-jpg"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_lun-9494-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_lun-9494-jpg",
+    "title": "Lune - Teal | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9494.jpg?v=1762299433",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Geometric",
+      "Light Gray",
+      "Lune",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9494-jpg"
+  },
+  {
+    "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": "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": "dwc-1001605",
+    "handle": "dwc-1001605",
+    "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_4693307752499.jpg?v=1775521070",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Light Blue",
+      "Medallion",
+      "NCW4304-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001605"
+  },
+  {
+    "sku": "whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893",
+    "handle": "whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893",
+    "title": "Whisper Pink Scroll Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d6945f6912a0decd27ce92bb2abb905c.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Kids",
+      "LA Walls",
+      "Pink",
+      "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/whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893"
+  },
+  {
+    "sku": "dwkk-130169",
+    "handle": "dwkk-130169",
+    "title": "W4126-5 Blue | Kravet Design | New Origins | Solid Texture Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4126_5_9de5d88f-a0a1-4bf6-88f3-ad266710dfc0.jpg?v=1753321202",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Grasscloth",
+      "Kravet",
+      "Kravet Design",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "New Origins",
+      "Non Woven - 100%",
+      "Non-Woven",
+      "Office",
+      "Organic Modern",
+      "Print",
+      "Seafoam",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "Turquoise",
+      "United States",
+      "W4126-5",
+      "W4126.5.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-130169"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_obt-9471_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_obt-9471_8-jpg",
+    "title": "Orbit - Dusk | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9471_8.jpg?v=1762302955",
+    "tags": [
+      "100% Polycarbonate",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dusk",
+      "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-9471_8-jpg"
+  },
+  {
+    "sku": "lilli-ocean-happy-dots-wallpaper-cca-82994",
+    "handle": "lilli-ocean-happy-dots-wallpaper-cca-82994",
+    "title": "Lilli Ocean Happy Dots Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e78b9e1b509cd6954a5c02b95ed060b7.jpg?v=1572309964",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "Geometric",
+      "LA Walls",
+      "Ocean",
+      "Paper",
+      "Polka Dots",
+      "Prepasted",
+      "Red",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lilli-ocean-happy-dots-wallpaper-cca-82994"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+    "title": "Sparta - Eurotas River | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5045.jpg?v=1762308949",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Eurotas River",
+      "Gray",
+      "Light Gray",
+      "RAMPART®",
+      "Sparta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5045-jpg"
+  },
+  {
+    "sku": "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": "accent-clay-romo",
+    "handle": "accent-clay-romo",
+    "title": "Accent Clay | Romo Wallcovering",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW172-04-accent-wallcovering-clay_00.jpg?v=1776398870",
+    "tags": [
+      "Accent",
+      "Architectural",
+      "Background Color single dominant color",
+      "beige",
+      "brown",
+      "Coastal",
+      "Collage IV",
+      "Commercial",
+      "Contemporary",
+      "Grasscloth",
+      "Handcrafted Wallcovering",
+      "Hotel",
+      "Light Beige",
+      "Lobby",
+      "Medium",
+      "MW172/04",
+      "Natural",
+      "Office",
+      "Romo",
+      "Rustic",
+      "Soft White",
+      "tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "Warm Taupe"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/accent-clay-romo"
+  },
+  {
+    "sku": "laurel-hills-panels-hlw-73141",
+    "handle": "laurel-hills-panels-hlw-73141",
+    "title": "Laurel Hills - Panels | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73141-sample-clean.jpg?v=1774483699",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Chinoiserie",
+      "Chinoiserie Panel",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Dining Room",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Japonisme",
+      "Laurel Hills",
+      "Light Yellow",
+      "Living Room",
+      "Mural",
+      "Natural",
+      "Naturally Glamorous",
+      "Pale Yellow",
+      "Paper",
+      "Sage Green",
+      "Scenic",
+      "Serene",
+      "Slate Gray",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 130.83,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/laurel-hills-panels-hlw-73141"
+  },
+  {
+    "sku": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855",
+    "handle": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855",
+    "title": "Gibby Purple Leafy Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6562720df07306014a8da6cfea33c130.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "LA Walls",
+      "Leaf",
+      "Prepasted",
+      "Purple",
+      "Scrolls",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-410",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-410",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7f9c429de150f071d00f03ed7f61af0e_b175b819-839c-4361-a6c1-57986ef3149b.jpg?v=1745458332",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 21.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-410"
+  },
+  {
+    "sku": "under-water-waves-xuw-44152",
+    "handle": "under-water-waves-xuw-44152",
+    "title": "Under Water Waves | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44152-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735582",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Slate Gray",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 46.12,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44152"
+  },
+  {
+    "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+    "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-53479-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715928",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ecru",
+      "Grasscloth",
+      "Hallandale Rice Paper Effect Durable",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Oatmeal",
+      "Off-white",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53479"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2514",
+    "handle": "faux-leaf-squares-fls-2514",
+    "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-2514-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711902",
+    "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-2514"
+  },
+  {
+    "sku": "hollywood-modern-wood-xhw-2010209",
+    "handle": "hollywood-modern-wood-xhw-2010209",
+    "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-depth_e68d1a56-b25e-4061-b995-7931e48e1889.jpg?v=1777481263",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Brown",
+      "Dining Room",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Medium Brown",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Office",
+      "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 Grain",
+      "Wood Look"
+    ],
+    "max_price": 50.75,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010209"
+  },
+  {
+    "sku": "dwkk-127807",
+    "handle": "dwkk-127807",
+    "title": "Emerald Forest Wp - Smoke Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0129_04_CAC_26d152bd-bbaf-40a0-ab92-3bfc88e19838.jpg?v=1753321611",
+    "tags": [
+      "20.5In",
+      "Animal",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Burnt Sienna",
+      "Butterflies",
+      "Butterfly",
+      "Chocolate Brown",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Dragonflies",
+      "Eclectic",
+      "Emerald Forest Wp",
+      "Fauna",
+      "Golden Yellow",
+      "Green",
+      "Ivory",
+      "Light Grey",
+      "Living Room",
+      "Maximalist",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Novelty",
+      "Olive Green",
+      "Orange",
+      "Organic",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Smoke",
+      "Snakes",
+      "Teal",
+      "United Kingdom",
+      "Victorian",
+      "W0129/04.Cac.0",
+      "Wallcovering",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127807"
+  },
+  {
+    "sku": "robertocavalliwallpaper_dwrc18006-jpg",
+    "handle": "robertocavalliwallpaper_dwrc18006-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_dwrc18006.jpg?v=1587153844",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "European",
+      "Gray",
+      "Imported",
+      "Italian",
+      "Leopard",
+      "Maximalist",
+      "Paper",
+      "Pattern",
+      "Roberto Cavalli Wallcovering",
+      "Tropical",
+      "Volume 7",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc18006-jpg"
+  },
+  {
+    "sku": "dwss-72516",
+    "handle": "dwss-72516",
+    "title": "Ludvig turquoise Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/493-27_image1_66fba548-fa0b-4f01-8deb-32823f2d94cc.jpg?v=1646104517",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Gray",
+      "Lattice",
+      "Light Blue",
+      "Ludvig",
+      "Ludvig turquoise  Sample",
+      "P493-27",
+      "Paper",
+      "Sandberg",
+      "Traditional",
+      "TURQUOISE",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72516"
+  },
+  {
+    "sku": "ncw4300-02",
+    "handle": "ncw4300-02",
+    "title": "Les Rêves Collioure Taupe/Soft Gold - Greige Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261461555.jpg?v=1775520135",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Light Gray",
+      "NCW4300-02",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4300-02"
+  },
+  {
+    "sku": "canal-damask-durable-vinyl-xwa-52082",
+    "handle": "canal-damask-durable-vinyl-xwa-52082",
+    "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52082-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707068",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Luxe",
+      "Pattern",
+      "Scroll",
+      "Sophisticated",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "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-damask-durable-vinyl-xwa-52082"
+  },
+  {
+    "sku": "dwc-1001672",
+    "handle": "dwc-1001672",
+    "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_4693311488051.jpg?v=1775521502",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "NCW4392-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001672"
+  },
+  {
+    "sku": "jolie-madam-wallpaper-xa1-66408",
+    "handle": "jolie-madam-wallpaper-xa1-66408",
+    "title": "Jolie Madam Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1418572057bedda375f1929c9eec3c99.jpg?v=1775120513",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Entryway",
+      "Gold",
+      "Grasscloth",
+      "Jolie Madam Wallcovering",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Stripe",
+      "Striped",
+      "Textural",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66408"
+  },
+  {
+    "sku": "dwc-1001690",
+    "handle": "dwc-1001690",
+    "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_4693312602163.jpg?v=1775521622",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Light Gray",
+      "NCW4395-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001690"
+  },
+  {
+    "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52158",
+    "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52158",
+    "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-celestine.jpg?v=1777480419",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Dark Grey",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52158"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91fa005dd85d87226d97c791f98ede3d_8ef48979-d4e2-44be-992f-9c69f8363e31.jpg?v=1745458238",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 19.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-443"
+  },
+  {
+    "sku": "caron-tabac-wallpaper-xa6-66446",
+    "handle": "caron-tabac-wallpaper-xa6-66446",
+    "title": "Caron Tabac Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/97b6595da9e3124a692973c79d656ff9.jpg?v=1775121570",
+    "tags": [
+      "Abstract",
+      "Acoustical",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Caron Tabac Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Entryway",
+      "Fabric",
+      "Living Room",
+      "Neutral",
+      "Office",
+      "Organic",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "polyester",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Transitional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 43.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66446"
+  },
+  {
+    "sku": "narcisse-noir-wallpaper-xa7-66457",
+    "handle": "narcisse-noir-wallpaper-xa7-66457",
+    "title": "Narcisse Noir Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ae098032c1fe847886f615cbc3b9cf5.jpg?v=1775123534",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "calcium carbonate/pulp",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Entryway",
+      "Farmhouse",
+      "Grasscloth",
+      "Living Room",
+      "Narcisse Noir Wallcovering",
+      "Natural Wallcovering",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Rustic",
+      "Stripe",
+      "Striped",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 49.3,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66457"
+  },
+  {
+    "sku": "labyrinth-by-innovations-usa-dwc-labyrinth-2",
+    "handle": "labyrinth-by-innovations-usa-dwc-labyrinth-2",
+    "title": "Labyrinth | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Labyrinth-2.jpg?v=1736198933",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Blue",
+      "Geometric",
+      "Innovations USA",
+      "Labyrinth",
+      "Labyrinth-2",
+      "Light Blue",
+      "Non-woven",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/labyrinth-by-innovations-usa-dwc-labyrinth-2"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_abs-5657-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_abs-5657-jpg",
+    "title": "Absolute - Blonde | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/abs-5657.jpg?v=1762357374",
+    "tags": [
+      "100% Vinyl",
+      "Absolute",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blonde",
+      "Check",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Paper",
+      "Plaid",
+      "RAMPART®",
+      "Tan",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_abs-5657-jpg"
+  },
+  {
+    "sku": "rob-s-folk-art-animals-scr-8169",
+    "handle": "rob-s-folk-art-animals-scr-8169",
+    "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/019ad7a33beeb0ddc04a80145cf7e31f.jpg?v=1572309109",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Chicken",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Deer",
+      "Designer Wallcoverings",
+      "Dog",
+      "Light Green",
+      "Paper",
+      "Rob's Folk Art Animals",
+      "Screen Print",
+      "Traditional",
+      "vinyl",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White",
+      "White on Ice Mint"
+    ],
+    "max_price": 193.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rob-s-folk-art-animals-scr-8169"
+  },
+  {
+    "sku": "hollywood-contemporary-coast-xhw-2010377",
+    "handle": "hollywood-contemporary-coast-xhw-2010377",
+    "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-mango_6c105db0-6cd8-40da-b121-c33a2ec9f9c3.jpg?v=1777481083",
+    "tags": [
+      "35.04 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",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Organic Modern",
+      "Samantha",
+      "Solid",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "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-2010377"
+  },
+  {
+    "sku": "evan-rose-texture-wallpaper-wallpaper-cca-82887",
+    "handle": "evan-rose-texture-wallpaper-wallpaper-cca-82887",
+    "title": "Evan Rose Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d933f171198d017a4a8b620fc352f910.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "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/evan-rose-texture-wallpaper-wallpaper-cca-82887"
+  },
+  {
+    "sku": "kylie-aqua-cabin-stripe-wallpaper-cca-83040",
+    "handle": "kylie-aqua-cabin-stripe-wallpaper-cca-83040",
+    "title": "Kylie Aqua Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3d3ab6dfc50297b502fa1b4520903da1.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gold",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kylie-aqua-cabin-stripe-wallpaper-cca-83040"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47662",
+    "handle": "fairford-vinyl-wallcovering-xlb-47662",
+    "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-47662-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711739",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47662"
+  },
+  {
+    "sku": "carved-squares-wallcovering-xcs-44050",
+    "handle": "carved-squares-wallcovering-xcs-44050",
+    "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-44050-sample-clean.jpg?v=1774479011",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Granite Gray",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 41.41,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44050"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2768",
+    "handle": "faux-leaf-squares-fls-2768",
+    "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-2768-sample-clean.jpg?v=1774478984",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Faux Finish",
+      "Faux Leaf Squares",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Living Room",
+      "Lodge",
+      "Office",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2768"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em9515-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em9515-jpg",
+    "title": "EM9515 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9514.jpg?v=1733873336",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM9515",
+      "Gray",
+      "Light Gray",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9515-jpg"
+  },
+  {
+    "sku": "ncw4390-04",
+    "handle": "ncw4390-04",
+    "title": "Nina Campbell Wallcoverings - Golden Yellow Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265360947.jpg?v=1775520696",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Gold",
+      "NCW4390-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Stripe",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "Wallcoverings",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4390-04"
+  },
+  {
+    "sku": "eur-80387-ncw4390-designer-wallcoverings-los-angeles",
+    "handle": "eur-80387-ncw4390-designer-wallcoverings-los-angeles",
+    "title": "Pomegranate Trail 02 - 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_7513506218035.jpg?v=1775523756",
+    "tags": [
+      "Architectural",
+      "ASHDOWN",
+      "Bedroom",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "English Country",
+      "Floral",
+      "Living Room",
+      "NCW4390",
+      "NCW4390-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Pomegranate Trail",
+      "Seafoam Green",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Teal",
+      "Traditional",
+      "Turquoise",
+      "Vine",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80387-ncw4390-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891",
+    "handle": "whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891",
+    "title": "Whisper Blackberry Scroll Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f114b9621f5a99862ac8589a6ababf1e.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Kids",
+      "LA Walls",
+      "Pink",
+      "Prepasted",
+      "Rose",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891"
+  },
+  {
+    "sku": "origami-by-innovations-usa-dwc-origami-6",
+    "handle": "origami-by-innovations-usa-dwc-origami-6",
+    "title": "Origami | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-6.jpg?v=1736198890",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Innovations USA",
+      "Light Beige",
+      "Light Brown",
+      "Origami",
+      "Origami-6",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-6"
+  },
+  {
+    "sku": "dwkk-128422",
+    "handle": "dwkk-128422",
+    "title": "W3515-1 White | Kravet Design |Modern Geometric Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3515_1_09f0f59f-8558-4e3a-a99f-58eb2361aade.jpg?v=1753292758",
+    "tags": [
+      "20.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Beige",
+      "Cellulose - 50%;Other - 30%;Polyester - 20%",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Geometric",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Lattice",
+      "Living Room",
+      "Modern",
+      "Non-Woven",
+      "Off-white",
+      "Ogee",
+      "Print",
+      "Serene",
+      "Traditional",
+      "Transitional",
+      "Trellis",
+      "United Kingdom",
+      "Vinyl",
+      "W3515-1",
+      "W3515.1.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128422"
+  },
+  {
+    "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52653",
+    "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52653",
+    "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-52653-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709275",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cotton",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Modern",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52653"
+  },
+  {
+    "sku": "ncw4305-02",
+    "handle": "ncw4305-02",
+    "title": "Les Rêves Pampelonne Ivory/White - 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_4497262542899.jpg?v=1775520329",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "NCW4305-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4305-02"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73116",
+    "handle": "puna-drive-natural-grassweave-hlw-73116",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73116-sample-clean.jpg?v=1774483536",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Dark Navy",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic Modern",
+      "Puna Drive",
+      "Rustic",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73116"
+  },
+  {
+    "sku": "eur-80353-ncw4351-designer-wallcoverings-los-angeles",
+    "handle": "eur-80353-ncw4351-designer-wallcoverings-los-angeles",
+    "title": "Baville 03 - 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_7513505169459.jpg?v=1775523562",
+    "tags": [
+      "Architectural",
+      "Baville",
+      "Bedroom",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cottagecore",
+      "Dining Room",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "LES INDIENNES",
+      "Living Room",
+      "Mustard Yellow",
+      "NCW4351",
+      "NCW4351-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off White",
+      "Paisley",
+      "Paper",
+      "Serene",
+      "Taupe",
+      "Teal",
+      "Traditional",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80353-ncw4351-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "seeing-circles-wallcovering-xsc-44287",
+    "handle": "seeing-circles-wallcovering-xsc-44287",
+    "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-44287-sample-clean_9185eaac-c59d-4b0f-974f-1c0fd1b7791c.jpg?v=1774479112",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Chocolate Brown",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dot",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Mauve",
+      "Orange",
+      "Pink",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 37.88,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44287"
+  },
+  {
+    "sku": "dwkk-121661",
+    "handle": "dwkk-121661",
+    "title": "Miguel - Verde Green By Gaston Y Daniela | Lorenzo Castillo Hispania Wp |Modern Geometric Wallcovering Print",
+    "vendor": "Gaston Y Daniela",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDW5253_001_a829555f-6643-4566-a5a5-bcdc48dbe9ac.jpg?v=1753293808",
+    "tags": [
+      "20.8In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Gaston Y Daniela",
+      "Gdw5253.001.0",
+      "Geometric",
+      "Green",
+      "Hallway",
+      "Lattice",
+      "Living Room",
+      "Lorenzo Castillo Hispania Wp",
+      "Miguel",
+      "Modern",
+      "Off-white",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Sage Green",
+      "Serene",
+      "Spain",
+      "Traditional",
+      "Transitional",
+      "Trellis",
+      "Verde",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-121661"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+    "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-47706-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712668",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Celery",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fern",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Moss",
+      "Off-white",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Spruce",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47706"
+  },
+  {
+    "sku": "biejing-embossed-walls-bew-9500",
+    "handle": "biejing-embossed-walls-bew-9500",
+    "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-9500-sample-clean.jpg?v=1774478536",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Elegant Vinyls Vol. 1",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Light Taupe",
+      "Living Room",
+      "Mauve",
+      "Modern",
+      "Office",
+      "Pink",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9500"
+  },
+  {
+    "sku": "saint-lore-durable-vinyl-dur-72226",
+    "handle": "saint-lore-durable-vinyl-dur-72226",
+    "title": "Saint Lore Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72226-sample-clean.jpg?v=1774484814",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "White",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72226"
+  },
+  {
+    "sku": "puna-drive-natural-grassweave-hlw-73108",
+    "handle": "puna-drive-natural-grassweave-hlw-73108",
+    "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73108-sample-clean.jpg?v=1774483477",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Coastal",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Textured",
+      "Wallcovering",
+      "White",
+      "Woven"
+    ],
+    "max_price": 41.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73108"
+  },
+  {
+    "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48448",
+    "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48448",
+    "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-48448-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735059",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Pale Grey",
+      "Serene",
+      "Sudbury Type 2 Vinyl  Wallcovering",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48448"
+  },
+  {
+    "sku": "ncw4395-02",
+    "handle": "ncw4395-02",
+    "title": "Nina Campbell Wallcoverings - Umber Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266802739.jpg?v=1775520851",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4395-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4395-02"
+  },
+  {
+    "sku": "st-silkey-durable-vinyl-dur-72184",
+    "handle": "st-silkey-durable-vinyl-dur-72184",
+    "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-72184-sample-clean.jpg?v=1774484714",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Olive Green",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Teal",
+      "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-72184"
+  },
+  {
+    "sku": "eur-80299-ncw4300-designer-wallcoverings-los-angeles",
+    "handle": "eur-80299-ncw4300-designer-wallcoverings-los-angeles",
+    "title": "Collioure 01 - Off-White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502744627.jpg?v=1775523237",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Collioure",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "Eclectic",
+      "Geometric",
+      "Gold",
+      "Gray",
+      "LES REVES",
+      "Light Blue",
+      "Light Pink",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Moss",
+      "Multi",
+      "NCW4300",
+      "NCW4300-01",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Playful",
+      "Taupe",
+      "Vases",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80299-ncw4300-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2885",
+    "handle": "peter-s-plastered-walls-ppw-2885",
+    "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-2885-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729098",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Mediterranean",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2885"
+  },
+  {
+    "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": "danby-moss-marble-texture-wallpaper-wallpaper-cca-82904",
+    "handle": "danby-moss-marble-texture-wallpaper-wallpaper-cca-82904",
+    "title": "Danby Moss Marble Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/155198996eeff9e3447906115a266823.jpg?v=1572309961",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Danby Moss Marble Texture Wallcovering Wallcovering",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "LA Walls",
+      "Light Olive Green",
+      "Marble",
+      "Olive Green",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/danby-moss-marble-texture-wallpaper-wallpaper-cca-82904"
+  },
+  {
+    "sku": "ncw4304-06",
+    "handle": "ncw4304-06",
+    "title": "Les Rêves Marguerite Indigo/Blue - 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_4497262444595.jpg?v=1775520315",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "NCW4304-06",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4304-06"
+  },
+  {
+    "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": "artisma-croco-vinyl-dwx-58152",
+    "handle": "artisma-croco-vinyl-dwx-58152",
+    "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-58152-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699281",
+    "tags": [
+      "54\" Width",
+      "Animal Skin",
+      "Architectural",
+      "Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Crocodile",
+      "Dark Brown",
+      "Faux Leather",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Neutral",
+      "Organic",
+      "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-58152"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48121",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48121",
+    "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48121-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727853",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Olney Type 2 Vinyl  Wallcovering",
+      "Sand",
+      "Tan",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48121"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72295",
+    "handle": "la-voltere-durable-vinyl-dur-72295",
+    "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-72295-sample-clean.jpg?v=1774485081",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Forest Green",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Hunter Green",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "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/la-voltere-durable-vinyl-dur-72295"
+  },
+  {
+    "sku": "ncw4303-04",
+    "handle": "ncw4303-04",
+    "title": "Les Rêves Camille Grey/Beige - Ivory Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262149683.jpg?v=1775520270",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "NCW4303-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Textured",
+      "Traditional",
+      "Trellis",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4303-04"
+  },
+  {
+    "sku": "avea-henna-tile-wallpaper-trf-56813",
+    "handle": "avea-henna-tile-wallpaper-trf-56813",
+    "title": "Avea Henna Tile | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f7cd2bd8619fbd91e85b2fdb0e41ba3e.jpg?v=1750789773",
+    "tags": [
+      "Architectural",
+      "Avea Henna Tile",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Damask",
+      "diagonal",
+      "diamond",
+      "Discontinued",
+      "Gray",
+      "Jeffrey Stevens",
+      "Lace",
+      "lacey",
+      "Medallion",
+      "medium scale",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "Paper",
+      "Pastel",
+      "Prepasted - Washable - Strippable",
+      "print",
+      "Series: York",
+      "silhouette",
+      "Soft White",
+      "Textured",
+      "tile",
+      "Traditional",
+      "Transitional",
+      "USA",
+      "Wallcovering",
+      "Warm Taupe",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/avea-henna-tile-wallpaper-trf-56813"
+  },
+  {
+    "sku": "benedict-canyon-sisal-hlw-73025",
+    "handle": "benedict-canyon-sisal-hlw-73025",
+    "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73025-sample-clean.jpg?v=1774483088",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Coastal",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Natural Texture",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Sisal",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 63.43,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73025"
+  },
+  {
+    "sku": "saint-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": "hollywood-contemporary-coast-xhw-2010363",
+    "handle": "hollywood-contemporary-coast-xhw-2010363",
+    "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-gidget_df8e1d65-db81-4bc4-a71e-3ded6b63cec6.jpg?v=1777481069",
+    "tags": [
+      "35.04 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Background Color Light Blue",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Gray",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Hallway",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Contemporary Coast",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Blue",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Samantha",
+      "Serene",
+      "Solid",
+      "Steel Blue",
+      "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-2010363"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st11387-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st11387-jpg",
+    "title": "ST11387 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11386m.jpg?v=1733872122",
+    "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_st11387-jpg"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2634",
+    "handle": "pleated-perfect-paradise-ppp-2634",
+    "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-2634-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729202",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Beige",
+      "Off-white",
+      "Pleated Perfect Paradise",
+      "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-2634"
+  },
+  {
+    "sku": "artisma-croco-vinyl-dwx-58143",
+    "handle": "artisma-croco-vinyl-dwx-58143",
+    "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-58143-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775698998",
+    "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-58143"
+  },
+  {
+    "sku": "eur-80324-ncw4304-designer-wallcoverings-los-angeles",
+    "handle": "eur-80324-ncw4304-designer-wallcoverings-los-angeles",
+    "title": "Marguerite Damask 05 - Blue Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504186419.jpg?v=1775523384",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Dining Room",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "LES REVES",
+      "Light Blue",
+      "Living Room",
+      "Marguerite Damask",
+      "NCW4304",
+      "NCW4304-05",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Seafoam Green",
+      "Serene",
+      "Taupe",
+      "Traditional",
+      "Turquoise",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80324-ncw4304-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ncw4356-02",
+    "handle": "ncw4356-02",
+    "title": "Les Indiennes Fortoiseau Ivory/Silver - Brown Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265098803.jpg?v=1775520649",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Bird",
+      "Class A Fire Rated",
+      "Commercial",
+      "Fauna",
+      "Gray",
+      "NCW4356-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4356-02"
+  },
+  {
+    "sku": "eur-80450-ncw4495-designer-wallcoverings-los-angeles",
+    "handle": "eur-80450-ncw4495-designer-wallcoverings-los-angeles",
+    "title": "Arber Lattice Trellis 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_7513508446259.jpg?v=1775524167",
+    "tags": [
+      "Arber Lattice Trellis",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Grandmillennial",
+      "Hallway",
+      "Leaf",
+      "Living Room",
+      "NCW4495",
+      "NCW4495-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Powder Blue",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Taupe",
+      "Traditional",
+      "Trellis",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80450-ncw4495-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72290",
+    "handle": "la-voltere-durable-vinyl-dur-72290",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72290-sample-clean.jpg?v=1774485056",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72290"
+  },
+  {
+    "sku": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+    "handle": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+    "title": "Kent Sky Faux Grasscloth Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09bbfba5dcb27d4e36cf2740877057cf.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Faux Grasscloth",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "LA Walls",
+      "Light Gray",
+      "Masculine",
+      "Natural",
+      "Natural Wallcovering",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "Woven",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 44.11,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kent-sky-faux-grasscloth-wallpaper-cca-82927"
+  },
+  {
+    "sku": "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": "dwss-72545",
+    "handle": "dwss-72545",
+    "title": "Sten dark green Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/583-88_image1_5a69dd41-45e6-4809-845a-770e7aceb0db.jpg?v=1646104605",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Dark Green",
+      "P583-88",
+      "Paper",
+      "Sandberg",
+      "Solid",
+      "Sten",
+      "Sten dark green  Sample",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72545"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+    "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48120-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727825",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-White",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48120"
+  },
+  {
+    "sku": "amity-wheat-bleeding-heart-scroll-wallpaper-cca-83256",
+    "handle": "amity-wheat-bleeding-heart-scroll-wallpaper-cca-83256",
+    "title": "Amity Wheat Bleeding Heart Scroll Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d4a5b0693f467a0a0f2979deb091e9f4.jpg?v=1572309982",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "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/amity-wheat-bleeding-heart-scroll-wallpaper-cca-83256"
+  },
+  {
+    "sku": "vanderbilt-durable-walls-xwk-52592",
+    "handle": "vanderbilt-durable-walls-xwk-52592",
+    "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-seashell.jpg?v=1777480637",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-White",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52592"
+  },
+  {
+    "sku": "dwc-1001678",
+    "handle": "dwc-1001678",
+    "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_4693311914035.jpg?v=1775521541",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Green",
+      "Light Blue",
+      "Light Green",
+      "NCW4393-03",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Tropical",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001678"
+  },
+  {
+    "sku": "dwc-1001667",
+    "handle": "dwc-1001667",
+    "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_4693311258675.jpg?v=1775521469",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bohemian",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Gold",
+      "NCW4391-01",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001667"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+    "title": "Tangram - Ocean | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tgm-5983.jpg?v=1762311221",
+    "tags": [
+      "31% Polyester",
+      "69% Acrylic",
+      "Acrylic",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Geometric",
+      "Ocean",
+      "Tangram",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_tgm-5983-jpg"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwh-52387",
+    "handle": "prince-vertical-emboss-durable-walls-xwh-52387",
+    "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-prima_donna.jpg?v=1777480557",
+    "tags": [
+      "74%-100% post-consumer (Eco-fi polyester)",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Polyester",
+      "remaining fiber is pre-consumer (polyester)",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52387"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9487",
+    "handle": "chinese-fret-walls-cfw-9487",
+    "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-9487-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708056",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Chinoiserie",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Elegant Vinyls Vol. 1",
+      "Fretwork",
+      "Geometric",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Tan",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9487"
+  },
+  {
+    "sku": "cesare-acoustical-walls-xvy-73252",
+    "handle": "cesare-acoustical-walls-xvy-73252",
+    "title": "Cesare Acoustical Walls",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cc70f4b66cddb385c8f6a61d9bbce097.jpg?v=1572309803",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Cesare Acoustical Walls",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Pale Beige",
+      "Phillip Romano Commercial",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-xvy-73252"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_stl-6380-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_stl-6380-jpg",
+    "title": "Stella - Marlin | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/stl-6380.jpg?v=1762310801",
+    "tags": [
+      "27% Polyester",
+      "73% Acrylic",
+      "Acrylic",
+      "Architectural",
+      "Black",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Lattice",
+      "Marlin",
+      "Stella",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_stl-6380-jpg"
+  },
+  {
+    "sku": "gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867",
+    "handle": "gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867",
+    "title": "Gabriella Yellow Ogge Busy Toss Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8f0039b5e45f884fb113853ca8229087.jpg?v=1572309958",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Embossed",
+      "LA Walls",
+      "Lace",
+      "Leopard",
+      "Ogee",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867"
+  },
+  {
+    "sku": "elaris-amazonia-romo",
+    "handle": "elaris-amazonia-romo",
+    "title": "Elaris Amazonia | Romo Wallcovering",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W970-03-elaris-wallcovering-amazonia_01.jpg?v=1776484903",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Background Color beige",
+      "blue",
+      "brown",
+      "Commercial",
+      "Contemporary",
+      "Dusty Rose",
+      "Eclectic",
+      "Elaris",
+      "Embossed Wallcovering",
+      "green",
+      "Healthcare",
+      "Kabu Wallcoverings",
+      "Lobby",
+      "Medium",
+      "Non-woven",
+      "Office",
+      "Romo",
+      "Sage Green",
+      "Soft White",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "W970/03",
+      "Wallcovering",
+      "Warm Taupe"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/elaris-amazonia-romo"
+  },
+  {
+    "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48391",
+    "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48391",
+    "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XPY-48391-sample-clean.jpg?v=1774480463",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Skelton Type 2 Vinyl  Wallcovering",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48391"
+  },
+  {
+    "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52356",
+    "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52356",
+    "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-arctic_ice_1b3d80f9-6c96-47ee-a2d8-95b0037eb34e.jpg?v=1777481328",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Light Gray",
+      "Basketweave",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Look",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Leed Walls",
+      "Light Blue",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Natural Texture",
+      "Pale Beige",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 63.57,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52356"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br016-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br016-jpg",
+    "title": "BR016 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br015.jpg?v=1733873681",
+    "tags": [
+      "Abstract",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br016-jpg"
+  },
+  {
+    "sku": "surry-celery-soft-stripe-wallpaper-cca-83214",
+    "handle": "surry-celery-soft-stripe-wallpaper-cca-83214",
+    "title": "Surry Celery Soft Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16c950dd659a91663bbe45335181e826.jpg?v=1572309973",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/surry-celery-soft-stripe-wallpaper-cca-83214"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwh-52390",
+    "handle": "prince-vertical-emboss-durable-walls-xwh-52390",
+    "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-haute.jpg?v=1777480561",
+    "tags": [
+      "74%-100% post-consumer (Eco-fi polyester)",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Embossed",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Polyester",
+      "remaining fiber is pre-consumer (polyester)",
+      "Rustic",
+      "Terracotta",
+      "Textured",
+      "Traditional",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52390"
+  },
+  {
+    "sku": "dwkk-ge20640bc",
+    "handle": "dwkk-ge20640bc",
+    "title": "Kravet Design - W3492-52 Slate Commercial Wallcovering | Kravet",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_52_34f04674-c640-442c-8be7-975f2b1bb93e.jpg?v=1753122293",
+    "tags": [
+      "36In",
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Candice Olson Collection",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cork - 100%",
+      "display_variant",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Korea",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Republic Of",
+      "Rustic",
+      "Silver",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Vinyl",
+      "W3492-52",
+      "W3492.52.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-ge20640bc"
+  },
+  {
+    "sku": "jutely-vinyl-dwx-58138",
+    "handle": "jutely-vinyl-dwx-58138",
+    "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-58138-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720511",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Durable",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Jute",
+      "Light Blue",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58138"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dtup-482-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dtup-482-jpg",
+    "title": "Tupelo - Frost | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DTUP-482.jpg?v=1762292649",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Digital Curated",
+      "Frost",
+      "Light Brown",
+      "Paper",
+      "Stripe",
+      "Traditional",
+      "Tupelo",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dtup-482-jpg"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-418",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-418",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5a514203239288f1c79da0acb56c0272_8150ec29-5d1e-4ccf-a5de-c799d8c9d67e.jpg?v=1745458303",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Light Brown",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 19.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-418"
+  },
+  {
+    "sku": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+    "handle": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+    "title": "Portavo Damask 04 - Orange Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504874547.jpg?v=1775523504",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Coral",
+      "Damask",
+      "Dining Room",
+      "Eclectic",
+      "Geometric",
+      "Gray",
+      "LES REVES",
+      "Living Room",
+      "NCW4308",
+      "NCW4308-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off White",
+      "Paper",
+      "Portavo Damask",
+      "Red",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80343-ncw4308-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ncw4354-04",
+    "handle": "ncw4354-04",
+    "title": "Nina Campbell Wallcoverings - Chartreuse 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_4497264869427.jpg?v=1775520607",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Geometric",
+      "Green",
+      "Limegreen",
+      "Mid-Century Modern",
+      "NCW4354-04",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4354-04"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66472",
+    "handle": "mr-diorio-wallpaper-xa8-66472",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/998cf2ae66b46d6592b962aebe8a5a07.jpg?v=1775125195",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Living Room",
+      "Mr. Diorio Wallcovering",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66472"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2501",
+    "handle": "faux-leaf-squares-fls-2501",
+    "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-2501-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711858",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Beige",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2501"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9507-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9507-jpg",
+    "title": "SM9507 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9506.jpg?v=1733872516",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9507-jpg"
+  },
+  {
+    "sku": "ncw4395-01",
+    "handle": "ncw4395-01",
+    "title": "Ashdown Kingsley Peacock/Gold - 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_4497266769971.jpg?v=1775520845",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Floral",
+      "NCW4395-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Teal",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4395-01"
+  },
+  {
+    "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53469",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53469",
+    "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-53469-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715887",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallandale Rice Paper Effect Durable",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53469"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-435",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-435",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/78f52ca57b76e59f69cff39c1041ac0f_69a61f77-48ea-4d5e-a4fb-100b318c0c2c.jpg?v=1745458259",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Light Brown",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 12.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-435"
+  },
+  {
+    "sku": "jonesport-celery-cabin-stripe-wallpaper-cca-83176",
+    "handle": "jonesport-celery-cabin-stripe-wallpaper-cca-83176",
+    "title": "Jonesport Celery Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3abb2aef9d440e9e86ab73ca6be4d0e6.jpg?v=1572309971",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "LA Walls",
+      "Multi",
+      "Orange",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jonesport-celery-cabin-stripe-wallpaper-cca-83176"
+  },
+  {
+    "sku": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+    "handle": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+    "title": "Natalia Purple Curly Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b4fbd757fe54a9cd5ca21316c7591e1b.jpg?v=1572309955",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Green",
+      "Kids",
+      "LA Walls",
+      "Leaf",
+      "Pink",
+      "Prepasted",
+      "Scrolls",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822"
+  },
+  {
+    "sku": "wells-moss-candy-stripe-wallpaper-cca-83228",
+    "handle": "wells-moss-candy-stripe-wallpaper-cca-83228",
+    "title": "Wells Moss Candy Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/45beb56f0a527e4b08bf91cfa3f38c20.jpg?v=1572309973",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gold",
+      "LA Walls",
+      "Moss",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wells-moss-candy-stripe-wallpaper-cca-83228"
+  },
+  {
+    "sku": "crushed-costoluto-vinyl-dwx-58009",
+    "handle": "crushed-costoluto-vinyl-dwx-58009",
+    "title": "Crushed Costoluto Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58009-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709696",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Crushed",
+      "Gold",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Neutral",
+      "Organic",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58009"
+  },
+  {
+    "sku": "casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107",
+    "handle": "casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107",
+    "title": "Casco Bay Pewter Ombre Pinstripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8e6a0f4ec7dbf0af9f44c197c752c05a.jpg?v=1572309969",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Casco Bay Pewter Ombre Pinstripe Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Masculine",
+      "Paper",
+      "Pewter",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107"
+  },
+  {
+    "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48390",
+    "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48390",
+    "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpy-48390-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734082",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Silver",
+      "Skelton Type 2 Vinyl  Wallcovering",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48390"
+  },
+  {
+    "sku": "eur-80443-ncw4494-designer-wallcoverings-los-angeles",
+    "handle": "eur-80443-ncw4494-designer-wallcoverings-los-angeles",
+    "title": "Signature Meridor - 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_7513508184115.jpg?v=1775524121",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Green",
+      "Hallway",
+      "Leaf",
+      "Light Green",
+      "Light Sage",
+      "Living Room",
+      "Meridor Stripe",
+      "NCW4494",
+      "NCW4494-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Organic Modern",
+      "Paper",
+      "Sage Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Stripe",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80443-ncw4494-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53473",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53473",
+    "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-53473-sample-clean.jpg?v=1774482101",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallandale Rice Paper Effect Durable",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Teal",
+      "Living Room",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53473"
+  },
+  {
+    "sku": "hollywood-modern-marble-xhw-2010320",
+    "handle": "hollywood-modern-marble-xhw-2010320",
+    "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-quartz_4aee2540-66c9-4c4c-bad1-7c18b610a57b.jpg?v=1777481409",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color White",
+      "Bathroom",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Estimated Type: Vinyl",
+      "Faux Finish",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Grey",
+      "Living Room",
+      "Marble",
+      "Marble Look",
+      "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: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 53.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010320"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66464",
+    "handle": "mr-diorio-wallpaper-xa8-66464",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7fa2495d98eebd02c237e9b257e59d12.jpg?v=1775124266",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Gray",
+      "Hotel Lobby",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Mr. Diorio Wallcovering",
+      "Non-woven",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Silver",
+      "Striped",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66464"
+  },
+  {
+    "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52781",
+    "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52781",
+    "title": "Steuben Embossed Vertical Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52781-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734807",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver Grey",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52781"
+  },
+  {
+    "sku": "dwss-72650",
+    "handle": "dwss-72650",
+    "title": "Murgröna light grey Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/707-21_image1_bc2d5e08-5cfc-4035-9e6e-4a9048d9be80.jpg?v=1646104950",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Lattice",
+      "Light Gray",
+      "LIGHT GREY",
+      "Murgröna",
+      "Murgröna light grey  Sample",
+      "P707-21",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72650"
+  },
+  {
+    "sku": "mazarin-by-innovations-usa-dwc-mazarin-3",
+    "handle": "mazarin-by-innovations-usa-dwc-mazarin-3",
+    "title": "Mazarin | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-3.jpg?v=1736198927",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Innovations USA",
+      "Mazarin",
+      "Mazarin-3",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-3"
+  },
+  {
+    "sku": "via-del-marnie-durable-vinyl-dur-72448",
+    "handle": "via-del-marnie-durable-vinyl-dur-72448",
+    "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-72448-sample-clean.jpg?v=1774485615",
+    "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 Beige",
+      "Light Gray",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72448"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2509",
+    "handle": "faux-leaf-squares-fls-2509",
+    "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-2509-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711885",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2509"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ad9504-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad9504-jpg",
+    "title": "Ambient Design - AD9504 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9503.jpg?v=1733874158",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Ambient Design",
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Industrial",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9504-jpg"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2510",
+    "handle": "faux-leaf-squares-fls-2510",
+    "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-2510-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711889",
+    "tags": [
+      "Abstract",
+      "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-2510"
+  },
+  {
+    "sku": "hollywood-crystal-xhw-2010103",
+    "handle": "hollywood-crystal-xhw-2010103",
+    "title": "Hollywood Crystal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-indigo.jpg?v=1777480953",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Crystal",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Serene",
+      "Silver",
+      "Silver Gray",
+      "Smoke",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010103"
+  },
+  {
+    "sku": "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": "watch-hill-skin-wallcovering-phillipe-romano",
+    "handle": "watch-hill-skin-wallcovering-phillipe-romano",
+    "title": "Watch Hill - Skin Wallcovering | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Commercial Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Lgeuo23Gm0M07ExnghToQzwlxUUAVDrJiDQSdpl0.jpg?v=1776190093",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Fire Rated",
+      "Full Roll",
+      "Gray",
+      "Hollywood Vinyls Vol. 1",
+      "mfr:DWHV-101237",
+      "Off-white",
+      "Phillipe Romano",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Watch Hill"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/watch-hill-skin-wallcovering-phillipe-romano"
+  },
+  {
+    "sku": "dwc-1001688",
+    "handle": "dwc-1001688",
+    "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_4693312503859.jpg?v=1775521609",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4395-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Smoke",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001688"
+  },
+  {
+    "sku": "daytona-faux-embossed-durable-walls-xwc-53274",
+    "handle": "daytona-faux-embossed-durable-walls-xwc-53274",
+    "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-53274-sample-clean.jpg?v=1774481955",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Office",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53274"
+  }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..c6b5ec1
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+  "name": "hospitalitywallpaper",
+  "version": "0.1.0",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "hospitalitywallpaper",
+      "version": "0.1.0",
+      "dependencies": {
+        "express": "^4.21.0",
+        "helmet": "^8.1.0"
+      }
+    },
+    "node_modules/accepts": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+      "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+      "license": "MIT",
+      "dependencies": {
+        "mime-types": "~2.1.34",
+        "negotiator": "0.6.3"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/array-flatten": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+      "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+      "license": "MIT"
+    },
+    "node_modules/body-parser": {
+      "version": "1.20.5",
+      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
+      "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
+      "license": "MIT",
+      "dependencies": {
+        "bytes": "~3.1.2",
+        "content-type": "~1.0.5",
+        "debug": "2.6.9",
+        "depd": "2.0.0",
+        "destroy": "~1.2.0",
+        "http-errors": "~2.0.1",
+        "iconv-lite": "~0.4.24",
+        "on-finished": "~2.4.1",
+        "qs": "~6.15.1",
+        "raw-body": "~2.5.3",
+        "type-is": "~1.6.18",
+        "unpipe": "~1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8",
+        "npm": "1.2.8000 || >= 1.4.16"
+      }
+    },
+    "node_modules/body-parser/node_modules/qs": {
+      "version": "6.15.1",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
+      "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
+      "license": "BSD-3-Clause",
+      "dependencies": {
+        "side-channel": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=0.6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/bytes": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+      "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/call-bind-apply-helpers": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+      "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0",
+        "function-bind": "^1.1.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/call-bound": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+      "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "get-intrinsic": "^1.3.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/content-disposition": {
+      "version": "0.5.4",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+      "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+      "license": "MIT",
+      "dependencies": {
+        "safe-buffer": "5.2.1"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/content-type": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+      "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/cookie": {
+      "version": "0.7.2",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
+      "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/cookie-signature": {
+      "version": "1.0.7",
+      "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
+      "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
+      "license": "MIT"
+    },
+    "node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "license": "MIT",
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/depd": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+      "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/destroy": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+      "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8",
+        "npm": "1.2.8000 || >= 1.4.16"
+      }
+    },
+    "node_modules/dunder-proto": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+      "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bind-apply-helpers": "^1.0.1",
+        "es-errors": "^1.3.0",
+        "gopd": "^1.2.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/ee-first": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+      "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+      "license": "MIT"
+    },
+    "node_modules/encodeurl": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/es-define-property": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+      "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/es-errors": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+      "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/es-object-atoms": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+      "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/escape-html": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+      "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+      "license": "MIT"
+    },
+    "node_modules/etag": {
+      "version": "1.8.1",
+      "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+      "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/express": {
+      "version": "4.22.1",
+      "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
+      "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
+      "license": "MIT",
+      "dependencies": {
+        "accepts": "~1.3.8",
+        "array-flatten": "1.1.1",
+        "body-parser": "~1.20.3",
+        "content-disposition": "~0.5.4",
+        "content-type": "~1.0.4",
+        "cookie": "~0.7.1",
+        "cookie-signature": "~1.0.6",
+        "debug": "2.6.9",
+        "depd": "2.0.0",
+        "encodeurl": "~2.0.0",
+        "escape-html": "~1.0.3",
+        "etag": "~1.8.1",
+        "finalhandler": "~1.3.1",
+        "fresh": "~0.5.2",
+        "http-errors": "~2.0.0",
+        "merge-descriptors": "1.0.3",
+        "methods": "~1.1.2",
+        "on-finished": "~2.4.1",
+        "parseurl": "~1.3.3",
+        "path-to-regexp": "~0.1.12",
+        "proxy-addr": "~2.0.7",
+        "qs": "~6.14.0",
+        "range-parser": "~1.2.1",
+        "safe-buffer": "5.2.1",
+        "send": "~0.19.0",
+        "serve-static": "~1.16.2",
+        "setprototypeof": "1.2.0",
+        "statuses": "~2.0.1",
+        "type-is": "~1.6.18",
+        "utils-merge": "1.0.1",
+        "vary": "~1.1.2"
+      },
+      "engines": {
+        "node": ">= 0.10.0"
+      },
+      "funding": {
+        "type": "opencollective",
+        "url": "https://opencollective.com/express"
+      }
+    },
+    "node_modules/finalhandler": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
+      "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
+      "license": "MIT",
+      "dependencies": {
+        "debug": "2.6.9",
+        "encodeurl": "~2.0.0",
+        "escape-html": "~1.0.3",
+        "on-finished": "~2.4.1",
+        "parseurl": "~1.3.3",
+        "statuses": "~2.0.2",
+        "unpipe": "~1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/forwarded": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+      "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/fresh": {
+      "version": "0.5.2",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+      "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/function-bind": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+      "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+      "license": "MIT",
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/get-intrinsic": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+      "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "es-define-property": "^1.0.1",
+        "es-errors": "^1.3.0",
+        "es-object-atoms": "^1.1.1",
+        "function-bind": "^1.1.2",
+        "get-proto": "^1.0.1",
+        "gopd": "^1.2.0",
+        "has-symbols": "^1.1.0",
+        "hasown": "^2.0.2",
+        "math-intrinsics": "^1.1.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/get-proto": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+      "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+      "license": "MIT",
+      "dependencies": {
+        "dunder-proto": "^1.0.1",
+        "es-object-atoms": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/gopd": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+      "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/has-symbols": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+      "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/hasown": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
+      "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
+      "license": "MIT",
+      "dependencies": {
+        "function-bind": "^1.1.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/helmet": {
+      "version": "8.1.0",
+      "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz",
+      "integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">=18.0.0"
+      }
+    },
+    "node_modules/http-errors": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
+      "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
+      "license": "MIT",
+      "dependencies": {
+        "depd": "~2.0.0",
+        "inherits": "~2.0.4",
+        "setprototypeof": "~1.2.0",
+        "statuses": "~2.0.2",
+        "toidentifier": "~1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      },
+      "funding": {
+        "type": "opencollective",
+        "url": "https://opencollective.com/express"
+      }
+    },
+    "node_modules/iconv-lite": {
+      "version": "0.4.24",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "license": "MIT",
+      "dependencies": {
+        "safer-buffer": ">= 2.1.2 < 3"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/inherits": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+      "license": "ISC"
+    },
+    "node_modules/ipaddr.js": {
+      "version": "1.9.1",
+      "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+      "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/math-intrinsics": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+      "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/media-typer": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+      "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/merge-descriptors": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+      "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+      "license": "MIT",
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/methods": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+      "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mime": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+      "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+      "license": "MIT",
+      "bin": {
+        "mime": "cli.js"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/mime-db": {
+      "version": "1.52.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+      "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mime-types": {
+      "version": "2.1.35",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+      "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+      "license": "MIT",
+      "dependencies": {
+        "mime-db": "1.52.0"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+      "license": "MIT"
+    },
+    "node_modules/negotiator": {
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+      "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/object-inspect": {
+      "version": "1.13.4",
+      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+      "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/on-finished": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+      "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+      "license": "MIT",
+      "dependencies": {
+        "ee-first": "1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/parseurl": {
+      "version": "1.3.3",
+      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+      "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/path-to-regexp": {
+      "version": "0.1.13",
+      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
+      "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
+      "license": "MIT"
+    },
+    "node_modules/proxy-addr": {
+      "version": "2.0.7",
+      "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+      "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+      "license": "MIT",
+      "dependencies": {
+        "forwarded": "0.2.0",
+        "ipaddr.js": "1.9.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/qs": {
+      "version": "6.14.2",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
+      "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
+      "license": "BSD-3-Clause",
+      "dependencies": {
+        "side-channel": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=0.6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/range-parser": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+      "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/raw-body": {
+      "version": "2.5.3",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
+      "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
+      "license": "MIT",
+      "dependencies": {
+        "bytes": "~3.1.2",
+        "http-errors": "~2.0.1",
+        "iconv-lite": "~0.4.24",
+        "unpipe": "~1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/safe-buffer": {
+      "version": "5.2.1",
+      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+      "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "license": "MIT"
+    },
+    "node_modules/safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "license": "MIT"
+    },
+    "node_modules/send": {
+      "version": "0.19.2",
+      "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
+      "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
+      "license": "MIT",
+      "dependencies": {
+        "debug": "2.6.9",
+        "depd": "2.0.0",
+        "destroy": "1.2.0",
+        "encodeurl": "~2.0.0",
+        "escape-html": "~1.0.3",
+        "etag": "~1.8.1",
+        "fresh": "~0.5.2",
+        "http-errors": "~2.0.1",
+        "mime": "1.6.0",
+        "ms": "2.1.3",
+        "on-finished": "~2.4.1",
+        "range-parser": "~1.2.1",
+        "statuses": "~2.0.2"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/send/node_modules/ms": {
+      "version": "2.1.3",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+      "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+      "license": "MIT"
+    },
+    "node_modules/serve-static": {
+      "version": "1.16.3",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
+      "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
+      "license": "MIT",
+      "dependencies": {
+        "encodeurl": "~2.0.0",
+        "escape-html": "~1.0.3",
+        "parseurl": "~1.3.3",
+        "send": "~0.19.1"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/setprototypeof": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+      "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+      "license": "ISC"
+    },
+    "node_modules/side-channel": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+      "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0",
+        "object-inspect": "^1.13.3",
+        "side-channel-list": "^1.0.0",
+        "side-channel-map": "^1.0.1",
+        "side-channel-weakmap": "^1.0.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-list": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+      "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0",
+        "object-inspect": "^1.13.4"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-map": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+      "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-weakmap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+      "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3",
+        "side-channel-map": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/statuses": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
+      "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/toidentifier": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+      "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+      "license": "MIT",
+      "engines": {
+        "node": ">=0.6"
+      }
+    },
+    "node_modules/type-is": {
+      "version": "1.6.18",
+      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+      "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+      "license": "MIT",
+      "dependencies": {
+        "media-typer": "0.3.0",
+        "mime-types": "~2.1.24"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/unpipe": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+      "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/utils-merge": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+      "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4.0"
+      }
+    },
+    "node_modules/vary": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+      "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.8"
+      }
+    }
+  }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..fac6a25
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+  "name": "hospitalitywallpaper",
+  "version": "0.1.0",
+  "description": "HOSPITALITY WALLPAPER — DW family vertical",
+  "main": "server.js",
+  "scripts": {
+    "start": "node server.js"
+  },
+  "dependencies": {
+    "express": "^4.21.0",
+    "helmet": "^8.1.0"
+  }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..0edfd2b
--- /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">H</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..2f89a8b
--- /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>HOSPITALITY WALLPAPER — Welcome, every time</title>
+<meta name="description" content="HOSPITALITY WALLPAPER · Welcome, every time. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a0e1a">
+<link rel="canonical" href="https://hospitalitywallpaper.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: #0a0e1a;
+  --paper: #ffffff;
+  --muted: #9a8a72;
+  --line: rgba(255,255,255,0.10);
+  --accent: #d4a847;
+  --bg-soft: #141a2a;
+  --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('hosp_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">Trade-Grade</div>
+  <div class="center-mark">HOSPITALITY WALLPAPER<span class="tm">.</span><span class="sub">Welcome, every time</span></div>
+  <div class="meta-line">Hotel · Restaurant · Spa · Class A<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">Hotel · Restaurant · Spa · Class A</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">HOSPITALITY WALLPAPER</div>
+      <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated hotel · restaurant · spa · class a 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">hospitalitywallpaper</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>hospitalitywallpaper.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 = "hospitalitywallpaper";
+  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 => ({ '&':'&amp;','<':'&lt;','>':'&gt;','"':'&quot;',"'":'&#39;' }[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,'&quot;') + ')">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('hosp_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('hosp_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('hosp_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..2c1cb23
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * HOSPITALITY WALLPAPER — DW family vertical
+ * Curated slice from live designerwallcoverings.com Shopify catalog.
+ */
+const express = require('express');
+const helmet = require('helmet');
+const path = require('path');
+const fs = require('fs');
+
+const PORT = process.env.PORT || 9855;
+const DW_SHOPIFY = 'https://designerwallcoverings.com';
+const __SITE = path.basename(__dirname);
+let DATA_RAW;
+try {
+  const raw = fs.readFileSync(path.join(__dirname, 'data', 'products.json'), 'utf8');
+  DATA_RAW = JSON.parse(raw);
+  if (!Array.isArray(DATA_RAW)) throw new Error('products.json must be an array');
+} catch (e) {
+  console.error(`[${__SITE}] FATAL: could not load products.json — ${e.message}`);
+  console.error(`[${__SITE}] Starting with empty catalog. Run pull script to populate data/products.json.`);
+  DATA_RAW = [];
+}
+
+function isJunk(p) {
+  if (!p.image_url || !p.image_url.trim()) return true;
+  if (!p.handle && !p.sku) return true;
+  const t = p.title || '';
+  if (/lamp|rug|pillow|throw|tripod|frame|mirror|vase|candle|sculpture|figurine/i.test(t)) return true;
+  if (/visual.{0,3}merchandiser/i.test(t)) return true;
+  if (/(?:^|\W)image[ _-]?4(?:\W|$)/i.test(t)) return true;
+  if (/bh.?90210|beverly.?hills.?90210|iconic.{0,4}bh/i.test(t)) return true;
+  return false;
+}
+
+const PRODUCTS = DATA_RAW.filter(p => !isJunk(p));
+const DROPPED = DATA_RAW.length - PRODUCTS.length;
+console.log(`Loaded ${DATA_RAW.length}, kept ${PRODUCTS.length}, dropped ${DROPPED}`);
+
+const app = express();
+// Security headers via helmet (added 2026-05-04 overnight YOLO loop)
+app.use(helmet({ contentSecurityPolicy: false }));
+app.use(express.json({ limit: '256kb' }));
+// Universal contact module — modals, /api/send-inquiry, /api/send-sample, /zd-loader.js
+require('./_universal-contact')(app, { siteName: "Hospitality Wallpaper", zdColor: "#d4a847", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "hospitalitywallpaper" });
+
+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 = ["mural","luxury","botanical","chinoiserie","deco","natural"];
+  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://hospitalitywallpaper.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://hospitalitywallpaper.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(`hospitalitywallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..5042c6b
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+  "slug": "hospitalitywallpaper",
+  "siteName": "Hospitality Wallpaper",
+  "domain": "hospitalitywallpaper.com",
+  "nicheKeyword": "hospitality",
+  "tagline": "Hotel- and restaurant-grade wallcoverings.",
+  "heroHeadline": "HOSPITALITY WALLPAPER",
+  "heroSub": "Hotel- and restaurant-grade wallcoverings.",
+  "theme": {
+    "accent": "#d4a847"
+  },
+  "rails": [
+    "hotel",
+    "restaurant",
+    "lobby",
+    "guestroom",
+    "suite",
+    "contract"
+  ],
+  "port": 9855
+}

(oldest)  ·  back to Ffepurchasing  ·  graphic-loop pass 2: fix .corner-mark contrast + soften hero 2cbfe46 →