[object Object]

← back to Healthcarewallpaper

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

909e4e151022543af57408a3a8ea7e615562f31f · 2026-05-06 10:25:40 -0700 · Steve Abrams

Files touched

Diff

commit 909e4e151022543af57408a3a8ea7e615562f31f
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    | 21934 ++++++++++++++++++++++++++++++++++++++++++++++++
 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, 23855 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..2a2d82b
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,21934 @@
+[
+  {
+    "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+    "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+    "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-47887-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722274",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Glamorous",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Loftus Type 2 Vinyl  Wallcovering",
+      "Luxe",
+      "Solid",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47887"
+  },
+  {
+    "sku": "asha-gold-lotus-texture-wallpaper-cca-83276",
+    "handle": "asha-gold-lotus-texture-wallpaper-cca-83276",
+    "title": "Asha Gold Lotus Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/368062560b374babb2cd938e32189cfd.jpg?v=1572309983",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Bling",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Glitter",
+      "LA Walls",
+      "Light Gray",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/asha-gold-lotus-texture-wallpaper-cca-83276"
+  },
+  {
+    "sku": "sag-harbor-verde-antico-wallcovering-phillipe-romano",
+    "handle": "sag-harbor-verde-antico-wallcovering-phillipe-romano",
+    "title": "Sag Harbor - Verde Antico Wallcovering | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Commercial Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/k4R8RPDN4o4XJ1wooAdcOE9Ouur3VqsagAmj1EVL.jpg?v=1776190142",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fire Rated",
+      "Full Roll",
+      "Hollywood Vinyls Vol. 1",
+      "mfr:DWHV-101089",
+      "Pale Turquoise",
+      "Phillipe Romano",
+      "Sag Harbor",
+      "Textured",
+      "Vinyl",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sag-harbor-verde-antico-wallcovering-phillipe-romano"
+  },
+  {
+    "sku": "millinocket-pewter-illusion-stripe-wallpaper-cca-83115",
+    "handle": "millinocket-pewter-illusion-stripe-wallpaper-cca-83115",
+    "title": "Millinocket Pewter Illusion Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c872cf12ed9c0a6e5ef11dac564170bd.jpg?v=1572309969",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Light Gray",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/millinocket-pewter-illusion-stripe-wallpaper-cca-83115"
+  },
+  {
+    "sku": "st-dennis-durable-vinyl-dur-72284",
+    "handle": "st-dennis-durable-vinyl-dur-72284",
+    "title": "St Dennis Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72284-sample-clean.jpg?v=1774485025",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brushstroke",
+      "Burnt Orange",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Orange",
+      "Sophisticated",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-dennis-durable-vinyl-dur-72284"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mya-9437-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mya-9437-jpg",
+    "title": "Maya - Flax | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9437.jpg?v=1762302048",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Flax",
+      "Maya",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9437-jpg"
+  },
+  {
+    "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": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+    "handle": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+    "title": "Casco Bay Brown Ombre Pinstripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d6dfb605161113e366c36293147740c.jpg?v=1572309969",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Casco Bay Brown Ombre Pinstripe Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Brown",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109"
+  },
+  {
+    "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": "hollywood-skyline-xhw-201084",
+    "handle": "hollywood-skyline-xhw-201084",
+    "title": "Hollywood Skyline | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bentley-monarch.jpg?v=1777480949",
+    "tags": [
+      "24.96 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sand",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 24.96 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 62.77,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201084"
+  },
+  {
+    "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": "heritage-cream-silver-wallcovering-versace-1",
+    "handle": "heritage-cream-silver-wallcovering-versace-1",
+    "title": "Heritage Cream Silver Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4d8e2d5a6ba5561706b1be10682d9ae6.jpg?v=1773710628",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream Silver",
+      "Damask",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Glamorous",
+      "Heritage",
+      "Heritage Cream Silver Wallcovering",
+      "Italian",
+      "Light Gray",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Needs-Image",
+      "Off-white",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 434.39,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/heritage-cream-silver-wallcovering-versace-1"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwd-52101",
+    "handle": "canal-texture-durable-walls-xwd-52101",
+    "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-gray.jpg?v=1777480410",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Silver Grey",
+      "Slate Grey",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52101"
+  },
+  {
+    "sku": "dwss-72572",
+    "handle": "dwss-72572",
+    "title": "Osterbro black Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/633-08_image1_6cc7aec5-962f-49a9-b9c4-19aec02e172a.jpg?v=1646104693",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Greek Key",
+      "Minimalist",
+      "Osterbro",
+      "Osterbro black  Sample",
+      "P633-08",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72572"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mru-3287_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mru-3287_8-jpg",
+    "title": "Marlu - Straw | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3287_8.jpg?v=1762301281",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Marlu",
+      "Straw",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3287_8-jpg"
+  },
+  {
+    "sku": "jutely-vinyl-dwx-58135",
+    "handle": "jutely-vinyl-dwx-58135",
+    "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-58135-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720432",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Jute",
+      "Natural Look",
+      "Neutral",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58135"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_for-5050-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_for-5050-jpg",
+    "title": "Forge - Sardonyx | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5050.jpg?v=1762294743",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Forge",
+      "RAMPART®",
+      "Sardonyx",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5050-jpg"
+  },
+  {
+    "sku": "dwss-72571",
+    "handle": "dwss-72571",
+    "title": "Fjordbyen blue 270x1 sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/632-04FS_image1_ce4a6a56-07cf-4ec5-ade9-422abc6e08a3.jpg?v=1646104689",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Blue",
+      "BLUE 270X1",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Fjordbyen",
+      "Fjordbyen blue 270x1  sample",
+      "Light Green",
+      "Navy",
+      "P632-04FS",
+      "Paper",
+      "Sandberg",
+      "Stripe",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72571"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2511",
+    "handle": "faux-leaf-squares-fls-2511",
+    "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-2511-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711892",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Beige",
+      "Off-white",
+      "Rosy Brown",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2511"
+  },
+  {
+    "sku": "ventnor-vinyl-wallcovering-xqq-48566",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48566",
+    "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-48566-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735710",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Concrete",
+      "Contemporary",
+      "Cool",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Silver Gray",
+      "Stucco",
+      "Textured",
+      "Ventnor  Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48566"
+  },
+  {
+    "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": "saint-brittany-durable-vinyl-dur-72240",
+    "handle": "saint-brittany-durable-vinyl-dur-72240",
+    "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-72240-sample-clean.jpg?v=1774484876",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Blue-gray",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue-gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72240"
+  },
+  {
+    "sku": "shin-white-golden-scroll-texture-wallpaper-cca-83271",
+    "handle": "shin-white-golden-scroll-texture-wallpaper-cca-83271",
+    "title": "Shin White Golden Scroll Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/620187c99162f75fd1e9ea868fc43b75.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "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-white-golden-scroll-texture-wallpaper-cca-83271"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwa-52091",
+    "handle": "canal-texture-durable-walls-xwa-52091",
+    "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-maize.jpg?v=1777480393",
+    "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",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Golden Yellow",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Solid",
+      "Texture",
+      "Textured",
+      "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-texture-durable-walls-xwa-52091"
+  },
+  {
+    "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48586",
+    "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48586",
+    "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-48586-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735818",
+    "tags": [
+      "20 oz",
+      "41 Inch Width",
+      "41\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Ivory",
+      "Living Room",
+      "Organic Modern",
+      "Rustic",
+      "Serene",
+      "Solid",
+      "Stucco",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Width: 41\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 12.6,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48586"
+  },
+  {
+    "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": "dwkk-127666",
+    "handle": "dwkk-127666",
+    "title": "Echo - Pearl  By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0055_04_CAC_6055ddb4-d71c-4f06-8b34-98fac6057728.jpg?v=1726037706",
+    "tags": [
+      "20.875In",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "contemporary",
+      "Cream",
+      "display_variant",
+      "Echo",
+      "Hallway",
+      "Living Room",
+      "Non-Woven",
+      "Off-white",
+      "Organic Modern",
+      "Pattern",
+      "Print",
+      "Serene",
+      "stripe",
+      "Taupe",
+      "textured",
+      "Tone On Tone",
+      "United Kingdom",
+      "W0055/04.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 179.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127666"
+  },
+  {
+    "sku": "eur-80196-ncw4184-designer-wallcoverings-los-angeles",
+    "handle": "eur-80196-ncw4184-designer-wallcoverings-los-angeles",
+    "title": "Suzhou 03 - Off-White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499205683.jpg?v=1775522700",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Botanical",
+      "CATHAY",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Dining Room",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Gray",
+      "Green",
+      "Living Room",
+      "Multi",
+      "NCW4184",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Olive Green",
+      "Pale Pink",
+      "Paper",
+      "Pink",
+      "Rose Red",
+      "Seafoam Green",
+      "Serene",
+      "Suzhou",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80196-ncw4184-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72172",
+    "handle": "st-silken-durable-vinyl-dur-72172",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72172-sample-clean.jpg?v=1774484661",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Sage",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Sage Green",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72172"
+  },
+  {
+    "sku": "moroccan-bronze-wash-wbs-39665",
+    "handle": "moroccan-bronze-wash-wbs-39665",
+    "title": "Moroccan Bronze Wash | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39665-sample-moroccan-bronze-wash-hollywood-wallcoverings.jpg?v=1775726427",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bricks and Stones",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Dining Room",
+      "Embossed Texture",
+      "Faux",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Office",
+      "Orange",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Russet",
+      "Rustic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Wood"
+    ],
+    "max_price": 46.31,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/moroccan-bronze-wash-wbs-39665"
+  },
+  {
+    "sku": "oxford-white-brick-texture-wallpaper-cca-82958",
+    "handle": "oxford-white-brick-texture-wallpaper-cca-82958",
+    "title": "Oxford White Brick Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c2e83ede172b80f14dfdbdadba8c42f8.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Expanded Vinyl",
+      "Farmhouse",
+      "Faux",
+      "Faux Effects",
+      "Gray",
+      "Industrial",
+      "LA Walls",
+      "Masculine",
+      "Peelable",
+      "Series: Brewster",
+      "Textured",
+      "Unpasted",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oxford-white-brick-texture-wallpaper-cca-82958"
+  },
+  {
+    "sku": "jolie-madam-wallpaper-xa1-66412",
+    "handle": "jolie-madam-wallpaper-xa1-66412",
+    "title": "Jolie Madam Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/06932a78620af58728a27d2b49fa819d.jpg?v=1775120972",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Entryway",
+      "Grasscloth",
+      "Gray",
+      "Jolie Madam Wallcovering",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Stripe",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vertical Stripes",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66412"
+  },
+  {
+    "sku": "shubert-faux-rice-paper-durable-walls-xwk-52494",
+    "handle": "shubert-faux-rice-paper-durable-walls-xwk-52494",
+    "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-52494-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733184",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Paper",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52494"
+  },
+  {
+    "sku": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+    "handle": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+    "title": "Delilah Cream Tulip Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e9aad6c07fa0483b2b58f6b77ece20ee.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/delilah-cream-tulip-damask-wallpaper-cca-83240"
+  },
+  {
+    "sku": "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_dug-5465-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dug-5465-jpg",
+    "title": "Douglas - Elm | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5465.jpg?v=1762292684",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Dark Brown",
+      "Douglas",
+      "Elm",
+      "Paper",
+      "RAMPART®",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5465-jpg"
+  },
+  {
+    "sku": "aubrey-butter-crystal-texture-wallpaper-cca-83280",
+    "handle": "aubrey-butter-crystal-texture-wallpaper-cca-83280",
+    "title": "Aubrey Butter Crystal Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6992bf50ab3204c9622b7c81e1562b9f.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bling",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Glitter",
+      "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-butter-crystal-texture-wallpaper-cca-83280"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+    "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-47317-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704527",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47317"
+  },
+  {
+    "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48227",
+    "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48227",
+    "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-48227-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731028",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Dining Room",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48227"
+  },
+  {
+    "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48202",
+    "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48202",
+    "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-48202-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729815",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ecru",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Off-White",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48202"
+  },
+  {
+    "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": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+    "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+    "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52647-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709252",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cotton",
+      "Cream",
+      "Estimated Type: Paper",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52647"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwd-52096",
+    "handle": "canal-texture-durable-walls-xwd-52096",
+    "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-beige.jpg?v=1777480402",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52096"
+  },
+  {
+    "sku": "heritage-white-silver-wallcovering-versace-2",
+    "handle": "heritage-white-silver-wallcovering-versace-2",
+    "title": "Heritage White Silver Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/396dd3065c75b6f39c46756997ac141d_a2a67a7d-0152-4409-9567-141c3a0c31ec.jpg?v=1773710466",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Damask",
+      "Dining Room",
+      "display_variant",
+      "Glamorous",
+      "Heritage",
+      "Heritage White Silver Wallcovering",
+      "Italian",
+      "Light Beige",
+      "Living Room",
+      "Luxe",
+      "Luxury",
+      "Off-white",
+      "Paper",
+      "Paste the wall",
+      "Regencycore",
+      "Silver-grey",
+      "Sophisticated",
+      "Tile",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White Silver"
+    ],
+    "max_price": 407.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/heritage-white-silver-wallcovering-versace-2"
+  },
+  {
+    "sku": "dwkk-129203",
+    "handle": "dwkk-129203",
+    "title": "W3774-3 Green | Kravet Design | Botanical & Floral Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3774_3_62224678-cdab-4653-b7a2-04bfd6d4c821.jpg?v=1753291954",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "display_variant",
+      "Green",
+      "Kravet",
+      "Kravet Design",
+      "Leaf",
+      "Non Woven - 100%",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Tropical",
+      "United States",
+      "W3774-3",
+      "W3774.3.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129203"
+  },
+  {
+    "sku": "frank-s-faux-finish-fff-2926",
+    "handle": "frank-s-faux-finish-fff-2926",
+    "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-2926-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714237",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 36.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2926"
+  },
+  {
+    "sku": "dwkk-127657",
+    "handle": "dwkk-127657",
+    "title": "Cascade - Parchment  By Clarke And Clarke | Clarke & Clarke Reflections | Ikat/Southwest/Kilims Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0053_04_CAC_31b98570-7ab1-4c53-8903-6069954bc3d1.jpg?v=1726037687",
+    "tags": [
+      "20.875In",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Cascade",
+      "Chevron",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Hallway",
+      "Ikat/Southwest/Kilims",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Organic Modern",
+      "Paper",
+      "Parchment",
+      "Print",
+      "Sand",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "United Kingdom",
+      "W0053/04.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 177.88,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127657"
+  },
+  {
+    "sku": "eur-80309-ncw4301-designer-wallcoverings-los-angeles",
+    "handle": "eur-80309-ncw4301-designer-wallcoverings-los-angeles",
+    "title": "Beau Rivage 06 - 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_7513503334451.jpg?v=1775523294",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bathroom",
+      "Beau Rivage",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Hallway",
+      "LES REVES",
+      "Light Blue",
+      "Navy Blue",
+      "NCW4301",
+      "NCW4301-06",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Scandinavian",
+      "Serene",
+      "Sky Blue",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80309-ncw4301-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+    "handle": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+    "title": "Faux Glass Bead Wallpaper - 109 Jade Green",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-109-sample-faux-glass-bead-wallpaper.jpg?v=1775711841",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bling",
+      "Commercial",
+      "Commercially Rated Cleanable",
+      "Contemporary",
+      "Fabric",
+      "Faux Finish",
+      "Glass Bead",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Jade Green",
+      "Light Blue",
+      "Minimalist",
+      "Textured",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 82.74,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-109-jade-green-fgb-109"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-444",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-444",
+    "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/52b3ace36d45ee3034fed930887c5356_916f6881-3771-4ed3-a0de-dc9bde3f576e.jpg?v=1745458236",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Decorator Grasscloth Vol. 2",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Off-white",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 21.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-444"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em10276b-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em10276b-jpg",
+    "title": "EM10276B | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10275b.jpg?v=1733873303",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM10276B",
+      "Gray",
+      "Light Gray",
+      "Minimalist",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10276b-jpg"
+  },
+  {
+    "sku": "la-arebe-durable-vinyl-dur-72195",
+    "handle": "la-arebe-durable-vinyl-dur-72195",
+    "title": "La Arebe Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72195-sample-clean.jpg?v=1774484749",
+    "tags": [
+      "Abstract",
+      "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",
+      "Living Room",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-arebe-durable-vinyl-dur-72195"
+  },
+  {
+    "sku": "dwss-72596",
+    "handle": "dwss-72596",
+    "title": "Ljung light grey Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/648-05_image1_5431ee94-5b52-43e3-911e-b7338724a602.jpg?v=1646104774",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Light Gray",
+      "LIGHT GREY",
+      "Ljung",
+      "Ljung light grey  Sample",
+      "Minimalist",
+      "P648-05",
+      "Paper",
+      "Sandberg",
+      "Solid",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72596"
+  },
+  {
+    "sku": "rustic-glam-vinyl-gpr-76631",
+    "handle": "rustic-glam-vinyl-gpr-76631",
+    "title": "Rustic Glam Vinyl",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76631-sample-rustic-glam-vinyl.jpg?v=1775731634",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Bling",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Glass Bead",
+      "Hand Crafted",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Mural",
+      "Office",
+      "Organic Modern",
+      "Sand",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wheat",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76631"
+  },
+  {
+    "sku": "programa-piento-durable-vinyl-dur-72427",
+    "handle": "programa-piento-durable-vinyl-dur-72427",
+    "title": "Programa Piento Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72427-sample-clean.jpg?v=1774485506",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Bronze",
+      "Brown",
+      "Chevron",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Durable Type 2 Vinyl",
+      "Estimated Type: Non-woven",
+      "Geometric",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Programa Piento Durable Vinyl",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/programa-piento-durable-vinyl-dur-72427"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_alc-4816-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_alc-4816-jpg",
+    "title": "Alchemy - Antique Gold | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/alc-4816.jpg?v=1762284375",
+    "tags": [
+      "100% Vinyl",
+      "Alchemy",
+      "Antique Gold",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_alc-4816-jpg"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-white_alps.jpg?v=1777480690",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52824"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2764",
+    "handle": "faux-leaf-squares-fls-2764",
+    "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2764-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712042",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Faux Leaf Squares",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Beige",
+      "Off-white",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2764"
+  },
+  {
+    "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52373",
+    "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52373",
+    "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/perplex-breathless.jpg?v=1777480541",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52373"
+  },
+  {
+    "sku": "mica-madness-real-cork-chip-wallpapers-mic-98623",
+    "handle": "mica-madness-real-cork-chip-wallpapers-mic-98623",
+    "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/905d59e1b5b1c169618cd7b5d6eb8959.jpg?v=1775082953",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Commercial",
+      "Cork",
+      "Entryway",
+      "Industrial",
+      "Living Room",
+      "Mica",
+      "Natural",
+      "Naturals",
+      "Office",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "White",
+      "Wuhan Woven Wallcovering"
+    ],
+    "max_price": 34.12,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98623"
+  },
+  {
+    "sku": "canal-stripe-texture-durable-walls-xwd-52115",
+    "handle": "canal-stripe-texture-durable-walls-xwd-52115",
+    "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52115-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707121",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Khaki",
+      "Light Beige",
+      "Linear",
+      "Living Room",
+      "Olive Green",
+      "Organic Modern",
+      "Pale Beige",
+      "Pattern",
+      "Serene",
+      "Stripe",
+      "Striped",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52115"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916",
+    "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916",
+    "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52916-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734476",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Vinyl",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Luxe",
+      "Minimalist",
+      "Modern",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52916"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52678",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52678",
+    "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52678-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726384",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52678"
+  },
+  {
+    "sku": "eur-80158-ncw4152-designer-wallcoverings-los-angeles",
+    "handle": "eur-80158-ncw4152-designer-wallcoverings-los-angeles",
+    "title": "Lochwood 05 - Soft White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497731123.jpg?v=1775522469",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Light Grey",
+      "Living Room",
+      "Lochwood",
+      "NCW4152",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Organic Modern",
+      "Pale Green",
+      "Paper",
+      "ROSSLYN",
+      "Scenic",
+      "Serene",
+      "Silver",
+      "Traditional",
+      "Trees",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80158-ncw4152-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lux-lapis-romo",
+    "handle": "lux-lapis-romo",
+    "title": "Lux Lapis | Romo Wallcovering",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW101-07-lux-wallcoverings-lapis_02.jpg?v=1776485031",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Background Color single dominant color",
+      "blue-gray",
+      "Commercial",
+      "Conference Room",
+      "Contemporary",
+      "Contemporary Wallcovering",
+      "Geometric",
+      "Glamorama Wallcovering",
+      "light gray",
+      "Lobby",
+      "Lux",
+      "Medium",
+      "Minimalist",
+      "Non-woven",
+      "Office",
+      "Romo",
+      "Scandinavian",
+      "Slate Blue",
+      "Textured",
+      "Wallcovering",
+      "Warm Taupe",
+      "ZW101/07"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lux-lapis-romo"
+  },
+  {
+    "sku": "ncw4396-01",
+    "handle": "ncw4396-01",
+    "title": "Ashdown Brideshead Grey - 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_4497266999347.jpg?v=1775520885",
+    "tags": [
+      "Arabesque",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "NCW4396-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4396-01"
+  },
+  {
+    "sku": "cubism-drive-hlw-73050",
+    "handle": "cubism-drive-hlw-73050",
+    "title": "Cubism Drive | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73050-sample-clean.jpg?v=1774483223",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Champagne",
+      "Chevron",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic Modern",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 159.27,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cubism-drive-hlw-73050"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_sm10258-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10258-jpg",
+    "title": "SM10258 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10257.jpg?v=1733872448",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10258-jpg"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b79a72bfad03de11927b3dfeff945d96_4d86553f-be00-4f7e-a4c3-dc78e0a7ed57.jpg?v=1745458290",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Decorator Grasscloth Vol. 2",
+      "Fabric",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Greige",
+      "Lemon",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 21.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-423"
+  },
+  {
+    "sku": "glamly-metal-on-vinyl-gpr-76621",
+    "handle": "glamly-metal-on-vinyl-gpr-76621",
+    "title": "Glamly Metal on Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76621-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714702",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Copper",
+      "Dark Brown",
+      "Glamorous",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Industrial",
+      "Luxe",
+      "Luxurious",
+      "Paper",
+      "Regencycore",
+      "Restaurant",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "USFCID#vp860-069",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 64.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76621"
+  },
+  {
+    "sku": "mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863",
+    "handle": "mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863",
+    "title": "Mia Aqua Faux Zebra Stripes Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/22ff70a16b353288de81988e5a6db42f.jpg?v=1572309958",
+    "tags": [
+      "Animal Prints",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Faux",
+      "LA Walls",
+      "Light Blue",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Zebra"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mia-aqua-faux-zebra-stripes-wallpaper-wallpaper-cca-82863"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+    "title": "Resham - Laurel | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5508.jpg?v=1762304075",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Cream",
+      "Grasscloth",
+      "Laurel",
+      "Light Gray",
+      "RAMPART®",
+      "Resham",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5508-jpg"
+  },
+  {
+    "sku": "dwss-72738",
+    "handle": "dwss-72738",
+    "title": "Maria spring green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/834-18_image1_68edf450-49c6-4030-9d00-bddfee97372c.jpg?v=1646105250",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Floral",
+      "Green",
+      "Maria",
+      "Maria spring green  sample",
+      "P834-18",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "SPRING GREEN",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72738"
+  },
+  {
+    "sku": "cody-couture-wallpaper-xb2-66512",
+    "handle": "cody-couture-wallpaper-xb2-66512",
+    "title": "Cody Couture Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/472aebf7b48b65f538fa019c2bdfe667.jpg?v=1775128155",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Cody Couture Wallcovering",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Fabric",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Solid/Textural",
+      "Spa",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 50.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66512"
+  },
+  {
+    "sku": "crushed-costoluto-vinyl-dwx-58000",
+    "handle": "crushed-costoluto-vinyl-dwx-58000",
+    "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-58000-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709666",
+    "tags": [
+      "54 Inch Width",
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Grade",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Crushed",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Minimalist",
+      "Neutral",
+      "Off-White",
+      "Organic",
+      "Striped",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58000"
+  },
+  {
+    "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": "peter-s-plastered-walls-ppw-2886",
+    "handle": "peter-s-plastered-walls-ppw-2886",
+    "title": "Peter's Plastered | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2886-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729101",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2886"
+  },
+  {
+    "sku": "andrew-blue-ships-wallpaper-cca-82930",
+    "handle": "andrew-blue-ships-wallpaper-cca-82930",
+    "title": "Andrew Blue Ships Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b6e68008102652e10273054f82264c07.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Nautical",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Sailboat",
+      "Scenic",
+      "Series: Brewster",
+      "Ship",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 44.11,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/andrew-blue-ships-wallpaper-cca-82930"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br011-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br011-jpg",
+    "title": "BR011 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br010.jpg?v=1733873689",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Linen",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br011-jpg"
+  },
+  {
+    "sku": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+    "handle": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+    "title": "Wells Lavender Candy Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70aa47e73f89a3ce227462a124e5eee6.jpg?v=1572309973",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Kids",
+      "LA Walls",
+      "Lavender",
+      "Multi",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wells-lavender-candy-stripe-wallpaper-cca-83220"
+  },
+  {
+    "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": "benedict-canyon-sisal-hlw-73026",
+    "handle": "benedict-canyon-sisal-hlw-73026",
+    "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73026-sample-clean.jpg?v=1774483093",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Beige",
+      "Champagne",
+      "Color: Metallic",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Glass Bead",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Metallic",
+      "Modern",
+      "Mosaic",
+      "Natural",
+      "Natural Texture",
+      "Naturally Glamorous",
+      "Powder Room",
+      "Silver",
+      "Sisal",
+      "Sophisticated",
+      "Textured",
+      "Tile",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 63.43,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73026"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10203-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10203-jpg",
+    "title": "SP10203 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10202.jpg?v=1733872398",
+    "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_sp10203-jpg"
+  },
+  {
+    "sku": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+    "handle": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+    "title": "EROS - Erotic Chandelier Nude Wallcovering",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20319258.jpg?v=1758052023",
+    "tags": [
+      "1950's",
+      "Architectural",
+      "Art Deco",
+      "Beige",
+      "Black",
+      "Brick",
+      "Commercial",
+      "Erotica Wall Coverings",
+      "Moss",
+      "Paper",
+      "Scenic",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eros-erotic-chandelier-nude-wall-paper-ero-1977"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2876",
+    "handle": "peter-s-plastered-walls-ppw-2876",
+    "title": "Peter's Plastered | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2876-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729067",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Mediterranean",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2876"
+  },
+  {
+    "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73272",
+    "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73272",
+    "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-73272-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707545",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Caterina Embossed Vinyl",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Light Goldenrodyellow",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Sand",
+      "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-73272"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2890",
+    "handle": "peter-s-plastered-walls-ppw-2890",
+    "title": "Peter's Plastered | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2890-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729114",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Coffee",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "Ochre",
+      "Sepia",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2890"
+  },
+  {
+    "sku": "castine-aqua-tuscan-stripe-wallpaper-cca-83208",
+    "handle": "castine-aqua-tuscan-stripe-wallpaper-cca-83208",
+    "title": "Castine Aqua Tuscan Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4c31a9b4223b98f277e793f409ab5111.jpg?v=1572309972",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Marble",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/castine-aqua-tuscan-stripe-wallpaper-cca-83208"
+  },
+  {
+    "sku": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+    "handle": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+    "title": "Stonington Bone Awning Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/184079d2195e181d934e09177053a79e.jpg?v=1572309970",
+    "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": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/stonington-bone-awning-stripe-wallpaper-cca-83151"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2616",
+    "handle": "pleated-perfect-paradise-ppp-2616",
+    "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-2616-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729147",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Khaki",
+      "Olive",
+      "Pleated Perfect Paradise",
+      "Stripe",
+      "Textured",
+      "vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2616"
+  },
+  {
+    "sku": "mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861",
+    "handle": "mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861",
+    "title": "Mia Orange Faux Zebra Stripes Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ca3c9d56eb9407aa0dc9a113d78fd614.jpg?v=1572309958",
+    "tags": [
+      "Animal Prints",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Faux",
+      "LA Walls",
+      "Orange",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Zebra"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861"
+  },
+  {
+    "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": "eur-80257-ncw4207-designer-wallcoverings-los-angeles",
+    "handle": "eur-80257-ncw4207-designer-wallcoverings-los-angeles",
+    "title": "Fontibre 04 - Soft Beige Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501302835.jpg?v=1775523003",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Dark Brown",
+      "Dining Room",
+      "Fontibre",
+      "Grandmillennial",
+      "Green",
+      "Leaf",
+      "Light Green",
+      "Living Room",
+      "NCW4207",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Olive Green",
+      "Organic Modern",
+      "Pale Beige",
+      "Paper",
+      "Sage Green",
+      "Serene",
+      "Taupe",
+      "Traditional",
+      "Vine",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80257-ncw4207-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "anahi-light-green-forest-fauna-wallpaper-cca-82989",
+    "handle": "anahi-light-green-forest-fauna-wallpaper-cca-82989",
+    "title": "Anahi Light Green Forest Fauna Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8bab0d8fb807c8652eb1d011f0efc9d1.jpg?v=1572309964",
+    "tags": [
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Beige",
+      "Bird",
+      "Botanical",
+      "Commercial",
+      "Deer",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Flowers",
+      "LA Walls",
+      "Light Green",
+      "Paper",
+      "Prepasted",
+      "Rabbit",
+      "Series: Brewster",
+      "Squirrel",
+      "Strippable",
+      "Trees",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/anahi-light-green-forest-fauna-wallpaper-cca-82989"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar10376-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar10376-jpg",
+    "title": "Armor | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10376.jpg?v=1762286050",
+    "tags": [
+      "Architectural",
+      "Armor",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10376-jpg"
+  },
+  {
+    "sku": "cody-cantina-wallpaper-xb1-66504",
+    "handle": "cody-cantina-wallpaper-xb1-66504",
+    "title": "Cody Cantina Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e24d7708f5ebd647027496cfacd9474c.jpg?v=1775127416",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Cody Cantina Wallcovering",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Gray",
+      "Hotel Lobby",
+      "Living Room",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Red",
+      "Stripe",
+      "Striped",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 38.61,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66504"
+  },
+  {
+    "sku": "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": "faux-leaf-squares-fls-2504",
+    "handle": "faux-leaf-squares-fls-2504",
+    "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2504-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711868",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Dark Seagreen",
+      "Faux Finish",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2504"
+  },
+  {
+    "sku": "eur-80143-ncw4150-designer-wallcoverings-los-angeles",
+    "handle": "eur-80143-ncw4150-designer-wallcoverings-los-angeles",
+    "title": "Rosslyn 01 - Neutral 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_7513497174067.jpg?v=1775522364",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Butter Yellow",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Coral",
+      "Cottagecore",
+      "Crimson",
+      "Dining Room",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Living Room",
+      "NCW4150",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Organic",
+      "Pale Beige",
+      "Pale Lavender",
+      "Paper",
+      "Pink",
+      "Purple",
+      "Red",
+      "Rose",
+      "Rosslyn",
+      "Sage Green",
+      "Traditional",
+      "Tropical",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80143-ncw4150-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_pho-3761-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_pho-3761-jpg",
+    "title": "Phaeo - Cove | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pho-3761.jpg?v=1762303119",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Cove",
+      "Light Blue",
+      "Phaeo",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_pho-3761-jpg"
+  },
+  {
+    "sku": "vomera-cream-faux-granite-wbs-39651",
+    "handle": "vomera-cream-faux-granite-wbs-39651",
+    "title": "Vomera Cream Faux Granite | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39651-sample-vomera-cream-faux-granite-hollywood-wallcoverings.jpg?v=1775735863",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Beige",
+      "Bricks and Stones",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Organic Modern",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Rustic",
+      "Stone",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Warm",
+      "Wood"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vomera-cream-faux-granite-wbs-39651"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gai-5009-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gai-5009-jpg",
+    "title": "Grain - Wenge | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5009.jpg?v=1762295486",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Brown",
+      "Grain",
+      "RAMPART®",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wenge",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5009-jpg"
+  },
+  {
+    "sku": "shin-bronze-golden-scroll-texture-wallpaper-cca-83268",
+    "handle": "shin-bronze-golden-scroll-texture-wallpaper-cca-83268",
+    "title": "Shin Bronze Golden Scroll Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f872ab377df1530894b0ec27bde1053b.jpg?v=1572309982",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Shin Bronze Golden Scroll Texture Wallcovering",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/shin-bronze-golden-scroll-texture-wallpaper-cca-83268"
+  },
+  {
+    "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53468",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53468",
+    "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-53468-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715883",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallandale Rice Paper Effect Durable",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "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-53468"
+  },
+  {
+    "sku": "seres-cacao-romo",
+    "handle": "seres-cacao-romo",
+    "title": "Seres Cacao | Romo",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-10-seres-wallcovering-cacao_01.jpg?v=1776484970",
+    "tags": [
+      "Architectural",
+      "Background Color brown",
+      "beige",
+      "brown",
+      "Commercial",
+      "Contemporary",
+      "Embossed Wallcovering",
+      "Grasscloth",
+      "Kabu Wallcoverings",
+      "Light Beige",
+      "Lobby",
+      "Minimalist",
+      "Natural",
+      "Office",
+      "Reception Area",
+      "Romo",
+      "Rustic",
+      "Seres",
+      "Small",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "W969/10",
+      "Wallcovering",
+      "Warm Taupe"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seres-cacao-romo"
+  },
+  {
+    "sku": "hollywood-tower-deco-xhw-201054",
+    "handle": "hollywood-tower-deco-xhw-201054",
+    "title": "Hollywood Tower Deco | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/avant-lexicon_7a544a4b-5663-498e-b37e-aa13ce1c22fc.jpg?v=1777481462",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Art Deco",
+      "Background Color Gray",
+      "Bedroom",
+      "Charcoal",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Charcoal",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "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 Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tower-deco-xhw-201054"
+  },
+  {
+    "sku": "minetta-contemporary-durable-vinyl-xwj-52459",
+    "handle": "minetta-contemporary-durable-vinyl-xwj-52459",
+    "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52459-sample-minetta-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775725954",
+    "tags": [
+      "1970s Retro",
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Leed Walls",
+      "Living Room",
+      "Mid-century Modern",
+      "Retro",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Warm",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52459"
+  },
+  {
+    "sku": "mr-diorio-wallpaper-xa8-66462",
+    "handle": "mr-diorio-wallpaper-xa8-66462",
+    "title": "Mr. Diorio Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6ed7ff155fb215338b6785f8d494ff2.jpg?v=1775124093",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Blue-gray",
+      "Light Gray",
+      "Living Room",
+      "Mr. Diorio Wallcovering",
+      "Non-woven",
+      "Office",
+      "Organic",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Smoke",
+      "Spa",
+      "Steel",
+      "Textured",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 35.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66462"
+  },
+  {
+    "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": "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": "dwss-72735",
+    "handle": "dwss-72735",
+    "title": "Hedvig garden green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/833-28_image1_4ed647e3-0862-42e7-8d67-d832f2998f01.jpg?v=1646105241",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Floral",
+      "GARDEN GREEN",
+      "Gray",
+      "Hedvig",
+      "Hedvig garden green  sample",
+      "P833-28",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72735"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72054",
+    "handle": "saint-helene-durable-vinyl-dur-72054",
+    "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-72054-sample-clean.jpg?v=1774484169",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Gray",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72054"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em10273b-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em10273b-jpg",
+    "title": "EM10273B | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10272b.jpg?v=1733873308",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "EM10273B",
+      "Light Brown",
+      "Paper",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10273b-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mya-9438-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mya-9438-jpg",
+    "title": "Maya - Copper | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9438.jpg?v=1762302083",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Maya",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9438-jpg"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2882",
+    "handle": "peter-s-plastered-walls-ppw-2882",
+    "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-2882-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729088",
+    "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-2882"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwa-52090",
+    "handle": "canal-texture-durable-walls-xwa-52090",
+    "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-willow.jpg?v=1777480391",
+    "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",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Grasscloth",
+      "Green",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Pale Olive",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52090"
+  },
+  {
+    "sku": "dwkk-129232",
+    "handle": "dwkk-129232",
+    "title": "W3784-8 Black | Kravet Design |Jacobeans Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3784_8_32fbd75a-909f-464b-a91d-4212b675c8a4.jpg?v=1753291919",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Black",
+      "Botanical",
+      "Commercial",
+      "display_variant",
+      "Floral",
+      "Jacobeans",
+      "Kravet",
+      "Kravet Design",
+      "Non Woven - 100%",
+      "Paper",
+      "Print",
+      "Traditional",
+      "United States",
+      "W3784-8",
+      "W3784.8.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129232"
+  },
+  {
+    "sku": "dwc-1001656",
+    "handle": "dwc-1001656",
+    "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_4693310767155.jpg?v=1775521396",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gray",
+      "NCW4355-03",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001656"
+  },
+  {
+    "sku": "dwss-72703",
+    "handle": "dwss-72703",
+    "title": "Anton forest green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/814-38_image1_0cf675d9-e7f8-472f-9e7c-30a70ebdf183.jpg?v=1646105129",
+    "tags": [
+      "Anton",
+      "Anton forest green  sample",
+      "Architectural",
+      "Arts & Crafts",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "FOREST GREEN",
+      "Gray",
+      "Non-Woven",
+      "P814-38",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72703"
+  },
+  {
+    "sku": "glyph-by-innovations-usa-dwc-glyph-3",
+    "handle": "glyph-by-innovations-usa-dwc-glyph-3",
+    "title": "Glyph | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-3.jpg?v=1736199459",
+    "tags": [
+      "Architectural",
+      "ASTM E84",
+      "Brown",
+      "Chevron",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Glyph-3",
+      "Gray",
+      "Innovations USA",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 3.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-3"
+  },
+  {
+    "sku": "dwss-71417",
+    "handle": "dwss-71417",
+    "title": "Emil - Blush Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/835-24_image2.jpg?v=1646103691",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Blush",
+      "Class A Fire Rated",
+      "Commercial",
+      "Emil",
+      "Emil blush",
+      "Floral",
+      "Gray",
+      "Light Gray",
+      "Non-Woven",
+      "Paper",
+      "Pattern",
+      "Pink",
+      "Sandberg",
+      "Sandberg Emil",
+      "Scandinavian",
+      "Swedish Design",
+      "Timeless",
+      "Traditional",
+      "Victorian",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 146.1,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-71417"
+  },
+  {
+    "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": "palazzo-no-12-blush-wallcovering-versace-1",
+    "handle": "palazzo-no-12-blush-wallcovering-versace-1",
+    "title": "Palazzo No 12 Blush Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/522e5849c0f09262a5c7745fa4648102_be2b85d4-6ac8-47e0-a319-095d36ad9c6f.jpg?v=1773710494",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Blush",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "display_variant",
+      "Dusty Rose",
+      "Italian",
+      "Light Beige",
+      "Living Room",
+      "Luxury",
+      "Minimalist",
+      "Needs-Image",
+      "Office",
+      "Organic Modern",
+      "Palazzo No 12",
+      "Palazzo No 12 Blush Wallcovering",
+      "Pale Peach",
+      "Paper",
+      "Paste the wall",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-no-12-blush-wallcovering-versace-1"
+  },
+  {
+    "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48211",
+    "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48211",
+    "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-48211-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730045",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Ramsey Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48211"
+  },
+  {
+    "sku": "dwss-72535",
+    "handle": "dwss-72535",
+    "title": "William blue Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/526-76_image1_7ece412b-6925-473c-b02c-c582b911f6c7.jpg?v=1646104579",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Light Gray",
+      "P526-76",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Stripe",
+      "Wallcovering",
+      "White",
+      "William",
+      "William blue  Sample"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72535"
+  },
+  {
+    "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": "faux-leaf-squares-fls-2741",
+    "handle": "faux-leaf-squares-fls-2741",
+    "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-2741-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711972",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2741"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2633",
+    "handle": "pleated-perfect-paradise-ppp-2633",
+    "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-2633-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729199",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "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-2633"
+  },
+  {
+    "sku": "seeing-circles-wallcovering-xsc-44285",
+    "handle": "seeing-circles-wallcovering-xsc-44285",
+    "title": "Seeing Circles | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xsc-44285-sample-seeing-circles-hollywood-wallcoverings.jpg?v=1775732875",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Champagne",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Silver",
+      "Sophisticated",
+      "Taupe",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 37.88,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44285"
+  },
+  {
+    "sku": "artisma-croco-vinyl-dwx-58148",
+    "handle": "artisma-croco-vinyl-dwx-58148",
+    "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-58148-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699157",
+    "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-58148"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72291",
+    "handle": "la-voltere-durable-vinyl-dur-72291",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72291-sample-clean.jpg?v=1774485060",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72291"
+  },
+  {
+    "sku": "world-map-modern-colourway-small-mural-by-retro-walls-rtr-37223",
+    "handle": "world-map-modern-colourway-small-mural-by-retro-walls-rtr-37223",
+    "title": "World Map - Modern (colourway) Small Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d70caed13d58700933e00b4a1a72b0f9.jpg?v=1572309702",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Light Blue",
+      "Light Pink",
+      "Modern",
+      "Multi",
+      "Mural",
+      "Paper",
+      "Scenic",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 84,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/world-map-modern-colourway-small-mural-by-retro-walls-rtr-37223"
+  },
+  {
+    "sku": "eur-80537-pcl695-designer-wallcoverings-los-angeles",
+    "handle": "eur-80537-pcl695-designer-wallcoverings-los-angeles",
+    "title": "Malmaison Botanical 07 | Christian Lacroix Europe",
+    "vendor": "Christian Lacroix Europe",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/56557_2aa0baad-0b1a-45f4-8e9a-32f79b3c45d8.webp?v=1738950909",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Charcoal Gray",
+      "Christian Lacroix Europe",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Creme",
+      "Dining Room",
+      "Estimated Type: Paper",
+      "Floral",
+      "Grandmillennial",
+      "Gray",
+      "Green",
+      "INCROYABLE ET MARVEILLEUS",
+      "Living Room",
+      "Malmaison Botanical",
+      "Non-Woven",
+      "Off-white",
+      "Olive",
+      "Organic",
+      "Pattern",
+      "PCL695",
+      "Smoke",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80537-pcl695-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47306",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47306",
+    "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-47306-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704239",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Orange",
+      "Rustic",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47306"
+  },
+  {
+    "sku": "bosa-marina-midnight-wood-grain-wbs-39632",
+    "handle": "bosa-marina-midnight-wood-grain-wbs-39632",
+    "title": "Bosa Marina Midnight Wood Grain | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39632-sample-bosa-marina-midnight-wood-grain-hollywood-wallcoverings.jpg?v=1775705874",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Bricks and Stones",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Embossed Texture",
+      "Faux",
+      "Faux Wood",
+      "Gold",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Paper",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Regencycore",
+      "Rich Woods",
+      "Sophisticated",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Wood",
+      "Yellow"
+    ],
+    "max_price": 54.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bosa-marina-midnight-wood-grain-wbs-39632"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2521",
+    "handle": "faux-leaf-squares-fls-2521",
+    "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-2521-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711925",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "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-2521"
+  },
+  {
+    "sku": "i-love-baroque-cream-wallcovering-versace-2",
+    "handle": "i-love-baroque-cream-wallcovering-versace-2",
+    "title": "I Love Baroque Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/954f62ba57e761af5104c399a5bcd49e.jpg?v=1773710356",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Dark Wood",
+      "display_variant",
+      "Estimated Type: Paper",
+      "I Love Baroque",
+      "I Love Baroque Cream Wallcovering",
+      "Italian",
+      "Light Gray",
+      "Light Wood",
+      "Living Room",
+      "Luxury",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Paper",
+      "Paste the wall",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/i-love-baroque-cream-wallcovering-versace-2"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2523",
+    "handle": "faux-leaf-squares-fls-2523",
+    "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-2523-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711931",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Khaki",
+      "Light Brown",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2523"
+  },
+  {
+    "sku": "kylie-green-cabin-stripe-wallpaper-cca-83039",
+    "handle": "kylie-green-cabin-stripe-wallpaper-cca-83039",
+    "title": "Kylie Green Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1a1a240725460b1782381f53b33cc1fa.jpg?v=1572309966",
+    "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": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kylie-green-cabin-stripe-wallpaper-cca-83039"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2739",
+    "handle": "faux-leaf-squares-fls-2739",
+    "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-2739-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711965",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "Minimalist",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2739"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10241-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10241-jpg",
+    "title": "SM10241 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10240.jpg?v=1733872477",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gold",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10241-jpg"
+  },
+  {
+    "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": "westville-contemporary-durable-walls-xje-53681",
+    "handle": "westville-contemporary-durable-walls-xje-53681",
+    "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53681-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736445",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53681"
+  },
+  {
+    "sku": "marseilles-durable-vinyl-dur-72009",
+    "handle": "marseilles-durable-vinyl-dur-72009",
+    "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-72009-sample-clean.jpg?v=1774483952",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72009"
+  },
+  {
+    "sku": "patoa-librato-wallpaper-xb7-66597",
+    "handle": "patoa-librato-wallpaper-xb7-66597",
+    "title": "Patoa Librato Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b67862400cae02aadcc93598198061ab.jpg?v=1775131258",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "cellulose",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Grasscloth",
+      "Gray",
+      "Hotel Lobby",
+      "Light Gray",
+      "Living Room",
+      "Natural Wallcovering",
+      "Neutral",
+      "Office",
+      "Patoa Librato Wallcovering",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Striped",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 52.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66597"
+  },
+  {
+    "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48543",
+    "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48543",
+    "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-48543-sample-clean.jpg?v=1774480581",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Rustic",
+      "Solid",
+      "Textured",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48543"
+  },
+  {
+    "sku": "saint-brittany-durable-vinyl-dur-72241",
+    "handle": "saint-brittany-durable-vinyl-dur-72241",
+    "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72241-sample-clean.jpg?v=1774484881",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Blue",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Silver",
+      "Slate Gray",
+      "Steel Gray",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72241"
+  },
+  {
+    "sku": "marseilles-durable-vinyl-dur-72004",
+    "handle": "marseilles-durable-vinyl-dur-72004",
+    "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-72004-sample-clean.jpg?v=1774483921",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Marseilles Durable Vinyl",
+      "Minimalist",
+      "Oatmeal",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72004"
+  },
+  {
+    "sku": "juno-faux-silk-durable-walls-xje-53760",
+    "handle": "juno-faux-silk-durable-walls-xje-53760",
+    "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53760-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720115",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Juno Faux Silk Durable",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53760"
+  },
+  {
+    "sku": "fukaura-durable-vinyl-xrm-34133",
+    "handle": "fukaura-durable-vinyl-xrm-34133",
+    "title": "Fukaura Durable Vinyl",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8fd341de233cc91097f7c8cbaa58c101_a5b8cbb9-f95e-45b7-854d-d80cc8489439.jpg?v=1572310410",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Phillipe Romano",
+      "Phillipe Romano Essential Textures",
+      "Phillipe Romano Vinyls",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Commercial and Residential - Cleanable",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fukaura-durable-vinyl-xrm-34133"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp9510-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp9510-jpg",
+    "title": "SP9510 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9508.jpg?v=1733872413",
+    "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_sp9510-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_lyr-3379_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_lyr-3379_8-jpg",
+    "title": "Lyra - Stone | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3379_8.jpg?v=1762299942",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Lyra",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3379_8-jpg"
+  },
+  {
+    "sku": "sumatra-by-innovations-usa-dwc-sumatra-5",
+    "handle": "sumatra-by-innovations-usa-dwc-sumatra-5",
+    "title": "Sumatra | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-5.jpg?v=1736198820",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Innovations USA",
+      "Stripe",
+      "Sumatra",
+      "Sumatra-5",
+      "Tan",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-5"
+  },
+  {
+    "sku": "durante-diamonds-hlw-73053",
+    "handle": "durante-diamonds-hlw-73053",
+    "title": "Durante Diamonds | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73053-sample-durante-diamonds-hollywood-wallcoverings.jpg?v=1775710364",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durante Diamonds",
+      "Geometric",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 139.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/durante-diamonds-hlw-73053"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9485",
+    "handle": "chinese-fret-walls-cfw-9485",
+    "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-9485-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708050",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Brown",
+      "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-9485"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_lyr-3375_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_lyr-3375_8-jpg",
+    "title": "Lyra - Tea Rose | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3375_8.jpg?v=1762299795",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Lyra",
+      "Pink",
+      "Rose",
+      "Stripe",
+      "Tea Rose",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3375_8-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_jai9-5372-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_jai9-5372-jpg",
+    "title": "Jaipur - Red | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/jai9-5372.jpg?v=1762298109",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Jaipur",
+      "Paper",
+      "Red",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_jai9-5372-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+    "title": "ST10427M | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10426m.jpg?v=1733872136",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Linen",
+      "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_st10427m-jpg"
+  },
+  {
+    "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": "patoa-librato-wallpaper-xb7-66590",
+    "handle": "patoa-librato-wallpaper-xb7-66590",
+    "title": "Patoa Librato Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2fbb7887a4dadbf18037ea6c6961c68f.jpg?v=1775130389",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "cellulose",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Entryway",
+      "Grasscloth",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Natural Wallcovering",
+      "Off-white",
+      "Office",
+      "Patoa Librato Wallcovering",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Stripe",
+      "Striped",
+      "Textural",
+      "Textured",
+      "Transitional",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 52.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66590"
+  },
+  {
+    "sku": "dwjs-16523",
+    "handle": "dwjs-16523",
+    "title": "Fire Island Cream Wallcovering | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SS2592.jpg?v=1740772749",
+    "tags": [
+      "Abstract",
+      "Animal Print",
+      "Animal/Insects",
+      "Animals/Insects",
+      "Architectural",
+      "Art Deco",
+      "Bird",
+      "Blue",
+      "Blues",
+      "Botanical",
+      "Branches",
+      "Chinoiserie",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Dark Blue",
+      "Floral",
+      "Flowers",
+      "Grasscloth",
+      "Imperial Blossoms Branch",
+      "Jeffrey Stevens",
+      "Light",
+      "Light Duty",
+      "Light Traffic",
+      "Muted",
+      "Navy",
+      "Non-Woven",
+      "Off-White",
+      "Paper",
+      "Pattern",
+      "Prepasted",
+      "SS2592",
+      "Strippable",
+      "Texture",
+      "Traditional",
+      "Transitional",
+      "United States",
+      "Wallcovering",
+      "Warm",
+      "Washable",
+      "White"
+    ],
+    "max_price": 93.14,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwjs-16523"
+  },
+  {
+    "sku": "regal-lattice-screen-printed-wallpaper-tre-12906",
+    "handle": "regal-lattice-screen-printed-wallpaper-tre-12906",
+    "title": "Regal Lattice - Screen Printed Wallcovering",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/765a7692adba432658470a08ef9cbcdf.jpg?v=1572309178",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gray",
+      "Lattice",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Screen Print",
+      "Silver",
+      "Suede",
+      "Textured",
+      "Trellis",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 99.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12906"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53071",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53071",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53071-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703570",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Red",
+      "Salmon",
+      "Solid",
+      "Terracotta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53071"
+  },
+  {
+    "sku": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+    "handle": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+    "title": "Beau Rivage 02 - 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_7513503006771.jpg?v=1775523268",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beau Rivage",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dusty Rose",
+      "Geometric",
+      "Gray",
+      "Hallway",
+      "LES REVES",
+      "Living Room",
+      "Mid-century",
+      "Mid-Century Modern",
+      "NCW4301",
+      "NCW4301-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Pink",
+      "Serene",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80305-ncw4301-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-127668",
+    "handle": "dwkk-127668",
+    "title": "Hexagon - Antique  By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0056_01_CAC_dbe02c64-dc3b-4a2d-89f6-8e921e5b28b1.jpg?v=1726037710",
+    "tags": [
+      "20.875In",
+      "Antique",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Hallway",
+      "Hexagon",
+      "Living Room",
+      "Paper",
+      "Print",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "Traditional",
+      "Transitional",
+      "United Kingdom",
+      "Vinyl",
+      "W0056/01.Cac.0",
+      "Wallcovering",
+      "Warm",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127668"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+    "title": "Maya - Catalina | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9449.jpg?v=1762302475",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Blue",
+      "Catalina",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Maya",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9449-jpg"
+  },
+  {
+    "sku": "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": "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": "manatee-faux-vertical-stria-durable-walls-xwq-52985",
+    "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52985",
+    "title": "Manatee Faux Vertical Stria Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gatehouse-rock_cress.jpg?v=1777480726",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Light Taupe",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52985"
+  },
+  {
+    "sku": "origami-by-innovations-usa-dwc-origami-12",
+    "handle": "origami-by-innovations-usa-dwc-origami-12",
+    "title": "Origami | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-12.jpg?v=1736198878",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Beetroot",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cranberry",
+      "Geometric",
+      "Gray",
+      "Innovations USA",
+      "Light Gray",
+      "Origami",
+      "Origami-12",
+      "Paper",
+      "Periwinkle",
+      "Powder",
+      "Silver",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-12"
+  },
+  {
+    "sku": "ncw4392-02",
+    "handle": "ncw4392-02",
+    "title": "Ashdown Chelwood Pink - 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_4497265721395.jpg?v=1775520743",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "NCW4392-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Pink",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4392-02"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gai-5004-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gai-5004-jpg",
+    "title": "Grain - Sycamore | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5004.jpg?v=1762295306",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Grain",
+      "Light Brown",
+      "RAMPART®",
+      "Stripe",
+      "Sycamore",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5004-jpg"
+  },
+  {
+    "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": "monterey-coast-durable-walls-xwp-52642",
+    "handle": "monterey-coast-durable-walls-xwp-52642",
+    "title": "Monterey Coast Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52642-sample-monterey-coast-durable-hollywood-wallcoverings.jpg?v=1775726344",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Chevron",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Grey",
+      "Paper",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52642"
+  },
+  {
+    "sku": "suva-3-stripe-wallpaper-trf-56880",
+    "handle": "suva-3-stripe-wallpaper-trf-56880",
+    "title": "Suva 3\" Stripe | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7b0ccfd171502e12ba6b708348fe3df3.jpg?v=1750789686",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "broad stripe",
+      "cabana",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Discontinued",
+      "Jeffrey Stevens",
+      "Minimalist",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "Paper",
+      "Pastel",
+      "Prepasted - Washable - Strippable",
+      "Series: York",
+      "stripe",
+      "texture",
+      "Traditional",
+      "USA",
+      "vertical",
+      "Wallcovering",
+      "White",
+      "wide stripe",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/suva-3-stripe-wallpaper-trf-56880"
+  },
+  {
+    "sku": "eur-80445-ncw4494-designer-wallcoverings-los-angeles",
+    "handle": "eur-80445-ncw4494-designer-wallcoverings-los-angeles",
+    "title": "Meridor Stripe 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_7513508282419.jpg?v=1775524134",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Leaf",
+      "Living Room",
+      "Meridor Stripe",
+      "NCW4494",
+      "NCW4494-05",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Organic Modern",
+      "Paper",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Stripe",
+      "Taupe",
+      "Teal",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80445-ncw4494-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2868",
+    "handle": "peter-s-plastered-walls-ppw-2868",
+    "title": "Peter's Plastered | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2868-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729042",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2868"
+  },
+  {
+    "sku": "ncw4352-03",
+    "handle": "ncw4352-03",
+    "title": "Les Indiennes Bonnelles 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_4497264312371.jpg?v=1775520523",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Leaf",
+      "Light Blue",
+      "NCW4352-03",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4352-03"
+  },
+  {
+    "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": "ncw4391-04",
+    "handle": "ncw4391-04",
+    "title": "Ashdown Cloisters 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_4497265623091.jpg?v=1775520730",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Bohemian",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "NCW4391-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4391-04"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar10384-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar10384-jpg",
+    "title": "Armor Paint - AR10384 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10382.jpg?v=1733873828",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10384-jpg"
+  },
+  {
+    "sku": "dwc-1001651",
+    "handle": "dwc-1001651",
+    "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_4693310570547.jpg?v=1775521364",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Gray",
+      "Light Gray",
+      "Medallion",
+      "NCW4354-03",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001651"
+  },
+  {
+    "sku": "dwss-72538",
+    "handle": "dwss-72538",
+    "title": "Gaston blue Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/549-76_image1_911a0db4-191c-4f2d-a772-6b6c3b101725.jpg?v=1646104587",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gaston",
+      "Gaston blue  Sample",
+      "Geometric",
+      "Gray",
+      "Midnightblue",
+      "P549-76",
+      "Paper",
+      "Quatrefoil",
+      "Sandberg",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72538"
+  },
+  {
+    "sku": "eur-80392-ncw4391-designer-wallcoverings-los-angeles",
+    "handle": "eur-80392-ncw4391-designer-wallcoverings-los-angeles",
+    "title": "Cloisters 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_7513506414643.jpg?v=1775523788",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASHDOWN",
+      "Bedroom",
+      "Blue",
+      "Bohemian",
+      "Brown",
+      "Class A Fire Rated",
+      "Cloisters",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Global",
+      "Hallway",
+      "Living Room",
+      "NCW4391",
+      "NCW4391-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "Rustic",
+      "Taupe",
+      "Teal",
+      "Turquoise",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80392-ncw4391-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2512",
+    "handle": "faux-leaf-squares-fls-2512",
+    "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-2512-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711895",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Brown",
+      "Commercial",
+      "Dark Olive Green",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "Olive Green",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2512"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-stone_sculpture.jpg?v=1777480693",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72174",
+    "handle": "st-silken-durable-vinyl-dur-72174",
+    "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-72174-sample-clean.jpg?v=1774484670",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Olive",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Olive",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72174"
+  },
+  {
+    "sku": "suva-3-stripe-wallpaper-trf-56875",
+    "handle": "suva-3-stripe-wallpaper-trf-56875",
+    "title": "Suva 3\" Stripe | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1e73f43f0393ca557cc68d9135895dc9.jpg?v=1750789697",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "broad stripe",
+      "cabana",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Discontinued",
+      "Gray",
+      "Jeffrey Stevens",
+      "Modern",
+      "Modern Tropics",
+      "Non-Woven",
+      "Off-White",
+      "Paper",
+      "Prepasted - Washable - Strippable",
+      "Series: York",
+      "stripe",
+      "texture",
+      "Traditional",
+      "USA",
+      "vertical",
+      "Wallcovering",
+      "wide stripe",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/suva-3-stripe-wallpaper-trf-56875"
+  },
+  {
+    "sku": "dwkk-127696",
+    "handle": "dwkk-127696",
+    "title": "Rafi - Limestone  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_04_CAC_0c54e4df-7ffe-488c-81e8-cf24a4812e86.jpg?v=1726037784",
+    "tags": [
+      "20.875In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Grey",
+      "Hallway",
+      "Light Gray",
+      "Light Grey",
+      "Limestone",
+      "Living Room",
+      "Minimalist",
+      "Pale Grey",
+      "Paper",
+      "Print",
+      "Rafi",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "United Kingdom",
+      "W0060/04.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127696"
+  },
+  {
+    "sku": "austin-green-plaid-wallpaper-cca-82963",
+    "handle": "austin-green-plaid-wallpaper-cca-82963",
+    "title": "Austin Green Plaid | LA Walls",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/962b83fbe1971070f0560384cd0965d2.jpg?v=1747080316",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Fabric",
+      "Gray",
+      "Green",
+      "LA Walls",
+      "Masculine",
+      "Phasing-2026-04",
+      "Plaid",
+      "Plaids",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wallpapers Wallpapers Walls: Chela Ciccio",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 44.11,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/austin-green-plaid-wallpaper-cca-82963"
+  },
+  {
+    "sku": "chinese-fret-walls-cfw-9495",
+    "handle": "chinese-fret-walls-cfw-9495",
+    "title": "Chinese Fret | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9495-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708085",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Elegant Vinyls Vol. 1",
+      "Fretwork",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9495"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+    "title": "Resham - Glacier Gray | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5511.jpg?v=1762304178",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Gray",
+      "Glacier Gray",
+      "Gray",
+      "Light Gray",
+      "RAMPART®",
+      "Resham",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5511-jpg"
+  },
+  {
+    "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52895",
+    "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52895",
+    "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-52895-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734578",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52895"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47647",
+    "handle": "fairford-vinyl-wallcovering-xlb-47647",
+    "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-47647-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711334",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Office",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47647"
+  },
+  {
+    "sku": "dwss-72616",
+    "handle": "dwss-72616",
+    "title": "Lofstad slott graphite sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/657-31_image1_9e9f6df5-26f5-48ca-9a01-3f46a55b4099.jpg?v=1646104841",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Baroque",
+      "Class A Fire Rated",
+      "Commercial",
+      "Dog",
+      "Gray",
+      "Horse",
+      "Light Gray",
+      "Lofstad",
+      "Lofstad slott graphite  sample",
+      "P657-31",
+      "Paper",
+      "Sandberg",
+      "Scenic",
+      "SLOTT GRAPHITE",
+      "Texture",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72616"
+  },
+  {
+    "sku": "whittier-way-twisted-paper-weave-hlw-73165",
+    "handle": "whittier-way-twisted-paper-weave-hlw-73165",
+    "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73165-sample-clean.jpg?v=1774483834",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 43.22,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73165"
+  },
+  {
+    "sku": "eastport-sand-arabelle-stripe-wallpaper-cca-83141",
+    "handle": "eastport-sand-arabelle-stripe-wallpaper-cca-83141",
+    "title": "Eastport Sand Arabelle Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f36d60e14340725d803db66e2e0ffff9.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eastport-sand-arabelle-stripe-wallpaper-cca-83141"
+  },
+  {
+    "sku": "cubism-drive-hlw-73044",
+    "handle": "cubism-drive-hlw-73044",
+    "title": "Cubism Drive | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73044-sample-clean.jpg?v=1774483184",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 159.27,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cubism-drive-hlw-73044"
+  },
+  {
+    "sku": "tigressa-bargea-wallpaper-xb3-66523",
+    "handle": "tigressa-bargea-wallpaper-xb3-66523",
+    "title": "Tigressa Bargea Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d02c40fdd78a6d797b501e8fe2127d4.jpg?v=1775129140",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Entryway",
+      "Geometric",
+      "Light Tan",
+      "Living Room",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Scandinavian",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Tigressa Bargea Wallcovering",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 37.2,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66523"
+  },
+  {
+    "sku": "floating-fibers-dwx-58187",
+    "handle": "floating-fibers-dwx-58187",
+    "title": "Floating Fibers | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58187-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714143",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Dark Olive Green",
+      "Fiber",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Natural",
+      "Natural Look",
+      "Neutral",
+      "Olive Green",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58187"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar10392xl-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar10392xl-jpg",
+    "title": "Armor XL | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10392xl.jpg?v=1762286370",
+    "tags": [
+      "Architectural",
+      "Armor XL",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10392xl-jpg"
+  },
+  {
+    "sku": "le-madison-durable-walls-xwk-52582",
+    "handle": "le-madison-durable-walls-xwk-52582",
+    "title": "Le Madison Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWK-52582-sample-clean.jpg?v=1774481424",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52582"
+  },
+  {
+    "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48576",
+    "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48576",
+    "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-48576-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735788",
+    "tags": [
+      "20 oz",
+      "41 Inch Width",
+      "41\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Living Room",
+      "Off-White",
+      "Rustic",
+      "Serene",
+      "Stucco",
+      "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-48576"
+  },
+  {
+    "sku": "xanadu-s-retro-geometric-scr-8038",
+    "handle": "xanadu-s-retro-geometric-scr-8038",
+    "title": "Xanadu's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5fdaa9ab89a387240b55ff8487e43cf5.jpg?v=1572309105",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Luxury Screen Printed Wallpapers",
+      "Mid-Century Modern",
+      "Retro",
+      "Screen Print",
+      "Vinyl",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White"
+    ],
+    "max_price": 271.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/xanadu-s-retro-geometric-scr-8038"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st11392m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st11392m-jpg",
+    "title": "ST11392M | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11391.jpg?v=1733872118",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11392m-jpg"
+  },
+  {
+    "sku": "hardee-embossed-contemporary-durable-walls-xwy-53113",
+    "handle": "hardee-embossed-contemporary-durable-walls-xwy-53113",
+    "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53113-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716047",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Medium Grey",
+      "Modern",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53113"
+  },
+  {
+    "sku": "corkytown-real-cork-wallpaper-cork-98611",
+    "handle": "corkytown-real-cork-wallpaper-cork-98611",
+    "title": "Corkytown Real Cork | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/853d84573349105077cf9f51b954d3f4.jpg?v=1775081576",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Brown",
+      "Commercial",
+      "Cork",
+      "Dark Brown",
+      "Industrial",
+      "Living Room",
+      "Natural",
+      "Naturals",
+      "Office",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Restaurant",
+      "Rustic",
+      "Smoke",
+      "Solid/Textural",
+      "Textured",
+      "Wallcovering",
+      "Walnut",
+      "Wuhan Woven Wallcovering"
+    ],
+    "max_price": 29.71,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/corkytown-real-cork-wallpaper-cork-98611"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_poit-5840-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_poit-5840-jpg",
+    "title": "Points - Granite | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/poit-5840.jpg?v=1762303224",
+    "tags": [
+      "15% Wool",
+      "30% Nylon",
+      "55% Polyester",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Granite",
+      "Gray",
+      "Points",
+      "Polyester",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_poit-5840-jpg"
+  },
+  {
+    "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": "dwss-72708",
+    "handle": "dwss-72708",
+    "title": "Rio mustard sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/825-22_image1_7db6a017-d85a-4e1c-81c2-e524904648a0.jpg?v=1646105146",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Gray",
+      "Mustard",
+      "P825-22",
+      "Paper",
+      "Pattern",
+      "Rio",
+      "Rio mustard  sample",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72708"
+  },
+  {
+    "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": "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": "wolfgordonwallcovering_dwwg_dvts-521-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dvts-521-jpg",
+    "title": "Vista - Midnight | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dvts-521.jpg?v=1762293104",
+    "tags": [
+      "100% Mylar",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Digital Curated",
+      "Geometric",
+      "Gray",
+      "Midnight",
+      "Minimalist",
+      "Mylar",
+      "Paper",
+      "Vista",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dvts-521-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ril-6369-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ril-6369-jpg",
+    "title": "Riley - Maple | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6369.jpg?v=1762304494",
+    "tags": [
+      "27% Polyester",
+      "73% Acrylic",
+      "Acrylic",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Maple",
+      "Orange",
+      "Polka Dot",
+      "Riley",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ril-6369-jpg"
+  },
+  {
+    "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": "yoni-orange-dancing-stars-wallpaper-cca-83021",
+    "handle": "yoni-orange-dancing-stars-wallpaper-cca-83021",
+    "title": "Yoni Orange Dancing Stars Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5a90e91b375dfddd624dfb8f655d07ae.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Children",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Geometric",
+      "Green",
+      "Kids",
+      "LA Walls",
+      "Multi",
+      "Orange",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripes",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/yoni-orange-dancing-stars-wallpaper-cca-83021"
+  },
+  {
+    "sku": "monterey-coast-durable-walls-xwp-52641",
+    "handle": "monterey-coast-durable-walls-xwp-52641",
+    "title": "Monterey Coast Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52641-sample-monterey-coast-durable-hollywood-wallcoverings.jpg?v=1775726341",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Champagne",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52641"
+  },
+  {
+    "sku": "dwkk-g003cd824",
+    "handle": "dwkk-g003cd824",
+    "title": "W3932 - 5 Blue | Kravet Design | Ronald Redding Arts & Crafts | Botanical & Floral Damask Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3932_5_de2264ab-55ce-4248-854e-57d8ec3015a7.jpg?v=1753322281",
+    "tags": [
+      "27In",
+      "5",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Art Nouveau",
+      "Arts & Crafts",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "Cornflower Blue",
+      "Damask",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Grandmillennial",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Non Woven - 100%",
+      "Off-white",
+      "Paper",
+      "Print",
+      "Ronald Redding Arts & Crafts",
+      "Serene",
+      "Traditional",
+      "United States",
+      "Victorian",
+      "W3932",
+      "W3932.5.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g003cd824"
+  },
+  {
+    "sku": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+    "handle": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+    "title": "Aubrey Celery Crystal Medallion Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5dca5883a73a0ac7f6c85ac177dca2c.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Medallion",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244"
+  },
+  {
+    "sku": "zebilini-wallpaper-xd6-66708",
+    "handle": "zebilini-wallpaper-xd6-66708",
+    "title": "Zebilini Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5e873b73bde0ae9320aa5064dbc329cb.jpg?v=1775133931",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Geometric",
+      "Gray",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White",
+      "Zebilini Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66708"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mru-3299_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mru-3299_8-jpg",
+    "title": "Marlu - Smoke | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3299_8.jpg?v=1762301730",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Embossed",
+      "Geometric",
+      "Gray",
+      "Marlu",
+      "Silver",
+      "Smoke",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3299_8-jpg"
+  },
+  {
+    "sku": "delilah-champagne-tulip-damask-wallpaper-cca-83242",
+    "handle": "delilah-champagne-tulip-damask-wallpaper-cca-83242",
+    "title": "Delilah Champagne Tulip Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4b804fe18507aae7dad1fad1e16778f3.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Bling",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Glitter",
+      "Gray",
+      "LA Walls",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/delilah-champagne-tulip-damask-wallpaper-cca-83242"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2628",
+    "handle": "pleated-perfect-paradise-ppp-2628",
+    "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2628-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729186",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Khaki",
+      "Light Yellow",
+      "Pleated Perfect Paradise",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2628"
+  },
+  {
+    "sku": "cody-cantina-wallpaper-xb1-66501",
+    "handle": "cody-cantina-wallpaper-xb1-66501",
+    "title": "Cody Cantina Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c261fa42a5fec6eb278b74348dadb357.jpg?v=1775127278",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Cody Cantina Wallcovering",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Light Yellow",
+      "Living Room",
+      "Minimalist",
+      "Off-White",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Spa",
+      "Stripe",
+      "Striped",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 38.61,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66501"
+  },
+  {
+    "sku": "lucy-large-crocodile-croca-93011",
+    "handle": "lucy-large-crocodile-croca-93011",
+    "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93011-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723168",
+    "tags": [
+      "Almond",
+      "Animal Print",
+      "Animal Skin",
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Crocodile",
+      "Embossed",
+      "Embossed Texture",
+      "Faux Leather",
+      "Glamorous",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Lucy Large Crocodile Wallcovering",
+      "Luxe",
+      "Luxurious",
+      "Modern",
+      "Off-white",
+      "Paper Backed Vinyl",
+      "Primary Suite",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 37.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93011"
+  },
+  {
+    "sku": "leia-beach-lace-damask-wallpaper-cca-83250",
+    "handle": "leia-beach-lace-damask-wallpaper-cca-83250",
+    "title": "Leia Beach Lace Damask Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e1d458757a4aa6f069d1ff42ee601474.jpg?v=1572309982",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Lace",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/leia-beach-lace-damask-wallpaper-cca-83250"
+  },
+  {
+    "sku": "dwkk-127686",
+    "handle": "dwkk-127686",
+    "title": "Quartz - 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/W0059_03_CAC_ede702f2-4a3e-464a-8d6d-492be262a393.jpg?v=1726037758",
+    "tags": [
+      "20.875In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Brown",
+      "display_variant",
+      "Granite",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Print",
+      "Quartz",
+      "Solid",
+      "Sophisticated",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "United Kingdom",
+      "Vinyl",
+      "W0059/03.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 169.65,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127686"
+  },
+  {
+    "sku": "mediterranean-texture-red-wallcovering-versace",
+    "handle": "mediterranean-texture-red-wallcovering-versace",
+    "title": "Mediterranean Texture Red Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/53086f4f5bab1216d70527e04b8f1b93.jpg?v=1773706326",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Mediterranean Texture",
+      "Mediterranean Texture Red Wallcovering",
+      "Off-white",
+      "Paste the wall",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mediterranean-texture-red-wallcovering-versace"
+  },
+  {
+    "sku": "hainsville-faux-leather-durable-walls-xwt-53366",
+    "handle": "hainsville-faux-leather-durable-walls-xwt-53366",
+    "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/xwt-53366-sample-hainsville-faux-leather-durable-hollywood-wallcoverings.jpg?v=1775715474",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Faux Leather",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53366"
+  },
+  {
+    "sku": "ncw4394-01",
+    "handle": "ncw4394-01",
+    "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_4497266147379.jpg?v=1775520810",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Leaf",
+      "NCW4394-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Peach",
+      "Stripe",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4394-01"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2874",
+    "handle": "peter-s-plastered-walls-ppw-2874",
+    "title": "Peter's Plastered | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2874-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729061",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2874"
+  },
+  {
+    "sku": "cl_0004wp36408",
+    "handle": "cl_0004wp36408",
+    "title": "Sogi - Oro | Scalamandre",
+    "vendor": "Scalamandre Wallpaper",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CL_0004WP36408_8614a87f-52a0-4f58-9e3b-7230fa7ed384.jpg?v=1745348471",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Gold",
+      "Gray",
+      "Japonisme",
+      "Light Beige",
+      "Luxury",
+      "Paper",
+      "Pattern",
+      "SOGI",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cl_0004wp36408"
+  },
+  {
+    "sku": "dwkk-127700",
+    "handle": "dwkk-127700",
+    "title": "Rafi - Pewter  By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_08_CAC_eb847c15-91bd-4924-a37d-f235db121a2e.jpg?v=1726037792",
+    "tags": [
+      "20.875In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Print",
+      "Rafi",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Tone On Tone",
+      "United Kingdom",
+      "Vinyl",
+      "W0060/08.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127700"
+  },
+  {
+    "sku": "hollywood-tailored-xhw-2010177",
+    "handle": "hollywood-tailored-xhw-2010177",
+    "title": "Hollywood Tailored | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-park_row.jpg?v=1777480970",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Medium Gray",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010177"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+    "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-47331-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704900",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47331"
+  },
+  {
+    "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": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+    "handle": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+    "title": "Castine Blue Tuscan Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/673a2be4549fccc187a7e0b5ae98cf22.jpg?v=1572309973",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Marble",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/castine-blue-tuscan-stripe-wallpaper-cca-83212"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em10271b-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em10271b-jpg",
+    "title": "EM10271B | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_EM10270B.jpg?v=1733873311",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM10271B",
+      "Paper",
+      "Tan",
+      "Textured",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10271b-jpg"
+  },
+  {
+    "sku": "eur-80306-ncw4301-designer-wallcoverings-los-angeles",
+    "handle": "eur-80306-ncw4301-designer-wallcoverings-los-angeles",
+    "title": "Beau Rivage 03 - Gold Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513503039539.jpg?v=1775523275",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beau Rivage",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Green",
+      "Grey",
+      "Hallway",
+      "LES REVES",
+      "Living Room",
+      "Mid-century",
+      "Mid-Century Modern",
+      "NCW4301",
+      "NCW4301-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Olive",
+      "Olive Green",
+      "Pale Grey",
+      "Paper",
+      "Serene",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80306-ncw4301-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+    "handle": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+    "title": "Aubrey Celery Crystal Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14e3c4a4eab87746e3c1429de0b5db3d.jpg?v=1572309983",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Faux",
+      "Gray",
+      "Industrial",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-texture-wallpaper-cca-83279"
+  },
+  {
+    "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": "biscay-bay-medium-wood-grain-wbs-39609",
+    "handle": "biscay-bay-medium-wood-grain-wbs-39609",
+    "title": "Biscay Bay Medium Wood Grain | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39609-sample-biscay-bay-medium-wood-grain-hollywood-wallcoverings.jpg?v=1775705421",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Bricks and Stones",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Faux",
+      "Faux Wood",
+      "Hollywood Wallcoverings",
+      "Light Tan",
+      "Living Room",
+      "Medium Tan",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 54.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/biscay-bay-medium-wood-grain-wbs-39609"
+  },
+  {
+    "sku": "eur-70352-designer-wallcoverings-los-angeles",
+    "handle": "eur-70352-designer-wallcoverings-los-angeles",
+    "title": "Chameleon Glittering holographic diamonds Grey | Osborne & Little Europe",
+    "vendor": "Osborne & Little",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5224_ebff2a7e-02ad-47f3-a898-3b5a978d1169.webp?v=1738614421",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Chameleon Glittering holographic diamonds",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "Geometric",
+      "Glamorous",
+      "Gray",
+      "Grey",
+      "KOMODO",
+      "Lattice",
+      "Light Grey",
+      "Living Room",
+      "Luxe",
+      "Luxury",
+      "Osborne & Little",
+      "Osborne & Little Europe",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "W6305",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-70352-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+    "title": "Kabuto - Steel | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5124.jpg?v=1762298865",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gray",
+      "Industrial",
+      "Kabuto",
+      "Metallic",
+      "Mylar",
+      "Silver",
+      "Steel",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5124-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+    "title": "Armor | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10366.jpg?v=1762285784",
+    "tags": [
+      "Architectural",
+      "Armor",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10366-jpg"
+  },
+  {
+    "sku": "bella-napoli-modern-lattice-mica-prn-62314",
+    "handle": "bella-napoli-modern-lattice-mica-prn-62314",
+    "title": "Bella Napoli Modern Lattice Mica | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/24796c90baef37141ec3b6a73cb696f7.jpg?v=1775113833",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Beige",
+      "Bella Napoli Modern Lattice Mica",
+      "Chevron",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream on Pearl Gold",
+      "Entryway",
+      "Geometric",
+      "Gray",
+      "Industrial",
+      "Light Gray",
+      "Living Room",
+      "Mica",
+      "Modern",
+      "Natural",
+      "Naturals",
+      "Office",
+      "Paper",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Phillipe Romano Vol. 4",
+      "Textural",
+      "Traditional",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 43.7,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bella-napoli-modern-lattice-mica-prn-62314"
+  },
+  {
+    "sku": "ncw4355-01",
+    "handle": "ncw4355-01",
+    "title": "Les Indiennes Arles Gold/Ivory - Gold Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264934963.jpg?v=1775520620",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Gold",
+      "NCW4355-01",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wallcoverings",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4355-01"
+  },
+  {
+    "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": "dwc-1001599",
+    "handle": "dwc-1001599",
+    "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_4693307392051.jpg?v=1775521027",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gray",
+      "Lattice",
+      "NCW4303-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001599"
+  },
+  {
+    "sku": "ncw4353-02",
+    "handle": "ncw4353-02",
+    "title": "Les Indiennes Colbert French Grey - 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_4497264541747.jpg?v=1775520556",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Multi",
+      "NCW4353-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Pink",
+      "Wallcovering",
+      "Wallcoverings",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4353-02"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_act-5074-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_act-5074-jpg",
+    "title": "Acute - Ivory | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5074.jpg?v=1762283467",
+    "tags": [
+      "100% Vinyl",
+      "Acute",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Gray",
+      "Lattice",
+      "Light Gray",
+      "Paper",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5074-jpg"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2619",
+    "handle": "pleated-perfect-paradise-ppp-2619",
+    "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-2619-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729156",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2619"
+  },
+  {
+    "sku": "eur-70393-designer-wallcoverings-los-angeles",
+    "handle": "eur-70393-designer-wallcoverings-los-angeles",
+    "title": "Crocodilo Crocodile | Osborne & Little Europe",
+    "vendor": "Osborne & Little",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5041_e19433e3-481a-4181-97d7-0f5b660df083.webp?v=1738614525",
+    "tags": [
+      "Animal Skin",
+      "Animal/Insects",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Crocodile",
+      "Crocodilo Crocodile",
+      "Embossed",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Luxe",
+      "Luxury",
+      "METROPOLIS VINYLS 2",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Osborne & Little",
+      "Osborne & Little Europe",
+      "Sophisticated",
+      "Texture",
+      "Textured",
+      "Vinyl",
+      "W6337",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-70393-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_isn-8-3432-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_isn-8-3432-jpg",
+    "title": "Islington Station - Horizon | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/isn-8-3432.jpg?v=1762297825",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Chronicle/London Chic",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Horizon",
+      "Islington Station",
+      "Khaki",
+      "Non-woven",
+      "Steelblue",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_isn-8-3432-jpg"
+  },
+  {
+    "sku": "wells-beige-candy-stripe-wallpaper-cca-83227",
+    "handle": "wells-beige-candy-stripe-wallpaper-cca-83227",
+    "title": "Wells Beige Candy Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a5379dcbf4eb02952f4f4f3727cbf558.jpg?v=1572309973",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 49.01,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wells-beige-candy-stripe-wallpaper-cca-83227"
+  },
+  {
+    "sku": "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": "dwwm-14364-william-morris-designer-wallcoverings-los-angeles",
+    "handle": "dwwm-14364-william-morris-designer-wallcoverings-los-angeles",
+    "title": "| William Morris",
+    "vendor": "William Morris",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fruit-morris-and-co--wallpaper-216459-image01_080a1500-5e6b-482d-87a3-77000364c5ff.jpg?v=1741111386",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Edwardian",
+      "English Country",
+      "Hallway",
+      "Light Gray",
+      "Living Room",
+      "Off-white",
+      "Paper",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "William Morris"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwwm-14364-william-morris-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_reh-5517-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_reh-5517-jpg",
+    "title": "Resham - Emerald | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5517.jpg?v=1762304387",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Green",
+      "Dark Teal",
+      "Grasscloth",
+      "RAMPART®",
+      "Resham",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5517-jpg"
+  },
+  {
+    "sku": "eur-80414-ncw4395-designer-wallcoverings-los-angeles",
+    "handle": "eur-80414-ncw4395-designer-wallcoverings-los-angeles",
+    "title": "Kingsley Fans 04 - 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_7513507201075.jpg?v=1775523937",
+    "tags": [
+      "Architectural",
+      "ASHDOWN",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Floral",
+      "Hallway",
+      "Kingsley Fans",
+      "Living Room",
+      "Minimalist",
+      "NCW4395",
+      "NCW4395-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "Pale Grey",
+      "Paper",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80414-ncw4395-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47327",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47327",
+    "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-47327-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704792",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47327"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/39fd3f04e0dbe6087d906940b22b685f_1fa58687-34a3-4501-926e-7eaf115f20cf.jpg?v=1745458349",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Light Green",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Scandinavian",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 12.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-403"
+  },
+  {
+    "sku": "ncw4306-05",
+    "handle": "ncw4306-05",
+    "title": "Nina Campbell Wallcoverings - Indigo 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_4497262870579.jpg?v=1775520380",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Bohemian",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Light Blue",
+      "NCW4306-05",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4306-05"
+  },
+  {
+    "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": "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": "montpelier-wallpaper-xp4-68084",
+    "handle": "montpelier-wallpaper-xp4-68084",
+    "title": "Montpelier | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c5eeb7fb81e50cd38078c098351222fe.jpg?v=1733882438",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Montpelier",
+      "Moody",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Polyester",
+      "Rustic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "wood pulp"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68084"
+  },
+  {
+    "sku": "xanadu-s-retro-geometric-scr-8034",
+    "handle": "xanadu-s-retro-geometric-scr-8034",
+    "title": "Xanadu's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9e1efb5ed3cb7a3fb2c890e9f36998e7.jpg?v=1572309105",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gray",
+      "Luxury Screen Printed Wallpapers",
+      "Mid-Century Modern",
+      "Paper",
+      "Screen Print",
+      "Turquoise",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1"
+    ],
+    "max_price": 271.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/xanadu-s-retro-geometric-scr-8034"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2747",
+    "handle": "faux-leaf-squares-fls-2747",
+    "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2747-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711991",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 31.92,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2747"
+  },
+  {
+    "sku": "mason-beige-stripe-texture-wallpaper-cca-82919",
+    "handle": "mason-beige-stripe-texture-wallpaper-cca-82919",
+    "title": "Mason Beige Stripe Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/924618b95e705180e3cdaf18a1e7530d.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Brown",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mason-beige-stripe-texture-wallpaper-cca-82919"
+  },
+  {
+    "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": "xara-s-retro-geometric-scr-8052",
+    "handle": "xara-s-retro-geometric-scr-8052",
+    "title": "Xara's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6e779ae76cfd17210859bac274ad9cf.jpg?v=1572309105",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cream Black",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Paper",
+      "Screen Print",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "Xara's Retro Geometric"
+    ],
+    "max_price": 146.18,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/xara-s-retro-geometric-scr-8052"
+  },
+  {
+    "sku": "pauline-s-retro-geometric-scr-8004",
+    "handle": "pauline-s-retro-geometric-scr-8004",
+    "title": "Pauline's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3685cf5efddddc0c77b3a7f7a96a7d2d.jpg?v=1572309104",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Ivory",
+      "Mid-Century Modern",
+      "Paper",
+      "Pauline's Retro Geometric",
+      "Screen Print",
+      "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-8004"
+  },
+  {
+    "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52988",
+    "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52988",
+    "title": "Manatee Faux Vertical Stria Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gatehouse-agave_d345af11-669e-47ad-af6d-d575bc730151.jpg?v=1777481509",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Green",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52988"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+    "title": "SP10215 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10214.jpg?v=1733872374",
+    "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_sp10215-jpg"
+  },
+  {
+    "sku": "dwss-72689",
+    "handle": "dwss-72689",
+    "title": "Alva sandstone sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/809-21_image1_38940f62-9de9-45b2-ae36-e61a916d087e.jpg?v=1646105076",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Alva",
+      "Alva sandstone  sample",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "Light Gray",
+      "P809-21",
+      "Paper",
+      "Sandberg",
+      "SANDSTONE",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72689"
+  },
+  {
+    "sku": "dwkk-129164",
+    "handle": "dwkk-129164",
+    "title": "W3759-3 Green | Kravet Design |Geometric Small Scale Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3759_3_9961d455-5347-4ded-81ad-b603784a6aa5.jpg?v=1753291977",
+    "tags": [
+      "20.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Commercial",
+      "display_variant",
+      "Geometric",
+      "Green",
+      "Kravet",
+      "Kravet Design",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Quatrefoil",
+      "Small Scale",
+      "United States",
+      "W3759-3",
+      "W3759.3.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129164"
+  },
+  {
+    "sku": "zebilini-wallpaper-xd6-66715",
+    "handle": "zebilini-wallpaper-xd6-66715",
+    "title": "Zebilini Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/59df5d3afac50c60ff5532f0b50ce328.jpg?v=1775134707",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Circles",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Geometric",
+      "Gold",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-White",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Tan",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White",
+      "Zebilini Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66715"
+  },
+  {
+    "sku": "rustic-glam-vinyl-gpr-76634",
+    "handle": "rustic-glam-vinyl-gpr-76634",
+    "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76634-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731839",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "USFCID#vp885--089",
+      "Very Good Stain Abrasion Resistance - Washable",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 41.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76634"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72412",
+    "handle": "rivo-dulce-durable-vinyl-dur-72412",
+    "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-72412-sample-clean.jpg?v=1774485435",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-white",
+      "Rivo Dulce Durable Vinyl",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72412"
+  },
+  {
+    "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": "dwss-72614",
+    "handle": "dwss-72614",
+    "title": "Sofia Wood skye sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/656-47_image1_5fa69842-de42-4c7d-b6d5-17939b7bd7cd.jpg?v=1646104835",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Nouveau",
+      "Arts & Crafts",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Dining Room",
+      "Gray",
+      "Light Blue",
+      "Light Grey",
+      "Non-Woven",
+      "Paper",
+      "Sandberg",
+      "Sandberg Botanical",
+      "Scandinavian",
+      "Skye",
+      "Sofia Wood",
+      "Sofia Wood skye sample",
+      "Swedish Design",
+      "Timeless",
+      "Wallcovering",
+      "Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72614"
+  },
+  {
+    "sku": "noah-s-sky-clouds-wallpaper-cca-82983",
+    "handle": "noah-s-sky-clouds-wallpaper-cca-82983",
+    "title": "Noah'S Sky Clouds Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b7a37df7221d0525918eab694fd0279b.jpg?v=1572309964",
+    "tags": [
+      "ANIMAL/INSECTS",
+      "Animals",
+      "Architectural",
+      "bird",
+      "Birds",
+      "Clouds",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "Fauna",
+      "Kids",
+      "LA Walls",
+      "Light Blue",
+      "Orange",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/noah-s-sky-clouds-wallpaper-cca-82983"
+  },
+  {
+    "sku": "dwkk-127830",
+    "handle": "dwkk-127830",
+    "title": "Wonderlust Wp - Citron 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/W0136_01_CAC_90579a38-7815-47e4-9e9c-7dc6ffdff0a6.jpg?v=1753321569",
+    "tags": [
+      "20.5In",
+      "Animal Print",
+      "Animal Skin",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Butterfly",
+      "Citron",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Eclectic",
+      "Fauna",
+      "Flowers",
+      "Green",
+      "Leaves",
+      "Leopard",
+      "Living Room",
+      "Maximalist",
+      "Navy Blue",
+      "Non Woven - 100%",
+      "Novelty",
+      "Olive Green",
+      "Pale Yellow",
+      "Paper",
+      "Pink",
+      "Playful",
+      "Print",
+      "Snake",
+      "Tan",
+      "Tropical",
+      "United Kingdom",
+      "W0136/01.Cac.0",
+      "Wallcovering",
+      "Whimsical",
+      "White",
+      "Wonderlust Wp"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127830"
+  },
+  {
+    "sku": "castine-fog-tuscan-stripe-wallpaper-cca-83210",
+    "handle": "castine-fog-tuscan-stripe-wallpaper-cca-83210",
+    "title": "Castine Fog Tuscan Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/810fe04e97a560c561196ba76f2f993f_dd3e6a8c-bc42-4f11-843d-94586a7445d5.jpg?v=1572309972",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Marble",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/castine-fog-tuscan-stripe-wallpaper-cca-83210"
+  },
+  {
+    "sku": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+    "handle": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+    "title": "Ellsworth Denim Sunny Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/851ee956abdc1c04e60d8a7222c57316.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Linen",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ellsworth-denim-sunny-stripe-wallpaper-cca-83145"
+  },
+  {
+    "sku": "dwc-1001587",
+    "handle": "dwc-1001587",
+    "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_4693306671155.jpg?v=1775520962",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "NCW4301-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Peach",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001587"
+  },
+  {
+    "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": "presque-isle-sage-regal-stripe-wallpaper-cca-83119",
+    "handle": "presque-isle-sage-regal-stripe-wallpaper-cca-83119",
+    "title": "Presque Isle Sage Regal Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/79735e744099e3307a37866881ddc8c7.jpg?v=1572309969",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "LA Walls",
+      "Prepasted",
+      "Sage",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/presque-isle-sage-regal-stripe-wallpaper-cca-83119"
+  },
+  {
+    "sku": "artisma-croco-vinyl-dwx-58146",
+    "handle": "artisma-croco-vinyl-dwx-58146",
+    "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-58146-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699085",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Animal Print",
+      "Animal Skin",
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Cream",
+      "Crocodile",
+      "Durable",
+      "Easy To Clean",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Vinyl",
+      "Faux Leather",
+      "Glamorous",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Minimalist",
+      "Modern",
+      "Neutral",
+      "Red",
+      "Regencycore",
+      "Scratch Resistant",
+      "Tan",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "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/artisma-croco-vinyl-dwx-58146"
+  },
+  {
+    "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": "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": "gundelson-gunny-sack-vinyl-dwx-58105",
+    "handle": "gundelson-gunny-sack-vinyl-dwx-58105",
+    "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-58105-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715309",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Burlap",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Durable",
+      "Gunny Sack",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "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-58105"
+  },
+  {
+    "sku": "paul-s-retro-geometric-scr-8009",
+    "handle": "paul-s-retro-geometric-scr-8009",
+    "title": "Paul's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/672769191e8470f0da5de8dcaf065fac.jpg?v=1572309104",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Mid-Century Modern",
+      "Off-white",
+      "Paper",
+      "Paul's Retro Geometric",
+      "Screen Print",
+      "vinyl",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White"
+    ],
+    "max_price": 146.18,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paul-s-retro-geometric-scr-8009"
+  },
+  {
+    "sku": "asha-sand-lotus-damask-wallpaper-cca-83231",
+    "handle": "asha-sand-lotus-damask-wallpaper-cca-83231",
+    "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/1fb5ebf4bec272e516bc741e4480d25b.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Prepasted",
+      "Purple",
+      "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-sand-lotus-damask-wallpaper-cca-83231"
+  },
+  {
+    "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": "biscay-bay-rustic-wood-grain-wbs-39617",
+    "handle": "biscay-bay-rustic-wood-grain-wbs-39617",
+    "title": "Biscay Bay Rustic Wood Grain | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39617-sample-biscay-bay-rustic-wood-grain-hollywood-wallcoverings.jpg?v=1775705498",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Bricks and Stones",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Cream",
+      "Dark Brown",
+      "Embossed Texture",
+      "Farmhouse",
+      "Faux",
+      "Faux Wood",
+      "Glamorous",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Navy Blue",
+      "Olive Green",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Rustic",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "White",
+      "Wood",
+      "Wood Brown",
+      "Wood Grain"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/biscay-bay-rustic-wood-grain-wbs-39617"
+  },
+  {
+    "sku": "nice-reima-wallpaper-xq8-68167",
+    "handle": "nice-reima-wallpaper-xq8-68167",
+    "title": "Nice Reima | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11c7374734f84483aa9533b0cf11e5aa.jpg?v=1733882553",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dot",
+      "Geometric",
+      "Gray",
+      "Green",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Nice Reima",
+      "Office",
+      "Pale Grey",
+      "Phillip Romano Commercial",
+      "Serene",
+      "Silver",
+      "Silver Sage",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68167"
+  },
+  {
+    "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53532",
+    "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53532",
+    "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-cherry.jpg?v=1777480857",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Burlywood",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Wood Grain",
+      "Farmhouse",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Organic Modern",
+      "Russet",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53532"
+  },
+  {
+    "sku": "coldwater-hills-panels-hlw-73056",
+    "handle": "coldwater-hills-panels-hlw-73056",
+    "title": "Coldwater Hills - Panels | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73056-sample-clean.jpg?v=1774483248",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Coldwater Hills",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lavender",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Purple",
+      "Rustic",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 139.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73056"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st11391-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st11391-jpg",
+    "title": "ST11391 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11387.jpg?v=1733872120",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11391-jpg"
+  },
+  {
+    "sku": "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_st9410-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st9410-jpg",
+    "title": "ST9410 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9409.jpg?v=1733872269",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Lemon",
+      "Single Dominant Background Color Word",
+      "Solid",
+      "Teal",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9410-jpg"
+  },
+  {
+    "sku": "dwc-1001642",
+    "handle": "dwc-1001642",
+    "title": "Nina Campbell Wallcovering",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310111795.jpg?v=1775521311",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Ashen",
+      "Black",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Commercial",
+      "Geometric",
+      "Gold",
+      "Mushroom",
+      "NCW4352-06",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Silver",
+      "Wallcovering",
+      "Walnut",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001642"
+  },
+  {
+    "sku": "tahlia-aqua-stucco-texture-wallpaper-cca-83028",
+    "handle": "tahlia-aqua-stucco-texture-wallpaper-cca-83028",
+    "title": "Tahlia Aqua Stucco Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b2ed46543c92acf18ef4ef78f74ebee.jpg?v=1572309966",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Children",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Kids",
+      "LA Walls",
+      "Lightblue",
+      "Lightgreen",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tahlia-aqua-stucco-texture-wallpaper-cca-83028"
+  },
+  {
+    "sku": "ncw4350-04",
+    "handle": "ncw4350-04",
+    "title": "Les Indiennes Les Indiennes Black/Green - 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_4497263624243.jpg?v=1775520458",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Green",
+      "Multi",
+      "NCW4350-04",
+      "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-04"
+  },
+  {
+    "sku": "cumberland-natural-wood-texture-wallpaper-cca-82906",
+    "handle": "cumberland-natural-wood-texture-wallpaper-cca-82906",
+    "title": "Cumberland Natural Wood Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ac6f395c88361509340e1eb314ecf5ca.jpg?v=1572309961",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Farmhouse",
+      "Faux",
+      "Faux Effects",
+      "LA Walls",
+      "Light Brown",
+      "Masculine",
+      "Natural",
+      "Prepasted",
+      "Scandinavian",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "Wood",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cumberland-natural-wood-texture-wallpaper-cca-82906"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10255-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10255-jpg",
+    "title": "SM10255 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10254.jpg?v=1733872454",
+    "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_sm10255-jpg"
+  },
+  {
+    "sku": "lucerne-classic-wallpaper-ere-44638",
+    "handle": "lucerne-classic-wallpaper-ere-44638",
+    "title": "Lucerne Classic Wallcovering",
+    "vendor": "British Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cda75b3baa395b9e3b186315ee8458ff.jpg?v=1572309762",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "British Walls",
+      "Class A Fire Rated",
+      "Classic Whimsical European Walls",
+      "Commercial",
+      "European",
+      "European Import",
+      "Green",
+      "Lime",
+      "Magenta",
+      "Trellis",
+      "Tropical",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 124.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lucerne-classic-wallpaper-ere-44638"
+  },
+  {
+    "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47895",
+    "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47895",
+    "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-47895-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722494",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Loftus Type 2 Vinyl  Wallcovering",
+      "Minimalist",
+      "Off-white",
+      "Pale Beige",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47895"
+  },
+  {
+    "sku": "versace-plain-embossed-white-wallcovering-versace",
+    "handle": "versace-plain-embossed-white-wallcovering-versace",
+    "title": "Versace Plain Embossed White Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1c15af40cd4ffcc5e4583024df02f57c.jpg?v=1773706475",
+    "tags": [
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Embossed",
+      "Glamorous",
+      "Gold",
+      "Haute Couture",
+      "Hotel Lobby",
+      "Italian",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Off-white",
+      "Paper",
+      "Paste the wall",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain Embossed",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-embossed-white-wallcovering-versace"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10202-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10202-jpg",
+    "title": "Smooth Pearl | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sp10202.jpg?v=1762307848",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Scuffmaster",
+      "Smooth Pearl",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10202-jpg"
+  },
+  {
+    "sku": "cubism-drive-hlw-73048",
+    "handle": "cubism-drive-hlw-73048",
+    "title": "Cubism Drive | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73048-sample-clean.jpg?v=1774483207",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Copper",
+      "Estimated Type: Non-woven",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Navy",
+      "Sophisticated",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 159.27,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cubism-drive-hlw-73048"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+    "title": "Kami - Iron | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5107.jpg?v=1762298572",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Gray",
+      "Iron",
+      "Kami",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5107-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10261-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10261-jpg",
+    "title": "SM10261 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10260.jpg?v=1733872442",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Solid",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10261-jpg"
+  },
+  {
+    "sku": "kia-island-palm-shadow-wallpaper-trf-56858",
+    "handle": "kia-island-palm-shadow-wallpaper-trf-56858",
+    "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/9d29dc5f11982d34892d18f757d270b6.jpg?v=1750789732",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream",
+      "Discontinued",
+      "floral",
+      "flowers",
+      "Gold",
+      "grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Jeffrey Stevens",
+      "jungle",
+      "large scale",
+      "leaf",
+      "medium brown",
+      "Modern",
+      "Modern Tropics",
+      "Natural",
+      "Non-Woven",
+      "palm",
+      "Paper",
+      "Prepasted - Washable - Strippable",
+      "rain forest",
+      "Scenic",
+      "Series: York",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "trees",
+      "tropical",
+      "USA",
+      "Wallcovering",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 60.53,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56858"
+  },
+  {
+    "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xwq-52903",
+    "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xwq-52903",
+    "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/xwq-52903-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734611",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dusty Lavender",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Orange",
+      "Purple",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xwq-52903"
+  },
+  {
+    "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": "dwkk-130027",
+    "handle": "dwkk-130027",
+    "title": "Kravet Design - Beige Wallcovering | Kravet",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4013_86_1e712722-15d2-440b-9f64-84411f60fa51.jpg?v=1753321469",
+    "tags": [
+      "36In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Basketweave",
+      "Beige",
+      "Brown",
+      "Charcoal",
+      "China",
+      "Coastal",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Elements Ii Naturals",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Lattice",
+      "Living Room",
+      "Organic",
+      "Paper - 100%",
+      "Pattern",
+      "Rustic",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "W4013-86",
+      "W4013.86.0",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-130027"
+  },
+  {
+    "sku": "casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111",
+    "handle": "casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111",
+    "title": "Casco Bay Burgundy Ombre Pinstripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e615819e87e505c1ef194dab950200e6.jpg?v=1572309969",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Masculine",
+      "Prepasted",
+      "Red",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111"
+  },
+  {
+    "sku": "whittier-way-twisted-paper-weave-hlw-73170",
+    "handle": "whittier-way-twisted-paper-weave-hlw-73170",
+    "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73170-sample-clean.jpg?v=1774483865",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Brown",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Sage Green",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 43.22,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73170"
+  },
+  {
+    "sku": "jolie-madam-wallpaper-xa1-66409",
+    "handle": "jolie-madam-wallpaper-xa1-66409",
+    "title": "Jolie Madam Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/28e7b6a41bb2b8a87889c20b9c577ca0.jpg?v=1775120634",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Entryway",
+      "Gold",
+      "Grasscloth",
+      "Jolie Madam Wallcovering",
+      "Living Room",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Stripe",
+      "Striped",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66409"
+  },
+  {
+    "sku": "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": "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": "ventnor-vinyl-wallcovering-xqq-48563",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48563",
+    "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-48563-sample-clean.jpg?v=1774480602",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Moody",
+      "Solid",
+      "Textured",
+      "Ventnor  Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48563"
+  },
+  {
+    "sku": "seres-plaster-romo",
+    "handle": "seres-plaster-romo",
+    "title": "Seres Plaster | Romo",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-02-seres-wallcovering-plaster_01.jpg?v=1776485686",
+    "tags": [
+      "Architectural",
+      "Background Color beige",
+      "beige",
+      "Commercial",
+      "Conference Room",
+      "Embossed Wallcovering",
+      "Grasscloth",
+      "Ivory",
+      "Kabu Wallcoverings",
+      "light beige",
+      "Lobby",
+      "Office",
+      "Romo",
+      "Scandinavian",
+      "Seres",
+      "Small",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "W969/02",
+      "Wallcovering",
+      "Warm Taupe"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seres-plaster-romo"
+  },
+  {
+    "sku": "pauline-s-retro-geometric-scr-7999",
+    "handle": "pauline-s-retro-geometric-scr-7999",
+    "title": "Pauline's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/237a61624cc54d4ac5a63893eb284def.jpg?v=1572309104",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Designer Wallcoverings",
+      "Floral",
+      "Geometric",
+      "Light Green",
+      "Mid-Century Modern",
+      "Paper",
+      "Pauline's Retro Geometric",
+      "Screen Print",
+      "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-7999"
+  },
+  {
+    "sku": "seine-marne-durable-vinyl-dur-72126",
+    "handle": "seine-marne-durable-vinyl-dur-72126",
+    "title": "Raked Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72126-sample-clean.jpg?v=1774484486",
+    "tags": [
+      "Antique Gold",
+      "Architectural",
+      "Basketweave",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Beige",
+      "Dining Room",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Gold",
+      "Golden Brown",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "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/seine-marne-durable-vinyl-dur-72126"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10235-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10235-jpg",
+    "title": "SM10235 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10234.jpg?v=1733872490",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10235-jpg"
+  },
+  {
+    "sku": "dwss-72628",
+    "handle": "dwss-72628",
+    "title": "Kristina white Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/700-01_image1_749be621-1ad5-43fa-a8d6-67fdb7c0985b.jpg?v=1646104878",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Kristina",
+      "Kristina white  Sample",
+      "Non-Woven",
+      "Off-White",
+      "P700-01",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72628"
+  },
+  {
+    "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-409",
+    "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-409",
+    "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f4f84be58dc46b61384a5065ac13eb4f_9434015e-850c-449c-8df4-15c3479d9d42.jpg?v=1745458334",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 21.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-409"
+  },
+  {
+    "sku": "saint-brittany-durable-vinyl-dur-72244",
+    "handle": "saint-brittany-durable-vinyl-dur-72244",
+    "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72244-sample-clean.jpg?v=1774484890",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72244"
+  },
+  {
+    "sku": "vomera-greystone-faux-tile-wbs-39644",
+    "handle": "vomera-greystone-faux-tile-wbs-39644",
+    "title": "Vomera Greystone Faux Tile | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39644-sample-vomera-greystone-faux-tile-hollywood-wallcoverings.jpg?v=1775736015",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Brick",
+      "Bricks and Stones",
+      "Brown",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Stone",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Office",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Rustic",
+      "Slate Gray",
+      "Taupe",
+      "Textured",
+      "Tile",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Wood"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vomera-greystone-faux-tile-wbs-39644"
+  },
+  {
+    "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": "norman-cream-medallion-wallpaper-cca-82953",
+    "handle": "norman-cream-medallion-wallpaper-cca-82953",
+    "title": "Norman Cream Medallion Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/42875a78b84399ba22c97b09537d6421.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Geometric",
+      "LA Walls",
+      "Masculine",
+      "Medallion",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Takumi",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/norman-cream-medallion-wallpaper-cca-82953"
+  },
+  {
+    "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52156",
+    "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52156",
+    "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/xwd-52156-sample-forsyth-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775714195",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Pink",
+      "Living Room",
+      "Minimalist",
+      "Mosaic",
+      "Pale Pink",
+      "Pink",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52156"
+  },
+  {
+    "sku": "anahi-light-blue-forest-fauna-wallpaper-cca-82987",
+    "handle": "anahi-light-blue-forest-fauna-wallpaper-cca-82987",
+    "title": "Anahi Light Blue Forest Fauna Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c8a7eb92caa753b39f0763ca17f547b.jpg?v=1572309964",
+    "tags": [
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Commercial",
+      "Deer",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Flowers",
+      "LA Walls",
+      "Light Blue",
+      "Paper",
+      "Prepasted",
+      "Rabbit",
+      "Series: Brewster",
+      "Squirrel",
+      "Strippable",
+      "Trees",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/anahi-light-blue-forest-fauna-wallpaper-cca-82987"
+  },
+  {
+    "sku": "spencer-paintable-supaglypta-wallpaper-gga-82652",
+    "handle": "spencer-paintable-supaglypta-wallpaper-gga-82652",
+    "title": "Spencer Paintable Supaglypta | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7f5da467c7415dd1cf9614c61e0de49b.jpg?v=1750790456",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Discontinued",
+      "Embossed",
+      "Floral",
+      "Flowers",
+      "Geometric",
+      "Jeffrey Stevens",
+      "Light Gray",
+      "Neutral",
+      "Off-white",
+      "Paintable",
+      "Paper",
+      "Phasing-2026-04",
+      "Renovation",
+      "Residential",
+      "Series: Brewster",
+      "Spencer Paintable Supaglypta",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Unpasted",
+      "Victorian",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White"
+    ],
+    "max_price": 49.02,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/spencer-paintable-supaglypta-wallpaper-gga-82652"
+  },
+  {
+    "sku": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+    "handle": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+    "title": "Capri Lavender Floral Scroll Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/248109dec3381ef4a1b6ec2ac77eb2fa.jpg?v=1572309967",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Flowers",
+      "Green",
+      "LA Walls",
+      "Lavender",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Strippable",
+      "Traditional",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/capri-lavender-floral-scroll-wallpaper-cca-83048"
+  },
+  {
+    "sku": "khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828",
+    "handle": "khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828",
+    "title": "Khloe Green Girly Floral Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0e6ba2307015bd7ed57b7b5897010701.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Flowers",
+      "LA Walls",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48114",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48114",
+    "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-48114-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727705",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Olney Type 2 Vinyl",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48114"
+  },
+  {
+    "sku": "locatoca-durable-vinyl-dur-72452",
+    "handle": "locatoca-durable-vinyl-dur-72452",
+    "title": "Locatoca Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72452-sample-clean.jpg?v=1774485635",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/locatoca-durable-vinyl-dur-72452"
+  },
+  {
+    "sku": "dwss-72670",
+    "handle": "dwss-72670",
+    "title": "Bianca indigo blue sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/802-56_image1_7cf612f5-33f4-49c7-8561-2bc2968b9dbb.jpg?v=1646105017",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Bianca",
+      "Bianca indigo blue  sample",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "INDIGO BLUE",
+      "P802-56",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Scandinavian",
+      "Steelblue",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72670"
+  },
+  {
+    "sku": "hardee-embossed-contemporary-durable-walls-xwy-53116",
+    "handle": "hardee-embossed-contemporary-durable-walls-xwy-53116",
+    "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53116-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716065",
+    "tags": [
+      "Abstract",
+      "Aqua",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Teal",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53116"
+  },
+  {
+    "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52784",
+    "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52784",
+    "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-52784-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734819",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52784"
+  },
+  {
+    "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47950",
+    "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47950",
+    "title": "Maidstone - Sage 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-topaz_tan.jpg?v=1777480148",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Faux Finish",
+      "Faux Stone",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Maidstone Type 2 Vinyl  Wallcovering",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Off-White",
+      "Office",
+      "Sophisticated",
+      "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-47950"
+  },
+  {
+    "sku": "eur-80367-ncw4353-designer-wallcoverings-los-angeles",
+    "handle": "eur-80367-ncw4353-designer-wallcoverings-los-angeles",
+    "title": "Colbert 03 - Off-White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505562675.jpg?v=1775523639",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Colbert",
+      "Commercial",
+      "Dark Brown",
+      "Gold",
+      "Hallway",
+      "Leaf",
+      "LES INDIENNES",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Multi",
+      "NCW4353",
+      "NCW4353-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Taupe",
+      "Teal",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80367-ncw4353-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mya-9447-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mya-9447-jpg",
+    "title": "Maya - Cerulean | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9447.jpg?v=1762302403",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Maya",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9447-jpg"
+  },
+  {
+    "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47723",
+    "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47723",
+    "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-47723-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716113",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Light Brown",
+      "Living Room",
+      "Moss",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47723"
+  },
+  {
+    "sku": "la-logia-durable-vinyl-dur-72367",
+    "handle": "la-logia-durable-vinyl-dur-72367",
+    "title": "La Logia Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72367-sample-clean.jpg?v=1774485243",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brick",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Lodge",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-logia-durable-vinyl-dur-72367"
+  },
+  {
+    "sku": "dwkk-128231",
+    "handle": "dwkk-128231",
+    "title": "W3369-5 Dark Blue | Kravet Design | Candice Olson Collection | Botanical & Floral Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3369_5_ec31b537-3eb2-4e48-8fbf-7a91cafaaf06.jpg?v=1753292801",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Brown",
+      "Candice Olson Collection",
+      "Commercial",
+      "Contemporary",
+      "Dark Blue",
+      "display_variant",
+      "Floral",
+      "Gray",
+      "Hallway",
+      "Ivory",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Non-woven",
+      "Organic Modern",
+      "Paper",
+      "Paper - 100%",
+      "Print",
+      "Serene",
+      "Steel Blue",
+      "Taupe",
+      "United States",
+      "W3369-5",
+      "W3369.5.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128231"
+  },
+  {
+    "sku": "dwc-1001601",
+    "handle": "dwc-1001601",
+    "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_4693307555891.jpg?v=1775521039",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "Green",
+      "NCW4304-01",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001601"
+  },
+  {
+    "sku": "gironde-durable-vinyl-dur-72117",
+    "handle": "gironde-durable-vinyl-dur-72117",
+    "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-72117-sample-clean.jpg?v=1774484456",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brick",
+      "Brown",
+      "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",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72117"
+  },
+  {
+    "sku": "dwkk-129156",
+    "handle": "dwkk-129156",
+    "title": "W3754-5 Blue | Kravet Design | Ronald Redding | Botanical & Floral Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3754_5_8797cec9-ff0c-4e16-852f-62e85aca9232.jpg?v=1753291984",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Chinoiserie",
+      "Commercial",
+      "display_variant",
+      "Japonisme",
+      "Kravet",
+      "Kravet Design",
+      "Light Blue",
+      "Non Woven - 100%",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Ronald Redding",
+      "Scenic",
+      "United States",
+      "W3754-5",
+      "W3754.5.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129156"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2891",
+    "handle": "peter-s-plastered-walls-ppw-2891",
+    "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-2891-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729117",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "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-2891"
+  },
+  {
+    "sku": "eur-80239-ncw4205-designer-wallcoverings-los-angeles",
+    "handle": "eur-80239-ncw4205-designer-wallcoverings-los-angeles",
+    "title": "Barbary Toile 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_7513500713011.jpg?v=1775522911",
+    "tags": [
+      "Animal",
+      "Animal/Insects",
+      "Architectural",
+      "Barbary Toile",
+      "Bedroom",
+      "Botanical",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "FONTIBRE",
+      "Lavender",
+      "Light Gray",
+      "Living Room",
+      "Monkey",
+      "NCW4205",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Off White",
+      "Palm",
+      "Palm Trees",
+      "Paper",
+      "Playful",
+      "Purple",
+      "Toile",
+      "Tropical",
+      "Wallcovering",
+      "Whimsical"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80239-ncw4205-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "saint-lore-durable-vinyl-dur-72225",
+    "handle": "saint-lore-durable-vinyl-dur-72225",
+    "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-72225-sample-clean.jpg?v=1774484809",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Teal",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Slate Gray",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72225"
+  },
+  {
+    "sku": "horse-shoe-contemporary-bay-durable-walls-xje-53722",
+    "handle": "horse-shoe-contemporary-bay-durable-walls-xje-53722",
+    "title": "Horse Shoe Contemporary Bay Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53722-sample-horse-shoe-contemporary-bay-durable-hollywood-wallcoverings.jpg?v=1775719216",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Pale Blue",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Year of the Horse"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/horse-shoe-contemporary-bay-durable-walls-xje-53722"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kam-5099-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kam-5099-jpg",
+    "title": "Kami - Sepia | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5099.jpg?v=1762298281",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Embossed",
+      "Geometric",
+      "Kami",
+      "Sepia",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5099-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gai-5105-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gai-5105-jpg",
+    "title": "Grain - Maple | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5105.jpg?v=1762295700",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Grain",
+      "Light Brown",
+      "Maple",
+      "RAMPART®",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5105-jpg"
+  },
+  {
+    "sku": "gia-pink-soft-stripe-wallpaper-cca-83053",
+    "handle": "gia-pink-soft-stripe-wallpaper-cca-83053",
+    "title": "Gia Pink Soft Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d91ed72a508acb1706f1191c45e50aa.jpg?v=1572309967",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gia-pink-soft-stripe-wallpaper-cca-83053"
+  },
+  {
+    "sku": "eur-80209-ncw4186-designer-wallcoverings-los-angeles",
+    "handle": "eur-80209-ncw4186-designer-wallcoverings-los-angeles",
+    "title": "Khitan 06 | Nina Campbell Europe",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499959347.jpg?v=1775522768",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "CATHAY",
+      "Champagne",
+      "Color: Gold",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Dining Room",
+      "Gold",
+      "Grandmillennial",
+      "Khitan",
+      "Light Blue",
+      "Living Room",
+      "Luxe",
+      "NCW4186",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paisley",
+      "Pale Blue",
+      "Paper",
+      "Regencycore",
+      "Sophisticated",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80209-ncw4186-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "panino-s-patina-squares-pps-44469",
+    "handle": "panino-s-patina-squares-pps-44469",
+    "title": "Panino's Patina Squares | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pps-44469-sample-panino-s-patina-squares-hollywood-wallcoverings.jpg?v=1775728854",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Panino's Patina Squares",
+      "Paper",
+      "Pink",
+      "Rose Quartz",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 39.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/panino-s-patina-squares-pps-44469"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47097",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47097",
+    "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-47097-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699592",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47097"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-ivory_tower.jpg?v=1777480700",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Grey",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829"
+  },
+  {
+    "sku": "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": "dwkk-137721",
+    "handle": "dwkk-137721",
+    "title": "California - Teal/Ochre Teal By G P & J Baker | Signature |Botanical & Floral  Wallcovering Print",
+    "vendor": "GP & J Baker",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45080_4_6f2ae566-6fd3-4a43-9d20-4917571f4458.jpg?v=1753303594",
+    "tags": [
+      "26.989In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Botanical & Floral",
+      "Brown",
+      "Burnt Orange",
+      "Bw45080.4.0",
+      "California",
+      "Champagne",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Eclectic",
+      "Floral",
+      "G P & J Baker",
+      "GP & J Baker",
+      "Grandmillennial",
+      "Green",
+      "Living Room",
+      "Multi",
+      "Mustard Yellow",
+      "Navy",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Ochre",
+      "Orange",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Sage",
+      "Signature",
+      "Taupe",
+      "Teal",
+      "Teal/Ochre",
+      "Traditional",
+      "United Kingdom",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-137721"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gsg9-5396-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gsg9-5396-jpg",
+    "title": "Glasgow - Umber | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5396.jpg?v=1762297064",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Glasgow",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5396-jpg"
+  },
+  {
+    "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+    "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+    "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48206-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729926",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Brown",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Luxe",
+      "Luxurious",
+      "Ramsey Type 2 Vinyl  Wallcovering",
+      "Regencycore",
+      "Solid",
+      "Stripe",
+      "Teal",
+      "Textured",
+      "Traditional",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48206"
+  },
+  {
+    "sku": "vandal-by-innovations-usa-dwc-vandal-5",
+    "handle": "vandal-by-innovations-usa-dwc-vandal-5",
+    "title": "Vandal | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Vandal-5.jpg?v=1736199023",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Blue",
+      "Bohemian",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Geometric",
+      "Gray",
+      "Innovations USA",
+      "Light Gray",
+      "Maximalist",
+      "Orange",
+      "Paper",
+      "Vandal",
+      "Vandal-5",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vandal-by-innovations-usa-dwc-vandal-5"
+  },
+  {
+    "sku": "dwkk-129225",
+    "handle": "dwkk-129225",
+    "title": "W3781-8 Black | Kravet Design | Tropical Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3781_8_5b00cf05-6974-4e8c-a088-d2772076723b.jpg?v=1753291932",
+    "tags": [
+      "20.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Black",
+      "Botanical",
+      "Commercial",
+      "display_variant",
+      "Gray",
+      "Green",
+      "Ivy",
+      "Kravet",
+      "Kravet Design",
+      "Leaf",
+      "Moss",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Thyme",
+      "Tropical",
+      "United States",
+      "W3781-8",
+      "W3781.8.0",
+      "Wallcovering",
+      "Willow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129225"
+  },
+  {
+    "sku": "vernon-durable-walls-xwp-52684",
+    "handle": "vernon-durable-walls-xwp-52684",
+    "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-52684-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735749",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Beige",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52684"
+  },
+  {
+    "sku": "capri-light-pink-floral-scroll-wallpaper-cca-83050",
+    "handle": "capri-light-pink-floral-scroll-wallpaper-cca-83050",
+    "title": "Capri Light Pink Floral Scroll Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cf5ffdcfacb4e46fef880076786e8379.jpg?v=1572309967",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Flowers",
+      "Gray",
+      "LA Walls",
+      "Light Pink",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/capri-light-pink-floral-scroll-wallpaper-cca-83050"
+  },
+  {
+    "sku": "reeds-drive-wild-grass-sample-pack-hlw-73146",
+    "handle": "reeds-drive-wild-grass-sample-pack-hlw-73146",
+    "title": "Reeds Drive - Wild Grass Sample Pack | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73146-sample-clean.jpg?v=1774483724",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Brown",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Color: Multi",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Living Room",
+      "Maroon",
+      "Multi",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Red",
+      "Reeds Drive",
+      "Sage Green",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-sample-pack-hlw-73146"
+  },
+  {
+    "sku": "croydon-type-ii-vinyl-wallcovering-xkm-47476",
+    "handle": "croydon-type-ii-vinyl-wallcovering-xkm-47476",
+    "title": "Croydon Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkm-47476-sample-croydon-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775709458",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Croydon Type 2 Vinyl  Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Oatmeal",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/croydon-type-ii-vinyl-wallcovering-xkm-47476"
+  },
+  {
+    "sku": "dwdg-986161",
+    "handle": "dwdg-986161",
+    "title": "Assam Blossom Platinum | Designers Guild",
+    "vendor": "Designers Guild",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/139148.jpg?v=1747248420",
+    "tags": [
+      "70 Cm",
+      "Architectural",
+      "Art Production",
+      "Assam Blossom",
+      "Blossoms",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Custom",
+      "Customize",
+      "Designer'S Guild Wallcovering",
+      "Designers Guild",
+      "European",
+      "Floral",
+      "Foliage",
+      "Gray",
+      "Green",
+      "Luxury",
+      "Matching Set",
+      "Mural",
+      "Non-Woven",
+      "Non-Woven Wallcovering",
+      "Set Decorator",
+      "Set Design",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwdg-986161"
+  },
+  {
+    "sku": "indian-shores-faux-effect-durable-walls-xwo-53646",
+    "handle": "indian-shores-faux-effect-durable-walls-xwo-53646",
+    "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-53646-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719553",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53646"
+  },
+  {
+    "sku": "chesterfield-acoustical-wallcovering-xjz-47393",
+    "handle": "chesterfield-acoustical-wallcovering-xjz-47393",
+    "title": "Chesterfield  Acoustical Wallcovering",
+    "vendor": "Hollywood Acoustical",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4ad3c631052db4539140ded87b5f4aa6.jpg?v=1572310051",
+    "tags": [
+      "100% recycled polyester",
+      "Architectural",
+      "Black",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Fabric",
+      "Gray",
+      "Hallway",
+      "Hollywood Acoustical",
+      "Industrial",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Polyester",
+      "Slate Grey",
+      "Sophisticated",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47393"
+  },
+  {
+    "sku": "essone-durable-vinyl-dur-72264",
+    "handle": "essone-durable-vinyl-dur-72264",
+    "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72264-sample-clean.jpg?v=1774484926",
+    "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 Blue Grey",
+      "Living Room",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "stripe",
+      "textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72264"
+  },
+  {
+    "sku": "kylie-denim-cabin-stripe-wallpaper-cca-83042",
+    "handle": "kylie-denim-cabin-stripe-wallpaper-cca-83042",
+    "title": "Kylie Denim Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91e4f7ec4e5049165d03386432d1012b.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 64.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kylie-denim-cabin-stripe-wallpaper-cca-83042"
+  },
+  {
+    "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": "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": "steuben-brick-turf-stripe-wallpaper-cca-83172",
+    "handle": "steuben-brick-turf-stripe-wallpaper-cca-83172",
+    "title": "Steuben Brick Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/34dc94037e35892c0a172a9a6fd98f61.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brick",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Reddish-brown",
+      "Series: Brewster",
+      "Steuben Brick Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-brick-turf-stripe-wallpaper-cca-83172"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br019-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br019-jpg",
+    "title": "BR019 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br018.jpg?v=1733873676",
+    "tags": [
+      "Abstract",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Green",
+      "Gray",
+      "Green",
+      "Industrial",
+      "Olive",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br019-jpg"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72045",
+    "handle": "saint-helene-durable-vinyl-dur-72045",
+    "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-72045-sample-clean.jpg?v=1774484115",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72045"
+  },
+  {
+    "sku": "dwc-1001628",
+    "handle": "dwc-1001628",
+    "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_4693309358131.jpg?v=1775521217",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Green",
+      "NCW4350-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-1001628"
+  },
+  {
+    "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": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+    "handle": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+    "title": "Kenley Pink Polka Dots Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6a6dd48b682e87fd0de9486dd28d9994.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "LA Walls",
+      "Paper",
+      "Pink",
+      "Polka Dots",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869"
+  },
+  {
+    "sku": "versace-home-shimmer-cream-wallcovering-versace",
+    "handle": "versace-home-shimmer-cream-wallcovering-versace",
+    "title": "Versace Home Shimmer Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/3b429e45516f21a5b069734b19b8d0de.jpg?v=1773706422",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Paste the wall",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Home Shimmer",
+      "Versace VI",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-home-shimmer-cream-wallcovering-versace"
+  },
+  {
+    "sku": "le-madison-durable-walls-xwk-52580",
+    "handle": "le-madison-durable-walls-xwk-52580",
+    "title": "Le Madison Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwk-52580-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721745",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Orange",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52580"
+  },
+  {
+    "sku": "meander-stripe-white-gold-wallcovering-versace",
+    "handle": "meander-stripe-white-gold-wallcovering-versace",
+    "title": "Meander Stripe White, Gold Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/96d443f0ef6432c9eaffe2c73f239c49.jpg?v=1773706322",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Geometric",
+      "Gold",
+      "Gold Wallcovering",
+      "Greek Key",
+      "Hallway",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Meander Stripe",
+      "Meander Stripe White",
+      "Paper",
+      "Paste the wall",
+      "Serene",
+      "Stripe",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/meander-stripe-white-gold-wallcovering-versace"
+  },
+  {
+    "sku": "biejing-embossed-walls-bew-9501",
+    "handle": "biejing-embossed-walls-bew-9501",
+    "title": "Biejing Embossed | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9501-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705123",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Elegant Vinyls Vol. 1",
+      "Embossed",
+      "Embossed Texture",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 39.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9501"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9504-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9504-jpg",
+    "title": "SM9504 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9503.jpg?v=1733872525",
+    "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_sm9504-jpg"
+  },
+  {
+    "sku": "mason-haze-stripe-texture-wallpaper-cca-82921",
+    "handle": "mason-haze-stripe-texture-wallpaper-cca-82921",
+    "title": "Mason Haze Stripe Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/37c034fe9c5ded1715aa00d12f799a48.jpg?v=1572309962",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Haze",
+      "LA Walls",
+      "Light Gray",
+      "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-haze-stripe-texture-wallpaper-cca-82921"
+  },
+  {
+    "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47880",
+    "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47880",
+    "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-47880-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722089",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Ivory",
+      "Living Room",
+      "Loftus Type 2 Vinyl  Wallcovering",
+      "Minimalist",
+      "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-47880"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58169-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724247",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Natural Look",
+      "Neutral",
+      "Silver",
+      "Striped",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58169"
+  },
+  {
+    "sku": "dwss-72672",
+    "handle": "dwss-72672",
+    "title": "Ginkgo blue Sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/803-56_image1_9025d4e6-f3a8-4431-990e-f1bb1d7e7aa0.jpg?v=1646105023",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Ginkgo",
+      "Ginkgo blue  Sample",
+      "Light Blue",
+      "P803-56",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72672"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sft-5022-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sft-5022-jpg",
+    "title": "Shift - Umber | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SFT-5357.jpg?v=1762306035",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Check",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Light Pink",
+      "Paper",
+      "RAMPART®",
+      "Shift",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5022-jpg"
+  },
+  {
+    "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": "carved-squares-wallcovering-xcs-44040",
+    "handle": "carved-squares-wallcovering-xcs-44040",
+    "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-44040-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707200",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Pale Gray",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 41.41,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44040"
+  },
+  {
+    "sku": "austin-charcoal-plaid-wallpaper-cca-82961",
+    "handle": "austin-charcoal-plaid-wallpaper-cca-82961",
+    "title": "Austin Charcoal Plaid Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f588b6a9bb760c4a1ab87b2ea6182784.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Masculine",
+      "Plaid",
+      "Plaids",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/austin-charcoal-plaid-wallpaper-cca-82961"
+  },
+  {
+    "sku": "dwc-1001676",
+    "handle": "dwc-1001676",
+    "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_4693311717427.jpg?v=1775521528",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Dark Gray",
+      "Dark Green",
+      "Green",
+      "Light Green",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001676"
+  },
+  {
+    "sku": "eur-80327-ncw4305-designer-wallcoverings-los-angeles",
+    "handle": "eur-80327-ncw4305-designer-wallcoverings-los-angeles",
+    "title": "Pampelonne 02 - Grey Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504317491.jpg?v=1775523402",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hallway",
+      "LES REVES",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "NCW4305",
+      "NCW4305-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Non-Woven",
+      "Off-white",
+      "Organic Modern",
+      "Pampelonne",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80327-ncw4305-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "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_merg-5808-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_merg-5808-jpg",
+    "title": "Merge - Copper Wire | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/merg-5808.jpg?v=1762300589",
+    "tags": [
+      "22% Nylon",
+      "3% Polyester",
+      "30% Cotton",
+      "45% Wool",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "contemporary",
+      "Copper",
+      "Copper Wire",
+      "Merge",
+      "Metallic",
+      "Orange",
+      "stripe",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Wool",
+      "woven",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_merg-5808-jpg"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47657",
+    "handle": "fairford-vinyl-wallcovering-xlb-47657",
+    "title": "Fairford Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47657-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711603",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Brown",
+      "Grandmillennial",
+      "Grasscloth",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Luxe",
+      "Luxurious",
+      "Olive Green",
+      "Orange",
+      "Regencycore",
+      "Solid",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47657"
+  },
+  {
+    "sku": "harpswell-aqua-herringbone-awning-stripe-wallpaper-cca-83158",
+    "handle": "harpswell-aqua-herringbone-awning-stripe-wallpaper-cca-83158",
+    "title": "Harpswell Aqua Herringbone Awning Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/78c1627d07e8416feb7fea5e235fc1af.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Aqua",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Harpswell Aqua Herringbone Awning Stripe Wallcovering",
+      "LA Walls",
+      "Light Green",
+      "Pale Green",
+      "Paper",
+      "Prepasted",
+      "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/harpswell-aqua-herringbone-awning-stripe-wallpaper-cca-83158"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47660",
+    "handle": "fairford-vinyl-wallcovering-xlb-47660",
+    "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-47660-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711683",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47660"
+  },
+  {
+    "sku": "bird-chirping-weather-large-mural-by-retro-walls-rtr-37204",
+    "handle": "bird-chirping-weather-large-mural-by-retro-walls-rtr-37204",
+    "title": "Bird Chirping Weather Large Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d193d54b88a8bb91ec9e5ac9c76a0cf.jpg?v=1572309701",
+    "tags": [
+      "ANIMAL/INSECTS",
+      "Architectural",
+      "bird",
+      "Birds",
+      "Botanical",
+      "Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Floral",
+      "Green",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Multi",
+      "Mural",
+      "Paper",
+      "Pink",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 94,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bird-chirping-weather-large-mural-by-retro-walls-rtr-37204"
+  },
+  {
+    "sku": "eur-80447-ncw4495-designer-wallcoverings-los-angeles",
+    "handle": "eur-80447-ncw4495-designer-wallcoverings-los-angeles",
+    "title": "Signature Arber - 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_7513508347955.jpg?v=1775524146",
+    "tags": [
+      "Arber Lattice Trellis",
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "English Country",
+      "Grandmillennial",
+      "Green",
+      "Hallway",
+      "Living Room",
+      "NCW4495",
+      "NCW4495-01",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off White",
+      "Pale Green",
+      "Paper",
+      "Sage Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Taupe",
+      "Traditional",
+      "Trellis",
+      "Vine",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80447-ncw4495-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-115516",
+    "handle": "dwkk-115516",
+    "title": "Library - Leather Espresso | Kravet Couture | Andrew Martin Navigator | Novelty Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10042_6_031ce615-2020-4589-b995-96f836589824.jpg?v=1753123160",
+    "tags": [
+      "53.5In",
+      "Abstract",
+      "Almond",
+      "Amw10042.6.0",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Brown",
+      "Cocoa",
+      "Coffee",
+      "Commercial",
+      "Dark Academia",
+      "display_variant",
+      "Hallway",
+      "Kravet",
+      "Kravet Couture",
+      "Leather",
+      "Library",
+      "Living Room",
+      "Murals / Panels",
+      "Novelty",
+      "Office",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Rustic",
+      "Sepia",
+      "Sienna",
+      "Sophisticated",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "United Kingdom",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-115516"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_act-5079-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_act-5079-jpg",
+    "title": "Acute - Emerald | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5079.jpg?v=1762283618",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "Acute",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Dark Green",
+      "Geometric",
+      "Light Gray",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5079-jpg"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47308",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47308",
+    "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-47308-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704293",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Berkeley Type 2 Vinyl  Wallcovering",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47308"
+  },
+  {
+    "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+    "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+    "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-gold.jpg?v=1777480509",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Basketweave",
+      "Bedroom",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Golden Yellow",
+      "Grasscloth",
+      "Grasscloth Look",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Natural",
+      "Natural Texture",
+      "Office",
+      "Pale Gold",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 63.57,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52349"
+  },
+  {
+    "sku": "nice-reima-wallpaper-xq8-68175",
+    "handle": "nice-reima-wallpaper-xq8-68175",
+    "title": "Nice Reima | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/60494bd3b6fbc1689b87cc20055cf466.jpg?v=1733882569",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Chartreuse",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dot",
+      "Geometric",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Phillip Romano Commercial",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68175"
+  },
+  {
+    "sku": "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": "amity-snow-bleeding-heart-scroll-wallpaper-cca-83258",
+    "handle": "amity-snow-bleeding-heart-scroll-wallpaper-cca-83258",
+    "title": "Amity Snow Bleeding Heart Scroll Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1605fa61ccc7941b8d74a0e8399ab47f.jpg?v=1572309982",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "Ivory",
+      "LA Walls",
+      "Prepasted",
+      "Scroll",
+      "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-snow-bleeding-heart-scroll-wallpaper-cca-83258"
+  },
+  {
+    "sku": "flagler-embossed-durable-walls-xwq-52973",
+    "handle": "flagler-embossed-durable-walls-xwq-52973",
+    "title": "Flagler Embossed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52973-sample-flagler-embossed-durable-hollywood-wallcoverings.jpg?v=1775713325",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Gold",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Organic Modern",
+      "Primary Suite",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/flagler-embossed-durable-walls-xwq-52973"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+    "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-sisal.jpg?v=1777480782",
+    "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",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Sand",
+      "Serene",
+      "Texture",
+      "Textured",
+      "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": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53167"
+  },
+  {
+    "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": "sunset-stone-vinyl-dwx-58041",
+    "handle": "sunset-stone-vinyl-dwx-58041",
+    "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58041-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735115",
+    "tags": [
+      "54\" Width",
+      "Animal",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Cream",
+      "Embossed Texture",
+      "Faux Stone",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Insects",
+      "Light Beige",
+      "Living Room",
+      "Natural Look",
+      "Sand",
+      "Stone",
+      "Stucco",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Tropicana Durable Vinyls",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "White",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58041"
+  },
+  {
+    "sku": "constantino-crackle-vinyl-dwx-58081",
+    "handle": "constantino-crackle-vinyl-dwx-58081",
+    "title": "Constantino Crackle Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58081-sample-constantino-crackle-vinyl-hollywood-wallcoverings.jpg?v=1775708865",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Crackle",
+      "Distressed",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Olive Green",
+      "Rustic",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/constantino-crackle-vinyl-dwx-58081"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dprh-501-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dprh-501-jpg",
+    "title": "Perch - Dusk | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dprh-501.jpg?v=1762291526",
+    "tags": [
+      "100% Mylar",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Digital Curated",
+      "Dusk",
+      "Geometric",
+      "Gray",
+      "Light Gray",
+      "Mylar",
+      "Paper",
+      "Perch",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dprh-501-jpg"
+  },
+  {
+    "sku": "cooper-sky-cabin-stripe-wallpaper-cca-82969",
+    "handle": "cooper-sky-cabin-stripe-wallpaper-cca-82969",
+    "title": "Cooper Sky Cabin Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0478a32852ed65ab04aa1b5665aa66a7.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Lightgreen",
+      "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/cooper-sky-cabin-stripe-wallpaper-cca-82969"
+  },
+  {
+    "sku": "reeds-drive-wild-grass-hlw-73069",
+    "handle": "reeds-drive-wild-grass-hlw-73069",
+    "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-73069-sample-clean.jpg?v=1774483325",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Olive",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Teal",
+      "Textured",
+      "Tropical",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73069"
+  },
+  {
+    "sku": "yucatan-sisal-wallpaper-trf-56863",
+    "handle": "yucatan-sisal-wallpaper-trf-56863",
+    "title": "Yucatan Sisal | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c995a0c96a97fab6795cf41cb6301b32.jpg?v=1750789726",
+    "tags": [
+      "Architectural",
+      "Asian",
+      "beach",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "deep blue",
+      "Denim Blue",
+      "Discontinued",
+      "fine texture",
+      "gleam",
+      "glow",
+      "grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Jeffrey Stevens",
+      "Light Beige",
+      "Light Blue",
+      "Modern",
+      "Modern Tropics",
+      "natural",
+      "organic",
+      "Scandinavian",
+      "Series: York",
+      "Sisal",
+      "Smoke",
+      "Steel",
+      "textural",
+      "Textured",
+      "tropical",
+      "Unpasted - Washable - Strippable",
+      "USA",
+      "Wallcovering",
+      "woven",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 153.28,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/yucatan-sisal-wallpaper-trf-56863"
+  },
+  {
+    "sku": "eur-80328-ncw4305-designer-wallcoverings-los-angeles",
+    "handle": "eur-80328-ncw4305-designer-wallcoverings-los-angeles",
+    "title": "Pampelonne 03 - 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_7513504350259.jpg?v=1775523409",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hallway",
+      "Ivory",
+      "LES REVES",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "NCW4305",
+      "NCW4305-03",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Organic Modern",
+      "Pampelonne",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80328-ncw4305-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "sebago-burnt-sienna-dry-brush-stripe-wallpaper-cca-83105",
+    "handle": "sebago-burnt-sienna-dry-brush-stripe-wallpaper-cca-83105",
+    "title": "Sebago Burnt Sienna Dry Brush Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b276bf98563139f870173bbf77f74c28.jpg?v=1572309968",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Prepasted",
+      "Sebago Burnt Sienna Dry Brush Stripe Wallcovering",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sebago-burnt-sienna-dry-brush-stripe-wallpaper-cca-83105"
+  },
+  {
+    "sku": "ncw4304-04",
+    "handle": "ncw4304-04",
+    "title": "Les Rêves Marguerite Chocolate/Orange - 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_4497262346291.jpg?v=1775520302",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Floral",
+      "Multi",
+      "NCW4304-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Orange",
+      "Paper",
+      "Taupe",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4304-04"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53074",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53074",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53074-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703580",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Silver Gray",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53074"
+  },
+  {
+    "sku": "floating-fibers-dwx-58178",
+    "handle": "floating-fibers-dwx-58178",
+    "title": "Floating Fibers | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58178-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775713922",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Elegant",
+      "Fiber",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Natural Look",
+      "Neutral",
+      "Sophisticated",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58178"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2758",
+    "handle": "faux-leaf-squares-fls-2758",
+    "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-2758-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712024",
+    "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-2758"
+  },
+  {
+    "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": "twickenham-type-ii-vinyl-wallcovering-xqm-48535",
+    "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48535",
+    "title": "Twickenham Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XQM-48535-sample-clean.jpg?v=1774480564",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Raw Umber",
+      "Sienna",
+      "Solid",
+      "Textured",
+      "Twickenham Type 2 Vinyl  Wallcovering",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48535"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_vr008-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_vr008-jpg",
+    "title": "Vapor | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/VR008.jpg?v=1762311783",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Scuffmaster",
+      "Textured",
+      "Vapor",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vr008-jpg"
+  },
+  {
+    "sku": "juno-faux-silk-durable-walls-xje-53772",
+    "handle": "juno-faux-silk-durable-walls-xje-53772",
+    "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-53772-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720170",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Juno Faux Silk Durable",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53772"
+  },
+  {
+    "sku": "seeing-circles-wallcovering-xsc-44284",
+    "handle": "seeing-circles-wallcovering-xsc-44284",
+    "title": "Seeing Circles | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XSC-44284-sample-clean.jpg?v=1774479084",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Red",
+      "Silver",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 37.88,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44284"
+  },
+  {
+    "sku": "lanvin-arpergeo-wallpaper-xb8-66613",
+    "handle": "lanvin-arpergeo-wallpaper-xb8-66613",
+    "title": "Lanvin Arpergeo Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/598ffffc305d47eaead395bd733f525c.jpg?v=1775133450",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Geometric",
+      "Gold",
+      "Gray",
+      "Lanvin Arpergeo Wallcovering",
+      "Living Room",
+      "Modern",
+      "Navy Blue",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Spa",
+      "Stripe",
+      "Taupe",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66613"
+  },
+  {
+    "sku": "ncw4392-01",
+    "handle": "ncw4392-01",
+    "title": "Ashdown Chelwood 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_4497265688627.jpg?v=1775520737",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Light Green",
+      "NCW4392-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Single Dominant Background Color Word",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4392-01"
+  },
+  {
+    "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53480",
+    "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53480",
+    "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-53480-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715931",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallandale Rice Paper Effect Durable",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Non-woven",
+      "Office",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53480"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_wwdf-204-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_wwdf-204-jpg",
+    "title": "WonderWood® - Zebrawood Qtd | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-204f.jpg?v=1762312208",
+    "tags": [
+      "100% Reconstituted Wood Veneer",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Brown",
+      "Natural",
+      "Reconstituted",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "WonderWood®",
+      "Zebrawood Qtd"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-204-jpg"
+  },
+  {
+    "sku": "vanderbilt-durable-walls-xwk-52595",
+    "handle": "vanderbilt-durable-walls-xwk-52595",
+    "title": "Vanderbilt Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulum-obsidian.jpg?v=1777480641",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52595"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm8007-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm8007-jpg",
+    "title": "SM8007 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm8006.jpg?v=1733872547",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gold",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8007-jpg"
+  },
+  {
+    "sku": "ncw4356-04",
+    "handle": "ncw4356-04",
+    "title": "Nina Campbell Wallcoverings - Natural Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265164339.jpg?v=1775520663",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Fauna",
+      "Light Blue",
+      "NCW4356-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4356-04"
+  },
+  {
+    "sku": "floating-bubbles-vinyl-dwx-58122",
+    "handle": "floating-bubbles-vinyl-dwx-58122",
+    "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-58122-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713662",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Bubbles",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Neutral",
+      "Organic",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58122"
+  },
+  {
+    "sku": "dwc-1001683",
+    "handle": "dwc-1001683",
+    "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_4693312208947.jpg?v=1775521575",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Gold",
+      "Gray",
+      "Ivory",
+      "NCW4394-02",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Stripe",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001683"
+  },
+  {
+    "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+    "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+    "title": "Maidstone - Mist Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-mercury_c2e37df8-0dec-4cbd-bc93-88e86552a1a4.jpg?v=1777481365",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Stone",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Stone Look",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 55.38,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47951"
+  },
+  {
+    "sku": "nassau-contemporary-emboosed-walls-xwh-52333",
+    "handle": "nassau-contemporary-emboosed-walls-xwh-52333",
+    "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-kestrel.jpg?v=1777480482",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Beige",
+      "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-52333"
+  },
+  {
+    "sku": "eur-80332-ncw4306-designer-wallcoverings-los-angeles",
+    "handle": "eur-80332-ncw4306-designer-wallcoverings-los-angeles",
+    "title": "Belle Ile Stripe 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_7513504481331.jpg?v=1775523432",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Belle Ile Stripe",
+      "Bohemian",
+      "Champagne",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Global",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "LES REVES",
+      "Light Gray",
+      "Living Room",
+      "NCW4306",
+      "NCW4306-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paper",
+      "Rustic",
+      "Stripe",
+      "Takumi",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80332-ncw4306-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "mica-madness-real-cork-chip-wallpapers-mic-98622",
+    "handle": "mica-madness-real-cork-chip-wallpapers-mic-98622",
+    "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/78a03ce1ce0a81a4a1ce1f305e0990bf.jpg?v=1775082834",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Commercial",
+      "Contemporary",
+      "Cork",
+      "Entryway",
+      "Gray",
+      "Industrial",
+      "Living Room",
+      "Mica",
+      "Minimalist",
+      "Natural",
+      "Naturals",
+      "Office",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Silver",
+      "Solid/Textural",
+      "Textured",
+      "Wallcovering",
+      "Wuhan Woven Wallcovering"
+    ],
+    "max_price": 34.12,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98622"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dpaw-460-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dpaw-460-jpg",
+    "title": "Pawpaw - Ginger | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DPAW-460_2021-02-18-235049.jpg?v=1762291377",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Cork",
+      "Dark Brown",
+      "Digital Curated",
+      "Ginger",
+      "Industrial",
+      "Light Brown",
+      "Pawpaw",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dpaw-460-jpg"
+  },
+  {
+    "sku": "dwkk-gdfab45af",
+    "handle": "dwkk-gdfab45af",
+    "title": "Ikat Stripe Wp - Pale Blue Light Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_1115_8ecb25bf-81b5-4568-83e5-b24b24b83525.jpg?v=1753291841",
+    "tags": [
+      "27.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Blithfield",
+      "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Fabric",
+      "Ikat",
+      "Ikat Stripe Wp",
+      "Ikat/Southwest/Kilims",
+      "Lee Jofa",
+      "Light Blue",
+      "Luxury",
+      "Off-White",
+      "Pale Blue",
+      "Pattern",
+      "Pbfc-3531.1115.0",
+      "Print",
+      "Stripe",
+      "Stripes",
+      "United States",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-gdfab45af"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm10237-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm10237-jpg",
+    "title": "SM10237 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10236.jpg?v=1733872486",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Paper",
+      "SM10237",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10237-jpg"
+  },
+  {
+    "sku": "dwc-1001590",
+    "handle": "dwc-1001590",
+    "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_4693343043635.jpg?v=1775521681",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Gray",
+      "Green",
+      "Mid-Century Modern",
+      "NCW4301-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001590"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2877",
+    "handle": "peter-s-plastered-walls-ppw-2877",
+    "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-2877-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729070",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Brown",
+      "Mediterranean",
+      "Solid",
+      "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-2877"
+  },
+  {
+    "sku": "marseilles-durable-vinyl-dur-72011",
+    "handle": "marseilles-durable-vinyl-dur-72011",
+    "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-72011-sample-clean.jpg?v=1774483962",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72011"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwd-52102",
+    "handle": "canal-texture-durable-walls-xwd-52102",
+    "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-port.jpg?v=1777480412",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Orange",
+      "Organic Modern",
+      "Rustic",
+      "Sienna",
+      "Solid",
+      "Terracotta",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52102"
+  },
+  {
+    "sku": "dwc-1001624",
+    "handle": "dwc-1001624",
+    "title": "Nina Campbell Wallcovering",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309128755.jpg?v=1775521191",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Coral",
+      "Fretwork",
+      "Geometric",
+      "NCW4308-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Pink",
+      "Silver",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001624"
+  },
+  {
+    "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47638",
+    "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47638",
+    "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-47638-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710985",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Edgware Type 2 Vinyl  Wallcovering",
+      "Geometric",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Light Gray",
+      "Minimalist",
+      "Office",
+      "Pale Blue",
+      "Serene",
+      "Textured",
+      "Tile",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47638"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwa-52094",
+    "handle": "canal-texture-durable-walls-xwa-52094",
+    "title": "Canal Texture Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-spice.jpg?v=1777480398",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Golden Brown",
+      "Grasscloth",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Stripe",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52094"
+  },
+  {
+    "sku": "daytona-faux-embossed-durable-walls-xwc-53290",
+    "handle": "daytona-faux-embossed-durable-walls-xwc-53290",
+    "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-53290-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710233",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Vinyl",
+      "Faux",
+      "Faux Finish",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Living Room",
+      "Organic Modern",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53290"
+  },
+  {
+    "sku": "eur-80352-ncw4351-designer-wallcoverings-los-angeles",
+    "handle": "eur-80352-ncw4351-designer-wallcoverings-los-angeles",
+    "title": "Baville 02 - Off-White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505136691.jpg?v=1775523556",
+    "tags": [
+      "1970s Retro",
+      "Architectural",
+      "Baville",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cottagecore",
+      "Dining Room",
+      "Dusty Rose",
+      "Floral",
+      "Grandmillennial",
+      "LES INDIENNES",
+      "Light Blue Grey",
+      "Living Room",
+      "NCW4351",
+      "NCW4351-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Paisley",
+      "Paper",
+      "Pink",
+      "Serene",
+      "Taupe",
+      "Traditional",
+      "Vine",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80352-ncw4351-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+    "title": "Shift - Harvest | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5014.jpg?v=1762305752",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Cream",
+      "Geometric",
+      "Harvest",
+      "RAMPART®",
+      "Shift",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5014-jpg"
+  },
+  {
+    "sku": "ventnor-vinyl-wallcovering-xqq-48565",
+    "handle": "ventnor-vinyl-wallcovering-xqq-48565",
+    "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-48565-sample-clean.jpg?v=1774480619",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Dark Grey",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Modern",
+      "Moody",
+      "Solid",
+      "Textured",
+      "Ventnor  Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48565"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72057",
+    "handle": "saint-helene-durable-vinyl-dur-72057",
+    "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72057-sample-clean.jpg?v=1774484187",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72057"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dug-5471-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dug-5471-jpg",
+    "title": "Douglas - Alder | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5471.jpg?v=1762292896",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Alder",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Douglas",
+      "Gray",
+      "Light Gray",
+      "Minimalist",
+      "RAMPART®",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5471-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10230-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10230-jpg",
+    "title": "SP10230 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10226.jpg?v=1733872353",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10230-jpg"
+  },
+  {
+    "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47726",
+    "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47726",
+    "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-47726-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716191",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Harrison Type 2 Vinyl  Wallcovering",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Luxe",
+      "Navy",
+      "Solid",
+      "Sophisticated",
+      "Teal",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47726"
+  },
+  {
+    "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48540",
+    "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48540",
+    "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-48540-sample-twickenham-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735489",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Twickenham Type 2 Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48540"
+  },
+  {
+    "sku": "zeya-mural-ashlar-romo",
+    "handle": "zeya-mural-ashlar-romo",
+    "title": "Zeya Mural Ashlar | Romo",
+    "vendor": "Romo",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W971-01-zeya-mural-ashlar_04.jpg?v=1776399030",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Background Color white",
+      "beige",
+      "brown",
+      "Burnished Bronze",
+      "Commercial",
+      "Conference Room",
+      "Contemporary",
+      "gray",
+      "Kabu Wallcoverings",
+      "Large",
+      "Lobby",
+      "Mural",
+      "Non-woven",
+      "Office",
+      "Romo",
+      "Sage Green",
+      "Slate Blue",
+      "Smooth",
+      "Soft White",
+      "Texture",
+      "Transitional",
+      "W971/01",
+      "Wallcovering",
+      "Warm Taupe",
+      "Zeya Mural"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zeya-mural-ashlar-romo"
+  },
+  {
+    "sku": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+    "handle": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+    "title": "Natalia Moss Floral Scroll Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/73cc07073de8f7b9b4e324dff0ba2d94.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Kids",
+      "LA Walls",
+      "Leaf",
+      "Prepasted",
+      "Scrolls",
+      "Series: Brewster",
+      "Strippable",
+      "Teal",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwh-52385",
+    "handle": "prince-vertical-emboss-durable-walls-xwh-52385",
+    "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-timbre.jpg?v=1777480554",
+    "tags": [
+      "74%-100% post-consumer (Eco-fi polyester)",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Taupe",
+      "Embossed",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Polyester",
+      "remaining fiber is pre-consumer (polyester)",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52385"
+  },
+  {
+    "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73268",
+    "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73268",
+    "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-73268-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707442",
+    "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",
+      "Modern",
+      "Office",
+      "Organic Modern",
+      "Phillip Romano Commercial",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73268"
+  },
+  {
+    "sku": "hollywood-antique-damask-xhw-2010219",
+    "handle": "hollywood-antique-damask-xhw-2010219",
+    "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-palette.jpg?v=1777481023",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Antique",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "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\"",
+      "Yellow"
+    ],
+    "max_price": 53.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-antique-damask-xhw-2010219"
+  },
+  {
+    "sku": "kenley-aqua-polka-dots-wallpaper-wallpaper-cca-82877",
+    "handle": "kenley-aqua-polka-dots-wallpaper-wallpaper-cca-82877",
+    "title": "Kenley Aqua Polka Dots Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/63cea179edcc2f3e8782c659bc3eaec8.jpg?v=1572309958",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Discontinued",
+      "Dots",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Paper",
+      "Polka Dot",
+      "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-aqua-polka-dots-wallpaper-wallpaper-cca-82877"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_srp-5047-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_srp-5047-jpg",
+    "title": "Sparta - Espresso | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5047.jpg?v=1762309024",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "RAMPART®",
+      "Sparta",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5047-jpg"
+  },
+  {
+    "sku": "moroccan-wooden-basketweave-wbs-39659",
+    "handle": "moroccan-wooden-basketweave-wbs-39659",
+    "title": "Moroccan Wooden Basketweave | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39659-sample-moroccan-wooden-basketweave-hollywood-wallcoverings.jpg?v=1775726749",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bathroom",
+      "Bedroom",
+      "Beige",
+      "Bricks and Stones",
+      "Brown",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Faux",
+      "Grasscloth",
+      "Herringbone",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Rich Woods",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Tropical",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Wheat",
+      "Wood",
+      "Woven"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/moroccan-wooden-basketweave-wbs-39659"
+  },
+  {
+    "sku": "zebilini-wallpaper-xd6-66711",
+    "handle": "zebilini-wallpaper-xd6-66711",
+    "title": "Zebilini Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/005854b1605e026e81eaba2281680a76.jpg?v=1775134288",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Entryway",
+      "Geometric",
+      "Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Paper",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Tan",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White",
+      "Zebilini Wallcovering"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66711"
+  },
+  {
+    "sku": "norman-blue-medallion-wallpaper-cca-82950",
+    "handle": "norman-blue-medallion-wallpaper-cca-82950",
+    "title": "Norman Blue Medallion Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0e9a2c306b1c0e4eb49c902bc180547.jpg?v=1572309963",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Fabric",
+      "Geometric",
+      "LA Walls",
+      "Masculine",
+      "Norman Blue Medallion Wallcovering",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/norman-blue-medallion-wallpaper-cca-82950"
+  },
+  {
+    "sku": "dwkk-129173",
+    "handle": "dwkk-129173",
+    "title": "W3762-5 Silver | Kravet Design |Geometric Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3762_5_788396e9-41ac-4786-bd60-13cc9dc01c47.jpg?v=1753121487",
+    "tags": [
+      "27In",
+      "Abstract",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Blue",
+      "display_variant",
+      "Geometric",
+      "Gray",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Modern",
+      "Navy",
+      "Non-Woven",
+      "Office",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "United States",
+      "Vinyl",
+      "W3762-5",
+      "W3762.5.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129173"
+  },
+  {
+    "sku": "dwkk-129136",
+    "handle": "dwkk-129136",
+    "title": "W3744-8 Black | Kravet Design | Ronald Redding |Geometric Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3744_8_9a2d0510-b30d-424b-8924-66f39390defc.jpg?v=1753292000",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Black",
+      "Commercial",
+      "display_variant",
+      "Geometric",
+      "Ikat",
+      "Kravet",
+      "Kravet Design",
+      "Non Woven - 100%",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Ronald Redding",
+      "Textured",
+      "United States",
+      "W3744-8",
+      "W3744.8.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129136"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em9514-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em9514-jpg",
+    "title": "EM9514 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9513.jpg?v=1733873338",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM9514",
+      "Paper",
+      "Textured",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9514-jpg"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912",
+    "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912",
+    "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52912-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734457",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Slate Grey",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52912"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9509-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9509-jpg",
+    "title": "SM9509 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9508.jpg?v=1733872511",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Green",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9509-jpg"
+  },
+  {
+    "sku": "calais-wheat-grain-stripe-wallpaper-cca-83187",
+    "handle": "calais-wheat-grain-stripe-wallpaper-cca-83187",
+    "title": "Calais Wheat Grain Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bb467817cd9ecdaaab61a1915d71168.jpg?v=1572309972",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Fabric",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "Wheat",
+      "White",
+      "Woven",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/calais-wheat-grain-stripe-wallpaper-cca-83187"
+  },
+  {
+    "sku": "tigressa-bargea-wallpaper-xb3-66525",
+    "handle": "tigressa-bargea-wallpaper-xb3-66525",
+    "title": "Tigressa Bargea Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c34e0e15fbbd0c08061951e2e7489d2e.jpg?v=1775129274",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Geometric",
+      "Grid",
+      "Living Room",
+      "Mid-Century Modern",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textured",
+      "Tigressa Bargea Wallcovering",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering"
+    ],
+    "max_price": 37.2,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66525"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_ad10335-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad10335-jpg",
+    "title": "Ambient Design - AD10335 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10003.jpg?v=1733874119",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Ambient Design",
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10335-jpg"
+  },
+  {
+    "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73269",
+    "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73269",
+    "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-73269-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707471",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Blue",
+      "Brown",
+      "Caterina Embossed Vinyl",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Dark Brown",
+      "Embossed",
+      "Embossed Texture",
+      "Estimated Type: Non-woven",
+      "Gold",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Light Brown",
+      "Luxe",
+      "Minimalist",
+      "Navy Blue",
+      "Olive Green",
+      "Phillip Romano Commercial",
+      "Regencycore",
+      "Solid",
+      "Sophisticated",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73269"
+  },
+  {
+    "sku": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+    "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48130-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728162",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Orford Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48130"
+  },
+  {
+    "sku": "yves-goriga-durable-vinyl-dur-72461",
+    "handle": "yves-goriga-durable-vinyl-dur-72461",
+    "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-72461-sample-clean.jpg?v=1774485655",
+    "tags": [
+      "Aqua",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Denim",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Living Room",
+      "Navy",
+      "Ogee",
+      "Quatrefoil",
+      "Serene",
+      "Steel",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/yves-goriga-durable-vinyl-dur-72461"
+  },
+  {
+    "sku": "oxford-rust-brick-texture-wallpaper-cca-82957",
+    "handle": "oxford-rust-brick-texture-wallpaper-cca-82957",
+    "title": "Oxford Rust Brick Texture Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1dd123dbd173934583f74922a5ff8b8b.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Expanded Vinyl",
+      "Farmhouse",
+      "Faux",
+      "Faux Effects",
+      "Industrial",
+      "LA Walls",
+      "Masculine",
+      "Orange",
+      "Peelable",
+      "Phasing-2026-04",
+      "Rust",
+      "Series: Brewster",
+      "Textured",
+      "Unpasted",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 44.11,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oxford-rust-brick-texture-wallpaper-cca-82957"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+    "title": "Sparta - Raw Linen | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5304.jpg?v=1762309207",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Lattice",
+      "RAMPART®",
+      "Raw Linen",
+      "Sparta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5304-jpg"
+  },
+  {
+    "sku": "eur-80124-ncw4123-designer-wallcoverings-los-angeles",
+    "handle": "eur-80124-ncw4123-designer-wallcoverings-los-angeles",
+    "title": "Abbotsford 05 - Pale 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_7513496584243.jpg?v=1775522264",
+    "tags": [
+      "Abbotsford",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "BRAEMAR",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Green",
+      "Hallway",
+      "Minimalist",
+      "NCW4123",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Off-white",
+      "Olive Green",
+      "Pale Green",
+      "Paper",
+      "Serene",
+      "Stripe",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80124-ncw4123-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_turn-tun-6296-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_turn-tun-6296-jpg",
+    "title": "Turn - Fawn | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/turn-tun-6296.jpg?v=1762311487",
+    "tags": [
+      "24% Nylon",
+      "76% Polyester",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Polyester",
+      "Textured",
+      "Turn",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_turn-tun-6296-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9508-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9508-jpg",
+    "title": "SM9508 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9507.jpg?v=1733872514",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gold",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9508-jpg"
+  },
+  {
+    "sku": "dwkk-129650",
+    "handle": "dwkk-129650",
+    "title": "W3902-4 Gold | Kravet Design | Antonina Vella Dazzling Dimensions Ii |Modern Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3902_4_4c1ef9e2-b90b-4734-a32f-b87c6e193cc9.jpg?v=1753322554",
+    "tags": [
+      "27In",
+      "Abstract",
+      "Antonina Vella Dazzling Dimensions Ii",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Beige",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Ecru",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "Paper",
+      "Print",
+      "Serene",
+      "Textured",
+      "United States",
+      "W3902-4",
+      "W3902.4.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129650"
+  },
+  {
+    "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+    "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+    "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-herb_dc4f5d17-9274-4cc4-9737-d27f06874f92.jpg?v=1777481171",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Green",
+      "Bedroom",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Look",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Grasscloth Weave",
+      "Green",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Khaki",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Natural",
+      "Natural Texture",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 63.57,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52357"
+  },
+  {
+    "sku": "ncw4302-03",
+    "handle": "ncw4302-03",
+    "title": "Nina Campbell s - Sage Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261953075.jpg?v=1775520237",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Green",
+      "NCW4302-03",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4302-03"
+  },
+  {
+    "sku": "canal-damask-durable-vinyl-xwa-52083",
+    "handle": "canal-damask-durable-vinyl-xwa-52083",
+    "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-52083-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707071",
+    "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: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Damask",
+      "Dining Room",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Grandmillennial",
+      "Grasscloth",
+      "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-52083"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10407-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10407-jpg",
+    "title": "ST10407 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10406.jpg?v=1733872184",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10407-jpg"
+  },
+  {
+    "sku": "kittery-wheat-affinity-stria-wallpaper-cca-83135",
+    "handle": "kittery-wheat-affinity-stria-wallpaper-cca-83135",
+    "title": "Kittery Wheat Affinity Stria Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/08ee8557f1af58505bde57a1b8e4facc_f592d690-0302-4e66-a567-dd5aa7449aa2.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Brown",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "Wheat",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kittery-wheat-affinity-stria-wallpaper-cca-83135"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+    "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+    "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWQ-52940-sample-clean.jpg?v=1774481753",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Rustic",
+      "Solid",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940"
+  },
+  {
+    "sku": "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": "wolfgordonwallcovering_dwwg_em9500-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em9500-jpg",
+    "title": "EM9500 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9400r.jpg?v=1733873361",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "EM9500",
+      "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_em9500-jpg"
+  },
+  {
+    "sku": "ornament-border-black-white-metallic-wallcovering-versace",
+    "handle": "ornament-border-black-white-metallic-wallcovering-versace",
+    "title": "Ornament Border Black White Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/802549e6a4359c3d4efa81dc1571182b.jpg?v=1773706362",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Arabesque",
+      "Architectural",
+      "Bedroom",
+      "Black White Metallic",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Damask",
+      "Dark Brown",
+      "Dark Gray",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Grandmillennial",
+      "Gray",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Off-white",
+      "Ornament Border",
+      "Ornament Border Black White Metallic Wallcovering",
+      "Paper",
+      "Paste the wall",
+      "Sophisticated",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ornament-border-black-white-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52436",
+    "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52436",
+    "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-52436-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730713",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Brown",
+      "Living Room",
+      "Organic Modern",
+      "Paper",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52436"
+  },
+  {
+    "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": "wolfgordonwallcovering_dwwg_hug-3320_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_hug-3320_8-jpg",
+    "title": "Hugo - Iron | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3320_8.jpg?v=1762297494",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Herringbone",
+      "Hugo",
+      "Iron",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3320_8-jpg"
+  },
+  {
+    "sku": "benedict-canyon-sisal-hlw-73003",
+    "handle": "benedict-canyon-sisal-hlw-73003",
+    "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73003-sample-clean.jpg?v=1774482988",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Coastal Farmhouse",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Ivory",
+      "Living Room",
+      "Natural",
+      "Natural Texture",
+      "Naturally Glamorous",
+      "Organic Modern",
+      "Serene",
+      "Sisal",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "White",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 67.78,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73003"
+  },
+  {
+    "sku": "whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889",
+    "handle": "whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889",
+    "title": "Whisper Moss Scroll Texture Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f24edb1175f4aca848a1421eaa54bc38.jpg?v=1572309959",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "Green",
+      "Kids",
+      "LA Walls",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889"
+  },
+  {
+    "sku": "caron-tabac-wallpaper-xa6-66454",
+    "handle": "caron-tabac-wallpaper-xa6-66454",
+    "title": "Caron Tabac Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/218e025e8ef54cc6e10d39e18f961613.jpg?v=1775123002",
+    "tags": [
+      "Abstract",
+      "Acoustical",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Caron Tabac Wallcovering",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fabric",
+      "Geometric",
+      "Gray",
+      "Industrial",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Organic",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "polyester",
+      "Restaurant",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 43.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66454"
+  },
+  {
+    "sku": "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": "dwc-1001679",
+    "handle": "dwc-1001679",
+    "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_4693311946803.jpg?v=1775521548",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Green",
+      "NCW4393-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Tan",
+      "Taupe",
+      "Tropical",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001679"
+  },
+  {
+    "sku": "jutely-vinyl-dwx-58128",
+    "handle": "jutely-vinyl-dwx-58128",
+    "title": "Jutely Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58128-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720249",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Jute",
+      "Natural Look",
+      "Neutral",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58128"
+  },
+  {
+    "sku": "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": "kiligano-libra-wallpaper-xg4-66911",
+    "handle": "kiligano-libra-wallpaper-xg4-66911",
+    "title": "Kiligano Libra Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4feb348e40457a8aeb9fb0d0583d00e6.jpg?v=1572309570",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Kiligano Libra Wallcovering",
+      "Light Gray",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Textured",
+      "vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 96.58,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66911"
+  },
+  {
+    "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": "dwc-1001591",
+    "handle": "dwc-1001591",
+    "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_4693306933299.jpg?v=1775520975",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Geometric",
+      "Light Blue",
+      "NCW4301-06",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001591"
+  },
+  {
+    "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": "seeing-circles-wallcovering-xsc-44279",
+    "handle": "seeing-circles-wallcovering-xsc-44279",
+    "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-44279-sample-clean.jpg?v=1774479048",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Circle",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Olive",
+      "Dot",
+      "Geometric",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Office",
+      "Olive",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Slate Blue",
+      "Wallcovering"
+    ],
+    "max_price": 37.88,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44279"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73084",
+    "handle": "zebra-drive-metal-and-wood-hlw-73084",
+    "title": "Zebra 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-73084-sample-clean.jpg?v=1774483407",
+    "tags": [
+      "Animal Print",
+      "Architectural",
+      "Bedroom",
+      "Chevron",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Faux Wood",
+      "Geometric",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Sage Green",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73084"
+  },
+  {
+    "sku": "boca-faux-finish-durable-walls-xww-53056",
+    "handle": "boca-faux-finish-durable-walls-xww-53056",
+    "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWW-53056-sample-clean.jpg?v=1774481800",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Brown",
+      "Burnt Sienna",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Living Room",
+      "Moody",
+      "Orange",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53056"
+  },
+  {
+    "sku": "pug-love-wallpaper-whm-78004",
+    "handle": "pug-love-wallpaper-whm-78004",
+    "title": "Pug Love | Traditional Whimsy",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/46d3f666320bcbe0e87ac07ab2ddf1a5.jpg?v=1733964595",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Black",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dog",
+      "European",
+      "European Traditional Whimsy",
+      "Paper",
+      "Pug Love",
+      "Red",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pug-love-wallpaper-whm-78004"
+  },
+  {
+    "sku": "hollywood-tower-deco-xhw-201050",
+    "handle": "hollywood-tower-deco-xhw-201050",
+    "title": "Hollywood Tower Deco | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/avant-makassar_d574de21-bea4-4365-89f8-86cdf7b80050.jpg?v=1777481430",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "Abstract",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Art Deco",
+      "Background Color Brown",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Brown",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Gray",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tower-deco-xhw-201050"
+  },
+  {
+    "sku": "montpelier-wallpaper-xp4-68083",
+    "handle": "montpelier-wallpaper-xp4-68083",
+    "title": "Montpelier | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/acc70166bd89dc511fcf99bf78b865ab.jpg?v=1733882436",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Montpelier",
+      "Organic",
+      "Organic Modern",
+      "Phillip Romano Commercial",
+      "Polyester",
+      "Rustic",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "wood pulp"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68083"
+  },
+  {
+    "sku": "sesame-contemporary-embossed-durable-walls-xwj-52472",
+    "handle": "sesame-contemporary-embossed-durable-walls-xwj-52472",
+    "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52472-sample-sesame-contemporary-embossed-durable-hollywood-wallcoverings.jpg?v=1775732934",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52472"
+  },
+  {
+    "sku": "seine-marne-durable-vinyl-dur-72135",
+    "handle": "seine-marne-durable-vinyl-dur-72135",
+    "title": "Raked Faux Suede - Light Beige Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72135-sample-clean.jpg?v=1774484520",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72135"
+  },
+  {
+    "sku": "dwc-1001647",
+    "handle": "dwc-1001647",
+    "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_4693310308403.jpg?v=1775521344",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "NCW4353-05",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Tan",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001647"
+  },
+  {
+    "sku": "gironde-durable-vinyl-dur-72105",
+    "handle": "gironde-durable-vinyl-dur-72105",
+    "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-72105-sample-clean.jpg?v=1774484407",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Living Room",
+      "Office",
+      "Olive",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72105"
+  },
+  {
+    "sku": "eur-80144-ncw4150-designer-wallcoverings-los-angeles",
+    "handle": "eur-80144-ncw4150-designer-wallcoverings-los-angeles",
+    "title": "Rosslyn 02 - Warm 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_7513497239603.jpg?v=1775522370",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Floral",
+      "Green",
+      "Multi",
+      "NCW4150",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Red",
+      "Rosslyn",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80144-ncw4150-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dvts-522-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dvts-522-jpg",
+    "title": "Vista - Snow | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dvts-522.jpg?v=1762293138",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Digital Curated",
+      "Geometric",
+      "Light Gray",
+      "Minimalist",
+      "Mylar",
+      "Paper",
+      "Snow",
+      "Vista",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dvts-522-jpg"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72067",
+    "handle": "la-roche-durable-vinyl-dur-72067",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72067-sample-clean.jpg?v=1774484247",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72067"
+  },
+  {
+    "sku": "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": "wolfgordonwallcovering_dwwg_act-5071-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_act-5071-jpg",
+    "title": "Acute - Gold | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5071.jpg?v=1762357908",
+    "tags": [
+      "100% Vinyl",
+      "Acute",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Geometric",
+      "Goldenrod",
+      "Khaki",
+      "Lattice",
+      "Paper",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5071-jpg"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47123",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47123",
+    "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-47123-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700295",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Ashbourne Type 2 Vinyl",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Pale Grey",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47123"
+  },
+  {
+    "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": "essone-durable-vinyl-dur-72270",
+    "handle": "essone-durable-vinyl-dur-72270",
+    "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72270-sample-clean.jpg?v=1774484956",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72270"
+  },
+  {
+    "sku": "lydia-s-croc-embossed-damask-prp-56542",
+    "handle": "lydia-s-croc-embossed-damask-prp-56542",
+    "title": "Lydia's Croc Embossed Damask",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-01-17at11.49.33AM.png?v=1705520998",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Designer Wallcoverings",
+      "Embossed Texture",
+      "Fabric",
+      "Gray",
+      "Light Gray",
+      "Lydia's Croc Embossed Damask",
+      "Natural",
+      "Natural Wonders",
+      "Off-white",
+      "Pattern",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lydia-s-croc-embossed-damask-prp-56542"
+  },
+  {
+    "sku": "hollywood-faux-woven-textile-wall-xhw-2010421",
+    "handle": "hollywood-faux-woven-textile-wall-xhw-2010421",
+    "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-deluxe_threads_b8a40413-04fc-4a11-97e9-708d2e8daa9a.jpg?v=1777481503",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Background Color Olive",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Green",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Faux Woven Textile Wall",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Olive",
+      "Olive Green",
+      "Organic Modern",
+      "Sea Green",
+      "Serene",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven Look"
+    ],
+    "max_price": 53.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010421"
+  },
+  {
+    "sku": "eur-80133-ncw4126-designer-wallcoverings-los-angeles",
+    "handle": "eur-80133-ncw4126-designer-wallcoverings-los-angeles",
+    "title": "Huntly 04 - Off-White Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/huntly_main_474ba95d-c2a8-4167-8d7a-78e3613e4e7a.webp?v=1738949867",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "BRAEMAR",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Geometric",
+      "Grandmillennial",
+      "Hallway",
+      "Huntly",
+      "Lattice",
+      "Living Room",
+      "NCW4126",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Pale Gold",
+      "Paper",
+      "Pink",
+      "Rose Quartz",
+      "Sophisticated",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80133-ncw4126-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "bosa-marina-rustic-plum-wood-grain-wbs-39640",
+    "handle": "bosa-marina-rustic-plum-wood-grain-wbs-39640",
+    "title": "Bosa Marina Rustic Plum Wood Grain | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39640-sample-bosa-marina-rustic-plum-wood-grain-hollywood-wallcoverings.jpg?v=1775706008",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Bricks and Stones",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Coastal Farmhouse",
+      "Color: Pink",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed Texture",
+      "Farmhouse",
+      "Faux",
+      "Faux Wood",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Paper Backed Solid Vinyl Wallcoverings",
+      "Pink",
+      "Rich Woods",
+      "Rose",
+      "Rustic",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wallcoverings",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 34.29,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bosa-marina-rustic-plum-wood-grain-wbs-39640"
+  },
+  {
+    "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52449",
+    "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52449",
+    "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-52449-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730769",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Leed Walls",
+      "Living Room",
+      "Paper",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52449"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+    "title": "Chrysocolla - Purple Quartz | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dchy-562.jpg?v=1762290900",
+    "tags": [
+      "100% Vinyl",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Chrysocolla",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Digital Curated",
+      "Paper",
+      "Pink",
+      "Purple Quartz",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dchy-562-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sft-5013-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sft-5013-jpg",
+    "title": "Shift - Hazelnut | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5013.jpg?v=1762305714",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Hazelnut",
+      "RAMPART®",
+      "Shift",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5013-jpg"
+  },
+  {
+    "sku": "pleated-perfect-paradise-ppp-2637",
+    "handle": "pleated-perfect-paradise-ppp-2637",
+    "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2637-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729212",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Light Gray",
+      "Pleated Perfect Paradise",
+      "Stripe",
+      "Textured",
+      "vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 35.66,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2637"
+  },
+  {
+    "sku": "eur-80254-ncw4207-designer-wallcoverings-los-angeles",
+    "handle": "eur-80254-ncw4207-designer-wallcoverings-los-angeles",
+    "title": "Fontibre 01 - Neutral Beige Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fontibre_wp_main_05816e81-f879-4db1-a2ef-1e85be6416d6.webp?v=1738950177",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Burgundy",
+      "Burnt Orange",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Dining Room",
+      "English Country",
+      "Fontibre",
+      "Grandmillennial",
+      "Gray",
+      "Green",
+      "Leaf",
+      "Living Room",
+      "NCW4207",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Orange",
+      "Pale Beige",
+      "Paper",
+      "Pattern",
+      "Red",
+      "Sage Green",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80254-ncw4207-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "highlands-honeycomb-wood-weave-hlw-73135",
+    "handle": "highlands-honeycomb-wood-weave-hlw-73135",
+    "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-73135-sample-clean.jpg?v=1774483656",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Farmhouse",
+      "Faux Wood",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic Modern",
+      "Rustic",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 96.04,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/highlands-honeycomb-wood-weave-hlw-73135"
+  },
+  {
+    "sku": "versace-plain-glitter-white-cream-wallcovering-versace",
+    "handle": "versace-plain-glitter-white-cream-wallcovering-versace",
+    "title": "Versace Plain Glitter White, Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/f9027002e0b50bc987e02ec3dbe8beed.jpg?v=1773706477",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Cream Wallcovering",
+      "display_variant",
+      "Italian",
+      "Light Beige",
+      "Light Brown",
+      "Living Room",
+      "Luxury",
+      "Off-white",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain Glitter",
+      "Versace Plain Glitter White",
+      "Versace VI",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-glitter-white-cream-wallcovering-versace"
+  },
+  {
+    "sku": "eastport-pink-arabelle-stripe-wallpaper-cca-83142",
+    "handle": "eastport-pink-arabelle-stripe-wallpaper-cca-83142",
+    "title": "Eastport Pink Arabelle Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0458a86847527a683486ae127cd3aff5.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cotton",
+      "Cream",
+      "Damask",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eastport-pink-arabelle-stripe-wallpaper-cca-83142"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10405-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10405-jpg",
+    "title": "ST10405 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10404.jpg?v=1733872189",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Solid",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10405-jpg"
+  },
+  {
+    "sku": "peter-s-plastered-walls-ppw-2864",
+    "handle": "peter-s-plastered-walls-ppw-2864",
+    "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-2864-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729029",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 40.54,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2864"
+  },
+  {
+    "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47119",
+    "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47119",
+    "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-47119-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700182",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Ashbourne Type 2 Vinyl",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Ivory",
+      "Light Beige",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "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-47119"
+  },
+  {
+    "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48228",
+    "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48228",
+    "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-48228-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731056",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Office",
+      "Olive",
+      "Organic",
+      "Organic Modern",
+      "Rochester Type 2 Vinyl  Wallcovering",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48228"
+  },
+  {
+    "sku": "lafayette-modern-embossed-durable-walls-xwf-52251",
+    "handle": "lafayette-modern-embossed-durable-walls-xwf-52251",
+    "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-52251-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721075",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Brown",
+      "Living Room",
+      "Modern",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Single Dominant Background Color Word",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52251"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_tgm-5978-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_tgm-5978-jpg",
+    "title": "Tangram - Azure | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tgm-5978.jpg?v=1762311044",
+    "tags": [
+      "31% Polyester",
+      "69% Acrylic",
+      "Acrylic",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Geometric",
+      "Light Blue",
+      "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-5978-jpg"
+  },
+  {
+    "sku": "eur-80334-ncw4306-designer-wallcoverings-los-angeles",
+    "handle": "eur-80334-ncw4306-designer-wallcoverings-los-angeles",
+    "title": "Belle Ile Stripe 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_7513504546867.jpg?v=1775523446",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Belle Ile Stripe",
+      "Bohemian",
+      "Brown",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Contemporary",
+      "Geometric",
+      "Global",
+      "Hallway",
+      "LES REVES",
+      "Light Blue",
+      "Living Room",
+      "NCW4306",
+      "NCW4306-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Seafoam Green",
+      "Serene",
+      "Stripe",
+      "Takumi",
+      "Taupe",
+      "Textured",
+      "Turquoise",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80334-ncw4306-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "hollywood-skyline-xhw-201085",
+    "handle": "hollywood-skyline-xhw-201085",
+    "title": "Hollywood Skyline | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bentley-bespoke.jpg?v=1777480950",
+    "tags": [
+      "24.96 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Dark Brown",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Heavy Duty",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 24.96 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 62.77,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201085"
+  },
+  {
+    "sku": "rustic-glam-vinyl-gpr-76648",
+    "handle": "rustic-glam-vinyl-gpr-76648",
+    "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76648-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775732043",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Jade",
+      "Light Green",
+      "Pale Beige",
+      "Rustic",
+      "Seafoam",
+      "Serene",
+      "Stripe",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "USFCID#vp885-219",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 41.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76648"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm9505-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm9505-jpg",
+    "title": "SM9505 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9504.jpg?v=1733872522",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9505-jpg"
+  },
+  {
+    "sku": "frank-s-faux-finish-fff-2931",
+    "handle": "frank-s-faux-finish-fff-2931",
+    "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-2931-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714252",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial Elegance",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 36.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2931"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_fdn-5414-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_fdn-5414-jpg",
+    "title": "Foundation - Slate | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5414.jpg?v=1762294642",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Dark Gray",
+      "Foundation",
+      "Gray",
+      "Industrial",
+      "RAMPART®",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5414-jpg"
+  },
+  {
+    "sku": "terra-2022-beige-wallcovering-as-creation-1",
+    "handle": "terra-2022-beige-wallcovering-as-creation-1",
+    "title": "Terra 2022 - Beige Wallcovering | AS Creation",
+    "vendor": "AS Creation",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/75f7fccc85282ff2aa239899b9c6519f_a3406ec9-faab-4b9d-ae59-859adea8f996.jpg?v=1776187503",
+    "tags": [
+      "AS Creation",
+      "AS389312-0",
+      "Bathroom",
+      "Beige",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Deco / Motive",
+      "good light fastness",
+      "Hallway",
+      "Kitchen",
+      "Light Gray",
+      "Living",
+      "New Arrival",
+      "Non-woven",
+      "Residential",
+      "Sand",
+      "Scrubbable",
+      "Sleeping",
+      "Stone",
+      "Strippable means",
+      "Structures",
+      "Tan",
+      "Terra 2022",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/terra-2022-beige-wallcovering-as-creation-1"
+  },
+  {
+    "sku": "faux-leaf-squares-fls-2503",
+    "handle": "faux-leaf-squares-fls-2503",
+    "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-2503-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711865",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Commercial",
+      "Contemporary",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Industrial Elegance",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Serviceable Texture - Cleanable"
+    ],
+    "max_price": 34.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2503"
+  },
+  {
+    "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+    "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+    "title": "Barnard Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjp-47227-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702520",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "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\"",
+      "Wood",
+      "Wood Look",
+      "Yellow"
+    ],
+    "max_price": 52.78,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47227"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_srp-5300-jpg",
+    "title": "Sparta - Oak | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5300.jpg?v=1762309063",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Lattice",
+      "Oak",
+      "RAMPART®",
+      "Sparta",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5300-jpg"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72405",
+    "handle": "rivo-dulce-durable-vinyl-dur-72405",
+    "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72405-sample-clean.jpg?v=1774485400",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Chrome",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Taupe",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Rivo Dulce Durable Vinyl",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72405"
+  },
+  {
+    "sku": "world-map-grey-scale-colourway-small-mural-by-retro-walls-rtr-37219",
+    "handle": "world-map-grey-scale-colourway-small-mural-by-retro-walls-rtr-37219",
+    "title": "World Map - Grey Scale (colourway) Small Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/13482864d2f54f3e449b595245bcdc14.jpg?v=1572309701",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Gray",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Mural",
+      "Paper",
+      "Scenic",
+      "Traditional",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical",
+      "White"
+    ],
+    "max_price": 84,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/world-map-grey-scale-colourway-small-mural-by-retro-walls-rtr-37219"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ad10355-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad10355-jpg",
+    "title": "Ambient Design - AD10355 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10354.jpg?v=1733874078",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10355-jpg"
+  },
+  {
+    "sku": "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": "dwc-1001620",
+    "handle": "dwc-1001620",
+    "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_4693308932147.jpg?v=1775521166",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Geometric",
+      "NCW4307-04",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paper",
+      "Stripe",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001620"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52929",
+    "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52929",
+    "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-52929-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734521",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Pale Gray",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52929"
+  },
+  {
+    "sku": "eur-80267-ncw4272-designer-wallcoverings-los-angeles",
+    "handle": "eur-80267-ncw4272-designer-wallcoverings-los-angeles",
+    "title": "Pavilion Garden 01 - Midnight 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_7513501696051.jpg?v=1775523066",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Bird",
+      "Blue",
+      "Botanical",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "COROMANDEL",
+      "Dining Room",
+      "Light Blue",
+      "Living Room",
+      "Navy",
+      "NCW4272",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Pavilion",
+      "Pavilion Garden",
+      "Peacock",
+      "Scenic",
+      "Serene",
+      "Traditional",
+      "Tree",
+      "Wallcovering",
+      "Woman"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80267-ncw4272-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+    "handle": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+    "title": "Camila Moss Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f732d6dcd610b98c6c3fc5ab2da0a651.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Gold",
+      "Gray",
+      "LA Walls",
+      "Metallic",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-moss-modern-damask-wallpaper-wallpaper-cca-82844"
+  },
+  {
+    "sku": "ncw4303-01",
+    "handle": "ncw4303-01",
+    "title": "Les Rêves Camille Indigo/Blue - Cobalt 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_4497262018611.jpg?v=1775520250",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Lattice",
+      "NCW4303-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4303-01"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10214-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10214-jpg",
+    "title": "SP10214 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10212.jpg?v=1733872376",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Minimalist",
+      "Peach",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10214-jpg"
+  },
+  {
+    "sku": "benedict-canyon-sisal-hlw-73012",
+    "handle": "benedict-canyon-sisal-hlw-73012",
+    "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73012-sample-clean.jpg?v=1774483022",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "Living Room",
+      "Minimalist",
+      "Natural",
+      "Natural Texture",
+      "Naturally Glamorous",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Sisal",
+      "Textured",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 50.39,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73012"
+  },
+  {
+    "sku": "jolie-madam-wallpaper-xa1-66402",
+    "handle": "jolie-madam-wallpaper-xa1-66402",
+    "title": "Jolie Madam Wallcovering",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3fb79c28770fa2b8cf437ac60b61a0e3.jpg?v=1775119812",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Entryway",
+      "Gold",
+      "Grasscloth",
+      "Jolie Madam Wallcovering",
+      "Living Room",
+      "Office",
+      "Phillip Romano Commercial",
+      "Phillipe Romano",
+      "Phillipe Romano Vinyls",
+      "Stripe",
+      "Striped",
+      "Tan",
+      "Textural",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Vinyls",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 38.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66402"
+  },
+  {
+    "sku": "dig-326251-designerwallcoverings-com",
+    "handle": "dig-326251-designerwallcoverings-com",
+    "title": "Down in Egypt Land Traditional | Architectural Wallcoverings",
+    "vendor": "DW Bespoke Studio",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-326251-DesignerWallcoverings-Los-Angeles-1_5fc9f9f2-eed5-4e68-98f6-8e09aec46f5f.png?v=1756707154",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Ancient",
+      "Animal/Insects",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Bird",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Custom Wallcovering",
+      "Dark Brown",
+      "display_variant",
+      "Down in Egypt Land Traditional",
+      "DW Bespoke Studio",
+      "DW Bespoke Studios To Go",
+      "Hallway",
+      "Light Gray",
+      "Living Room",
+      "Organic",
+      "Paper",
+      "Scenic",
+      "Taupe",
+      "Texture",
+      "Traditional",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dig-326251-designerwallcoverings-com"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st9408-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st9408-jpg",
+    "title": "ST9408 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9407.jpg?v=1733872273",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Orange",
+      "Solid",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9408-jpg"
+  },
+  {
+    "sku": "susie-grey-chevron-wallpaper-cca-83037",
+    "handle": "susie-grey-chevron-wallpaper-cca-83037",
+    "title": "Susie Grey Chevron Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/108ec9c2241c4abc3ed0e1b3b8aeeeec.jpg?v=1572309966",
+    "tags": [
+      "Architectural",
+      "Chevron",
+      "Children",
+      "Commercial",
+      "Contemporary",
+      "Discontinued",
+      "Easy Walls",
+      "Geometric",
+      "Gray",
+      "Kids",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Strippable",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/susie-grey-chevron-wallpaper-cca-83037"
+  },
+  {
+    "sku": "dwkk-127818",
+    "handle": "dwkk-127818",
+    "title": "Pink Lotus Wp - Noir 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/W0132_03_CAC_cf7de0bf-1fe2-489c-b138-19d3c78eb386.jpg?v=1753321589",
+    "tags": [
+      "20.5In",
+      "Animal/Insects",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Bird",
+      "Botanical",
+      "Butterfly",
+      "Charcoal",
+      "Clarke & Clarke Botanical Wonders Wallcovering",
+      "Clarke And Clarke",
+      "Commercial",
+      "Contemporary",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Eclectic",
+      "Emerald Green",
+      "Floral",
+      "Flowers",
+      "Fuchsia",
+      "Green",
+      "Hummingbird",
+      "Leaves",
+      "Living Room",
+      "Noir",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Pattern",
+      "Pink",
+      "Pink Lotus Wp",
+      "Print",
+      "Tawny Brown",
+      "Tropical",
+      "United Kingdom",
+      "W0132/03.Cac.0",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127818"
+  },
+  {
+    "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": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907",
+    "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907",
+    "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52907-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734442",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Silver",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52907"
+  },
+  {
+    "sku": "maryport-type-ii-vinyl-wallcovering-xmp-48001",
+    "handle": "maryport-type-ii-vinyl-wallcovering-xmp-48001",
+    "title": "Maryport Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmp-48001-maryport-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775724374",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Maryport Type 2 Vinyl  Wallcovering",
+      "Modern",
+      "Office",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maryport-type-ii-vinyl-wallcovering-xmp-48001"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_em10290r-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_em10290r-jpg",
+    "title": "EM10290R | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10289r.jpg?v=1733873270",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "EM10290R",
+      "Paper",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10290r-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dnuv-512-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dnuv-512-jpg",
+    "title": "Digital Nouveau - Gunmetal | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dnuv-512.jpg?v=1762291227",
+    "tags": [
+      "100% Mylar",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Copper",
+      "Digital Curated",
+      "Digital Nouveau",
+      "Geometric",
+      "Gray",
+      "Lattice",
+      "Mylar",
+      "Orange",
+      "Paper",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dnuv-512-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp9508-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp9508-jpg",
+    "title": "SP9508 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9507.jpg?v=1733872415",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Red",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp9508-jpg"
+  },
+  {
+    "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": "vaticano-durable-vinyl-dur-72378",
+    "handle": "vaticano-durable-vinyl-dur-72378",
+    "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72378-sample-clean.jpg?v=1774485276",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Black",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Durable Type 2 Vinyl",
+      "Fretwork",
+      "Geometric",
+      "Glamorous",
+      "Gray",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Onyx",
+      "Sophisticated",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vaticano Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72378"
+  },
+  {
+    "sku": "ncw4351-01",
+    "handle": "ncw4351-01",
+    "title": "Les Indiennes Baville Red/Teal/Taupe - 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_4497263788083.jpg?v=1775520477",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Coral",
+      "Floral",
+      "NCW4351-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paisley",
+      "Paper",
+      "Pink",
+      "Teal",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4351-01"
+  },
+  {
+    "sku": "dwss-72729",
+    "handle": "dwss-72729",
+    "title": "Sophie spring green sample Wallcovering | Sandberg",
+    "vendor": "Sandberg",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/831-28_image1_24f1fa3b-b79d-49d3-8455-eaacaaf08c06.jpg?v=1646105220",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Botanical",
+      "Commercial",
+      "Floral",
+      "Gray",
+      "Green",
+      "Multi",
+      "P831-28",
+      "Paper",
+      "Pattern",
+      "Sandberg",
+      "Sandberg Wallcovering",
+      "Sophie",
+      "Sophie spring green  sample",
+      "SPRING GREEN",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwss-72729"
+  },
+  {
+    "sku": "anahi-neutral-forest-fauna-wallpaper-cca-82990",
+    "handle": "anahi-neutral-forest-fauna-wallpaper-cca-82990",
+    "title": "Anahi Neutral Forest Fauna Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0743eb597c19d2d13569381720a651ec.jpg?v=1572309964",
+    "tags": [
+      "Animal/Insects",
+      "Animals",
+      "Architectural",
+      "Arts & Crafts",
+      "Beige",
+      "Bird",
+      "Botanical",
+      "Commercial",
+      "Cream",
+      "Deer",
+      "Discontinued",
+      "Easy Walls",
+      "Fauna",
+      "Flowers",
+      "LA Walls",
+      "Paper",
+      "Phasing-2026-04",
+      "Prepasted",
+      "Rabbit",
+      "Series: Brewster",
+      "Strippable",
+      "Trees",
+      "Wallcovering",
+      "Washable",
+      "Whimsical",
+      "White",
+      "Wood",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 39.2,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/anahi-neutral-forest-fauna-wallpaper-cca-82990"
+  },
+  {
+    "sku": "eur-80403-ncw4393-designer-wallcoverings-los-angeles",
+    "handle": "eur-80403-ncw4393-designer-wallcoverings-los-angeles",
+    "title": "Benmore 04 - Brown Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506807859.jpg?v=1775523862",
+    "tags": [
+      "Architectural",
+      "ASHDOWN",
+      "Bedroom",
+      "Benmore",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Green",
+      "Hallway",
+      "Leaf",
+      "Living Room",
+      "NCW4393",
+      "NCW4393-04",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Non-woven",
+      "Organic Modern",
+      "Paper",
+      "Sage",
+      "Seafoam Green",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Tropical",
+      "Tropical Leaf",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80403-ncw4393-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwc-1001630",
+    "handle": "dwc-1001630",
+    "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_4693309489203.jpg?v=1775521230",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Almond",
+      "Arabesque",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Greige",
+      "Linen",
+      "NCW4350-06",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001630"
+  },
+  {
+    "sku": "ellsworth-espresso-sunny-stripe-wallpaper-cca-83149",
+    "handle": "ellsworth-espresso-sunny-stripe-wallpaper-cca-83149",
+    "title": "Ellsworth Espresso Sunny Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b068beeb5f88fec72e9720d6bf7f0675.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Country",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Paper",
+      "Prepasted",
+      "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/ellsworth-espresso-sunny-stripe-wallpaper-cca-83149"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47651",
+    "handle": "fairford-vinyl-wallcovering-xlb-47651",
+    "title": "Fairford Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47651-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711441",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Living Room",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47651"
+  },
+  {
+    "sku": "art-de-la-table-cream-linen-wallcovering-versace-2",
+    "handle": "art-de-la-table-cream-linen-wallcovering-versace-2",
+    "title": "Art De La Table Cream Linen Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/165648dcfb77c7878ba556b7f9c2686b.jpg?v=1773710522",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art De La Table",
+      "Art De La Table Cream Linen Wallcovering",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream Linen",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Luxury",
+      "Needs-Image",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/art-de-la-table-cream-linen-wallcovering-versace-2"
+  },
+  {
+    "sku": "rustic-glam-vinyl-gpr-76646",
+    "handle": "rustic-glam-vinyl-gpr-76646",
+    "title": "Rustic Glam Vinyl",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GPR-76646-sample-clean_9ab9284b-51a4-473c-9b21-c2c0691e4626.jpg?v=1774479053",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Bling",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Glass Bead",
+      "Gray",
+      "Grey",
+      "Hand Crafted",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Medium Grey",
+      "Minimalist",
+      "Modern",
+      "Moody",
+      "Mural",
+      "Office",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76646"
+  }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..5bf47da
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+  "name": "healthcarewallpaper",
+  "version": "0.1.0",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "healthcarewallpaper",
+      "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..0682038
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+  "name": "healthcarewallpaper",
+  "version": "0.1.0",
+  "description": "HEALTHCARE 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..88165ff
--- /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>HEALTHCARE WALLPAPER — Walls that heal</title>
+<meta name="description" content="HEALTHCARE WALLPAPER · Walls that heal. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a141a">
+<link rel="canonical" href="https://healthcarewallpaper.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: #0a141a;
+  --paper: #ffffff;
+  --muted: #80a0a8;
+  --line: rgba(255,255,255,0.10);
+  --accent: #80c8b8;
+  --bg-soft: #142028;
+  --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('hc_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">Class A Scrubbable</div>
+  <div class="center-mark">HEALTHCARE WALLPAPER<span class="tm">.</span><span class="sub">Walls that heal</span></div>
+  <div class="meta-line">Healthcare · Antimicrobial · Class A · Calming<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">Healthcare · Antimicrobial · Class A · Calming</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">HEALTHCARE WALLPAPER</div>
+      <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated healthcare · antimicrobial · class a · calming 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">healthcarewallpaper</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>healthcarewallpaper.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 = "healthcarewallpaper";
+  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('hc_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('hc_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('hc_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..06fb630
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * HEALTHCARE 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 || 9859;
+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: "Healthcare Wallpaper", zdColor: "#80c8b8", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "healthcarewallpaper" });
+
+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 = ["botanical","natural","abstract","calming","tropical","geometric"];
+  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://healthcarewallpaper.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://healthcarewallpaper.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(`healthcarewallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..67cee8c
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+  "slug": "healthcarewallpaper",
+  "siteName": "Healthcare Wallpaper",
+  "domain": "healthcarewallpaper.com",
+  "nicheKeyword": "healthcare",
+  "tagline": "Antimicrobial, scrubbable, healthcare-grade.",
+  "heroHeadline": "HEALTHCARE WALLPAPER",
+  "heroSub": "Antimicrobial, scrubbable, healthcare-grade.",
+  "theme": {
+    "accent": "#80c8b8"
+  },
+  "rails": [
+    "antimicrobial",
+    "type-ii",
+    "hospital",
+    "clinic",
+    "wipe-clean",
+    "calm"
+  ],
+  "port": 9859
+}

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