[object Object]

← back to Metallicwallpaper

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

71bb8a4c9ce629155573560782ac8d5edabe9792 · 2026-05-06 10:25:42 -0700 · Steve Abrams

Files touched

Diff

commit 71bb8a4c9ce629155573560782ac8d5edabe9792
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed May 6 10:25:42 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    | 11129 ++++++++++++++++++++++++++++++++++++++++++++++++
 package-lock.json     |   852 ++++
 package.json          |    13 +
 public/favicon.svg    |     4 +
 public/hero-bg.jpg    |   Bin 0 -> 82737 bytes
 public/index.html     |   613 +++
 server.js             |   110 +
 site.config.json      |    21 +
 11 files changed, 13050 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..f6dce1c
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,11129 @@
+[
+  {
+    "sku": "palazzo-lane-wood-metal-chevron-hlw-73065",
+    "handle": "palazzo-lane-wood-metal-chevron-hlw-73065",
+    "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73065-sample-clean.jpg?v=1774483302",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Faux Wood",
+      "Gray",
+      "Grey",
+      "Herringbone",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Palazzo Lane",
+      "Serene",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 31.09,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73065"
+  },
+  {
+    "sku": "bellevue-gilded-durable-walls-xww-52991",
+    "handle": "bellevue-gilded-durable-walls-xww-52991",
+    "title": "Bellevue Gilded Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gilded-pretty_penny.jpg?v=1777480736",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Orange",
+      "Solid",
+      "Textured",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellevue-gilded-durable-walls-xww-52991"
+  },
+  {
+    "sku": "versace-medals-colorful-metallic-wallcovering-versace",
+    "handle": "versace-medals-colorful-metallic-wallcovering-versace",
+    "title": "Versace Medals Colorful, Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1dc3167f1f2f38b43c1a57090aaabb58.jpg?v=1773706439",
+    "tags": [
+      "A.S. Création",
+      "Animal/Insects",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Beige",
+      "Black",
+      "Blue",
+      "Butterfly",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Colorful",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Geometric",
+      "Glamorous",
+      "Gold",
+      "Gray",
+      "Haute Couture",
+      "Italian",
+      "Light Blue",
+      "Light Pink",
+      "Living Room",
+      "Luxurious",
+      "Luxury",
+      "Maximalist",
+      "Medallion",
+      "Multi",
+      "Navy",
+      "Navy Blue",
+      "Off-white",
+      "Paste the wall",
+      "Purple",
+      "Red",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Medals",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 407.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-medals-colorful-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-lake.jpg?v=1777480706",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Pale Gold",
+      "Serene",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834"
+  },
+  {
+    "sku": "dwtt-72147-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72147-designer-wallcoverings-los-angeles",
+    "title": "Andros Metallic Silver on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3683.jpg?v=1733892632",
+    "tags": [
+      "Aqua",
+      "Architectural",
+      "beige",
+      "Coastal",
+      "Grasscloth Resource 2",
+      "gray",
+      "light brown",
+      "Pattern",
+      "T3683",
+      "tan",
+      "Texture",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72147-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71765-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71765-designer-wallcoverings-los-angeles",
+    "title": "Bahia Metallic Gold on Navy | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T35141.jpg?v=1762233465",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Floral",
+      "Graphic Resource",
+      "Navy",
+      "navy blue",
+      "Pattern",
+      "T35141",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71765-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_am11390-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_am11390-jpg",
+    "title": "AMBIENT METALLIC | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/am11390.jpg?v=1762358658",
+    "tags": [
+      "AMBIENT METALLIC",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Khaki",
+      "Metallic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_am11390-jpg"
+  },
+  {
+    "sku": "palazzo-lane-wood-metal-chevron-hlw-73144",
+    "handle": "palazzo-lane-wood-metal-chevron-hlw-73144",
+    "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73144-sample-clean.jpg?v=1774483714",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Faux Wood",
+      "Gray",
+      "Green",
+      "Grey",
+      "Herringbone",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Mustard Yellow",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Olive Green",
+      "Organic Modern",
+      "Palazzo Lane",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wood",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73144"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kam-5098-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kam-5098-jpg",
+    "title": "Kami - Copper | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5098.jpg?v=1762298243",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "contemporary",
+      "Contract",
+      "Copper",
+      "geometric",
+      "Kami",
+      "Metallic",
+      "Orange",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5098-jpg"
+  },
+  {
+    "sku": "regal-lattice-screen-printed-wallpaper-tre-12907",
+    "handle": "regal-lattice-screen-printed-wallpaper-tre-12907",
+    "title": "Regal Lattice - Screen Printed Wallcovering",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3547fe79068d43fd86725b501b7c7f01.jpg?v=1572309178",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gray",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Screen Print",
+      "Silver",
+      "Stripe",
+      "Suede",
+      "Textured",
+      "Trellis",
+      "Wallcovering"
+    ],
+    "max_price": 142.16,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12907"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53414",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53414",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-nirvana_77d42fee-4ea4-416a-8df0-b8f93771bc61.jpg?v=1777481245",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53414"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73086",
+    "handle": "zebra-drive-metal-and-wood-hlw-73086",
+    "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-73086-sample-clean.jpg?v=1774483420",
+    "tags": [
+      "abstract",
+      "Animal Print",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Dark Brown",
+      "Faux Wood",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "stripe",
+      "Taupe",
+      "textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73086"
+  },
+  {
+    "sku": "dwtt-71284-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71284-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83037_b6aa921a-3c8e-4062-8eaa-e8c5bbc1c988.jpg?v=1733894297",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "gold",
+      "light blue",
+      "Metallic Gold on Aqua",
+      "Natural Resource 2",
+      "Pattern",
+      "T83037",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71284-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71230-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71230-designer-wallcoverings-los-angeles",
+    "title": "Passaro Damask Cream on Metallic Metallic Gold on Red | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t34038.jpg?v=1775149519",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "gold",
+      "Metallic Gold on Red",
+      "Pattern",
+      "red",
+      "T89142",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71230-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71302-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71302-designer-wallcoverings-los-angeles",
+    "title": "Taza Cork Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83001_ab908039-016b-4359-a652-319b40583b1b.jpg?v=1733894256",
+    "tags": [
+      "Architectural",
+      "brown",
+      "Geometric",
+      "gold",
+      "light blue",
+      "Metallic Gold on Aqua",
+      "Natural Resource 2",
+      "Pattern",
+      "T83001",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71302-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "regal-lattice-screen-printed-wallpaper-tre-12908",
+    "handle": "regal-lattice-screen-printed-wallpaper-tre-12908",
+    "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/09620171f63a6edf9af7fcb2057d1f67.jpg?v=1572309178",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gold",
+      "Gray",
+      "Lattice",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Screen Print",
+      "Suede",
+      "Textured",
+      "Trellis",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 99.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12908"
+  },
+  {
+    "sku": "dwtt-71555-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71555-designer-wallcoverings-los-angeles",
+    "title": "Caravan Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T64150_f72993b5-b117-4f92-9068-5461fb60775c.jpg?v=1733893852",
+    "tags": [
+      "Architectural",
+      "Caravan",
+      "Geometric",
+      "gold",
+      "Metallic Gold",
+      "Pattern",
+      "T64150",
+      "Thibaut",
+      "Transitional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71555-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72148-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72148-designer-wallcoverings-los-angeles",
+    "title": "Andros Metallic Silver on Cream | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3684.jpg?v=1733892629",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Coastal",
+      "Cream",
+      "Grasscloth Resource 2",
+      "light brown",
+      "Pattern",
+      "T3684",
+      "Texture",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72148-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71781-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71781-designer-wallcoverings-los-angeles",
+    "title": "Taza Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T35173.jpg?v=1762233746",
+    "tags": [
+      "Architectural",
+      "Graphic Resource",
+      "gray",
+      "light gray",
+      "Metallic Silver",
+      "Pattern",
+      "Scenic",
+      "silver",
+      "T35173",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71781-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+    "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52674-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726364",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "Leed Walls",
+      "Metallic",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52674"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44444",
+    "handle": "franko-faux-metallic-patina-ffm-44444",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44444-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714289",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Dark Gray",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44444"
+  },
+  {
+    "sku": "dwkk-130210",
+    "handle": "dwkk-130210",
+    "title": "W4134-4 Gold | Kravet Design | Blooms Second Edition Resource Library | Botanical & Floral Metallic Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4134_4_06b3eee6-05ad-4017-90da-69c363df90e2.jpg?v=1753321116",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blooms Second Edition Resource Library",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Gold",
+      "Khaki",
+      "Kravet",
+      "Kravet Design",
+      "Light Grey",
+      "Living Room",
+      "Non Woven - 100%",
+      "Non-woven",
+      "Off White",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "United States",
+      "W4134-4",
+      "W4134.4.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-130210"
+  },
+  {
+    "sku": "dwtt-71281-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71281-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Metallic Gold on Charcoal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83034_4a2142ac-1ceb-4231-8e15-644f10e6919d.jpg?v=1733894303",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "gold",
+      "gray",
+      "Metallic Gold on Charcoal",
+      "Natural Resource 2",
+      "Pattern",
+      "T83034",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71281-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-128366",
+    "handle": "dwkk-128366",
+    "title": "W3492-4 Gold | Kravet Design | Candice Olson Collection |Metallic Texture Wallcovering Grasscloth",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_4_b77b537b-aaf4-43ae-8664-b3f0d93abf70.jpg?v=1753122296",
+    "tags": [
+      "36In",
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Candice Olson Collection",
+      "Color: Gold",
+      "Commercial",
+      "Contemporary",
+      "Cork - 100%",
+      "Dining Room",
+      "display_variant",
+      "Eclectic",
+      "Glamorous",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Korea",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Metallic Foil",
+      "Natural Wallcovering",
+      "Republic Of",
+      "Rustic",
+      "Silver",
+      "Solid",
+      "Texture",
+      "Textured",
+      "W3492-4",
+      "W3492.4.0",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128366"
+  },
+  {
+    "sku": "dwtt-71978-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71978-designer-wallcoverings-los-angeles",
+    "title": "Wallcoverings Natural | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10060_cf532b0a-d446-4aae-90c4-29401cc089ea.jpg?v=1733893030",
+    "tags": [
+      "Bedroom",
+      "Beige",
+      "Calm",
+      "Damask",
+      "Dining Room",
+      "Gold",
+      "Grasscloth",
+      "Ivory",
+      "Living Room",
+      "Medium Scale",
+      "Metallic",
+      "Natural",
+      "Pattern",
+      "REVIEW",
+      "Sophisticated",
+      "T10060",
+      "Thibaut",
+      "Thibaut Wallcoverings",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71978-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44448",
+    "handle": "franko-faux-metallic-patina-ffm-44448",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44448-sample-clean_c18c0ba6-4cfe-4586-b06b-250faaaeb39d.jpg?v=1774479148",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Farmhouse",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Rustic",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44448"
+  },
+  {
+    "sku": "medusa-circle-metallic-silver-black-wallcovering-versace",
+    "handle": "medusa-circle-metallic-silver-black-wallcovering-versace",
+    "title": "Medusa Circle Metallic Silver, Black Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ab99ad0518c19edaebd29790d8549cfe.jpg?v=1773706338",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Black Wallcovering",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Dining Room",
+      "display_variant",
+      "Geometric",
+      "Glamorous",
+      "Gray",
+      "Italian",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Medallion",
+      "Medusa Circle Metallic",
+      "Medusa Circle Metallic Silver",
+      "Paste the wall",
+      "Silver",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/medusa-circle-metallic-silver-black-wallcovering-versace"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73085",
+    "handle": "zebra-drive-metal-and-wood-hlw-73085",
+    "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-73085-sample-clean.jpg?v=1774483412",
+    "tags": [
+      "abstract",
+      "Animal Print",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Faux Wood",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Sage Green",
+      "stripe",
+      "textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73085"
+  },
+  {
+    "sku": "dwtt-71799-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71799-designer-wallcoverings-los-angeles",
+    "title": "Taza Metallic Silver on Metallic Gold on Beige | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35167_ef5d7213-6ebe-4369-a42f-26545378002f.jpg?v=1733893380",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Graphic Resource",
+      "Metallic Gold on Beige",
+      "off-white",
+      "Pattern",
+      "T35167",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71799-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "nassau-gold-latte",
+    "handle": "nassau-gold-latte",
+    "title": "Nappa - Metallic - Latte 100% SIlicone | Philippe Romano Wallcoverings",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Latte.jpg?v=1772569957",
+    "tags": [
+      "Antimicrobial-Free",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Bleach Cleanable",
+      "Brown",
+      "BS 5852 Crib 5",
+      "CA TB 117 Compliant",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "DMF-Free",
+      "Fabric",
+      "Fine",
+      "Fine Grain",
+      "FR Additives Free",
+      "Graffiti-Free",
+      "Grain",
+      "Green Building",
+      "Hallway",
+      "Healthcare",
+      "Hospitality",
+      "IMO 8.2 & 8.3 Certified",
+      "IMO Marine Grade",
+      "Indoor/Outdoor",
+      "Latte",
+      "LEED Compatible",
+      "Living Room",
+      "Minimalist",
+      "Multi-Purpose",
+      "MVSS-302 Automotive",
+      "Neutral Tone",
+      "NFPA 260 Compliant",
+      "PFAS-Free",
+      "Phillipe Romano",
+      "Serene",
+      "Silicone",
+      "Soft",
+      "Solid",
+      "Subtle Texture",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nassau-gold-latte"
+  },
+  {
+    "sku": "velluto-wheat-metallic-grasscloth-wallcovering-fentucci",
+    "handle": "velluto-wheat-metallic-grasscloth-wallcovering-fentucci",
+    "title": "Velluto Wheat Metallic Grasscloth Wallcovering | Fentucci",
+    "vendor": "Fentucci",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26570.jpg?v=1776879780",
+    "tags": [
+      "Fentucci",
+      "Grasscloth",
+      "Metallic",
+      "new-onboard",
+      "sample-only",
+      "Texture",
+      "Velluto",
+      "Wallcovering",
+      "Wheat"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/velluto-wheat-metallic-grasscloth-wallcovering-fentucci"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53417",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53417",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-salt_glow.jpg?v=1777480840",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic",
+      "Organic Modern",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53417"
+  },
+  {
+    "sku": "dwtt-71290-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71290-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Metallic Gold and White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T83041.jpg?v=1776160027",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Metallic Gold and White",
+      "Natural Resource 2",
+      "Pattern",
+      "Stripe",
+      "T83041",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71290-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72251-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72251-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7601.jpg?v=1733892408",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 3",
+      "gold",
+      "gray",
+      "Metallic Gold",
+      "Pattern",
+      "T7601",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72251-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-123875",
+    "handle": "dwkk-123875",
+    "title": "Wild Garden Metallic - 1 Bronze | Kravet Design | Lizzo | Botanical & Floral Metallic Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/LZW-30196_01_METAL_9439cd80-8f3f-438f-ba39-430d0e0c1cb8.jpg?v=1753290950",
+    "tags": [
+      "107.1In",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Botanical & Floral",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "display_variant",
+      "Gold",
+      "Kravet",
+      "Kravet Design",
+      "Lizzo",
+      "Lzw-30196.01 Metal.0",
+      "Murals / Panels",
+      "Natural Products - 60%;Synthetic - 40%",
+      "Paper",
+      "Print",
+      "Spain",
+      "Texture",
+      "Traditional",
+      "Wallcovering",
+      "White",
+      "Wild Garden Metallic",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-123875"
+  },
+  {
+    "sku": "dwtt-71519-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71519-designer-wallcoverings-los-angeles",
+    "title": "Farris Metallic Gold on Charcoal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11026_be83ef4c-9fa7-400b-85b2-64f04f8bcf52.jpg?v=1733893922",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Geometric Resource 2",
+      "gold",
+      "gray",
+      "Metallic Gold on Charcoal",
+      "Pattern",
+      "T11026",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71519-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71758-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71758-designer-wallcoverings-los-angeles",
+    "title": "Dedalo Metallic Gold on Coral | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35146_590fad8f-4251-42af-9161-fc642a26faad.jpg?v=1733893464",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "coral",
+      "Geometric",
+      "gold",
+      "Graphic Resource",
+      "Metallic Gold on Coral",
+      "Pattern",
+      "T35146",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71758-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72252-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72252-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7602.jpg?v=1733892406",
+    "tags": [
+      "Architectural",
+      "black",
+      "Damask",
+      "Damask Resource 3",
+      "Metallic Silver",
+      "Pattern",
+      "silver",
+      "T7602",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72252-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73078",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73078",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73078-sample-clean.jpg?v=1774483371",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Office",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "textured",
+      "Wallcovering",
+      "Wood"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73078"
+  },
+  {
+    "sku": "dwtt-71248-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71248-designer-wallcoverings-los-angeles",
+    "title": "Herringbone Weave Metallic Gold on Blue | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83023_66302992-8b6d-4101-8a8f-adc6be90cf9d.jpg?v=1733894375",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "gold",
+      "light blue",
+      "Metallic Gold on Blue",
+      "Natural Resource 2",
+      "Pattern",
+      "T83023",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71248-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837",
+    "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-hillside_villa.jpg?v=1777480719",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Champagne",
+      "Chataqua Metallic Contemporary Durable Vinyl",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Seagreen",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Sage Green",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837"
+  },
+  {
+    "sku": "dwtt-71282-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71282-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83035_2a34d0cf-ebc6-4827-a11f-931ec4fe7a1b.jpg?v=1733894301",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "gold",
+      "gray",
+      "Metallic Silver",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83035",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71282-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "nautilus-by-innovations-usa-dwc-nautilus-2",
+    "handle": "nautilus-by-innovations-usa-dwc-nautilus-2",
+    "title": "Nautilus | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Nautilus-2.jpg?v=1736198902",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84",
+      "Avocado",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Foil",
+      "Gold",
+      "Innovations USA",
+      "Light Gray",
+      "Metal Leaf",
+      "Metallic",
+      "Moss",
+      "Nautilus",
+      "Nautilus-2",
+      "Textured",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nautilus-by-innovations-usa-dwc-nautilus-2"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-dust_storm.jpg?v=1777480669",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Silver",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52796"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mru-3296_8-jpg",
+    "title": "Marlu - Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3296_8.jpg?v=1762301619",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Geometric",
+      "Gray",
+      "Marlu",
+      "Metallic",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3296_8-jpg"
+  },
+  {
+    "sku": "spalt-by-innovations-usa-dwc-spalt-2",
+    "handle": "spalt-by-innovations-usa-dwc-spalt-2",
+    "title": "Spalt | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Spalt-2.jpg?v=1736199103",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Innovations USA",
+      "Metallic",
+      "Silver",
+      "Spalt-2",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/spalt-by-innovations-usa-dwc-spalt-2"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73077",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73077",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73077-sample-clean.jpg?v=1774483366",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cork",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73077"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5021m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5021m-jpg",
+    "title": "Ballari Mylar - Copper | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5021M.jpg?v=1762288193",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Copper",
+      "Gray",
+      "Industrial",
+      "Metallic",
+      "Mylar",
+      "Orange",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5021m-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": "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": "faux-wild-rice-fwr-9373",
+    "handle": "faux-wild-rice-fwr-9373",
+    "title": "Faux Wild Rice | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwr-9373-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712096",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Black",
+      "Commercial",
+      "Commercial - Cleanable",
+      "Contemporary",
+      "Elegant Vinyls Vol. 1",
+      "Faux Finish",
+      "Gold",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Metallic",
+      "Textured",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 36.73,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9373"
+  },
+  {
+    "sku": "dwtt-71778-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71778-designer-wallcoverings-los-angeles",
+    "title": "La Farge Metallic Silver on Green | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35202_815cf2f8-dbc1-4064-b8dc-10ce4057fd51.jpg?v=1733893420",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Geometric",
+      "Graphic Resource",
+      "Green",
+      "light green",
+      "Pattern",
+      "T35202",
+      "Thibaut",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71778-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm8004-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm8004-jpg",
+    "title": "SOLID METAL | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sm8004.jpg?v=1762358735",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Solid",
+      "SOLID METAL",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8004-jpg"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838",
+    "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-silver_and_gold.jpg?v=1777480713",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Chataqua Metallic Contemporary Durable Vinyl",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58159-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725544",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Black",
+      "Charcoal",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Dark Brown",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Light Grey",
+      "Metallic",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Office",
+      "Solid",
+      "Sophisticated",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Width",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58159"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-cliffside_castle.jpg?v=1777480696",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Grasscloth",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Living Room",
+      "Medium Gray",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52827"
+  },
+  {
+    "sku": "dwtt-72107-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72107-designer-wallcoverings-los-angeles",
+    "title": "Petite Diamond Metallic Gold on Camel | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1813.jpg?v=1733892732",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Geometric Resource",
+      "gold",
+      "Metallic Gold on Camel",
+      "Pattern",
+      "T1813",
+      "Thibaut",
+      "Traditional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72107-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "immersion-by-innovations-usa-dwc-immersion-1",
+    "handle": "immersion-by-innovations-usa-dwc-immersion-1",
+    "title": "Immersion | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-1.jpg?v=1736199381",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Gold",
+      "Immersion-1",
+      "Innovations USA",
+      "Metallic",
+      "Paper",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/immersion-by-innovations-usa-dwc-immersion-1"
+  },
+  {
+    "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": "dwtt-71235-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71235-designer-wallcoverings-los-angeles",
+    "title": "Rowan Damask Metallic Gold on Champagne Pearl | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89129_368b9b1f-aa7f-4659-8224-c73707a99fe9.jpg?v=1733894409",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Champagne Pearl",
+      "Damask",
+      "Damask Resource 4",
+      "off-white",
+      "Pattern",
+      "T89129",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71235-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58166-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725720",
+    "tags": [
+      "54\" Width",
+      "Animal",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Coastal",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Cream",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Insects",
+      "Light Beige",
+      "Linen Texture",
+      "Living Room",
+      "Metallic",
+      "Minimalist",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Sand",
+      "Serene",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Width",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58166"
+  },
+  {
+    "sku": "glamly-metal-on-vinyl-gpr-76622",
+    "handle": "glamly-metal-on-vinyl-gpr-76622",
+    "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-76622-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714726",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Glamorous",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Regencycore",
+      "Solid",
+      "Teal",
+      "Textured",
+      "Traditional",
+      "USFCID#vp860-079",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 64.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76622"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ad9512-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ad9512-jpg",
+    "title": "Ambient Metallic - AD9512 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9511.jpg?v=1733874142",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Metallic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9512-jpg"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58161-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725591",
+    "tags": [
+      "54\" Width",
+      "Animal",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Insects",
+      "Light Brown",
+      "Linen Texture",
+      "Living Room",
+      "Metallic",
+      "Minimalist",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Serene",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58161"
+  },
+  {
+    "sku": "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": "freeport-metallic-contemporary-durable-walls-xwt-53416",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53416",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-henna.jpg?v=1777480840",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Hollywood Wallcoverings",
+      "Leaf",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53416"
+  },
+  {
+    "sku": "immersion-by-innovations-usa-dwc-immersion-3",
+    "handle": "immersion-by-innovations-usa-dwc-immersion-3",
+    "title": "Immersion | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-3.jpg?v=1736199378",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "ASTM E84",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Gray",
+      "Immersion-3",
+      "Innovations USA",
+      "Metallic",
+      "textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/immersion-by-innovations-usa-dwc-immersion-3"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-bronze_age.jpg?v=1777480703",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832"
+  },
+  {
+    "sku": "dwtt-72299-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72299-designer-wallcoverings-los-angeles",
+    "title": "T7617 Aqua on Metallic | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7617.jpg?v=1733892330",
+    "tags": [
+      "Aqua on Metallic",
+      "Architectural",
+      "Damask",
+      "gold",
+      "light green",
+      "Pattern",
+      "T7617",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72299-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "glamly-metal-on-vinyl-gpr-76619",
+    "handle": "glamly-metal-on-vinyl-gpr-76619",
+    "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-76619-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714640",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Stucco",
+      "Taupe",
+      "Textured",
+      "USFCID#vp860-019",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 64.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76619"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44446",
+    "handle": "franko-faux-metallic-patina-ffm-44446",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44446-sample-clean_b994ce49-b6a3-4862-a0a6-b4a03085f301.jpg?v=1774479137",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Silver",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44446"
+  },
+  {
+    "sku": "dwtt-71699-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71699-designer-wallcoverings-los-angeles",
+    "title": "Halie Circle Grey with Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36176_faa9f65a-1889-4208-b813-036084856800.jpg?v=1733893589",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Chinoiserie",
+      "Enchantment",
+      "Floral",
+      "gold",
+      "Grey with Metallic Gold",
+      "Pattern",
+      "T36176",
+      "taupe",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71699-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "nassau-gold-ermine",
+    "handle": "nassau-gold-ermine",
+    "title": "Nappa - Metallic - Ermine 100% SIlicone | Philippe Romano Wallcoverings",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Ermine.jpg?v=1772569954",
+    "tags": [
+      "Antimicrobial-Free",
+      "Architectural",
+      "Bedroom",
+      "Bleach Cleanable",
+      "Brown",
+      "BS 5852 Crib 5",
+      "CA TB 117 Compliant",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "DMF-Free",
+      "Fabric",
+      "FR Additives Free",
+      "Graffiti-Free",
+      "Green Building",
+      "Hallway",
+      "Healthcare",
+      "Hospitality",
+      "IMO 8.2 & 8.3 Certified",
+      "IMO Marine Grade",
+      "Indoor/Outdoor",
+      "LEED Compatible",
+      "Living Room",
+      "Matte",
+      "Minimalist",
+      "Multi-Purpose",
+      "Mushroom",
+      "Muted",
+      "MVSS-302 Automotive",
+      "Neutral Tones",
+      "NFPA 260 Compliant",
+      "PFAS-Free",
+      "Phillipe Romano",
+      "Rustic",
+      "Serene",
+      "Silicone",
+      "Solid",
+      "Solid Color",
+      "Stone",
+      "Subtle",
+      "Subtle Texture",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nassau-gold-ermine"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5025m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5025m-jpg",
+    "title": "Ballari Mylar - Turquoise | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5025M.jpg?v=1762288343",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Gray",
+      "Metallic",
+      "Multi",
+      "Mylar",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5025m-jpg"
+  },
+  {
+    "sku": "dwtt-71782-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71782-designer-wallcoverings-los-angeles",
+    "title": "Allison Aqua on Metallic Navy | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35175_55050295-431a-4636-96c1-32d5cab9fffb.jpg?v=1733893412",
+    "tags": [
+      "Architectural",
+      "blue",
+      "Graphic Resource",
+      "light blue",
+      "Navy",
+      "Pattern",
+      "Scenic",
+      "T35175",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71782-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lost-adventure-quartz-wp-clarke-and-clarke",
+    "handle": "lost-adventure-quartz-wp-clarke-and-clarke",
+    "title": "Lost Adventure Quartz Wp | Clarke and Clarke",
+    "vendor": "Clarke and Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0201_02_CAC.jpg?v=1776818912",
+    "tags": [
+      "abstract",
+      "Clarke and Clarke",
+      "Kravet",
+      "metallic",
+      "mineral",
+      "New Arrival",
+      "Origin: United Kingdom",
+      "Print",
+      "quartz",
+      "textured",
+      "Wallcovering"
+    ],
+    "max_price": 1313.55,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lost-adventure-quartz-wp-clarke-and-clarke"
+  },
+  {
+    "sku": "dwtt-72109-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72109-designer-wallcoverings-los-angeles",
+    "title": "Prescott Metallic on Taupe | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1870.jpg?v=1733892727",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Geometric",
+      "Geometric Resource",
+      "gold",
+      "Metallic on Taupe",
+      "Modern",
+      "Pattern",
+      "T1870",
+      "taupe",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72109-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71314-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71314-designer-wallcoverings-los-angeles",
+    "title": "Tiger Flock Black on Metallic Metallic on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83066_2b9a757e-6fcd-431b-a9e2-f2be075c1afb.jpg?v=1733894236",
+    "tags": [
+      "Abstract",
+      "aqua",
+      "Architectural",
+      "Contemporary",
+      "gold",
+      "Metallic on Aqua",
+      "Natural Resource 2",
+      "Pattern",
+      "T83066",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71314-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52677",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52677",
+    "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-52677-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726381",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Estimated Type: Grasscloth",
+      "Geometric",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Navy",
+      "Office",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52677"
+  },
+  {
+    "sku": "dwtt-71181-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71181-designer-wallcoverings-los-angeles",
+    "title": "Sierra Metallic Silver on Metallic Silver on Soft Blue | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4006_12476f97-5f54-4d9f-871b-1f039a273853.jpg?v=1733894533",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Contemporary",
+      "Geometric",
+      "Light Blue",
+      "Metallic Silver on Soft Blue",
+      "Pattern",
+      "Silver",
+      "Surface Resource",
+      "T4006",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71181-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+    "title": "Rossana - True Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ros-4146.jpg?v=1762304939",
+    "tags": [
+      "100% Mylar",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Metallic",
+      "Mylar",
+      "Rossana",
+      "Silver",
+      "Textured",
+      "True Silver",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ros-4146-jpg"
+  },
+  {
+    "sku": "immersion-by-innovations-usa-dwc-immersion-6",
+    "handle": "immersion-by-innovations-usa-dwc-immersion-6",
+    "title": "Immersion | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-6.jpg?v=1736199375",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Immersion-6",
+      "Innovations USA",
+      "Metallic",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/immersion-by-innovations-usa-dwc-immersion-6"
+  },
+  {
+    "sku": "dwtt-72285-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72285-designer-wallcoverings-los-angeles",
+    "title": "Medici Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7698.jpg?v=1733892358",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 3",
+      "gray",
+      "Metallic Silver",
+      "Pattern",
+      "silver",
+      "T7698",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72285-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-airglow_5ee96262-b47b-45e1-8092-fcd0c54474ed.jpg?v=1777481242",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802"
+  },
+  {
+    "sku": "dwtt-71263-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71263-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Taupe | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83043_b2ab3079-3983-477c-8fbe-b55d57c075e1.jpg?v=1733894338",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Natural Resource 2",
+      "Pattern",
+      "Stripe",
+      "T83043",
+      "taupe",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71263-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44445",
+    "handle": "franko-faux-metallic-patina-ffm-44445",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44445-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714293",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Charcoal",
+      "Dark Gray",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44445"
+  },
+  {
+    "sku": "dwtt-72176-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72176-designer-wallcoverings-los-angeles",
+    "title": "Rush Cloth Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3694.jpg?v=1733892562",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Grasscloth Resource 2",
+      "light brown",
+      "Metallic Gold",
+      "Pattern",
+      "T3694",
+      "tan",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72176-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+    "title": "Glasgow - Copper | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5383.jpg?v=1762296706",
+    "tags": [
+      "100% Vinyl",
+      "abstract",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "contemporary",
+      "Contract",
+      "Copper",
+      "geometric",
+      "Glasgow",
+      "Gray",
+      "Metallic",
+      "Orange",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5383-jpg"
+  },
+  {
+    "sku": "dwtt-71227-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71227-designer-wallcoverings-los-angeles",
+    "title": "Passaro Damask Cream on Metallic Metallic Pewter on Seafoam | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89137_60779c72-5f5b-40c5-b3a3-50029d9fae1d.jpg?v=1733894429",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "Metallic Pewter on Seafoam",
+      "Pattern",
+      "seafoam green",
+      "T89137",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71227-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73076",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73076",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73076-sample-clean.jpg?v=1774483358",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Wood",
+      "Floral",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain",
+      "Yellow"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73076"
+  },
+  {
+    "sku": "dwtt-71237-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71237-designer-wallcoverings-los-angeles",
+    "title": "Rowan Damask Metallic Gold on Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89131.jpg?v=1762227979",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Color: Gold",
+      "Damask",
+      "Damask Resource 4",
+      "Dining Room",
+      "Floral",
+      "gold",
+      "Grandmillennial",
+      "Living Room",
+      "Luxe",
+      "Metallic Gold on Silver",
+      "Off-white",
+      "Paper",
+      "Pattern",
+      "Rowan Damask",
+      "Rowan Damask Metallic Gold on",
+      "Silver",
+      "Sophisticated",
+      "T89131",
+      "Thibaut",
+      "Traditional",
+      "Wallcovering",
+      "white",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71237-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm8005-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm8005-jpg",
+    "title": "SOLID METAL | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sm8005.jpg?v=1762358770",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gold",
+      "Metallic",
+      "Solid",
+      "SOLID METAL",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8005-jpg"
+  },
+  {
+    "sku": "butterflies-flowers-metallic-pink-wallcovering-versace",
+    "handle": "butterflies-flowers-metallic-pink-wallcovering-versace",
+    "title": "Butterflies & Flowers Metallic, Pink Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0f23d24281d3015c2c8e13f3038cdc8d.jpg?v=1773706292",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Baroque",
+      "Bedroom",
+      "Blush",
+      "Butterflies & Flowers",
+      "Butterflies & Flowers Metallic",
+      "Butterfly",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cottagecore",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Gold",
+      "Grandmillennial",
+      "Green",
+      "Italian",
+      "Ladybug",
+      "Light Pink",
+      "Living Room",
+      "Luxury",
+      "Maximalist",
+      "Multi",
+      "Olive Green",
+      "Orchid",
+      "Paper",
+      "Paste the wall",
+      "Pink",
+      "Pink Wallcovering",
+      "Playful",
+      "Purple",
+      "Red",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vine",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/butterflies-flowers-metallic-pink-wallcovering-versace"
+  },
+  {
+    "sku": "dwtt-71206-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71206-designer-wallcoverings-los-angeles",
+    "title": "Pravata Damask Sienna on Metallic Silver on Tan | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89174_01ea5eef-fe47-4b07-8513-a6dec717dc46.jpg?v=1733894481",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "light blue-gray",
+      "Metallic Silver on Tan",
+      "Pattern",
+      "T89174",
+      "tan",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71206-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-128368",
+    "handle": "dwkk-128368",
+    "title": "W3492-6 Bronze | Kravet Design | Candice Olson Collection |Metallic Texture Wallcovering Grasscloth",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_6_b9ea4082-3b1c-4754-bb88-2982fcf8605a.jpg?v=1753122290",
+    "tags": [
+      "36In",
+      "Abstract",
+      "Antique Gold",
+      "Architectural",
+      "Bedroom",
+      "Candice Olson Collection",
+      "Color: Gold",
+      "Commercial",
+      "Contemporary",
+      "Cork",
+      "Cork - 100%",
+      "Dark Bronze",
+      "Dining Room",
+      "display_variant",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Korea",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Luxe",
+      "Natural Wallcovering",
+      "Organic Modern",
+      "Pale Gold",
+      "Republic Of",
+      "Rustic",
+      "Texture",
+      "Textured",
+      "W3492-6",
+      "W3492.6.0",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128368"
+  },
+  {
+    "sku": "dwtt-71891-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71891-designer-wallcoverings-los-angeles",
+    "title": "Bankun Raffia Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14133_4c7f877f-862f-42f4-b61e-e442603c9189.jpg?v=1733893191",
+    "tags": [
+      "Architectural",
+      "beige",
+      "gold",
+      "Metallic Gold",
+      "Pattern",
+      "T14133",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71891-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "camila-purple-modern-damask-wallpaper-wallpaper-cca-82841",
+    "handle": "camila-purple-modern-damask-wallpaper-wallpaper-cca-82841",
+    "title": "Camila Purple Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2bd0521a9c326717b2be9a7208ac5bf5_6b4ab5cc-72ea-4cbd-817d-decf3e308a55.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "Gray",
+      "LA Walls",
+      "Metallic",
+      "Modern",
+      "Prepasted",
+      "Purple",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-purple-modern-damask-wallpaper-wallpaper-cca-82841"
+  },
+  {
+    "sku": "dwtt-71304-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71304-designer-wallcoverings-los-angeles",
+    "title": "Taza Cork Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83003_4b075f5e-12f6-454b-afab-05ab28db302d.jpg?v=1733894252",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "gold",
+      "Metallic Gold",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83003",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71304-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72119-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72119-designer-wallcoverings-los-angeles",
+    "title": "Wilton Trellis Metallic Gold and Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1845.jpg?v=1733892701",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Geometric Resource",
+      "gold",
+      "grey",
+      "Metallic Gold and Grey",
+      "Pattern",
+      "T1845",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72119-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52680",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52680",
+    "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52680-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726391",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Estimated Type: Vinyl",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Blue",
+      "Living Room",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52680"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-sky.jpg?v=1777480665",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Blue",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Pale Blue",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52795"
+  },
+  {
+    "sku": "dwtt-72537-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72537-designer-wallcoverings-los-angeles",
+    "title": "Shangri-la Metallic Gold and Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6832.jpg?v=1775153701",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "gold",
+      "Metallic Gold and Silver",
+      "Pattern",
+      "Shangri-La",
+      "T8665",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72537-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71225-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71225-designer-wallcoverings-los-angeles",
+    "title": "Passaro Damask Cream on Metallic Beige | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89135_02e246d3-5124-4cef-984e-81e436103c56.jpg?v=1733894434",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "off-white",
+      "Pattern",
+      "T89135",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71225-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44441",
+    "handle": "franko-faux-metallic-patina-ffm-44441",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44441-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714279",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Taupe",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Organic",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44441"
+  },
+  {
+    "sku": "dwtt-71478-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71478-designer-wallcoverings-los-angeles",
+    "title": "Trelawny Damask Metallic Pewter | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14209_f456b79f-628c-4191-9fe8-76404dc36ac1.jpg?v=1733893988",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Chinoiserie",
+      "gray",
+      "Imperial Garden",
+      "Metallic Pewter",
+      "Pattern",
+      "Scenic",
+      "T14209",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71478-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "plain-metallic-cream-wallcovering-versace",
+    "handle": "plain-metallic-cream-wallcovering-versace",
+    "title": "Plain Metallic Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a17946b4e7dcb5bb005bd1ea4feceddb_dc2d0d0f-f9ea-4b12-bdcc-7e40e06c71ab.jpg?v=1773706489",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Glamorous",
+      "Gold",
+      "Haute Couture",
+      "Hotel Lobby",
+      "Italian",
+      "Light Beige",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Metallic Foil",
+      "Paper",
+      "Paste the wall",
+      "Plain Metallic",
+      "Plain Metallic Cream Wallcovering",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/plain-metallic-cream-wallcovering-versace"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836",
+    "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-lemon_lime.jpg?v=1777480710",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Pale Gold",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836"
+  },
+  {
+    "sku": "versace-plain-textured-metallic-grey-wallcovering-versace",
+    "handle": "versace-plain-textured-metallic-grey-wallcovering-versace",
+    "title": "Plain Textured Metallic Grey Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/577ff399af5d2ac334ed70e0e366c169.jpg?v=1773706499",
+    "tags": [
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Glamorous",
+      "Gray",
+      "Hotel Lobby",
+      "Italian",
+      "Light Gray",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Metallic Grey",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain Textured",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-textured-metallic-grey-wallcovering-versace"
+  },
+  {
+    "sku": "crushed-costoluto-vinyl-dwx-58010",
+    "handle": "crushed-costoluto-vinyl-dwx-58010",
+    "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-58010-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709699",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Crushed",
+      "Dark Gold",
+      "Gold",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Neutral",
+      "Organic",
+      "Sophisticated",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58010"
+  },
+  {
+    "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": "dwtt-72297-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72297-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Metallic on Sage | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7614.jpg?v=1733892334",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 3",
+      "gray",
+      "Metallic on Sage",
+      "Pattern",
+      "T7614",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72297-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71757-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71757-designer-wallcoverings-los-angeles",
+    "title": "Bahia Metallic Gold on Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35144_6dbe5e19-7f3c-4ec9-8978-784a24cbf7da.jpg?v=1733893466",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Geometric",
+      "gold",
+      "Graphic Resource",
+      "light blue",
+      "Metallic Gold on Aqua",
+      "Pattern",
+      "T35144",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71757-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72172-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72172-designer-wallcoverings-los-angeles",
+    "title": "Ramie Bay Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3636.jpg?v=1733892569",
+    "tags": [
+      "Architectural",
+      "Grasscloth Resource 2",
+      "Metallic Gold",
+      "Pattern",
+      "T3636",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72172-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_am10331-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_am10331-jpg",
+    "title": "Ambient Metallic | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/am10331.jpg?v=1762285264",
+    "tags": [
+      "Abstract",
+      "Ambient Metallic",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Metallic",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_am10331-jpg"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52681",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52681",
+    "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-52681-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726394",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Champagne",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Energetic",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Paper",
+      "Red",
+      "Textured",
+      "Tomato Red",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52681"
+  },
+  {
+    "sku": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+    "handle": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+    "title": "Camila Silver Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bc6114cf3f8763c3a886d89ebab27e3.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "LA Walls",
+      "Light Blue",
+      "Metallic",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Takumi",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-silver-modern-damask-wallpaper-wallpaper-cca-82848"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kbt-5126-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kbt-5126-jpg",
+    "title": "Kabuto - Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5126.jpg?v=1762298936",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gold",
+      "Gray",
+      "Industrial",
+      "Kabuto",
+      "Metallic",
+      "Mylar",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5126-jpg"
+  },
+  {
+    "sku": "dwtt-72164-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72164-designer-wallcoverings-los-angeles",
+    "title": "Natural Metal White Light Brown | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3654.jpg?v=1733892588",
+    "tags": [
+      "Architectural",
+      "beige",
+      "brown",
+      "Grasscloth Resource 2",
+      "Light Brown",
+      "Pattern",
+      "Solid",
+      "T3654",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72164-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52679",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52679",
+    "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52679-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726387",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Silver",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52679"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73081",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73081",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73081-sample-clean.jpg?v=1774483389",
+    "tags": [
+      "Architectural",
+      "Black",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Dining Room",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Geometric",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Rustic",
+      "Textured",
+      "Tile",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73081"
+  },
+  {
+    "sku": "dwtt-72385-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72385-designer-wallcoverings-los-angeles",
+    "title": "Klein Trellis Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6065.jpg?v=1733892251",
+    "tags": [
+      "Anniversary",
+      "Architectural",
+      "beige",
+      "black",
+      "brown",
+      "green",
+      "Metallic Gold",
+      "Paisley",
+      "Pattern",
+      "red",
+      "T6065",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72385-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71251-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71251-designer-wallcoverings-los-angeles",
+    "title": "Herringbone Weave Metallic Silver on Navy | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83026_32c09274-1e1d-4ce9-85f8-7314560fdbe5.jpg?v=1733894367",
+    "tags": [
+      "Architectural",
+      "blue",
+      "Geometric",
+      "Metallic Silver on Navy",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83026",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71251-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72158-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72158-designer-wallcoverings-los-angeles",
+    "title": "Natural Metal Grey Metal Straw | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3648.jpg?v=1733892607",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Coastal",
+      "cream",
+      "Grasscloth Resource 2",
+      "light yellow",
+      "Metal Straw",
+      "Pattern",
+      "Stripe",
+      "T3648",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72158-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71253-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71253-designer-wallcoverings-los-angeles",
+    "title": "Carolyn Trellis Cream on Beige with Metallic | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83031_bd20d347-681d-4676-931c-966dd8dbad52.jpg?v=1733894361",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Beige with Metallic",
+      "cream",
+      "Geometric",
+      "Natural Resource 2",
+      "Pattern",
+      "T83031",
+      "Texture",
+      "Thibaut",
+      "Transitional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71253-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73074",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73074",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73074-sample-clean.jpg?v=1774483348",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Taupe",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Organic Modern",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73074"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73082",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73082",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73082-sample-clean.jpg?v=1774483394",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Burgundy",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Estimated Type: Wood Grain",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Lodge",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Red",
+      "Rustic",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73082"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-blue_bellini.jpg?v=1777480710",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gold",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Navy",
+      "Office",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52835"
+  },
+  {
+    "sku": "dwtt-71288-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71288-designer-wallcoverings-los-angeles",
+    "title": "Ceriman Paperweave Silver on Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83014_74b857d6-82c4-4801-b955-045e89829917.jpg?v=1733894285",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "gray",
+      "light gray",
+      "Metallic Silver",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83014",
+      "taupe",
+      "Texture",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71288-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "medusa-gold-metallic-wallcovering-versace",
+    "handle": "medusa-gold-metallic-wallcovering-versace",
+    "title": "Medusa Gold Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a40cae9bdce70c5d7e8bff58ed6ae602.jpg?v=1773706350",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Goldenrod",
+      "Hotel Lobby",
+      "Italian",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Maximalist",
+      "Medusa Gold",
+      "Medusa Gold Metallic Wallcovering",
+      "Mustard Yellow",
+      "Paste the wall",
+      "Solid",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut Brown"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/medusa-gold-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+    "title": "Mass - Lake | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mass-5779.jpg?v=1762300233",
+    "tags": [
+      "23% Nylon",
+      "36% Wool",
+      "37% Cotton",
+      "4% Polyester",
+      "Abstract",
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Cotton",
+      "Lake",
+      "Mass",
+      "Metallic",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mass-5779-jpg"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44439",
+    "handle": "franko-faux-metallic-patina-ffm-44439",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44439-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714276",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bathroom",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Organic Modern",
+      "Serene",
+      "Silver",
+      "Taupe",
+      "Textured",
+      "Tile",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44439"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5015m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5015m-jpg",
+    "title": "Ballari Mylar - Buff | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5015M.jpg?v=1762287971",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Metallic",
+      "Mylar",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5015m-jpg"
+  },
+  {
+    "sku": "constantino-crackle-vinyl-dwx-58078",
+    "handle": "constantino-crackle-vinyl-dwx-58078",
+    "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-58078-sample-constantino-crackle-vinyl-hollywood-wallcoverings.jpg?v=1775708783",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Crackle",
+      "Distressed",
+      "Gold",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Neutral",
+      "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-58078"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44443",
+    "handle": "franko-faux-metallic-patina-ffm-44443",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44443-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714286",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44443"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5019m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5019m-jpg",
+    "title": "Ballari Mylar - Gold Luster | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5019M.jpg?v=1762288122",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Gold Luster",
+      "Metallic",
+      "Mylar",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5019m-jpg"
+  },
+  {
+    "sku": "glyph-by-innovations-usa-dwc-glyph-6",
+    "handle": "glyph-by-innovations-usa-dwc-glyph-6",
+    "title": "Glyph | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-6.jpg?v=1736199454",
+    "tags": [
+      "Architectural",
+      "ASTM E84",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Glyph-6",
+      "Gray",
+      "Innovations USA",
+      "Metallic",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 3.5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-6"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-dark_leather.jpg?v=1777480706",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Champagne",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44449",
+    "handle": "franko-faux-metallic-patina-ffm-44449",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44449-sample-clean_c5e4b00e-f761-45fa-ac93-62e323088f14.jpg?v=1774479152",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Black",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Black",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Moody",
+      "Onyx",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44449"
+  },
+  {
+    "sku": "dwtt-72038-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72038-designer-wallcoverings-los-angeles",
+    "title": "Seagreens Metallic on Blue | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T5776_f4451d5a-b211-4a25-b1a6-740c199fa40a.jpg?v=1733892915",
+    "tags": [
+      "Architectural",
+      "Biscayne",
+      "Blue",
+      "Botanical",
+      "Coastal",
+      "light blue",
+      "Pattern",
+      "T5776",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72038-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71554-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71554-designer-wallcoverings-los-angeles",
+    "title": "Caravan Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T64149_51f6cd98-6839-47af-8dcb-5cfc8e7b5236.jpg?v=1733893854",
+    "tags": [
+      "Architectural",
+      "Caravan",
+      "Geometric",
+      "gray",
+      "Metallic Silver",
+      "Pattern",
+      "silver",
+      "T64149",
+      "Thibaut",
+      "Transitional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71554-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-cappuccino.jpg?v=1777480703",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58162-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725617",
+    "tags": [
+      "54\" Width",
+      "Animal",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Cream",
+      "Ecru",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Insects",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Metallic",
+      "Minimalist",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Off-white",
+      "Organic Modern",
+      "Pale Blue",
+      "Pale Grey",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58162"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_grv-2902_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_grv-2902_8-jpg",
+    "title": "Grove - Nickel | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2902_8.jpg?v=1762296600",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Grove",
+      "Metallic",
+      "Nickel",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2902_8-jpg"
+  },
+  {
+    "sku": "dwkk-130136",
+    "handle": "dwkk-130136",
+    "title": "W4120-5 Blue | Kravet Design | New Origins |Metallic Stripes Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4120_5_83e0531b-7384-400a-ab5d-c8ba996366cf.jpg?v=1753321267",
+    "tags": [
+      "27In",
+      "Abstract",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Denim Blue",
+      "display_variant",
+      "Kravet",
+      "Kravet Design",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "New Origins",
+      "Non Woven - 100%",
+      "Non-Woven",
+      "Office",
+      "Print",
+      "Serene",
+      "Stripe",
+      "Stripes",
+      "Texture",
+      "Textured",
+      "United States",
+      "Vinyl",
+      "W4120-5",
+      "W4120.5.0",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-130136"
+  },
+  {
+    "sku": "dwtt-71298-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71298-designer-wallcoverings-los-angeles",
+    "title": "Wallcoverings Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83020_0405cee7-a5ad-46c1-a4cc-00253b2691f6.jpg?v=1733894266",
+    "tags": [
+      "Abstract",
+      "Contemporary",
+      "Dining Room",
+      "Energetic",
+      "Entryway",
+      "Gold",
+      "Living Room",
+      "Metallic",
+      "Metallic Gold",
+      "Non-Woven",
+      "Pattern",
+      "REVIEW",
+      "Small Scale",
+      "Sophisticated",
+      "T83020",
+      "Thibaut",
+      "Thibaut Wallcoverings",
+      "Wallcovering",
+      "Wallcoverings",
+      "Warm Gold"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71298-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_gsg9-5384-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_gsg9-5384-jpg",
+    "title": "Glasgow - Gold | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5384.jpg?v=1762296743",
+    "tags": [
+      "100% Vinyl",
+      "abstract",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "contemporary",
+      "Contract",
+      "geometric",
+      "Glasgow",
+      "Gold",
+      "Metallic",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5384-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br013-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br013-jpg",
+    "title": "Burnished Metallic | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/br013.jpg?v=1762288841",
+    "tags": [
+      "Architectural",
+      "Bronze",
+      "Brown",
+      "Burnished Metallic",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Industrial",
+      "Metallic",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br013-jpg"
+  },
+  {
+    "sku": "bellevue-gilded-durable-walls-xww-52992",
+    "handle": "bellevue-gilded-durable-walls-xww-52992",
+    "title": "Bellevue Gilded Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gilded-silver_city.jpg?v=1777480739",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellevue-gilded-durable-walls-xww-52992"
+  },
+  {
+    "sku": "always-room-for-ice-cream-small-mural-by-retro-walls-rtr-37217",
+    "handle": "always-room-for-ice-cream-small-mural-by-retro-walls-rtr-37217",
+    "title": "Always Room For Ice Cream Small Mural by Retro Walls",
+    "vendor": "Traditional Whimsy",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/02e8544327c89298ec5a27a291006a75.jpg?v=1572309701",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Green",
+      "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+      "Ice Cream Cone",
+      "Metallic",
+      "Multi",
+      "Mural",
+      "Paper",
+      "Pink",
+      "Retro",
+      "Textured",
+      "Traditional Whimsy",
+      "Wallcovering",
+      "Whimsical"
+    ],
+    "max_price": 84,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/always-room-for-ice-cream-small-mural-by-retro-walls-rtr-37217"
+  },
+  {
+    "sku": "dwtt-71316-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71316-designer-wallcoverings-los-angeles",
+    "title": "Tiger Flock Black on Metallic Pearl and Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83068_e4c668e8-c220-4325-a2ee-c8bf6f8081e9.jpg?v=1733894232",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "beige",
+      "Contemporary",
+      "Natural Resource 2",
+      "Pattern",
+      "Pearl and Silver",
+      "silver",
+      "T83068",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71316-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "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": "dwtt-72536-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72536-designer-wallcoverings-los-angeles",
+    "title": "Shangri-la Metallic on Slate | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6847.jpg?v=1775153819",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "light blue",
+      "Metallic on Slate",
+      "Pattern",
+      "Shangri-La",
+      "T8663",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72536-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71265-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71265-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Navy | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83045_4089e4e6-a6b2-408f-9e7a-f50df4ac5b71.jpg?v=1733894334",
+    "tags": [
+      "Architectural",
+      "gray",
+      "Natural Resource 2",
+      "Navy",
+      "navy blue",
+      "Pattern",
+      "Stripe",
+      "T83045",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71265-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71800-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71800-designer-wallcoverings-los-angeles",
+    "title": "Taza Metallic Silver on Coral | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t24133.jpg?v=1775148904",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Coral",
+      "Geometric",
+      "Graphic Resource",
+      "Pattern",
+      "T35168",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71800-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kbt-5127-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kbt-5127-jpg",
+    "title": "Kabuto - Amazonite | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5127.jpg?v=1762298972",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Amazonite",
+      "Architectural",
+      "Black",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Kabuto",
+      "Metallic",
+      "Mylar",
+      "Teal",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5127-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sm8003-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sm8003-jpg",
+    "title": "SOLID METAL | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sm8003.jpg?v=1762358695",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Solid",
+      "SOLID METAL",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8003-jpg"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+    "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52682-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726398",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Sophisticated",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52682"
+  },
+  {
+    "sku": "dwtt-72292-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72292-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Metallic Pearl on White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7634.jpg?v=1733892345",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 3",
+      "light gray",
+      "Metallic Pearl on White",
+      "Pattern",
+      "T7634",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72292-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58164-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725666",
+    "tags": [
+      "54\" Width",
+      "Animal",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Embossed Texture",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Insects",
+      "Light Gray",
+      "Living Room",
+      "Metallic",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Teal",
+      "Textured",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wide Width",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58164"
+  },
+  {
+    "sku": "dwtt-71209-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71209-designer-wallcoverings-los-angeles",
+    "title": "Curtis Damask Metallic Gold on White and Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89117_05824b42-6a54-44fb-862b-3f45bf733ee8.jpg?v=1733894474",
+    "tags": [
+      "Architectural",
+      "brown",
+      "Damask",
+      "Damask Resource 4",
+      "Pattern",
+      "sage green",
+      "silver",
+      "T89117",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white",
+      "White and Silver"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71209-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71222-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71222-designer-wallcoverings-los-angeles",
+    "title": "Clessidra Metallic Gold on Smoke | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89155_8d8d9ee8-d5ac-4525-9de1-0cc7efe25fc7.jpg?v=1733894442",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "gray",
+      "Pattern",
+      "Smoke",
+      "T89155",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71222-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53412",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53412",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53412-sample-freeport-metallic-contemporary-durable-hollywood-wallcoverings.jpg?v=1775714301",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53412"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+    "title": "Metamorphosis - Silver | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-576.jpg?v=1762301094",
+    "tags": [
+      "39% Polyester",
+      "61% Olefin",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Metallic",
+      "Metamorphosis",
+      "Olefin",
+      "Silver",
+      "Textile",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-576-jpg"
+  },
+  {
+    "sku": "mica-madness-real-cork-chip-wallpapers-mic-98624",
+    "handle": "mica-madness-real-cork-chip-wallpapers-mic-98624",
+    "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/747552c419b9120a603da7474b097fae.jpg?v=1775083068",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Commercial",
+      "Contemporary",
+      "Cork",
+      "Gray",
+      "Light Blue",
+      "Living Room",
+      "Metallic",
+      "Mica",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Naturals",
+      "Office",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Silver",
+      "Textural",
+      "Textured",
+      "Wallcovering",
+      "White",
+      "Wuhan Woven Wallcovering"
+    ],
+    "max_price": 34.12,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98624"
+  },
+  {
+    "sku": "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": "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": "dwtt-71776-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71776-designer-wallcoverings-los-angeles",
+    "title": "La Farge Metallic Silver on Orange | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35200_39d07af2-65b2-4a2c-9e48-6e497c012cd6.jpg?v=1733893424",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Geometric",
+      "Graphic Resource",
+      "Orange",
+      "Pattern",
+      "T35200",
+      "Thibaut",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71776-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72188-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72188-designer-wallcoverings-los-angeles",
+    "title": "Stablewood Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3615.jpg?v=1733892527",
+    "tags": [
+      "Architectural",
+      "beige",
+      "brown",
+      "Coastal",
+      "gold",
+      "Grasscloth Resource 2",
+      "Metallic Gold",
+      "Pattern",
+      "T3615",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72188-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br10303-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br10303-jpg",
+    "title": "Burnished Metallic | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/br10303.jpg?v=1762289352",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Burnished Metallic",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Industrial",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br10303-jpg"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58156",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58156",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58156-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725462",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "Gray",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Gray",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Striped",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58156"
+  },
+  {
+    "sku": "ncw4308-04",
+    "handle": "ncw4308-04",
+    "title": "Les Rêves Portavo Coral/Ivory - Orange Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263198259.jpg?v=1775520432",
+    "tags": [
+      "Architectural",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial",
+      "Coral",
+      "Geometric",
+      "Metallic",
+      "NCW4308-04",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Pink",
+      "Silver",
+      "Wallcovering",
+      "Wallcoverings",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4308-04"
+  },
+  {
+    "sku": "dwtt-72150-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72150-designer-wallcoverings-los-angeles",
+    "title": "Andros Metallic Silver on Light Brown | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwtt-72150-designer-wallcoverings-los-angeles-swatch-spin.gif?v=1771174422",
+    "tags": [
+      "Architectural",
+      "beige",
+      "brown",
+      "Grasscloth Resource 2",
+      "Light Brown",
+      "Pattern",
+      "T3686",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72150-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-80999-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-80999-designer-wallcoverings-los-angeles",
+    "title": "Charlotte Raffia Black and Metallic Silver Wallcovering",
+    "vendor": "Anna French",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Nara-CharlotteRaffiaWP-01-GCR.jpg?v=1770341584",
+    "tags": [
+      "AT9842",
+      "Bedroom",
+      "Black",
+      "Calm",
+      "Charcoal",
+      "Charlotte Geomteric Fret Natural Raffia",
+      "Charlotte Geomteric Fret Natural Raffia Black",
+      "Contemporary",
+      "Cool Gray",
+      "Dining Room",
+      "Dove Gray",
+      "Elegant",
+      "Entryway",
+      "Geometric",
+      "Ivory",
+      "Light Gray",
+      "Living Room",
+      "Medium Gray",
+      "Medium Scale",
+      "Metallic",
+      "Metallic Silver",
+      "Modern",
+      "Nara",
+      "Neutral",
+      "Off-White",
+      "Office",
+      "Pattern",
+      "Pewter",
+      "Powder Room",
+      "Refined",
+      "Silver",
+      "Sophisticated",
+      "Thibaut Wallcovering",
+      "Transitional",
+      "Wallcovering",
+      "Warm Gray"
+    ],
+    "max_price": 215.02,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-80999-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71292-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71292-designer-wallcoverings-los-angeles",
+    "title": "Highline Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83059_ab6a52e4-bcec-4dc8-ae64-fccace30e410.jpg?v=1733894277",
+    "tags": [
+      "Architectural",
+      "beige",
+      "gold",
+      "light brown",
+      "Metallic Gold",
+      "Natural Resource 2",
+      "Pattern",
+      "Stripe",
+      "T83059",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71292-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "regal-lattice-screen-printed-wallpaper-tre-12905",
+    "handle": "regal-lattice-screen-printed-wallpaper-tre-12905",
+    "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/9ccc6e8f1d2d741b91faf46f439bd12f.jpg?v=1572309178",
+    "tags": [
+      "Architectural",
+      "Art Deco",
+      "Beige",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Geometric",
+      "Gold",
+      "Lattice",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Screen Print",
+      "Suede",
+      "Textured",
+      "Trellis",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 99.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12905"
+  },
+  {
+    "sku": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+    "handle": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+    "title": "Versace Metallic Stripe Cream, Grey Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9652f61a0ded456208a3f8dd4d527555.jpg?v=1773706443",
+    "tags": [
+      "A.S. Création",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Paste the wall",
+      "Serene",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Metallic Stripe",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-metallic-stripe-cream-grey-wallcovering-versace"
+  },
+  {
+    "sku": "dwtt-72051-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72051-designer-wallcoverings-los-angeles",
+    "title": "Curtis Linen Metallic Gold on Natural | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1004_01c69d83-2991-4fe1-b35a-d5f0379a2122.jpg?v=1733892893",
+    "tags": [
+      "Architectural",
+      "beige",
+      "cream",
+      "Damask",
+      "Menswear Resource",
+      "Metallic Gold on Natural",
+      "Pattern",
+      "T1004",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72051-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71986-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71986-designer-wallcoverings-los-angeles",
+    "title": "Downing Gate Metallic Gold on Bark | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10046_081e13f8-f2ba-45c5-83c7-69a9ca79b21f.jpg?v=1733893017",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "gold",
+      "Metallic Gold on Bark",
+      "Neutral Resource",
+      "Pattern",
+      "T10046",
+      "Thibaut",
+      "Transitional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71986-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+    "handle": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+    "title": "Camila Light Blue Modern Damask Wallcovering Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6c08383b1e77c931a2bcfe945ac409bb.jpg?v=1572309957",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Damask",
+      "Damasks",
+      "Discontinued",
+      "Easy Walls",
+      "Floral",
+      "LA Walls",
+      "Light Blue",
+      "Metallic",
+      "Modern",
+      "Prepasted",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847"
+  },
+  {
+    "sku": "dwtt-72138-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72138-designer-wallcoverings-los-angeles",
+    "title": "Antilles Weave Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3674.jpg?v=1733892654",
+    "tags": [
+      "Architectural",
+      "black",
+      "brown",
+      "gold",
+      "Grasscloth Resource 2",
+      "Metallic Gold",
+      "Pattern",
+      "T3674",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72138-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "palazzo-lane-wood-metal-chevron-hlw-73064",
+    "handle": "palazzo-lane-wood-metal-chevron-hlw-73064",
+    "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73064-sample-clean.jpg?v=1774483296",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Faux Wood",
+      "Geometric",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic",
+      "Palazzo Lane",
+      "Stripe",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 31.09,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73064"
+  },
+  {
+    "sku": "ncw4356-01",
+    "handle": "ncw4356-01",
+    "title": "Les Indiennes Fortoiseau Ivory/Gold - 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_4497265066035.jpg?v=1775520640",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Bird",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Fauna",
+      "Gold",
+      "Metallic",
+      "NCW4356-01",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4356-01"
+  },
+  {
+    "sku": "dwtt-72274-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72274-designer-wallcoverings-los-angeles",
+    "title": "Medici Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7665.jpg?v=1733892378",
+    "tags": [
+      "Architectural",
+      "brown",
+      "Damask",
+      "Damask Resource 3",
+      "gold",
+      "Metallic Gold",
+      "Pattern",
+      "T7665",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72274-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwkk-128161",
+    "handle": "dwkk-128161",
+    "title": "W3289-4 Gold | Kravet Design | Grasscloth Iii |Check/Houndstooth Metallic Wallcovering",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3289_4_1495b53c-ed35-41ce-9f24-95d4ce724801.jpg?v=1753292819",
+    "tags": [
+      "36In",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Check/Houndstooth",
+      "China",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "grasscloth",
+      "Grasscloth Iii",
+      "Grasscloth Texture",
+      "Grasscloth Weave",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Lattice",
+      "Light Gray",
+      "Living Room",
+      "Paper - 100%",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "W3289",
+      "W3289-4",
+      "W3289.4.0",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-128161"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-pagoda.jpg?v=1777480833",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53413"
+  },
+  {
+    "sku": "dwkk-g5c51fc4a",
+    "handle": "dwkk-g5c51fc4a",
+    "title": "W3723-4 Gold | 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/W3723_4_b0a8d57b-5e2b-4e81-826b-7e386c8a0fd6.jpg?v=1753292060",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "display_variant",
+      "Geometric",
+      "Gold",
+      "Kravet",
+      "Kravet Design",
+      "Metallic",
+      "Paper - 100%",
+      "Print",
+      "Ronald Redding",
+      "Textured",
+      "United States",
+      "Vinyl",
+      "W3723-4",
+      "W3723.4.0",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g5c51fc4a"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5020m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5020m-jpg",
+    "title": "Ballari Mylar - Bronze | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5020M.jpg?v=1762288157",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Black",
+      "Bronze",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gray",
+      "Industrial",
+      "Metallic",
+      "Mylar",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5020m-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_bbo-4954-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_bbo-4954-jpg",
+    "title": "Bilbao - Yellow Gold | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bbo-4954.jpg?v=1762287433",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Bilbao",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gold",
+      "Metallic",
+      "Mylar",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow",
+      "Yellow Gold"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_bbo-4954-jpg"
+  },
+  {
+    "sku": "dwtt-71636-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71636-designer-wallcoverings-los-angeles",
+    "title": "Maze Grasscloth Metallic Silver on Taupe | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T41198_064e13fe-492d-4303-a649-3bd59dbd9b68.jpg?v=1733893681",
+    "tags": [
+      "Architectural",
+      "beige",
+      "cream",
+      "Geometric",
+      "Grasscloth Resource 3",
+      "Metallic Silver on Taupe",
+      "Pattern",
+      "T41198",
+      "taupe",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71636-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58167",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58167",
+    "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-58167-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724195",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Horizontal",
+      "Hospitality",
+      "Light Beige",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58167"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53411",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53411",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-dojo.jpg?v=1777480833",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Off-white",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53411"
+  },
+  {
+    "sku": "dwtt-71315-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71315-designer-wallcoverings-los-angeles",
+    "title": "Tiger Flock Black on Metallic Metallic on Bark | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83067_7e26abf2-29ed-4465-a78e-df06bd3af892.jpg?v=1733894234",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Contemporary",
+      "gold",
+      "gray",
+      "Metallic on Bark",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83067",
+      "taupe",
+      "Texture",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71315-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-70842-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-70842-designer-wallcoverings-los-angeles",
+    "title": "Echo Metallic Silver on White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10453_0df3b535-113e-423f-a9dd-d549f196cdde.jpg?v=1733895243",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "contemporary",
+      "Metallic Silver on White",
+      "Modern Resource 2",
+      "Pattern",
+      "silver",
+      "stripe",
+      "T10453",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-70842-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "palazzo-lane-wood-metal-chevron-hlw-73145",
+    "handle": "palazzo-lane-wood-metal-chevron-hlw-73145",
+    "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73145-sample-clean.jpg?v=1774483719",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Wood",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Palazzo Lane",
+      "Sophisticated",
+      "Tan",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Wood"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73145"
+  },
+  {
+    "sku": "dwtt-71202-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71202-designer-wallcoverings-los-angeles",
+    "title": "Ashley Metallic Silver on Pearl | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89172_95b5fb1a-0f81-47af-8d3f-f49dd6734536.jpg?v=1733894490",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "off-white",
+      "Pattern",
+      "Pearl",
+      "T89172",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71202-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72391-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72391-designer-wallcoverings-los-angeles",
+    "title": "Braxton Texture Metallic on Brown | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6026.jpg?v=1733892238",
+    "tags": [
+      "Anniversary",
+      "Architectural",
+      "brown",
+      "Damask",
+      "gold",
+      "Metallic on Brown",
+      "Pattern",
+      "T6026",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72391-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71751-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71751-designer-wallcoverings-los-angeles",
+    "title": "Allison Black on Metallic Persimmon | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35179_c43ee249-2351-449e-9196-953e79c94f0e.jpg?v=1733893480",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Graphic Resource",
+      "Pattern",
+      "persimmon",
+      "T35179",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71751-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71702-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71702-designer-wallcoverings-los-angeles",
+    "title": "Halie Circle Black and Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36179_0172784b-855a-4ace-b102-ad2ea158c197.jpg?v=1733893584",
+    "tags": [
+      "Architectural",
+      "Black and Metallic Gold",
+      "Botanical",
+      "Chinoiserie",
+      "dark gray",
+      "Enchantment",
+      "Floral",
+      "gold",
+      "Pattern",
+      "T36179",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71702-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "versace-ornamental-floral-green-metallic-yellow-wallcovering-versace",
+    "handle": "versace-ornamental-floral-green-metallic-yellow-wallcovering-versace",
+    "title": "Versace Ornamental Floral Green, Metallic, Yellow Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/41913e9fbf30c49541ee5280e9a36f38.jpg?v=1773706451",
+    "tags": [
+      "A.S. Création",
+      "Architectural",
+      "Baroque",
+      "Bedroom",
+      "Botanical",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Emerald Green",
+      "Floral",
+      "Gold",
+      "Golden Yellow",
+      "Green",
+      "Italian",
+      "Leaf",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Maximalist",
+      "Paper",
+      "Paste the wall",
+      "Regencycore",
+      "Renaissance",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Ornamental Floral",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-ornamental-floral-green-metallic-yellow-wallcovering-versace"
+  },
+  {
+    "sku": "meander-border-metallic-red-wallcovering-versace",
+    "handle": "meander-border-metallic-red-wallcovering-versace",
+    "title": "Meander Border Metallic, Red Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a8132d7035c2674e2606f3bca5cf7837.jpg?v=1773706318",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brick Red",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Geometric",
+      "Gold",
+      "Greek Key",
+      "Italian",
+      "Living Room",
+      "Luxe",
+      "Luxury",
+      "Meander Border",
+      "Meander Border Metallic",
+      "Neoclassical",
+      "Paper",
+      "Paste the wall",
+      "Red",
+      "Red Wallcovering",
+      "Regencycore",
+      "Sophisticated",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/meander-border-metallic-red-wallcovering-versace"
+  },
+  {
+    "sku": "dwkk-130211",
+    "handle": "dwkk-130211",
+    "title": "W4134-7 Coral | Kravet Design | Blooms Second Edition Resource Library | Botanical & Floral Metallic Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4134_7_87307d8e-27cc-46fa-a920-5fa3db6bbca9.jpg?v=1753321115",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bedroom",
+      "Blooms Second Edition Resource Library",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Grandmillennial",
+      "Kravet",
+      "Kravet Design",
+      "Living Room",
+      "Non Woven - 100%",
+      "Orange",
+      "Paper",
+      "Pattern",
+      "Print",
+      "Red",
+      "Terracotta",
+      "Textured",
+      "Traditional",
+      "United States",
+      "W4134-7",
+      "W4134.7.0",
+      "Wallcovering",
+      "Warm",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-130211"
+  },
+  {
+    "sku": "mica-madness-real-cork-chip-wallpapers-mic-98621",
+    "handle": "mica-madness-real-cork-chip-wallpapers-mic-98621",
+    "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1d13ceb2cc53fca0c0eed77d922f1bda.jpg?v=1775082717",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Commercial",
+      "Contemporary",
+      "Cork",
+      "Gray",
+      "Light Silver Grey",
+      "Living Room",
+      "Metallic",
+      "Mica",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Naturals",
+      "Nickel",
+      "Office",
+      "Paper",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Retail",
+      "Silver",
+      "Solid/Textural",
+      "Textured",
+      "Wallcovering",
+      "White",
+      "Wuhan Woven Wallcovering"
+    ],
+    "max_price": 34.12,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98621"
+  },
+  {
+    "sku": "nassau-gold-dusk",
+    "handle": "nassau-gold-dusk",
+    "title": "Nappa - Metallic - Dusk 100% SIlicone | Phillipe Romano Wallcoverings",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Ziro_Nappa_Dusk.jpg?v=1772569952",
+    "tags": [
+      "Antimicrobial-Free",
+      "Architectural",
+      "Bedroom",
+      "Bleach Cleanable",
+      "BS 5852 Crib 5",
+      "CA TB 117 Compliant",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "Dark Gray",
+      "Dark Grey",
+      "DMF-Free",
+      "Fabric",
+      "Faux Leather",
+      "Fine",
+      "Fine Texture",
+      "FR Additives Free",
+      "Graffiti-Free",
+      "Grain",
+      "Gray",
+      "Green Building",
+      "Grey",
+      "Healthcare",
+      "Hospitality",
+      "IMO 8.2 & 8.3 Certified",
+      "IMO Marine Grade",
+      "Indoor/Outdoor",
+      "LEED Compatible",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Monochromatic",
+      "Multi-Purpose",
+      "MVSS-302 Automotive",
+      "Neutral Tones",
+      "NFPA 260 Compliant",
+      "Office",
+      "Pebble",
+      "PFAS-Free",
+      "Phillipe Romano",
+      "Silicone",
+      "Solid",
+      "Sophisticated",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/nassau-gold-dusk"
+  },
+  {
+    "sku": "dwtt-71318-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71318-designer-wallcoverings-los-angeles",
+    "title": "Universe Texture Metallic on Dark Brown | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83070_4389dc72-03a6-4dab-bfda-3f69eebfefe0.jpg?v=1733894229",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "brown",
+      "Collection Name",
+      "gold",
+      "Metallic on Dark Brown",
+      "Pattern",
+      "silver",
+      "T83070",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71318-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72160-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72160-designer-wallcoverings-los-angeles",
+    "title": "Natural Metal Brown Metal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t3650.jpg?v=1775151140",
+    "tags": [
+      "Architectural",
+      "Brown Metal",
+      "Contemporary",
+      "Grasscloth Resource 2",
+      "light green",
+      "Pattern",
+      "Solid",
+      "T3650",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72160-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72286-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72286-designer-wallcoverings-los-angeles",
+    "title": "Medici Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7654.jpg?v=1733892356",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 3",
+      "gold",
+      "Metallic Gold",
+      "Pattern",
+      "T7654",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72286-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73083",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73083",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73083-sample-clean.jpg?v=1774483399",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark",
+      "Dark Brown",
+      "Dining Room",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Modern",
+      "Moody",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Rustic",
+      "Solid",
+      "Textured",
+      "Umber",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73083"
+  },
+  {
+    "sku": "dwtt-71975-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71975-designer-wallcoverings-los-angeles",
+    "title": "Caballo Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10019_83adaea0-2948-4284-a13e-09643b3fb6b0.jpg?v=1733893036",
+    "tags": [
+      "Architectural",
+      "cream",
+      "Damask",
+      "gold",
+      "Metallic Gold",
+      "Neutral Resource",
+      "Pattern",
+      "T10019",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71975-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "totori-luxury-metal-grasscloth-grs-30336",
+    "handle": "totori-luxury-metal-grasscloth-grs-30336",
+    "title": "Totori Luxury Metal Grasscloth | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/totori-luxury-metal-grasscloth-grs-30336-cropped.jpg?v=1774341771",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Commercial",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Natural",
+      "Natural Wallcovering",
+      "Naturals",
+      "Naturals With Silver Accents On Tan",
+      "Phillipe Romano",
+      "Phillipe Romano Naturals",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 31.73,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/totori-luxury-metal-grasscloth-grs-30336"
+  },
+  {
+    "sku": "dwtt-71882-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71882-designer-wallcoverings-los-angeles",
+    "title": "Bal Harbour Metallic Pewter | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14101_823b2dd9-4033-4eaf-82f4-e22449c80388.jpg?v=1733893204",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Metallic Pewter",
+      "Pattern",
+      "T14101",
+      "taupe",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71882-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "palazzo-lane-wood-metal-chevron-hlw-73066",
+    "handle": "palazzo-lane-wood-metal-chevron-hlw-73066",
+    "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73066-sample-clean.jpg?v=1774483307",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Wood",
+      "Geometric",
+      "Grey",
+      "Hallway",
+      "Herringbone",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Natural",
+      "Naturally Glamorous",
+      "Palazzo Lane",
+      "Serene",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 31.09,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73066"
+  },
+  {
+    "sku": "dwtt-71792-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71792-designer-wallcoverings-los-angeles",
+    "title": "Russell Square Linen on Aqua on Metallic Pewter | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35104_e79e0051-67d9-4f5b-b3e7-2117a17487f7.jpg?v=1733893393",
+    "tags": [
+      "Aqua on Metallic Pewter",
+      "Architectural",
+      "brown",
+      "Geometric",
+      "Graphic Resource",
+      "Mid-Century",
+      "Pattern",
+      "T35104",
+      "teal",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71792-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71701-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71701-designer-wallcoverings-los-angeles",
+    "title": "Halie Circle Lavender with Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36178_568fff6e-fc5d-4d34-be37-4c58db2210e3.jpg?v=1733893586",
+    "tags": [
+      "Architectural",
+      "Botanical",
+      "Chinoiserie",
+      "Enchantment",
+      "Floral",
+      "gold",
+      "lavender",
+      "Lavender with Metallic Gold",
+      "Pattern",
+      "T36178",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71701-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71516-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71516-designer-wallcoverings-los-angeles",
+    "title": "Farris Metallic Gold on Mineral | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11023_0ea52bd3-9f7b-417e-883f-7f00a261e743.jpg?v=1733893927",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Geometric Resource 2",
+      "gold",
+      "light blue-green",
+      "Metallic Gold on Mineral",
+      "Pattern",
+      "T11023",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71516-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-fog.jpg?v=1777480672",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Grey",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Pale Grey",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52798"
+  },
+  {
+    "sku": "dwtt-72088-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72088-designer-wallcoverings-los-angeles",
+    "title": "Pearl Trellis Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1898.jpg?v=1733892782",
+    "tags": [
+      "Architectural",
+      "brown",
+      "Geometric",
+      "Geometric Resource",
+      "gold",
+      "light blue",
+      "Metallic Gold",
+      "Pattern",
+      "T1898",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72088-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "medusa-label-metallic-black-white-wallcovering-versace",
+    "handle": "medusa-label-metallic-black-white-wallcovering-versace",
+    "title": "Medusa Label Metallic, Black, White Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1957e67e8c29a8e79e3490a7f4a9fbc3.jpg?v=1773706355",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Geometric",
+      "Gray",
+      "Greek Key",
+      "Haute Couture",
+      "Italian",
+      "Light Gray",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Luxury",
+      "Medusa Label",
+      "Medusa Label Metallic",
+      "Neoclassical",
+      "Off-white",
+      "Paste the wall",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "White Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/medusa-label-metallic-black-white-wallcovering-versace"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-sunlight.jpg?v=1777480686",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73087",
+    "handle": "zebra-drive-metal-and-wood-hlw-73087",
+    "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-73087-sample-clean.jpg?v=1774483428",
+    "tags": [
+      "Animal Print",
+      "Architectural",
+      "Bedroom",
+      "Chevron",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Faux Wood",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Paper",
+      "Pink",
+      "Rose",
+      "Rustic",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73087"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73079",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73079",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73079-sample-clean.jpg?v=1774483376",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Charcoal",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Wallcovering",
+      "Wood"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73079"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73075",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73075",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73075-sample-clean.jpg?v=1774483353",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Silver",
+      "textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73075"
+  },
+  {
+    "sku": "dwtt-72154-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72154-designer-wallcoverings-los-angeles",
+    "title": "Stablewood Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3627.jpg?v=1733892615",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "gold",
+      "Grasscloth Resource 2",
+      "Metallic Gold",
+      "Pattern",
+      "T3627",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72154-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71180-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71180-designer-wallcoverings-los-angeles",
+    "title": "Sierra Metallic Silver on Metallic Gold on Cream | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Surface-Resource-Sierra-01.jpg?v=1762227108",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Contemporary",
+      "cream",
+      "Geometric",
+      "gold",
+      "Metallic Gold on Cream",
+      "Pattern",
+      "Surface Resource",
+      "T4005",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71180-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73088",
+    "handle": "zebra-drive-metal-and-wood-hlw-73088",
+    "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-73088-sample-clean.jpg?v=1774483433",
+    "tags": [
+      "Abstract",
+      "Animal Print",
+      "Aqua",
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Wood",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Non-Woven",
+      "Office",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73088"
+  },
+  {
+    "sku": "versace-plain-metallic-pink-wallcovering-versace",
+    "handle": "versace-plain-metallic-pink-wallcovering-versace",
+    "title": "Versace Plain Metallic Pink Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/47413ebeaa8c17791fd641dc54701b52.jpg?v=1773706481",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Light Beige",
+      "Light Pink",
+      "Living Room",
+      "Luxury",
+      "Pale Pink",
+      "Paper",
+      "Pink",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Home",
+      "Versace Plain Metallic",
+      "Versace Plain Metallic Pink Wallcovering",
+      "Versace VI",
+      "Wallcovering",
+      "Walnut Brown"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-plain-metallic-pink-wallcovering-versace"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kbt-5124-jpg",
+    "title": "Kabuto - Steel | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5124.jpg?v=1762298865",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gray",
+      "Industrial",
+      "Kabuto",
+      "Metallic",
+      "Mylar",
+      "Silver",
+      "Steel",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5124-jpg"
+  },
+  {
+    "sku": "dwtt-71207-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71207-designer-wallcoverings-los-angeles",
+    "title": "Curtis Damask Metallic Gold on Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89115.jpg?v=1762227542",
+    "tags": [
+      "aqua",
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "gold",
+      "Metallic Gold on Aqua",
+      "Pattern",
+      "T89115",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71207-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53418",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53418",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-samsara.jpg?v=1777480843",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Leaf",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Luxe",
+      "Mfr-Image-Refreshed",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53418"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44440",
+    "handle": "franko-faux-metallic-patina-ffm-44440",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44440-sample-clean_5e9b389d-a9f9-437a-9e2c-e87067d287ad.jpg?v=1774479128",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Moody",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44440"
+  },
+  {
+    "sku": "dwtt-71183-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71183-designer-wallcoverings-los-angeles",
+    "title": "Sandia Metallic Silver on Charcoal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4008_0bd37460-422a-4807-a66c-e18e1149347f.jpg?v=1733894528",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Contemporary",
+      "gray",
+      "Metallic Silver on Charcoal",
+      "Pattern",
+      "Surface Resource",
+      "T4008",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71183-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ncw4308-02",
+    "handle": "ncw4308-02",
+    "title": "Les Rêves Portavo Grey/Ivory - Grey Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263132723.jpg?v=1775520419",
+    "tags": [
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Geometric",
+      "Gray",
+      "Metallic",
+      "NCW4308-02",
+      "Nina Campbell Wallcovering",
+      "Nina Campbell Wallcoverings",
+      "Paper",
+      "Silver",
+      "Traditional",
+      "Wallcovering",
+      "Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ncw4308-02"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73073",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73073",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73073-sample-clean.jpg?v=1774483344",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Rustic",
+      "stripe",
+      "Taupe",
+      "textured",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73073"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44438",
+    "handle": "franko-faux-metallic-patina-ffm-44438",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44438-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714272",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Modern",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44438"
+  },
+  {
+    "sku": "dwtt-71221-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71221-designer-wallcoverings-los-angeles",
+    "title": "Clessidra Metallic Gold on Slate | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89154_b9a23775-6da3-45eb-a86e-1a143cbfb31e.jpg?v=1733894444",
+    "tags": [
+      "Architectural",
+      "beige",
+      "blue",
+      "Damask",
+      "Damask Resource 4",
+      "Pattern",
+      "Slate",
+      "T89154",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71221-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72086-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72086-designer-wallcoverings-los-angeles",
+    "title": "Wilton Trellis Metallic on Slate | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1843.jpg?v=1733892791",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Geometric Resource",
+      "light blue",
+      "Metallic on Slate",
+      "Pattern",
+      "T1843",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72086-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58157-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725488",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Natural",
+      "Natural Look",
+      "Neutral",
+      "Silver",
+      "Striped",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58157"
+  },
+  {
+    "sku": "dwtt-71953-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71953-designer-wallcoverings-los-angeles",
+    "title": "Flanders Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14154_bccf5ff4-5dba-4037-aa74-5a954ceb5d74.jpg?v=1733893068",
+    "tags": [
+      "Architectural",
+      "gold",
+      "light gold",
+      "Metallic Gold",
+      "Pattern",
+      "T14154",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71953-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wells-sand-candy-stripe-wallpaper-cca-83229",
+    "handle": "wells-sand-candy-stripe-wallpaper-cca-83229",
+    "title": "Wells Sand Candy Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1396ca09641c9d6118bac50a4d9805b3.jpg?v=1572309981",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cream",
+      "Discontinued",
+      "Easy Walls",
+      "Gold",
+      "LA Walls",
+      "Metallic",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 79.99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wells-sand-candy-stripe-wallpaper-cca-83229"
+  },
+  {
+    "sku": "dwtt-71283-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71283-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic White and Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83036_0fdd345a-2e1a-4197-bcaf-92eeded30984.jpg?v=1733894299",
+    "tags": [
+      "Architectural",
+      "brown",
+      "Damask",
+      "gray",
+      "Natural Resource 2",
+      "Pattern",
+      "T83036",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white",
+      "White and Silver"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71283-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "zebra-drive-metal-and-wood-hlw-73089",
+    "handle": "zebra-drive-metal-and-wood-hlw-73089",
+    "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-73089-sample-clean.jpg?v=1774483441",
+    "tags": [
+      "Animal Print",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Farmhouse",
+      "Faux Wood",
+      "Golden Yellow",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Industrial",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Office",
+      "Paper",
+      "Rustic",
+      "Single Dominant Background Color Word",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73089"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58171",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58171",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58171-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724297",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "Gray",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Striped",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58171"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_merg-5813-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_merg-5813-jpg",
+    "title": "Merge - Gold Bracelet | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/merg-5813.jpg?v=1762300760",
+    "tags": [
+      "22% Nylon",
+      "3% Polyester",
+      "30% Cotton",
+      "45% Wool",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gold",
+      "Gold Bracelet",
+      "Grasscloth",
+      "Merge",
+      "Metallic",
+      "Stripe",
+      "Textured",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Wool",
+      "Woven",
+      "Woven Upholstery",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_merg-5813-jpg"
+  },
+  {
+    "sku": "dwtt-71289-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71289-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic White and Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83040_b38d69a4-cdec-4400-ac93-db55c2e5efc0.jpg?v=1733894283",
+    "tags": [
+      "Architectural",
+      "contemporary",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83040",
+      "texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white",
+      "White and Silver"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71289-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "glamly-metal-on-vinyl-gpr-76620",
+    "handle": "glamly-metal-on-vinyl-gpr-76620",
+    "title": "Glamly Metal on Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76620-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714669",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Serene",
+      "Silver",
+      "Taupe",
+      "Textured",
+      "USFCID#vp860-039",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 64.95,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76620"
+  },
+  {
+    "sku": "dwtt-70863-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-70863-designer-wallcoverings-los-angeles",
+    "title": "Mamora Trellis Cork Spa Blue on Metallic Pewter | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10414_d95eafa3-2911-49ca-a867-5eff741334d1.jpg?v=1733895196",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Geometric",
+      "gold",
+      "light blue",
+      "Modern Resource 2",
+      "Pattern",
+      "Spa Blue on Metallic Pewter",
+      "T10414",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-70863-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58163",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58163",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58163-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725643",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Coastal",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Embossed Texture",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Grasscloth Weave",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Living Room",
+      "Metallic",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Sand",
+      "Silver",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wide Width",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58163"
+  },
+  {
+    "sku": "dwkk-139760",
+    "handle": "dwkk-139760",
+    "title": "Fiorentina - Silver/Ivory Silver By Lee Jofa |  | Diamond Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2009006_111_0e8257cc-5673-4a40-9b6f-bf4e8b3edf4a.jpg?v=1753291364",
+    "tags": [
+      "30In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "China",
+      "Commercial",
+      "Contemporary",
+      "Diamond",
+      "display_variant",
+      "Fabric",
+      "Fiorentina",
+      "Geometric",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Ivory",
+      "Lee Jofa",
+      "Luxury",
+      "Metallic",
+      "Non-Wallcovering",
+      "P2009006.111.0",
+      "Print",
+      "Silver",
+      "Silver/Ivory",
+      "Sisal - 85%;Cotton - 15%",
+      "Textured",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-139760"
+  },
+  {
+    "sku": "dwkk-139813",
+    "handle": "dwkk-139813",
+    "title": "Visby Paper - Juniper Teal By Lee Jofa | Merkato |Global  Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2017109_354_2a16e49b-2d4c-4ae0-be35-55469864c219.jpg?v=1753291225",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Art Deco",
+      "Blue",
+      "Chevron",
+      "Commercial",
+      "Dark Green",
+      "display_variant",
+      "Geometric",
+      "Global",
+      "Gold",
+      "Green",
+      "Juniper",
+      "Lee Jofa",
+      "Luxury",
+      "Merkato",
+      "Metallic",
+      "Multi",
+      "P2017109.354.0",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Teal",
+      "Turquoise",
+      "United States",
+      "Visby Paper",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-139813"
+  },
+  {
+    "sku": "dwtt-71204-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71204-designer-wallcoverings-los-angeles",
+    "title": "Clessidra Metallic Gold on Metallic Pewter on Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89160_7aaa0d0a-7bb0-402d-9cc3-756200a6cd0f.jpg?v=1733894485",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "gold",
+      "grey",
+      "Metallic Pewter on Grey",
+      "Pattern",
+      "T89160",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71204-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71417-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71417-designer-wallcoverings-los-angeles",
+    "title": "Andreas Stripe Metallic Silver on White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T14244.jpg?v=1762229737",
+    "tags": [
+      "ANDREAS STRIPE",
+      "Architectural",
+      "Bedroom",
+      "Color: White",
+      "Contemporary",
+      "Geometric",
+      "gray",
+      "Greek Key",
+      "Hallway",
+      "Imperial Garden",
+      "Living Room",
+      "Metallic Silver on White",
+      "Minimalist",
+      "Off-white",
+      "Pattern",
+      "Serene",
+      "silver",
+      "Stripe",
+      "T14244",
+      "Thibaut",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71417-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72149-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72149-designer-wallcoverings-los-angeles",
+    "title": "Andros Metallic Silver on Charcoal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3685.jpg?v=1733892626",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Charcoal",
+      "Coastal",
+      "Contemporary",
+      "Grasscloth Resource 2",
+      "gray",
+      "Pattern",
+      "T3685",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72149-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72411-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72411-designer-wallcoverings-los-angeles",
+    "title": "Spotted Orchid Metallic on Blue | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6046.jpg?v=1733892196",
+    "tags": [
+      "Anniversary",
+      "Architectural",
+      "Damask",
+      "light blue",
+      "Metallic on Blue",
+      "off-white",
+      "Pattern",
+      "Stripe",
+      "T6046",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72411-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71910-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71910-designer-wallcoverings-los-angeles",
+    "title": "Bilzen Linen Metallic Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwtt-71910-designer-wallcoverings-los-angeles-swatch-spin.gif?v=1771176537",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "gray",
+      "light gray",
+      "Metallic Grey",
+      "Pattern",
+      "T14126",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71910-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58160-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725567",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Chocolate Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Embossed Texture",
+      "Estimated Type: Paper",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Metallic",
+      "Modern",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Neoclassical",
+      "Solid",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58160"
+  },
+  {
+    "sku": "dwkk-127683",
+    "handle": "dwkk-127683",
+    "title": "Playa - Pewter  By Clarke And Clarke | Clarke & Clarke Reflections |Metallic Texture Wallcovering Print",
+    "vendor": "Clarke And Clarke",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0058_05_CAC_1f61c126-85b0-4d40-82e0-0bd89b16f25e.jpg?v=1726037751",
+    "tags": [
+      "20.875In",
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Clarke & Clarke Reflections",
+      "Clarke And Clarke",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Dark Gray",
+      "display_variant",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Mosaic",
+      "Pattern",
+      "Playa",
+      "Print",
+      "Sophisticated",
+      "Texture",
+      "Textured",
+      "United Kingdom",
+      "Vinyl",
+      "W0058/05.Cac.0",
+      "Wallcovering",
+      "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+    ],
+    "max_price": 176.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-127683"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58168-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724221",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Silver",
+      "Striped",
+      "Taupe",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58168"
+  },
+  {
+    "sku": "dwtt-71217-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71217-designer-wallcoverings-los-angeles",
+    "title": "Curtis Damask Metallic Gold on Charcoal | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89114.jpg?v=1762227686",
+    "tags": [
+      "Architectural",
+      "Charcoal",
+      "Damask",
+      "Damask Resource 4",
+      "dark gray",
+      "gray",
+      "Pattern",
+      "T89114",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71217-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72408-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72408-designer-wallcoverings-los-angeles",
+    "title": "Garden Silhouette Metallic on Seaglass | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6043.jpg?v=1733892202",
+    "tags": [
+      "Anniversary",
+      "Architectural",
+      "Damask",
+      "Geometric",
+      "Metallic on Seaglass",
+      "off-white",
+      "Pattern",
+      "seafoam green",
+      "T6043",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72408-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "bellevue-gilded-durable-walls-xwq-52989",
+    "handle": "bellevue-gilded-durable-walls-xwq-52989",
+    "title": "Bellevue Gilded Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gilded-light_years.jpg?v=1777480733",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Light Brown",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellevue-gilded-durable-walls-xwq-52989"
+  },
+  {
+    "sku": "dwkk-139597",
+    "handle": "dwkk-139597",
+    "title": "Chalet - Ivory/Gold Ivory By Lee Jofa Modern | Kelly Wearstler Wallpapers Ii | Modern Wallcovering",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GWP-3502_164_3550e42f-ed14-4cb0-9d22-1c628bf1d6ca.jpg?v=1753291540",
+    "tags": [
+      "27In",
+      "AI-Analyzed-v2",
+      "Almond",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Chalet",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Geometric",
+      "Gold",
+      "Gwp-3502.164.0",
+      "Ivory",
+      "Ivory/Gold",
+      "Lee Jofa",
+      "Lee Jofa Modern",
+      "Lemon",
+      "Luxury",
+      "Metallic",
+      "Modern",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "United States",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-139597"
+  },
+  {
+    "sku": "dwtt-71313-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71313-designer-wallcoverings-los-angeles",
+    "title": "Cork Metallic Cream | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83008_c9cc1527-0864-45c9-8214-65dcd6a6d379.jpg?v=1733894238",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Contemporary",
+      "cream",
+      "Geometric",
+      "Natural Resource 2",
+      "Pattern",
+      "T83008",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71313-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "le-embossed-faux-grasscloth-xgr-6205",
+    "handle": "le-embossed-faux-grasscloth-xgr-6205",
+    "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6205-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721644",
+    "tags": [
+      "Amber",
+      "Apricot",
+      "Beige",
+      "Blonde",
+      "Brass",
+      "Bronze",
+      "Butterscotch",
+      "Chestnut",
+      "Commercially Cleanable",
+      "Embossed",
+      "Embossed Texture",
+      "Faux Finish",
+      "Faux Grasscloth",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Honey",
+      "Le Embossed Faux Grasscloth",
+      "Metallic",
+      "Natural",
+      "Natural Texture",
+      "Ochre",
+      "Saffron",
+      "Tan",
+      "Textured",
+      "Umber",
+      "Wallcovering",
+      "Wheat"
+    ],
+    "max_price": 51.15,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6205"
+  },
+  {
+    "sku": "dwtt-71522-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71522-designer-wallcoverings-los-angeles",
+    "title": "Javan Metallic Champagne | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11010_a43128ed-7f88-40cd-86f7-211830250516.jpg?v=1733893915",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Geometric Resource 2",
+      "gold",
+      "Metallic Champagne",
+      "off-white",
+      "Pattern",
+      "T11010",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71522-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "dwtt-72549-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72549-designer-wallcoverings-los-angeles",
+    "title": "Shangri-la Metallic on Taupe | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6861.jpg?v=1775153852",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "gold",
+      "Metallic on Taupe",
+      "Pattern",
+      "Shangri-La",
+      "T8616",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72549-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71963-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71963-designer-wallcoverings-los-angeles",
+    "title": "Kalynn Metallic Pewter on Beige | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10001_b58f7522-2e00-420a-ab54-e15593192d87.jpg?v=1733893054",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "light beige",
+      "Metallic Pewter on Beige",
+      "Neutral Resource",
+      "Pattern",
+      "T10001",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71963-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kam-5101-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kam-5101-jpg",
+    "title": "Kami - Gold Leaf | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5101.jpg?v=1762298354",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Embossed",
+      "Geometric",
+      "Gold",
+      "Gold Leaf",
+      "Kami",
+      "Metallic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5101-jpg"
+  },
+  {
+    "sku": "crushed-costoluto-vinyl-dwx-58006",
+    "handle": "crushed-costoluto-vinyl-dwx-58006",
+    "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-58006-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709686",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Crushed",
+      "Dark Gold",
+      "Gold",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Neutral",
+      "Organic",
+      "Texture",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58006"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-faded_fresco.jpg?v=1777480693",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825"
+  },
+  {
+    "sku": "dwtt-71194-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71194-designer-wallcoverings-los-angeles",
+    "title": "Alicia Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89119_751b265b-c46e-40c9-a657-55f7f09a82b1.jpg?v=1733894508",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "light gray",
+      "Metallic Silver",
+      "Pattern",
+      "silver",
+      "T89119",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71194-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72291-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72291-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Metallic Gold on Cream | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7633.jpg?v=1733892348",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 3",
+      "gold",
+      "Metallic Gold on Cream",
+      "Pattern",
+      "T7633",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72291-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5026m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5026m-jpg",
+    "title": "Ballari Mylar - Stardust | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5026M.jpg?v=1762288377",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Gold",
+      "Industrial",
+      "Metallic",
+      "Mylar",
+      "Stardust",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5026m-jpg"
+  },
+  {
+    "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": "dwtt-71264-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71264-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83044_e31f0cfb-374f-4066-a45d-f56991489743.jpg?v=1733894336",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Grey",
+      "light gray",
+      "Natural Resource 2",
+      "Pattern",
+      "Stripe",
+      "T83044",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71264-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71223-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71223-designer-wallcoverings-los-angeles",
+    "title": "Clessidra Metallic Gold on Beige | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89157.jpg?v=1762227746",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Damask",
+      "Damask Resource 4",
+      "off-white",
+      "Pattern",
+      "T89157",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71223-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830",
+    "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-gold_touch.jpg?v=1777480700",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830"
+  },
+  {
+    "sku": "montgomery-metallic-cubed-durable-walls-xwp-52676",
+    "handle": "montgomery-metallic-cubed-durable-walls-xwp-52676",
+    "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-52676-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726378",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Grasscloth",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Serene",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52676"
+  },
+  {
+    "sku": "dwtt-71750-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71750-designer-wallcoverings-los-angeles",
+    "title": "Allison Black on Metallic Apple Green | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwtt-71750-designer-wallcoverings-los-angeles-swatch-spin.gif?v=1771164876",
+    "tags": [
+      "Apple Green",
+      "Architectural",
+      "Damask",
+      "Graphic Resource",
+      "green",
+      "light green",
+      "Pattern",
+      "T35178",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71750-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-temple.jpg?v=1777480836",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Leaf",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Sophisticated",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53415"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58172",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58172",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58172-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724324",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Natural",
+      "Natural Look",
+      "Neutral",
+      "Silver",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58172"
+  },
+  {
+    "sku": "dwtt-71286-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71286-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83039_6eb1038c-b8a4-4c2a-8c97-6160f3c10333.jpg?v=1733894291",
+    "tags": [
+      "Architectural",
+      "beige",
+      "light yellow",
+      "Metallic Gold",
+      "Natural Resource 2",
+      "Pattern",
+      "Solid",
+      "T83039",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71286-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71229-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71229-designer-wallcoverings-los-angeles",
+    "title": "Passaro Damask Cream on Metallic Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89141_096396d1-1d90-447f-b939-9bdb53843878.jpg?v=1733894424",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "gold",
+      "light blue",
+      "Metallic Gold on Aqua",
+      "Pattern",
+      "T89141",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71229-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71787-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71787-designer-wallcoverings-los-angeles",
+    "title": "Cabrera Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35133_b7c6ab78-2a0a-4d02-aca9-033307b36ead.jpg?v=1733893403",
+    "tags": [
+      "Architectural",
+      "cream",
+      "Geometric",
+      "gold",
+      "Graphic Resource",
+      "Metallic Gold",
+      "Pattern",
+      "T35133",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71787-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71676-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71676-designer-wallcoverings-los-angeles",
+    "title": "Bamboo Lattice Metallic Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36156_00144894-b5e9-410c-80f3-8ab1dc5d09df.jpg?v=1733893630",
+    "tags": [
+      "Architectural",
+      "Enchantment",
+      "Geometric",
+      "Gray",
+      "Metallic Grey",
+      "Pattern",
+      "T36156",
+      "Thibaut",
+      "Traditional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71676-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "crushed-costoluto-vinyl-dwx-58009",
+    "handle": "crushed-costoluto-vinyl-dwx-58009",
+    "title": "Crushed Costoluto Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58009-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709696",
+    "tags": [
+      "54\" Width",
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contract",
+      "Contract Wallcovering",
+      "Crushed",
+      "Gold",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Neutral",
+      "Organic",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58009"
+  },
+  {
+    "sku": "versace-floral-gold-metallic-wallcovering-versace",
+    "handle": "versace-floral-gold-metallic-wallcovering-versace",
+    "title": "Versace Floral Gold Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1f9e4c68f0162b8b2038db61596ed962.jpg?v=1773706390",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cottagecore",
+      "display_variant",
+      "English Country",
+      "Estimated Type: Vinyl",
+      "Floral",
+      "Grandmillennial",
+      "Hallway",
+      "Italian",
+      "Light Yellow",
+      "Living Room",
+      "Luxury",
+      "Pale Yellow",
+      "Paper",
+      "Paste the wall",
+      "Serene",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Floral Gold",
+      "Versace Floral Gold Metallic Wallcovering",
+      "Versace Home",
+      "Versace VI",
+      "Vine",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-floral-gold-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "dwtt-71236-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71236-designer-wallcoverings-los-angeles",
+    "title": "Rowan Damask Metallic Gold on Metallic Gold on Aqua | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89130_2041e6f1-65e5-4501-b989-e5c48a030b86.jpg?v=1733894406",
+    "tags": [
+      "aqua",
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "gold",
+      "light aqua",
+      "Metallic Gold on Aqua",
+      "Pattern",
+      "T89130",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71236-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44447",
+    "handle": "franko-faux-metallic-patina-ffm-44447",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44447-sample-clean.jpg?v=1774479141",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Olive",
+      "Farmhouse",
+      "Faux Finish",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Olive",
+      "Organic",
+      "Rustic",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44447"
+  },
+  {
+    "sku": "word-walls-scr-8126",
+    "handle": "word-walls-scr-8126",
+    "title": "Word Walls",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/035314c024143a7310f65960cd6d4d93.jpg?v=1572309108",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Contemporary",
+      "Designer Wallcoverings",
+      "Gold",
+      "Luxury Screen Printed Wallpapers",
+      "Metallic",
+      "Paper",
+      "Screen Print",
+      "Textured",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 263.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/word-walls-scr-8126"
+  },
+  {
+    "sku": "dwtt-71182-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71182-designer-wallcoverings-los-angeles",
+    "title": "Sierra Metallic Silver on Metallic Bronze on Putty | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T4007_f4c69231-5d62-4c6e-adc9-fc5b5f2609a9.jpg?v=1733894530",
+    "tags": [
+      "Architectural",
+      "beige",
+      "contemporary",
+      "geometric",
+      "light brown",
+      "Metallic Bronze on Putty",
+      "Pattern",
+      "stripe",
+      "Surface Resource",
+      "T4007",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71182-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71228-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71228-designer-wallcoverings-los-angeles",
+    "title": "Passaro Damask Cream on Metallic Metallic Silver on Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89140_e6cd375d-b731-4843-a78e-8d2b0c696425.jpg?v=1733894426",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "gray",
+      "light gray",
+      "Metallic Silver on Grey",
+      "Pattern",
+      "T89140",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71228-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-horizon.jpg?v=1777480686",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Rustic",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807"
+  },
+  {
+    "sku": "milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci",
+    "handle": "milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci",
+    "title": "Milano Pewter Metallic Basketweave Grasscloth Wallcovering | Fentucci",
+    "vendor": "Fentucci",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27400.jpg?v=1776879788",
+    "tags": [
+      "Fentucci",
+      "Grasscloth",
+      "Metallic Basketweave",
+      "Milano",
+      "new-onboard",
+      "Pewter",
+      "sample-only",
+      "Texture",
+      "Wallcovering"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci"
+  },
+  {
+    "sku": "versace-golden-stripe-metallic-wallcovering-versace",
+    "handle": "versace-golden-stripe-metallic-wallcovering-versace",
+    "title": "Versace Golden Stripe Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/06978277d2c8184444db41ab926ae8e2.jpg?v=1773706410",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "French Country",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Pale Goldenrod",
+      "Paper",
+      "Paste the wall",
+      "Stripe",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Golden Stripe",
+      "Versace Golden Stripe Metallic Wallcovering",
+      "Versace Home",
+      "Versace VI",
+      "Victorian",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-golden-stripe-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "franko-faux-metallic-patina-ffm-44442",
+    "handle": "franko-faux-metallic-patina-ffm-44442",
+    "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ffm-44442-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714282",
+    "tags": [
+      "Architectural",
+      "ASTM E84 Class A",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Living Room",
+      "Off-white",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Textured",
+      "Tile",
+      "Vinyl",
+      "Wallcovering",
+      "Wood Grain"
+    ],
+    "max_price": 43.76,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44442"
+  },
+  {
+    "sku": "waterlily-drive-metal-and-wood-hlw-73080",
+    "handle": "waterlily-drive-metal-and-wood-hlw-73080",
+    "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73080-sample-clean.jpg?v=1774483380",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "Farmhouse",
+      "Faux Wood",
+      "Floral",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Living Room",
+      "Natural",
+      "Naturally Glamorous",
+      "Organic Modern",
+      "Rustic",
+      "Stripe",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wood",
+      "Wood Grain"
+    ],
+    "max_price": 111.26,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73080"
+  },
+  {
+    "sku": "dwtt-71184-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71184-designer-wallcoverings-los-angeles",
+    "title": "Sandia Metallic Bronze on Black | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T4009.jpg?v=1762227156",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "black",
+      "Contemporary",
+      "gold",
+      "Metallic Bronze on Black",
+      "Pattern",
+      "Stripe",
+      "Surface Resource",
+      "T4009",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71184-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71421-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71421-designer-wallcoverings-los-angeles",
+    "title": "Ogden Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14260_e6b40042-1601-4e86-b688-a1343e560dc9.jpg?v=1733894102",
+    "tags": [
+      "abstract",
+      "Architectural",
+      "brown",
+      "contemporary",
+      "gray",
+      "Imperial Garden",
+      "Metallic Silver",
+      "Pattern",
+      "silver",
+      "T14260",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71421-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+    "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+    "title": "Martin's Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58173-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724352",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Brown",
+      "Chocolate Brown",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Embossed Texture",
+      "Gold",
+      "Grasscloth",
+      "Grasscloth Texture",
+      "Grasscloth Wallcovering",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Hotel Lobby",
+      "Living Room",
+      "Luxe",
+      "Luxurious",
+      "Metallic",
+      "Modern",
+      "Natural",
+      "Natural Look",
+      "Natural Texture",
+      "Navy Blue",
+      "Neoclassical",
+      "Olive Green",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Tropicana Durable Vinyls",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58173"
+  },
+  {
+    "sku": "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": "dwtt-71755-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71755-designer-wallcoverings-los-angeles",
+    "title": "Bahia Metallic Gold on Pearl on White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35142_ea8998c2-18c1-4a30-890d-5f17c3991340.jpg?v=1733893471",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "beige",
+      "Contemporary",
+      "Geometric",
+      "Graphic Resource",
+      "Pattern",
+      "Pearl on White",
+      "T35142",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71755-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71232-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71232-designer-wallcoverings-los-angeles",
+    "title": "Pravata Damask Smoke on Foil - Foil Wallcovering | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T89177.jpg?v=1762227888",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "beige",
+      "Champagne",
+      "Charcoal",
+      "Damask",
+      "Damask Resource 4",
+      "Dining Room",
+      "Floral",
+      "Foil",
+      "Grandmillennial",
+      "gray",
+      "Grey",
+      "Living Room",
+      "Pattern",
+      "Pravata Damask Smoke on",
+      "Rustic",
+      "Scroll",
+      "Sophisticated",
+      "T89177",
+      "Thibaut",
+      "Traditional",
+      "Victorian",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71232-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799",
+    "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799",
+    "title": "Lister Lake Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cirrus-atmosphere.jpg?v=1777480672",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Pale Beige",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799"
+  },
+  {
+    "sku": "dwtt-71262-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71262-designer-wallcoverings-los-angeles",
+    "title": "Metal Linen Metallic Blue | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83042_7e0638bb-5571-48c5-8142-55dbea6e5240.jpg?v=1733894340",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Contemporary",
+      "light blue",
+      "Natural Resource 2",
+      "Pattern",
+      "Stripe",
+      "T83042",
+      "Texture",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71262-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "immersion-by-innovations-usa-dwc-immersion-2",
+    "handle": "immersion-by-innovations-usa-dwc-immersion-2",
+    "title": "Immersion | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-2.jpg?v=1736199380",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Gold",
+      "Immersion-2",
+      "Innovations USA",
+      "Metallic",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/immersion-by-innovations-usa-dwc-immersion-2"
+  },
+  {
+    "sku": "dwtt-71220-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71220-designer-wallcoverings-los-angeles",
+    "title": "Clessidra Metallic Gold on Sage | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t34037.jpg?v=1775149509",
+    "tags": [
+      "Architectural",
+      "cream",
+      "Damask",
+      "Damask Resource 4",
+      "Pattern",
+      "Sage",
+      "sage green",
+      "T89153",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71220-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71216-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71216-designer-wallcoverings-los-angeles",
+    "title": "Curtis Damask Metallic Gold on Navy | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89113_fc157a70-5243-423f-a87d-4b9a493787a9.jpg?v=1733894454",
+    "tags": [
+      "Architectural",
+      "Damask",
+      "Damask Resource 4",
+      "dark blue",
+      "Navy",
+      "navy blue",
+      "Pattern",
+      "T89113",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71216-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br009-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br009-jpg",
+    "title": "Burnished Metallic | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/br009.jpg?v=1762288727",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Burnished Metallic",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Metallic",
+      "Scuffmaster",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br009-jpg"
+  },
+  {
+    "sku": "dwtt-71698-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71698-designer-wallcoverings-los-angeles",
+    "title": "Halie Circle Aqua with Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36175_e73d024c-e104-4e9d-8869-09d5783c0166.jpg?v=1733893591",
+    "tags": [
+      "Aqua with Metallic Gold",
+      "Architectural",
+      "Botanical",
+      "Chinoiserie",
+      "Enchantment",
+      "Floral",
+      "gold",
+      "light green",
+      "Pattern",
+      "T36175",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71698-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-71250-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71250-designer-wallcoverings-los-angeles",
+    "title": "Herringbone Weave Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T83025.jpg?v=1776159965",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Metallic Silver",
+      "Natural Resource 2",
+      "Pattern",
+      "silver",
+      "T83025",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71250-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "freeport-metallic-contemporary-durable-walls-xwt-53419",
+    "handle": "freeport-metallic-contemporary-durable-walls-xwt-53419",
+    "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-tidal.jpg?v=1777480843",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Blue",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Turquoise",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leaf",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Serene",
+      "Teal",
+      "Textured",
+      "Turquoise",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53419"
+  },
+  {
+    "sku": "dwtt-72000-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72000-designer-wallcoverings-los-angeles",
+    "title": "Miranda Cream on Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t10037.jpg?v=1775144621",
+    "tags": [
+      "Architectural",
+      "Cream on Metallic Gold",
+      "Damask",
+      "gold",
+      "Neutral Resource",
+      "off-white",
+      "Pattern",
+      "T10037",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72000-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "versace-floral-pastel-multicoloured-metallic-wallcovering-versace",
+    "handle": "versace-floral-pastel-multicoloured-metallic-wallcovering-versace",
+    "title": "Versace Floral Pastel Multicoloured, Metallic Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a6f5aa0623799309964658ef4f3db170.jpg?v=1773706398",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Blush Pink",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Italian",
+      "Light Green",
+      "Light Pink",
+      "Light Yellow",
+      "Living Room",
+      "Luxury",
+      "Metallic Wallcovering",
+      "Multi",
+      "Multicoloured",
+      "Off-white",
+      "Pale Green",
+      "Pale Pink",
+      "Pale Yellow",
+      "Paper",
+      "Paste the wall",
+      "Pink",
+      "Seafoam Green",
+      "Serene",
+      "Traditional",
+      "Trending Wallcovering Collection 2026",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace Floral Pastel",
+      "Versace Floral Pastel Multicoloured",
+      "Versace Home",
+      "Versace VI",
+      "Victorian",
+      "Vine",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/versace-floral-pastel-multicoloured-metallic-wallcovering-versace"
+  },
+  {
+    "sku": "dwtt-72049-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72049-designer-wallcoverings-los-angeles",
+    "title": "Sachon Basket Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1000_1b1f923b-706e-4e4b-89f4-d149c063ef28.jpg?v=1733892897",
+    "tags": [
+      "Architectural",
+      "beige",
+      "gold",
+      "Menswear Resource",
+      "Metallic Gold",
+      "Pattern",
+      "T1000",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72049-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+    "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+    "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-biker_black.jpg?v=1777480696",
+    "tags": [
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "Lattice",
+      "LEED",
+      "Leed Walls",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Silver",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828"
+  },
+  {
+    "sku": "dwtt-71761-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71761-designer-wallcoverings-los-angeles",
+    "title": "Broadway Metallic Pewter on Mineral | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T35162.jpg?v=1762233401",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Graphic Resource",
+      "Metallic Pewter on Mineral",
+      "Pattern",
+      "T35162",
+      "teal",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71761-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58155-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725434",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Minimalist",
+      "Natural Look",
+      "Neutral",
+      "Silver",
+      "Striped",
+      "Textured",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58155"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_mass-5780-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_mass-5780-jpg",
+    "title": "Mass - Mahogany | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mass-5780.jpg?v=1762300268",
+    "tags": [
+      "23% Nylon",
+      "36% Wool",
+      "37% Cotton",
+      "4% Polyester",
+      "Abstract",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Cotton",
+      "Gold",
+      "Mahogany",
+      "Mass",
+      "Metallic",
+      "Red",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven Upholstery",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mass-5780-jpg"
+  },
+  {
+    "sku": "dwkk-g4c183007",
+    "handle": "dwkk-g4c183007",
+    "title": "W3894-1 Beige | Kravet Design | Damask Resource Library |Damask Metallic Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3894_1_47d2d5d4-9e80-46ab-9a69-8ead39f962a9.jpg?v=1753120612",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Art Nouveau",
+      "Bedroom",
+      "Beige",
+      "Botanical",
+      "Champagne",
+      "Commercial",
+      "Damask",
+      "Damask Resource Library",
+      "Dining Room",
+      "display_variant",
+      "Floral",
+      "Kravet",
+      "Kravet Design",
+      "Light Gray",
+      "Light Grey",
+      "Living Room",
+      "Off White",
+      "Paper",
+      "Print",
+      "Serene",
+      "Sure Strip - 100%",
+      "Traditional",
+      "United States",
+      "Victorian",
+      "Vine",
+      "W3894-1",
+      "W3894.1.0",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g4c183007"
+  },
+  {
+    "sku": "dwkk-129357",
+    "handle": "dwkk-129357",
+    "title": "Metallic Weave - Gold | Kravet Couture | Modern Luxe Wallcovering |Metallic Texture Wallcovering",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3832_4_bef0d16a-d6b6-4a20-a031-dcb19288ba0e.jpg?v=1753121209",
+    "tags": [
+      "36In",
+      "Almond",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "China",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Fabric",
+      "Geometric",
+      "Grasscloth",
+      "Hallway",
+      "Kravet",
+      "Kravet Couture",
+      "Living Room",
+      "Metallic Weave",
+      "Modern Luxe Wallcovering",
+      "Paper - 100%",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "W3832.4.0",
+      "Wallcovering",
+      "Warm",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129357"
+  },
+  {
+    "sku": "dwtt-71569-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71569-designer-wallcoverings-los-angeles",
+    "title": "Caravan Metallic Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T64169_1db1ed83-649f-4102-a012-c5bb23dd0366.jpg?v=1733893822",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Caravan",
+      "Geometric",
+      "gray",
+      "Metallic Silver",
+      "Pattern",
+      "T64169",
+      "Thibaut",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71569-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72162-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72162-designer-wallcoverings-los-angeles",
+    "title": "Natural Metal White Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3652.jpg?v=1733892596",
+    "tags": [
+      "Architectural",
+      "beige",
+      "brown",
+      "gold",
+      "Grasscloth Resource 2",
+      "Metallic Gold",
+      "Pattern",
+      "Solid",
+      "T3652",
+      "Texture",
+      "Thibaut",
+      "Traditional",
+      "Transitional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72162-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_blr-5027m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_blr-5027m-jpg",
+    "title": "Ballari Mylar - Silver Glint | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5027M.jpg?v=1762288413",
+    "tags": [
+      "100% Mylar",
+      "Abstract",
+      "Architectural",
+      "Ballari Mylar",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Metallic",
+      "Mylar",
+      "Silver",
+      "Silver Glint",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5027m-jpg"
+  },
+  {
+    "sku": "dwtt-71774-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71774-designer-wallcoverings-los-angeles",
+    "title": "La Farge Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35196_da2633ae-851a-4301-9aeb-3bca8e8c5e9e.jpg?v=1733893428",
+    "tags": [
+      "Architectural",
+      "Contemporary",
+      "Geometric",
+      "Gold",
+      "Graphic Resource",
+      "Metallic Gold",
+      "Pattern",
+      "T35196",
+      "Thibaut",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71774-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "ernesto-s-retro-geometric-scr-8065",
+    "handle": "ernesto-s-retro-geometric-scr-8065",
+    "title": "Ernesto's Retro Geometric",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1b2f9d59b3240946335ea39c1bc32d5d.jpg?v=1572309106",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Commercial",
+      "Designer Wallcoverings",
+      "Floral",
+      "Gold",
+      "Luxury Screen Printed Wallpapers",
+      "Metallic",
+      "Moss",
+      "Paper",
+      "Screen Print",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 216.71,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ernesto-s-retro-geometric-scr-8065"
+  },
+  {
+    "sku": "dwtt-71195-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71195-designer-wallcoverings-los-angeles",
+    "title": "Alicia Metallic Pewter | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89120_76ec1b5f-465a-410a-b757-ba28cbb6a170.jpg?v=1733894506",
+    "tags": [
+      "Architectural",
+      "beige",
+      "cream",
+      "Damask",
+      "Damask Resource 4",
+      "Metallic Pewter",
+      "Pattern",
+      "T89120",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71195-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58158",
+    "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58158",
+    "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58158-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725515",
+    "tags": [
+      "54\" Width",
+      "Architectural",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract",
+      "Contract Wallcovering",
+      "Gold",
+      "Grasscloth",
+      "hollywood",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Metallic",
+      "Metallic Gold",
+      "Natural Look",
+      "Neutral",
+      "Striped",
+      "Textured",
+      "Traditional",
+      "Type 2 Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Wide Width"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58158"
+  },
+  {
+    "sku": "dwtt-71637-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71637-designer-wallcoverings-los-angeles",
+    "title": "Maze Grasscloth Metallic Grey on Silver | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T41199_55cff5a9-2eba-4777-a471-ce5529190ccf.jpg?v=1733893679",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Geometric",
+      "Grasscloth Resource 3",
+      "Metallic Grey on Silver",
+      "Pattern",
+      "silver",
+      "T41199",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71637-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "dwtt-72255-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-72255-designer-wallcoverings-los-angeles",
+    "title": "Damask Resource 3 Black on Metallic Gold | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7627.jpg?v=1733892401",
+    "tags": [
+      "Architectural",
+      "black",
+      "Black on Metallic Gold",
+      "Damask",
+      "Damask Resource 3",
+      "gold",
+      "Pattern",
+      "T7627",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-72255-designer-wallcoverings-los-angeles"
+  }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..de7e116
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+  "name": "metallicwallpaper",
+  "version": "0.1.0",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "metallicwallpaper",
+      "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..76b2b37
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+  "name": "metallicwallpaper",
+  "version": "0.1.0",
+  "description": "METALLIC 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..ec15945
--- /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">M</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..df36429
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..88d0a5b
--- /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>METALLIC WALLPAPER — Wall as mirror</title>
+<meta name="description" content="METALLIC WALLPAPER · Wall as mirror. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a0a0a">
+<link rel="canonical" href="https://metallicwallpaper.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: #0a0a0a;
+  --paper: #ffffff;
+  --muted: #a89c80;
+  --line: rgba(255,255,255,0.10);
+  --accent: #d4a847;
+  --bg-soft: #181818;
+  --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('metal_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">Reflective Finish</div>
+  <div class="center-mark">METALLIC WALLPAPER<span class="tm">.</span><span class="sub">Wall as mirror</span></div>
+  <div class="meta-line">Gold · Silver · Copper · Foil<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">Gold · Silver · Copper · Foil</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">METALLIC WALLPAPER</div>
+      <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated gold · silver · copper · foil 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">metallicwallpaper</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>metallicwallpaper.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 = "metallicwallpaper";
+  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('metal_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('metal_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('metal_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..7a55a26
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * METALLIC 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 || 9847;
+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: "Metallic Wallpaper", zdColor: "#d4a847", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "metallicwallpaper" });
+
+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 = ["gold","silver","copper","foil","luxe","abstract"];
+  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://metallicwallpaper.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://metallicwallpaper.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(`metallicwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..e037bb8
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+  "slug": "metallicwallpaper",
+  "siteName": "Metallic Wallpaper",
+  "domain": "metallicwallpaper.com",
+  "nicheKeyword": "metallic",
+  "tagline": "Foil, leaf, and metal sheen.",
+  "heroHeadline": "METALLIC WALLPAPER",
+  "heroSub": "Foil, leaf, and metal sheen.",
+  "theme": {
+    "accent": "#c8a878"
+  },
+  "rails": [
+    "gold",
+    "silver",
+    "copper",
+    "rose",
+    "iridescent",
+    "antique"
+  ],
+  "port": 9847
+}

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