[object Object]

← back to Linenwallpaper

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

e257a683b4c86e9561bd11e045b9cb0d1c7f17fe · 2026-05-06 10:25:41 -0700 · Steve Abrams

Files touched

Diff

commit e257a683b4c86e9561bd11e045b9cb0d1c7f17fe
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed May 6 10:25:41 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    | 9145 +++++++++++++++++++++++++++++++++++++++++++++++++
 package-lock.json     |  852 +++++
 package.json          |   13 +
 public/favicon.svg    |    4 +
 public/hero-bg.jpg    |  Bin 0 -> 514930 bytes
 public/index.html     |  613 ++++
 server.js             |  110 +
 site.config.json      |   21 +
 11 files changed, 11066 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..5f2bd53
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,9145 @@
+[
+  {
+    "sku": "hollywood-tailored-xhw-2010180",
+    "handle": "hollywood-tailored-xhw-2010180",
+    "title": "Hollywood Tailored | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-solaire_4ddd8e59-7726-4952-8e48-b28f153ded6c.jpg?v=1777480977",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grey",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Grey",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Pale Grey",
+      "Serene",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010180"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53316",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53316",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53316-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710801",
+    "tags": [
+      "Beige",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Navy",
+      "Olive",
+      "Salmon",
+      "Silver",
+      "Teal",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53316"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72175",
+    "handle": "st-silken-durable-vinyl-dur-72175",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72175-sample-clean.jpg?v=1774484675",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Teal",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Seafoam Green",
+      "Serene",
+      "Solid",
+      "Teal",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72175"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47324",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47324",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47324-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704711",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Blonde",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Ochre",
+      "Tan",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47324"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52276",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52276",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52276-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721881",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52276"
+  },
+  {
+    "sku": "dwc-1001630",
+    "handle": "dwc-1001630",
+    "title": "Nina Campbell Wallcovering",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309489203.jpg?v=1775521230",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Almond",
+      "Arabesque",
+      "Architectural",
+      "Beige",
+      "Black",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Greige",
+      "Linen",
+      "NCW4350-06",
+      "Nina Campbell",
+      "Nina Campbell Wallcovering Wallcovering",
+      "Paisley",
+      "Paper",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwc-1001630"
+  },
+  {
+    "sku": "canal-texture-durable-walls-xwa-52087",
+    "handle": "canal-texture-durable-walls-xwa-52087",
+    "title": "Canal Texture Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-cream.jpg?v=1777480386",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52087"
+  },
+  {
+    "sku": "dwkk-139830",
+    "handle": "dwkk-139830",
+    "title": "Palmero Paper - Leaf Green By Lee Jofa | Westport | Botanical & Floral Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2018105_123_9a1279bc-39a0-446d-9b80-48f21773697b.jpg?v=1753291187",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Army",
+      "Beige",
+      "Botanical",
+      "Botanical & Floral",
+      "Commercial",
+      "display_variant",
+      "Green",
+      "Leaf",
+      "Lee Jofa",
+      "Linen",
+      "Luxury",
+      "Moss",
+      "Olive Green",
+      "P2018105.123.0",
+      "Palmero Paper",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "United States",
+      "Vine",
+      "Wallcovering",
+      "Westport"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-139830"
+  },
+  {
+    "sku": "fairford-vinyl-wallcovering-xlb-47659",
+    "handle": "fairford-vinyl-wallcovering-xlb-47659",
+    "title": "Fairford Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47659-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711655",
+    "tags": [
+      "Architectural",
+      "Auburn",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Wheat",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47659"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53304",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53304",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53304-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710700",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53304"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72049",
+    "handle": "saint-helene-durable-vinyl-dur-72049",
+    "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72049-sample-clean.jpg?v=1774484141",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72049"
+  },
+  {
+    "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47226",
+    "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47226",
+    "title": "Barnard Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/batiste-cotton.jpg?v=1777480100",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Pale Grey",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 52.78,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47226"
+  },
+  {
+    "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": "dwqw-56964-handle",
+    "handle": "dwqw-56964-handle",
+    "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Apricot | Architectural Wallcoverings",
+    "vendor": "Malibu Wallpaper",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31721.jpg?v=1748380580",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Background Color apricot",
+      "Background Color Rosy Brown",
+      "Bohemian",
+      "Boho Rhapsody",
+      "Class \"A\" Fire Rated",
+      "Commercial",
+      "Embossed Vinyl",
+      "Fabric",
+      "Indie Linen Embossed Vinyl",
+      "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl",
+      "Light Beige",
+      "Light Duty",
+      "Low Traffic",
+      "Residential",
+      "Residential Use",
+      "Rosy Brown",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwqw-56964-handle"
+  },
+  {
+    "sku": "eur-80183-ncw4182-designer-wallcoverings-los-angeles",
+    "handle": "eur-80183-ncw4182-designer-wallcoverings-los-angeles",
+    "title": "Penglai 01 - Pastel Green Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498714163.jpg?v=1775522617",
+    "tags": [
+      "Almond",
+      "ANIMAL/INSECTS",
+      "Architectural",
+      "Army",
+      "Bedroom",
+      "bird",
+      "Birds",
+      "Botanical",
+      "CATHAY",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Denim",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Greige",
+      "Lavender",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Maize",
+      "Moss",
+      "Mustard Yellow",
+      "NCW4182",
+      "NCW4182 -01",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Off-white",
+      "Olive Green",
+      "Orange",
+      "Organic Modern",
+      "Pale Peach",
+      "Paper",
+      "Penglai",
+      "Purple",
+      "Putty",
+      "Sage Green",
+      "Serene",
+      "Traditional",
+      "Wallcovering",
+      "Walnut",
+      "Whimsical",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80183-ncw4182-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53302",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53302",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53302-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710682",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53302"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53314",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53314",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53314-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710784",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53314"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+    "title": "Hugo - Khaki | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3323_8.jpg?v=1762297605",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contract",
+      "Grasscloth",
+      "Gray",
+      "Herringbone",
+      "Hugo",
+      "Light Gray",
+      "Linen",
+      "Silver",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3323_8-jpg"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_kam-5096-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_kam-5096-jpg",
+    "title": "Kami - Morganite | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5096.jpg?v=1762298172",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Embossed",
+      "Geometric",
+      "Gold",
+      "Kami",
+      "Linen",
+      "Morganite",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5096-jpg"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72290",
+    "handle": "la-voltere-durable-vinyl-dur-72290",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72290-sample-clean.jpg?v=1774485056",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72290"
+  },
+  {
+    "sku": "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": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-indigo.jpg?v=1777480795",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Teal",
+      "Bedroom",
+      "Blue",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Serene",
+      "Stripe",
+      "Teal",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53175"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53172",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53172",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-angora.jpg?v=1777480791",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Serene",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53172"
+  },
+  {
+    "sku": "dwtt-71912-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71912-designer-wallcoverings-los-angeles",
+    "title": "Bilzen Linen Slate | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14128_1e65c9be-57a2-4134-b5c1-e67d6dbe2ed5.jpg?v=1733893146",
+    "tags": [
+      "Architectural",
+      "gray",
+      "light gray",
+      "Pattern",
+      "Slate",
+      "T14128",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71912-designer-wallcoverings-los-angeles"
+  },
+  {
+    "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": "eatonville-faux-linen-durable-walls-xwt-53315",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53315",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53315-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710792",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53315"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72299",
+    "handle": "la-voltere-durable-vinyl-dur-72299",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72299-sample-clean.jpg?v=1774485096",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72299"
+  },
+  {
+    "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52785",
+    "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52785",
+    "title": "Steuben Embossed Vertical Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52785-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734822",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Pale Gray",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52785"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52280",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52280",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52280-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721914",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52280"
+  },
+  {
+    "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47737",
+    "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47737",
+    "title": "Harrison Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlg-47737-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716447",
+    "tags": [
+      "Abstract",
+      "Alabaster",
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Pale Grey",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47737"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53071",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53071",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53071-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703570",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Red",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Red",
+      "Salmon",
+      "Solid",
+      "Terracotta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53071"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52264",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52264",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52264-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721785",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52264"
+  },
+  {
+    "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52655",
+    "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52655",
+    "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52655-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709283",
+    "tags": [
+      "Abstract",
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cotton",
+      "Geometric",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Linen",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Modern",
+      "Office",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52655"
+  },
+  {
+    "sku": "st-silkey-durable-vinyl-dur-72187",
+    "handle": "st-silkey-durable-vinyl-dur-72187",
+    "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72187-sample-clean.jpg?v=1774484719",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72187"
+  },
+  {
+    "sku": "la-arebe-durable-vinyl-dur-72198",
+    "handle": "la-arebe-durable-vinyl-dur-72198",
+    "title": "La Arebe Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72198-sample-clean.jpg?v=1774484764",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Brushstroke",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Color: Purple",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Linen",
+      "Living Room",
+      "Mauve",
+      "Non-woven",
+      "Off-white",
+      "Pale Lavender",
+      "Pink",
+      "Purple",
+      "Serene",
+      "Single Dominant Background Color Word",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-arebe-durable-vinyl-dur-72198"
+  },
+  {
+    "sku": "hollywood-tailored-xhw-2010177",
+    "handle": "hollywood-tailored-xhw-2010177",
+    "title": "Hollywood Tailored | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-park_row.jpg?v=1777480970",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gray",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Medium Gray",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010177"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+    "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48120-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727825",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-White",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48120"
+  },
+  {
+    "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+    "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+    "title": "Oxford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xvg-49331-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728331",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Moss",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49331"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52277",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52277",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52277-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721890",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52277"
+  },
+  {
+    "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": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+    "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48130-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728162",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Orford Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48130"
+  },
+  {
+    "sku": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+    "handle": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+    "title": "Horse Shoe Contemporary Bay Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53726-sample-horse-shoe-contemporary-bay-durable-hollywood-wallcoverings.jpg?v=1775719241",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Gray",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Living Room",
+      "Modern",
+      "Serene",
+      "Silver",
+      "Stripe",
+      "Textured",
+      "Trending Wallcovering Collection 2026",
+      "Vinyl",
+      "Wallcovering",
+      "Year of the Horse",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/horse-shoe-contemporary-bay-durable-walls-xje-53726"
+  },
+  {
+    "sku": "dwtt-71916-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71916-designer-wallcoverings-los-angeles",
+    "title": "Bilzen Linen Coral | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14132_ff6f65e3-42b8-4ef1-a8a1-92e7bf29bdd0.jpg?v=1733893138",
+    "tags": [
+      "Architectural",
+      "coral",
+      "Pattern",
+      "peach",
+      "Solid",
+      "T14132",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71916-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "sesame-contemporary-embossed-durable-walls-xwj-52478",
+    "handle": "sesame-contemporary-embossed-durable-walls-xwj-52478",
+    "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52478-sample-sesame-contemporary-embossed-durable-hollywood-wallcoverings.jpg?v=1775732970",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Ivory",
+      "Leed Walls",
+      "Light Grey",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Vinyl Wallcoverings",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52478"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52266-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721801",
+    "tags": [
+      "Beige",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Navy",
+      "Olive",
+      "Silver",
+      "Teal",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52266"
+  },
+  {
+    "sku": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+    "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48128-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728106",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Orford Type 2 Vinyl  Wallcovering",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48128"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-sisal.jpg?v=1777480782",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Sand",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53167"
+  },
+  {
+    "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+    "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+    "title": "Pippy's Peacock - Teal Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53622-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716638",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Silver Gray",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53622"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53310",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53310",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53310-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710750",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53310"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72055",
+    "handle": "saint-helene-durable-vinyl-dur-72055",
+    "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72055-sample-clean.jpg?v=1774484174",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Organic Modern",
+      "Scandinavian",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72055"
+  },
+  {
+    "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": "toscana-taupe-linen-grasscloth-wallcovering-fentucci",
+    "handle": "toscana-taupe-linen-grasscloth-wallcovering-fentucci",
+    "title": "Toscana Taupe Linen Grasscloth Wallcovering | Fentucci",
+    "vendor": "Fentucci",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26450.jpg?v=1776879777",
+    "tags": [
+      "Fentucci",
+      "Grasscloth",
+      "Linen",
+      "new-onboard",
+      "sample-only",
+      "Taupe",
+      "Texture",
+      "Toscana",
+      "Wallcovering"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/toscana-taupe-linen-grasscloth-wallcovering-fentucci"
+  },
+  {
+    "sku": "ellsworth-sky-sunny-stripe-wallpaper-cca-83144",
+    "handle": "ellsworth-sky-sunny-stripe-wallpaper-cca-83144",
+    "title": "Ellsworth Sky Sunny Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/86c55ab5cfea32134dd36ac3a1181a14.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Coastal",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ellsworth-sky-sunny-stripe-wallpaper-cca-83144"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52281",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52281",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52281-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721922",
+    "tags": [
+      "Black",
+      "Dim",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Gray",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Silver",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52281"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52282",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52282",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52282-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721929",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52282"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72069",
+    "handle": "la-roche-durable-vinyl-dur-72069",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72069-sample-clean.jpg?v=1774484257",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Sage",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Pale Green",
+      "Seafoam Green",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72069"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53312",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53312",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53312-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710767",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53312"
+  },
+  {
+    "sku": "el-escaya-durable-vinyl-dur-72289",
+    "handle": "el-escaya-durable-vinyl-dur-72289",
+    "title": "El Escaya Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72289-sample-clean.jpg?v=1774485051",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Whisper White",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/el-escaya-durable-vinyl-dur-72289"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53303",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53303",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53303-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710692",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53303"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52283",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52283",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52283-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721938",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52283"
+  },
+  {
+    "sku": "marseilles-wallpaper-xp3-68074",
+    "handle": "marseilles-wallpaper-xp3-68074",
+    "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7688fb217fd2c97b3eba54c9ebe7a1ba.jpg?v=1733882134",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Marseilles Vinyl",
+      "Phillip Romano Commercial",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68074"
+  },
+  {
+    "sku": "orford-type-ii-vinyl-wallcovering-xmz-48126",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48126",
+    "title": "Orford Type II Vinyl  Wallpaper | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48126-sample-orford-type-ii-vinyl-wallpaper-hollywood-wallcoverings.jpg?v=1775727961",
+    "tags": [
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Canvas",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Ecru",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48126"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-nettle.jpg?v=1777480766",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Solid",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53157"
+  },
+  {
+    "sku": "saint-helene-durable-vinyl-dur-72042",
+    "handle": "saint-helene-durable-vinyl-dur-72042",
+    "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72042-sample-clean.jpg?v=1774484099",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72042"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72295",
+    "handle": "la-voltere-durable-vinyl-dur-72295",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72295-sample-clean.jpg?v=1774485081",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Forest Green",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Hunter Green",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72295"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72068",
+    "handle": "la-roche-durable-vinyl-dur-72068",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72068-sample-clean.jpg?v=1774484252",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Light Taupe",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Pale Beige",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72068"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52931",
+    "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52931",
+    "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52931-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734528",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Ochre",
+      "Stripe",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52931"
+  },
+  {
+    "sku": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+    "handle": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+    "title": "Almora 01 - Green Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507627059.jpg?v=1775524017",
+    "tags": [
+      "Almora",
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "Dusty Rose",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Linen",
+      "Living Room",
+      "Mustard Yellow",
+      "NCW4491",
+      "NCW4491-01",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Paper",
+      "Pink",
+      "Rose Pink",
+      "Sage Green",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Traditional",
+      "Vine",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80426-ncw4491-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "steuben-navy-turf-stripe-wallpaper-cca-83173",
+    "handle": "steuben-navy-turf-stripe-wallpaper-cca-83173",
+    "title": "Steuben Navy Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/766f75af44f34600aec8b45f23f75a5a.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Coastal",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Steuben Navy Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-navy-turf-stripe-wallpaper-cca-83173"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72174",
+    "handle": "st-silken-durable-vinyl-dur-72174",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72174-sample-clean.jpg?v=1774484670",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Olive",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Khaki",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Olive",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72174"
+  },
+  {
+    "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+    "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+    "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48200-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729764",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Ramsey Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48200"
+  },
+  {
+    "sku": "lovela-faux-vertical-durable-walls-xwo-53603",
+    "handle": "lovela-faux-vertical-durable-walls-xwo-53603",
+    "title": "Mansion Marble - Florencia Marble Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-jojoba.jpg?v=1777480885",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Ecru",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53603"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br11059-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br11059-jpg",
+    "title": "BR11059 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br11055.jpg?v=1733873623",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "BR11059",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Lemon",
+      "Light Gray",
+      "Linen",
+      "Paper",
+      "Tan",
+      "Textured",
+      "Transitional",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br11059-jpg"
+  },
+  {
+    "sku": "dwqw-56962-handle",
+    "handle": "dwqw-56962-handle",
+    "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Jade | Architectural Wallcoverings",
+    "vendor": "Malibu Wallpaper",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31714.jpg?v=1748380584",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "ASTM E84 Class A",
+      "Background Color Jade",
+      "Bohemian",
+      "Boho Rhapsody",
+      "Class \"A\" Fire Rated",
+      "Class \"A\" Fire Rated | Suitable for Residential and Commercial",
+      "Commercial",
+      "Embossed",
+      "Embossed Vinyl",
+      "Indie Linen Embossed Vinyl",
+      "Jade",
+      "jade green",
+      "Light Duty",
+      "light gray",
+      "Low Traffic",
+      "Malibu Wallcovering",
+      "Residential",
+      "Residential Use",
+      "Texture",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 99,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwqw-56962-handle"
+  },
+  {
+    "sku": "dwtt-71794-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71794-designer-wallcoverings-los-angeles",
+    "title": "Stanbury Trellis Linen on Navy on Green | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35116_bacfa08e-00a2-4883-9a3f-49639ac0ff63.jpg?v=1733893390",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Graphic Resource",
+      "green",
+      "navy",
+      "Navy on Green",
+      "Pattern",
+      "T35116",
+      "Thibaut",
+      "Traditional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71794-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_sp10206-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_sp10206-jpg",
+    "title": "SP10206 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10205.jpg?v=1733872393",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Linen",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10206-jpg"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72172",
+    "handle": "st-silken-durable-vinyl-dur-72172",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72172-sample-clean.jpg?v=1774484661",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Sage",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Sage Green",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72172"
+  },
+  {
+    "sku": "hollywood-tailored-xhw-2010189",
+    "handle": "hollywood-tailored-xhw-2010189",
+    "title": "Hollywood Tailored | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-grand_banks.jpg?v=1777480988",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010189"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47325",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47325",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47325-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704738",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Pale Gold",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47325"
+  },
+  {
+    "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910",
+    "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910",
+    "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52910-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734449",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910"
+  },
+  {
+    "sku": "ketut-wp-linen-caroline-cecil-textiles",
+    "handle": "ketut-wp-linen-caroline-cecil-textiles",
+    "title": "Ketut Wp Linen | Caroline Cecil Textiles",
+    "vendor": "Caroline Cecil Textiles",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2346_16.jpg?v=1776818906",
+    "tags": [
+      "Caroline Cecil Textiles",
+      "Kravet",
+      "New Arrival",
+      "Origin: United Kingdom",
+      "Print",
+      "Wallcovering"
+    ],
+    "max_price": 311.85,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ketut-wp-linen-caroline-cecil-textiles"
+  },
+  {
+    "sku": "st-silkey-durable-vinyl-dur-72183",
+    "handle": "st-silkey-durable-vinyl-dur-72183",
+    "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72183-sample-clean.jpg?v=1774484710",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Blue",
+      "Light Mint",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Aqua",
+      "Serene",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72183"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53308",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53308",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53308-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710732",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53308"
+  },
+  {
+    "sku": "gironde-durable-vinyl-dur-72116",
+    "handle": "gironde-durable-vinyl-dur-72116",
+    "title": "Gironde Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72116-sample-clean.jpg?v=1774484452",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Rustic",
+      "Serene",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72116"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52272",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52272",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52272-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721850",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52272"
+  },
+  {
+    "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47941",
+    "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47941",
+    "title": "Maidstone - Linen Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-frosted_e29e5bfc-bb6f-4e5a-b4b8-aba621c700f9.jpg?v=1777481372",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color White",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Stone",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Geometric",
+      "Grey",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Living Room",
+      "Maidstone Type 2 Vinyl  Wallcovering",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Paper",
+      "Serene",
+      "Stone Look",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 55.38,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47941"
+  },
+  {
+    "sku": "st-silkey-durable-vinyl-dur-72190",
+    "handle": "st-silkey-durable-vinyl-dur-72190",
+    "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72190-sample-clean.jpg?v=1774484734",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Orange",
+      "Peach",
+      "Salmon",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72190"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+    "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47707-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712695",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Camel",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Sand",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47707"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48166",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48166-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728399",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48166"
+  },
+  {
+    "sku": "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": "la-voltere-durable-vinyl-dur-72297",
+    "handle": "la-voltere-durable-vinyl-dur-72297",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72297-sample-clean.jpg?v=1774485086",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Gray",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72297"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+    "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47706-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712668",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Biophilic",
+      "Celery",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fern",
+      "Green",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Moss",
+      "Off-white",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Spruce",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47706"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52268",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52268",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52268-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721818",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52268"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48164",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48164",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48164-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728364",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-white",
+      "Office",
+      "Organic Modern",
+      "Paddock Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48164"
+  },
+  {
+    "sku": "boca-faux-finish-durable-walls-xww-53052",
+    "handle": "boca-faux-finish-durable-walls-xww-53052",
+    "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hanami-vapor.jpg?v=1777480759",
+    "tags": [
+      "abstract",
+      "Almond",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Brushstroke",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "contemporary",
+      "Dining Room",
+      "Faux",
+      "Faux Finish",
+      "Gold",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Linen",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Modern",
+      "Non-woven",
+      "Off-white",
+      "Sophisticated",
+      "Taupe",
+      "textured",
+      "Vinyl",
+      "Wallcovering",
+      "Walnut",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53052"
+  },
+  {
+    "sku": "st-silkey-durable-vinyl-dur-72181",
+    "handle": "st-silkey-durable-vinyl-dur-72181",
+    "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72181-sample-clean.jpg?v=1774484700",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Ecru",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72181"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53317",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53317",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53317-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710809",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53317"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-iron_buff.jpg?v=1777480792",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Oatmeal",
+      "Rustic",
+      "Sand",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53173"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72168",
+    "handle": "st-silken-durable-vinyl-dur-72168",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72168-sample-clean.jpg?v=1774484641",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72168"
+  },
+  {
+    "sku": "twickenham-type-ii-vinyl-wallcovering-xqm-48539",
+    "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48539",
+    "title": "Twickenham Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqm-48539-sample-twickenham-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735486",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Scandinavian",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Twickenham Type 2 Vinyl  Wallcovering",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48539"
+  },
+  {
+    "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": "st-silken-durable-vinyl-dur-72170",
+    "handle": "st-silken-durable-vinyl-dur-72170",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72170-sample-clean.jpg?v=1774484651",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72170"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48170-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728463",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Light Sage",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48170"
+  },
+  {
+    "sku": "dwtt-71791-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71791-designer-wallcoverings-los-angeles",
+    "title": "Russell Square Linen on Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35103_43a9e47b-1cd6-409b-8063-020748c842a6.jpg?v=1733893395",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Graphic Resource",
+      "gray",
+      "Grey",
+      "Mid-Century",
+      "Pattern",
+      "T35103",
+      "Thibaut",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71791-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53072",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53072",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53072-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703573",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Gray",
+      "Grey",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53072"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72164",
+    "handle": "st-silken-durable-vinyl-dur-72164",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72164-sample-clean.jpg?v=1774484631",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Solid",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72164"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47288",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47288",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47288-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775703762",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Pale Grey",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47288"
+  },
+  {
+    "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": "eatonville-faux-linen-durable-walls-xwt-53307",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53307",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53307-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710724",
+    "tags": [
+      "Beige",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Indigo",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Olive",
+      "Salmon",
+      "Teal",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53307"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53162",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53162",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-challis_43534bb3-bba2-411e-b917-c023cb1481e6.jpg?v=1777481121",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53162"
+  },
+  {
+    "sku": "marseilles-wallpaper-xp3-68073",
+    "handle": "marseilles-wallpaper-xp3-68073",
+    "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6d9845dbb93e91c9b9225eff2e146844.jpg?v=1733882132",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Marseilles Vinyl",
+      "Phillip Romano Commercial",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68073"
+  },
+  {
+    "sku": "hollywood-faux-woven-textile-wall-xhw-2010414",
+    "handle": "hollywood-faux-woven-textile-wall-xhw-2010414",
+    "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-samite.jpg?v=1777481101",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Khaki",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Sand",
+      "Silk Texture",
+      "Tan",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2 Durable Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven",
+      "Woven Look"
+    ],
+    "max_price": 53.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010414"
+  },
+  {
+    "sku": "titik-wp-linen-caroline-cecil-textiles",
+    "handle": "titik-wp-linen-caroline-cecil-textiles",
+    "title": "Titik Wp Linen | Caroline Cecil Textiles",
+    "vendor": "Caroline Cecil Textiles",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2347_16.jpg?v=1777019997",
+    "tags": [
+      "Abstract",
+      "Bedroom",
+      "Beige",
+      "Caroline Cecil Textiles",
+      "Contemporary",
+      "Geometric",
+      "Kravet",
+      "Living Room",
+      "Minimalist",
+      "New Arrival",
+      "Nursery",
+      "Off-White",
+      "Office",
+      "Origin: United Kingdom",
+      "Print",
+      "Scandinavian",
+      "Wallcovering"
+    ],
+    "max_price": 311.85,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/titik-wp-linen-caroline-cecil-textiles"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_br011-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_br011-jpg",
+    "title": "BR011 | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br010.jpg?v=1733873689",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Linen",
+      "Tan",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br011-jpg"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53318",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53318",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53318-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710817",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53318"
+  },
+  {
+    "sku": "maryport-type-ii-vinyl-wallcovering-xmp-48005",
+    "handle": "maryport-type-ii-vinyl-wallcovering-xmp-48005",
+    "title": "Maryport Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmp-48005-maryport-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775724479",
+    "tags": [
+      "Abstract",
+      "Architectural",
+      "Black",
+      "Blue",
+      "Champagne",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Glamorous",
+      "Gold",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Hotel Lobby",
+      "Linen",
+      "Living Room",
+      "Luxe",
+      "Navy",
+      "Paper",
+      "Regencycore",
+      "Silver",
+      "Sophisticated",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/maryport-type-ii-vinyl-wallcovering-xmp-48005"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47326",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47326",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47326-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704766",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47326"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52275",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52275",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52275-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721873",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52275"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48185",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48185",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48185-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728774",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48185"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52263",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52263",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52263-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721777",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52263"
+  },
+  {
+    "sku": "faux-glass-bead-wallpaper-102-fgb-102",
+    "handle": "faux-glass-bead-wallpaper-102-fgb-102",
+    "title": "Faux Glass Bead Wallcovering - 102 Taupe Shimmer",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-102-sample-faux-glass-bead-wallcovering.jpg?v=1775711794",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Alabaster",
+      "Architectural",
+      "Bedroom",
+      "Bling",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercially Rated Cleanable",
+      "Contemporary",
+      "Faux Finish",
+      "Faux Glass Bead Wallcovering",
+      "Glass Bead",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Platinum",
+      "Serene",
+      "Silver",
+      "Solid",
+      "Textured",
+      "vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 82.74,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-102-fgb-102"
+  },
+  {
+    "sku": "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": "foster-grey-linen-stucco-wallpaper-cca-82955",
+    "handle": "foster-grey-linen-stucco-wallpaper-cca-82955",
+    "title": "Foster Grey Linen Stucco Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/111b56c0e233d418d8e209f44dd0a9a7.jpg?v=1572309963",
+    "tags": [
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Brown",
+      "Linen",
+      "Masculine",
+      "Prepasted",
+      "Series: Brewster",
+      "Solid",
+      "Strippable",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/foster-grey-linen-stucco-wallpaper-cca-82955"
+  },
+  {
+    "sku": "dwkk-115518",
+    "handle": "dwkk-115518",
+    "title": "Newton - Linen | Kravet Couture | Andrew Martin Navigator | Novelty Wallcovering Print",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10044_16_ef2f8e24-41d2-4842-8334-7cadaf46988e.jpg?v=1753123155",
+    "tags": [
+      "20.5In",
+      "Amw10044.16.0",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Brown",
+      "Champagne",
+      "Commercial",
+      "Dark Academia",
+      "display_variant",
+      "Eclectic",
+      "Geometric",
+      "Hallway",
+      "Italy",
+      "Kravet",
+      "Kravet Couture",
+      "Linen",
+      "Living Room",
+      "Newton",
+      "Novelty",
+      "Office",
+      "Paper",
+      "Paper - 100%",
+      "Pattern",
+      "Print",
+      "Sophisticated",
+      "Taupe",
+      "Traditional",
+      "Transitional",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-115518"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72074",
+    "handle": "la-roche-durable-vinyl-dur-72074",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72074-sample-clean.jpg?v=1774484291",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Serene",
+      "Silver Gray",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72074"
+  },
+  {
+    "sku": "lovela-faux-vertical-durable-walls-xwo-53605",
+    "handle": "lovela-faux-vertical-durable-walls-xwo-53605",
+    "title": "Lovela Faux Vertical Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53605-sample-lovela-faux-vertical-durable-hollywood-wallcoverings.jpg?v=1775723109",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ecru",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53605"
+  },
+  {
+    "sku": "vernon-durable-walls-xwr-52695",
+    "handle": "vernon-durable-walls-xwr-52695",
+    "title": "Vernon Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52695-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735774",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52695"
+  },
+  {
+    "sku": "dwkk-g0933c476",
+    "handle": "dwkk-g0933c476",
+    "title": "Boutique Floral - Delft Dark Blue By Lee Jofa | Sarah Bartholomew | Botanical & Floral Multipurpose Linen",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2022101_5_060796c6-a8c9-450d-a5b7-c0e35f41109a.jpg?v=1726530286",
+    "tags": [
+      "2022101.5.0",
+      "54In",
+      "Blue",
+      "Botanical & Floral",
+      "Boutique Floral",
+      "Dark Blue",
+      "Delft",
+      "display_variant",
+      "Lee Jofa",
+      "Light Blue",
+      "Linen",
+      "Linen - 51%;Viscose - 49%",
+      "Multipurpose",
+      "Print",
+      "Sarah Bartholomew",
+      "United States",
+      "Wallcovering"
+    ],
+    "max_price": 260.24,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-g0933c476"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52270",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52270",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52270-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721833",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52270"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_dtup-480-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_dtup-480-jpg",
+    "title": "Tupelo - Honey | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DTUP-480.jpg?v=1762292572",
+    "tags": [
+      "100% Vinyl",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Dark Brown",
+      "Digital Curated",
+      "Light Brown",
+      "Linen",
+      "Paper",
+      "Rustic",
+      "Textured",
+      "Traditional",
+      "Tupelo",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dtup-480-jpg"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53306",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53306",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53306-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710715",
+    "tags": [
+      "Beige",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Navy",
+      "Olive",
+      "Salmon",
+      "Silver",
+      "Teal",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53306"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+    "title": "Lyra - Linen | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3382_8.jpg?v=1762300054",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract",
+      "Gray",
+      "Linen",
+      "Lyra",
+      "Stripe",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3382_8-jpg"
+  },
+  {
+    "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52780",
+    "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52780",
+    "title": "Steuben Embossed Vertical Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52780-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734803",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Embossed Texture",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52780"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53161",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53161",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-coconut_0b1d474f-6793-4daa-a5c4-df273162d2be.jpg?v=1777481119",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Ivory",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Off-White",
+      "Organic Modern",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53161"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72077",
+    "handle": "la-roche-durable-vinyl-dur-72077",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72077-sample-clean.jpg?v=1774484305",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Chocolate Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Durable Type 2 Vinyl",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Rustic",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72077"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53171",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53171",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-ermine_7fbe984a-266f-4b0e-83c3-c502f00fa51f.jpg?v=1777481226",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Oatmeal",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53171"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47329-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704847",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47329"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53174",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53174",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-nicosia.jpg?v=1777480794",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Gray",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Gray",
+      "Green",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53174"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-safflower.jpg?v=1777480775",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Yellow",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wheat",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53163"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72309",
+    "handle": "la-voltere-durable-vinyl-dur-72309",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72309-sample-clean.jpg?v=1774485127",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72309"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52265",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52265",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52265-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721794",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52265"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48173-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728542",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Green",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sage",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48173"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52274",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52274",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52274-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721866",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52274"
+  },
+  {
+    "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": "dwkk-140164",
+    "handle": "dwkk-140164",
+    "title": "Ikat Stripe Wp - Coral Pink By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+    "vendor": "Lee Jofa",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_917_4463401f-bd36-4340-bda4-cef9ef2c7749.jpg?v=1753291827",
+    "tags": [
+      "27.5In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Beige",
+      "Blithfield",
+      "Bohemian",
+      "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+      "Class A Fire Rated",
+      "Commercial",
+      "Coral",
+      "display_variant",
+      "Fabric",
+      "Ikat",
+      "Ikat Stripe Wp",
+      "Ikat/Southwest/Kilims",
+      "Lee Jofa",
+      "Linen",
+      "Luxury",
+      "Pbfc-3531.917.0",
+      "Pink",
+      "Print",
+      "Stripe",
+      "Stripes",
+      "United States",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-140164"
+  },
+  {
+    "sku": "la-voltere-durable-vinyl-dur-72300",
+    "handle": "la-voltere-durable-vinyl-dur-72300",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72300-sample-clean.jpg?v=1774485101",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72300"
+  },
+  {
+    "sku": "rivo-dulce-durable-vinyl-dur-72412",
+    "handle": "rivo-dulce-durable-vinyl-dur-72412",
+    "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72412-sample-clean.jpg?v=1774485435",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Basketweave",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Grasscloth",
+      "Grey",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Off-white",
+      "Rivo Dulce Durable Vinyl",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72412"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+    "title": "ST10427M | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10426m.jpg?v=1733872136",
+    "tags": [
+      "Animal/Insects",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Linen",
+      "Minimalist",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10427m-jpg"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48178",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48178",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48178-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728656",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Paddock Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48178"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_srp-5304-jpg",
+    "title": "Sparta - Raw Linen | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5304.jpg?v=1762309207",
+    "tags": [
+      "100% Vinyl",
+      "Architectural",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Gray",
+      "Lattice",
+      "RAMPART®",
+      "Raw Linen",
+      "Sparta",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5304-jpg"
+  },
+  {
+    "sku": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+    "handle": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+    "title": "Ellsworth Denim Sunny Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/851ee956abdc1c04e60d8a7222c57316.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Linen",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ellsworth-denim-sunny-stripe-wallpaper-cca-83145"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72178",
+    "handle": "st-silken-durable-vinyl-dur-72178",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72178-sample-clean.jpg?v=1774484685",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Burnt Orange",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Orange",
+      "Rustic",
+      "Solid",
+      "Tangerine",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72178"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-rice.jpg?v=1777480781",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Ecru",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53166"
+  },
+  {
+    "sku": "sag-harbor-danish-linen-wallcovering-phillipe-romano",
+    "handle": "sag-harbor-danish-linen-wallcovering-phillipe-romano",
+    "title": "Sag Harbor - Danish Linen Wallcovering | Phillipe Romano",
+    "vendor": "Phillipe Romano",
+    "product_type": "Commercial Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kUWjSj2qTCxP5fGLpr0NC1e1SiFmyET61eBcLxBB.jpg?v=1776190104",
+    "tags": [
+      "Architectural",
+      "Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Fire Rated",
+      "Full Roll",
+      "Geometric",
+      "Gray",
+      "Hollywood Vinyls Vol. 1",
+      "mfr:DWHV-101103",
+      "Navy",
+      "Phillipe Romano",
+      "Sag Harbor",
+      "Textured",
+      "Vinyl",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sag-harbor-danish-linen-wallcovering-phillipe-romano"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53164",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53164",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-tumeric.jpg?v=1777480777",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Golden Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Rustic",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53164"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWY-53160-sample-clean.jpg?v=1774481847",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Orange",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "Umber",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53160"
+  },
+  {
+    "sku": "orford-type-ii-vinyl-wallcovering-xmz-48129",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48129",
+    "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48129-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728133",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Yellow",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Orford Type 2 Vinyl  Wallcovering",
+      "Organic Modern",
+      "Pale Yellow",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48129"
+  },
+  {
+    "sku": "canal-damask-durable-vinyl-xwa-52081",
+    "handle": "canal-damask-durable-vinyl-xwa-52081",
+    "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52081-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707064",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Damask",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pattern",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 66.82,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52081"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47703",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47703",
+    "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47703-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712603",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ferryhill Type 2 Vinyl  Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47703"
+  },
+  {
+    "sku": "hollywood-tailored-xhw-2010182",
+    "handle": "hollywood-tailored-xhw-2010182",
+    "title": "Hollywood Tailored | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-hudson.jpg?v=1777480980",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Cream",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Serene",
+      "Taupe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "White",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look"
+    ],
+    "max_price": 59.87,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010182"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48112",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48112",
+    "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48112-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727652",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Olney Type 2 Vinyl",
+      "Serene",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48112"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52269",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52269",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52269-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721826",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52269"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53079",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53079",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53079-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703598",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53079"
+  },
+  {
+    "sku": "eur-80437-ncw4493-designer-wallcoverings-los-angeles",
+    "handle": "eur-80437-ncw4493-designer-wallcoverings-los-angeles",
+    "title": "Petit Dapuri Stripe 02 - Green Wallcovering | Nina Campbell",
+    "vendor": "Nina Campbell",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508020275.jpg?v=1775524089",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial",
+      "Cottagecore",
+      "Cream",
+      "English Country",
+      "Floral",
+      "Grandmillennial",
+      "Green",
+      "Linen",
+      "Living Room",
+      "NCW4493",
+      "NCW4493-02",
+      "Nina Campbell",
+      "Nina Campbell Europe",
+      "Nursery",
+      "Paper",
+      "Petit Dapuri Stripe",
+      "Pink",
+      "Red",
+      "Rose",
+      "Sage",
+      "Serene",
+      "SIGNATURE COLLECTION",
+      "Stripe",
+      "Traditional",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eur-80437-ncw4493-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "parvani-linen-baker-lifestyle",
+    "handle": "parvani-linen-baker-lifestyle",
+    "title": "Parvani Linen | Baker Lifestyle",
+    "vendor": "Baker Lifestyle",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78034_5_3f924781-0c2e-438b-9846-83f79e437024.jpg?v=1777019988",
+    "tags": [
+      "Baker Lifestyle",
+      "Bedroom",
+      "Beige",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Entryway",
+      "Floral",
+      "Gold",
+      "Gray",
+      "Kravet",
+      "Living Room",
+      "Mediterranean",
+      "New Arrival",
+      "Origin: United Kingdom",
+      "Ornamental",
+      "Paisley",
+      "Taupe",
+      "Traditional",
+      "Transitional",
+      "Wallcovering"
+    ],
+    "max_price": 154.35,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/parvani-linen-baker-lifestyle"
+  },
+  {
+    "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-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": "hanover-faux-embossed-faux-linen-walls-xwy-53156",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53156",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-jute.jpg?v=1777480764",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Ecru",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Oatmeal",
+      "Organic Modern",
+      "Serene",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Yellow"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53156"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72067",
+    "handle": "la-roche-durable-vinyl-dur-72067",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72067-sample-clean.jpg?v=1774484247",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72067"
+  },
+  {
+    "sku": "dwkk-129102",
+    "handle": "dwkk-129102",
+    "title": "W3732-5 Light Blue | Kravet Design | Ronald Redding | Solid Texture Wallcovering",
+    "vendor": "Kravet",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3732_5_8efd05d8-a6fb-4bf7-b13d-ed1c6022f9f0.jpg?v=1753121556",
+    "tags": [
+      "27In",
+      "Architectural",
+      "Archived-Triple-Verified",
+      "Archived-Vendor-Gone",
+      "Bathroom",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial",
+      "Contemporary",
+      "display_variant",
+      "Fabric",
+      "Hallway",
+      "Kravet",
+      "Kravet Design",
+      "Light Blue",
+      "Light Gray",
+      "Linen",
+      "Minimalist",
+      "Pale Aqua",
+      "Paper - 100%",
+      "Ronald Redding",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "United States",
+      "W3732-5",
+      "W3732.5.0",
+      "Wallcovering",
+      "Woven"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwkk-129102"
+  },
+  {
+    "sku": "ellsworth-butter-sunny-stripe-wallpaper-cca-83147",
+    "handle": "ellsworth-butter-sunny-stripe-wallpaper-cca-83147",
+    "title": "Ellsworth Butter Sunny Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ee4dc963f8c221e08bcf7fd2f7c0c5b2.jpg?v=1572309970",
+    "tags": [
+      "Architectural",
+      "Commercial",
+      "Country",
+      "Discontinued",
+      "Easy Walls",
+      "Gray",
+      "LA Walls",
+      "Linen",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "White",
+      "YB-Discontinued-2026-04",
+      "Yellow"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ellsworth-butter-sunny-stripe-wallpaper-cca-83147"
+  },
+  {
+    "sku": "gironde-durable-vinyl-dur-72101",
+    "handle": "gironde-durable-vinyl-dur-72101",
+    "title": "Gironde Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72101-sample-clean.jpg?v=1774484398",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72101"
+  },
+  {
+    "sku": "prince-vertical-emboss-durable-walls-xwj-52396",
+    "handle": "prince-vertical-emboss-durable-walls-xwj-52396",
+    "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-opera_white.jpg?v=1777480571",
+    "tags": [
+      "Architectural",
+      "Bathroom",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Embossed",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Grey",
+      "Linen",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Off-white",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwj-52396"
+  },
+  {
+    "sku": "i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1",
+    "handle": "i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1",
+    "title": "I Love Baroque Medusa Stripe White Linen Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/522e5849c0f09262a5c7745fa4648102.jpg?v=1773710383",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Black",
+      "Brown",
+      "Charcoal Gray",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dusty Rose",
+      "Gray",
+      "I Love Baroque Medusa Stripe",
+      "I Love Baroque Medusa Stripe White Linen Wallcovering",
+      "Italian",
+      "Light Wood",
+      "Linen",
+      "Living Room",
+      "Luxury",
+      "Minimalist",
+      "Needs-Image",
+      "Office",
+      "Paper",
+      "Paste the wall",
+      "Peach",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering",
+      "White Linen"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1"
+  },
+  {
+    "sku": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+    "handle": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+    "title": "Steuben Aqua Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/368f6eec141e7fdf697ff54cd40f71b7.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Aqua",
+      "Architectural",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Coastal",
+      "Commercial",
+      "Coral",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Pink",
+      "Prepasted",
+      "Series: Brewster",
+      "Steuben Aqua Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 75.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-aqua-turf-stripe-wallpaper-cca-83169"
+  },
+  {
+    "sku": "i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2",
+    "handle": "i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2",
+    "title": "I Love Baroque Medusa Stripe Gold Linen Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/8385a42aa80fee54bce7f6405a38771d.jpg?v=1773710376",
+    "tags": [
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Baroque",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Charcoal Gray",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "display_variant",
+      "Gold",
+      "Gold Linen",
+      "Golden Tan",
+      "I Love Baroque Medusa Stripe",
+      "I Love Baroque Medusa Stripe Gold Linen Wallcovering",
+      "Italian",
+      "Light Beige",
+      "Linen",
+      "Living Room",
+      "Luxury",
+      "Needs-Image",
+      "Office",
+      "Paper",
+      "Paste the wall",
+      "Solid",
+      "Striped",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72065",
+    "handle": "la-roche-durable-vinyl-dur-72065",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72065-sample-clean.jpg?v=1774484237",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Pale Beige",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72065"
+  },
+  {
+    "sku": "vernon-durable-walls-xwp-52688",
+    "handle": "vernon-durable-walls-xwp-52688",
+    "title": "Vernon Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52688-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735756",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Solid",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52688"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52278",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52278",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52278-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721898",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52278"
+  },
+  {
+    "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+    "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+    "title": "Barnard Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjp-47227-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702520",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux Finish",
+      "Faux Wood",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Wood",
+      "Wood Look",
+      "Yellow"
+    ],
+    "max_price": 52.78,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47227"
+  },
+  {
+    "sku": "vernon-durable-walls-xwp-52687",
+    "handle": "vernon-durable-walls-xwp-52687",
+    "title": "Vernon Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52687-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735752",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Stripe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52687"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53313",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53313",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53313-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710775",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53313"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52279",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52279",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52279-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721906",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Stain Repellant",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52279"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53305",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53305",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53305-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710707",
+    "tags": [
+      "Beige",
+      "Coral",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Navy",
+      "Olive",
+      "Plum",
+      "Teal",
+      "Textured",
+      "Wallcovering",
+      "Walnut"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53305"
+  },
+  {
+    "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": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+    "handle": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+    "title": "Kingston Paintable Anaglytpa Original | Jeffrey Stevens",
+    "vendor": "Jeffrey Stevens",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0945bdf51749c0ccaf6dd4244b89ad76.jpg?v=1750790441",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Discontinued",
+      "Green",
+      "Jeffrey Stevens",
+      "Kingston Paintable Anaglytpa Original",
+      "Light Gray",
+      "Linen",
+      "Minimalist",
+      "Non-Woven",
+      "Off-White",
+      "Paintable",
+      "Paper",
+      "Phasing-2026-04",
+      "Scandinavian",
+      "Series: Brewster",
+      "Silver",
+      "Strippable",
+      "Textured",
+      "Traditional",
+      "Unpasted",
+      "Vinyl",
+      "Wallcovering",
+      "Washable",
+      "White"
+    ],
+    "max_price": 39.22,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/kingston-paintable-anaglytpa-original-wallpaper-gga-82664"
+  },
+  {
+    "sku": "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": "lenox-faux-linen-finish-durable-walls-xwf-52267",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52267",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52267-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721809",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52267"
+  },
+  {
+    "sku": "art-de-la-table-cream-linen-wallcovering-versace-2",
+    "handle": "art-de-la-table-cream-linen-wallcovering-versace-2",
+    "title": "Art De La Table Cream Linen Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/165648dcfb77c7878ba556b7f9c2686b.jpg?v=1773710522",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art De La Table",
+      "Art De La Table Cream Linen Wallcovering",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Cream Linen",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Luxury",
+      "Needs-Image",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/art-de-la-table-cream-linen-wallcovering-versace-2"
+  },
+  {
+    "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53630",
+    "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53630",
+    "title": "Hawthorne Faux Vertical Silk Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53630-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716667",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53630"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53309",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53309",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53309-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710740",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53309"
+  },
+  {
+    "sku": "olney-type-ii-vinyl-wallcovering-xmy-48105",
+    "handle": "olney-type-ii-vinyl-wallcovering-xmy-48105",
+    "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48105-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727503",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ecru",
+      "Grasscloth",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Off-white",
+      "Olney Type 2 Vinyl",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48105"
+  },
+  {
+    "sku": "sumatra-by-innovations-usa-dwc-sumatra-2",
+    "handle": "sumatra-by-innovations-usa-dwc-sumatra-2",
+    "title": "Sumatra | Innovations USA",
+    "vendor": "Innovations USA",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-2.jpg?v=1736198828",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Almond",
+      "Architectural",
+      "ASTM E84",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Innovations USA",
+      "Latte",
+      "Light Beige",
+      "Linen",
+      "Off-white",
+      "Stripe",
+      "Sumatra",
+      "Sumatra-2",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-2"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72072",
+    "handle": "la-roche-durable-vinyl-dur-72072",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72072-sample-clean.jpg?v=1774484281",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Off-white",
+      "Orange",
+      "Rustic",
+      "Textured",
+      "Traditional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72072"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53159",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53159",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-bamboo.jpg?v=1777480770",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Brown",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Gold",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Gold",
+      "Golden Brown",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Stripe",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53159"
+  },
+  {
+    "sku": "marketfield-faux-durable-walls-xwh-52321",
+    "handle": "marketfield-faux-durable-walls-xwh-52321",
+    "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-angelica.jpg?v=1777480462",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Vinyl Wallcovering",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52321"
+  },
+  {
+    "sku": "yves-goriga-durable-vinyl-dur-72457",
+    "handle": "yves-goriga-durable-vinyl-dur-72457",
+    "title": "Yves Goriga Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72457-sample-clean.jpg?v=1774485645",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Geometric",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Living Room",
+      "Off-white",
+      "Ogee",
+      "Organic Modern",
+      "Quatrefoil",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/yves-goriga-durable-vinyl-dur-72457"
+  },
+  {
+    "sku": "barocco-linen-navy-blue-wallcovering-versace-1",
+    "handle": "barocco-linen-navy-blue-wallcovering-versace-1",
+    "title": "Barocco Linen Navy Blue Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e650487a5c780000ca81ec1c638b2ecd.jpg?v=1773710473",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Barocco Linen",
+      "Barocco Linen Navy Blue Wallcovering",
+      "Bedroom",
+      "Color: Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Denim Blue",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Living Room",
+      "Luxury",
+      "Midnightblue",
+      "Navy",
+      "Navy Blue",
+      "Needs-Image",
+      "Paste the wall",
+      "Serene",
+      "Steel Blue",
+      "Stripe",
+      "Textured",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barocco-linen-navy-blue-wallcovering-versace-1"
+  },
+  {
+    "sku": "orford-type-ii-vinyl-wallcovering-xmz-48125",
+    "handle": "orford-type-ii-vinyl-wallcovering-xmz-48125",
+    "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48125-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728050",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Orford Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48125"
+  },
+  {
+    "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": "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": "eatonville-faux-linen-durable-walls-xwt-53319",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53319",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53319-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710825",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53319"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47702",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47702",
+    "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47702-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712576",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Ferryhill Type 2 Vinyl  Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47702"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52271",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52271",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52271-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721842",
+    "tags": [
+      "Beige",
+      "Charcoal",
+      "Copper",
+      "Emerald",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Ivory",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Maroon",
+      "Navy",
+      "Olive",
+      "Plum",
+      "Taupe",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52271"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-agave_34188f03-f3bc-4e1e-90e5-efc5bf703da8.jpg?v=1777481369",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Green",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Green",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Olive",
+      "Organic",
+      "Organic Modern",
+      "Sage",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\""
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53169"
+  },
+  {
+    "sku": "hollywood-faux-woven-textile-wall-xhw-2010413",
+    "handle": "hollywood-faux-woven-textile-wall-xhw-2010413",
+    "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-tussah.jpg?v=1777481100",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Background Color Light Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Faux",
+      "Faux Finish",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Faux Woven Textile Wall",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "Light Beige",
+      "Light Gray",
+      "Light Taupe",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Minimalist",
+      "Organic Modern",
+      "Pale Beige",
+      "Serene",
+      "Solid",
+      "Texture",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven Look",
+      "Yellow"
+    ],
+    "max_price": 53.21,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010413"
+  },
+  {
+    "sku": "lenox-faux-linen-finish-durable-walls-xwf-52273",
+    "handle": "lenox-faux-linen-finish-durable-walls-xwf-52273",
+    "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52273-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721858",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Vinyl Wallcovering",
+      "Wallcovering"
+    ],
+    "max_price": 61.9,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52273"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72169",
+    "handle": "st-silken-durable-vinyl-dur-72169",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72169-sample-clean.jpg?v=1774484646",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Timeless",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72169"
+  },
+  {
+    "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+    "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+    "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47701-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712545",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ferryhill Type 2 Vinyl  Wallcovering",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Ivory",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47701"
+  },
+  {
+    "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47766",
+    "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47766",
+    "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47766-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715663",
+    "tags": [
+      "Almond",
+      "Beige",
+      "Bronze",
+      "Coral",
+      "Faux Wood",
+      "Java",
+      "Linen",
+      "Mink",
+      "Mocha",
+      "Navy",
+      "Olive",
+      "Plum",
+      "Stone",
+      "Taupe",
+      "Teal",
+      "Umber",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47766"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_wwdf-205-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_wwdf-205-jpg",
+    "title": "WonderWood® - Teak Fc | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-205f.jpg?v=1762312241",
+    "tags": [
+      "100% Reconstituted Wood Veneer",
+      "Architectural",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Dark Brown",
+      "Linen",
+      "Natural",
+      "Reconstituted",
+      "Stripe",
+      "Teak Fc",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings",
+      "WonderWood®"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-205-jpg"
+  },
+  {
+    "sku": "st-silken-durable-vinyl-dur-72173",
+    "handle": "st-silken-durable-vinyl-dur-72173",
+    "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72173-sample-clean.jpg?v=1774484666",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Green",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Sage",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic Modern",
+      "Sage Green",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72173"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47332-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704927",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47332"
+  },
+  {
+    "sku": "sorrento-natural-linen-grasscloth-wallcovering-fentucci",
+    "handle": "sorrento-natural-linen-grasscloth-wallcovering-fentucci",
+    "title": "Sorrento Natural Linen Grasscloth Wallcovering | Fentucci",
+    "vendor": "Fentucci",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27520.jpg?v=1776879806",
+    "tags": [
+      "Fentucci",
+      "Grasscloth",
+      "Linen",
+      "Natural",
+      "new-onboard",
+      "sample-only",
+      "Sorrento",
+      "Texture",
+      "Wallcovering"
+    ],
+    "max_price": 5,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/sorrento-natural-linen-grasscloth-wallcovering-fentucci"
+  },
+  {
+    "sku": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+    "handle": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+    "title": "Steuben Wheat Turf Stripe Wallcovering",
+    "vendor": "LA Walls",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c41844e9e4c4cf5752f9573c81379fb.jpg?v=1572309971",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Discontinued",
+      "Easy Walls",
+      "LA Walls",
+      "Light Blue",
+      "Linen",
+      "Paper",
+      "Prepasted",
+      "Series: Brewster",
+      "Steuben Wheat Turf Stripe Wallcovering",
+      "Stripe",
+      "Stripes",
+      "Strippable",
+      "Tan",
+      "Traditional",
+      "Wallcovering",
+      "Washable",
+      "Wheat",
+      "YB-Discontinued-2026-04"
+    ],
+    "max_price": 72.49,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/steuben-wheat-turf-stripe-wallpaper-cca-83167"
+  },
+  {
+    "sku": "route-66-car-wallpaper-scr-7924",
+    "handle": "route-66-car-wallpaper-scr-7924",
+    "title": "Route 66 Car Wallcovering",
+    "vendor": "Designer Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/27d45a4274defe7dc914a6fca2ac5134.jpg?v=1572309084",
+    "tags": [
+      "Abstract",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Berry",
+      "Brick",
+      "Burgundy",
+      "Carmine",
+      "Claret",
+      "Class A Fire Rated",
+      "Cocoa",
+      "Commercial",
+      "Contemporary",
+      "Cordovan",
+      "Designer Wallcoverings",
+      "Garnet",
+      "Linen",
+      "Merlot",
+      "Oxblood",
+      "Paper",
+      "Pink",
+      "Pinks White",
+      "Raisin",
+      "Red",
+      "Route 66 Car Wallcovering",
+      "Screen Print",
+      "Shell",
+      "Wallcovering",
+      "Whimsical Screen Prints Vol. 1",
+      "White"
+    ],
+    "max_price": 146.18,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/route-66-car-wallpaper-scr-7924"
+  },
+  {
+    "sku": "dwtt-71909-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71909-designer-wallcoverings-los-angeles",
+    "title": "Bilzen Linen Off White | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14125_0856dcce-1ce7-4ec7-96a8-61a3970b7168.jpg?v=1733893152",
+    "tags": [
+      "Architectural",
+      "beige",
+      "Off White",
+      "Pattern",
+      "Solid",
+      "T14125",
+      "Texture",
+      "Texture Resource 4",
+      "Thibaut",
+      "Traditional",
+      "Unknown",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71909-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53311",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53311",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53311-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710759",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53311"
+  },
+  {
+    "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-71796-designer-wallcoverings-los-angeles",
+    "handle": "dwtt-71796-designer-wallcoverings-los-angeles",
+    "title": "Stanbury Trellis Linen on Grey | Thibaut",
+    "vendor": "Thibaut",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35121_03560534-16d5-43d6-aabd-a1b2d7f5256d.jpg?v=1733893386",
+    "tags": [
+      "Architectural",
+      "Geometric",
+      "Graphic Resource",
+      "gray",
+      "Grey",
+      "Pattern",
+      "T35121",
+      "Thibaut",
+      "Traditional",
+      "Trellis",
+      "Unknown",
+      "Wallcovering",
+      "white"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/dwtt-71796-designer-wallcoverings-los-angeles"
+  },
+  {
+    "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+    "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+    "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-flax.jpg?v=1777480768",
+    "tags": [
+      "20 oz",
+      "54 Inch Width",
+      "54\" Width",
+      "ACT Colorfastness",
+      "ACT Compliant",
+      "ACT Crocking",
+      "ACT Crocking Tested",
+      "ACT Flammability",
+      "Architectural",
+      "Background Color Beige",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Contract Grade",
+      "Contract Wallcovering",
+      "Embossed",
+      "Embossed Texture",
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "Fire Rated",
+      "Flame Certificate Available",
+      "Grasscloth",
+      "Grasscloth Weave",
+      "Hallway",
+      "Healthcare",
+      "Hollywood Wallcoverings",
+      "Hospitality",
+      "LEED",
+      "Leed Walls",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Look",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Tan",
+      "Texture",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Type 2 Vinyl",
+      "USA",
+      "Vinyl",
+      "Wallcovering",
+      "Warm",
+      "Warranty Available",
+      "Weight: 20 oz",
+      "Wide Width",
+      "Width: 54\"",
+      "Woven"
+    ],
+    "max_price": 15.06,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53158"
+  },
+  {
+    "sku": "wolfgordonwallcovering_dwwg_obt-9460_8-jpg",
+    "handle": "wolfgordonwallcovering_dwwg_obt-9460_8-jpg",
+    "title": "Orbit - Linen | Wolf Gordon Wallcoverings",
+    "vendor": "Wolf Gordon",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9460_8.jpg?v=1762302571",
+    "tags": [
+      "100% Polycarbonate",
+      "Architectural",
+      "Beige",
+      "Class A Fire Rated",
+      "Coated Upholstery",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Commercial Wallcoverings",
+      "Contemporary",
+      "Geometric",
+      "Linen",
+      "Orbit",
+      "Polycarbonate",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "Wolf Gordon",
+      "Wolf Gordon Wallcoverings"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9460_8-jpg"
+  },
+  {
+    "sku": "barocco-linen-cream-wallcovering-versace-1",
+    "handle": "barocco-linen-cream-wallcovering-versace-1",
+    "title": "Barocco Linen Cream Wallcovering | Versace",
+    "vendor": "Versace",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/667726f3e15a08df98b645c2abdab5a7.jpg?v=1773710515",
+    "tags": [
+      "[Object Object]",
+      "A.S. Création",
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Barocco Linen",
+      "Barocco Linen Cream Wallcovering",
+      "Bedroom",
+      "Beige",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "display_variant",
+      "Hallway",
+      "Italian",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Luxury",
+      "Needs-Image",
+      "Off-white",
+      "Paste the wall",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Trending Wallpaper Collection 2026",
+      "Versace",
+      "Versace VI",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 289.59,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/barocco-linen-cream-wallcovering-versace-1"
+  },
+  {
+    "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+    "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+    "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47331-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704900",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Farmhouse",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Rustic",
+      "Taupe",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47331"
+  },
+  {
+    "sku": "la-roche-durable-vinyl-dur-72066",
+    "handle": "la-roche-durable-vinyl-dur-72066",
+    "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72066-sample-clean.jpg?v=1774484242",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Textured",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Woven",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72066"
+  },
+  {
+    "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53625",
+    "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53625",
+    "title": "Hawthorne Faux Vertical Silk Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53625-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716645",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Ecru",
+      "Faux",
+      "Faux Finish",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Oatmeal",
+      "Office",
+      "Organic Modern",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53625"
+  },
+  {
+    "sku": "eatonville-faux-linen-durable-walls-xwt-53320",
+    "handle": "eatonville-faux-linen-durable-walls-xwt-53320",
+    "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53320-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710834",
+    "tags": [
+      "Faux",
+      "Faux Finish",
+      "Faux Linen",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Look",
+      "Textured",
+      "Wallcovering"
+    ],
+    "max_price": 44.52,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53320"
+  },
+  {
+    "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48163-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728337",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "Light Beige",
+      "Light Brown",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Oatmeal",
+      "Paddock Type 2 Vinyl  Wallcovering",
+      "Serene",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48163"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53063",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53063",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53063-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703545",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Beige",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Beige",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Light Beige",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53063"
+  },
+  {
+    "sku": "bellaire-faux-finish-durable-walls-xww-53062",
+    "handle": "bellaire-faux-finish-durable-walls-xww-53062",
+    "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53062-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703542",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: White",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Serene",
+      "Solid",
+      "Textured",
+      "Vinyl",
+      "Wallcovering",
+      "White"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53062"
+  },
+  {
+    "sku": "lovela-faux-vertical-durable-walls-xwo-53619",
+    "handle": "lovela-faux-vertical-durable-walls-xwo-53619",
+    "title": "Pippy's Peacock - Silver Room Setting Commercial Wallcovering | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-terra_cotta.jpg?v=1777480910",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Faux",
+      "Faux Finish",
+      "Hallway",
+      "Hollywood Wallcoverings",
+      "LEED",
+      "Leed Walls",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Mfr-Image-Refreshed",
+      "Organic Modern",
+      "Rustic",
+      "Sienna",
+      "Tan",
+      "Taupe",
+      "Textured",
+      "Transitional",
+      "Umber",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53619"
+  },
+  {
+    "sku": "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": "la-voltere-durable-vinyl-dur-72293",
+    "handle": "la-voltere-durable-vinyl-dur-72293",
+    "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72293-sample-clean.jpg?v=1774485070",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Gray",
+      "Grey",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Light Gray",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Serene",
+      "Slate Gray",
+      "Solid",
+      "Textured",
+      "Transitional",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vinyl",
+      "Wallcovering"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72293"
+  },
+  {
+    "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": "paddock-type-ii-vinyl-wallcovering-xpd-48174",
+    "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48174",
+    "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48174-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728569",
+    "tags": [
+      "Architectural",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Linen Texture",
+      "Living Room",
+      "Office",
+      "Orange",
+      "Paddock Type 2 Vinyl  Wallcovering",
+      "Rustic",
+      "Solid",
+      "Tan",
+      "Textured",
+      "Traditional",
+      "Transitional",
+      "Vinyl",
+      "Wallcovering",
+      "Warm"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48174"
+  },
+  {
+    "sku": "vaticano-durable-vinyl-dur-72384",
+    "handle": "vaticano-durable-vinyl-dur-72384",
+    "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+    "vendor": "Hollywood Wallcoverings",
+    "product_type": "Wallcovering",
+    "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72384-sample-clean.jpg?v=1774485305",
+    "tags": [
+      "AI-Analyzed-v2",
+      "Architectural",
+      "Art Deco",
+      "Bedroom",
+      "Brown",
+      "Champagne",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Durable Type 2 Vinyl",
+      "Fretwork",
+      "Geometric",
+      "Glamorous",
+      "Hallway",
+      "Hollywood Textures Vol. 1",
+      "Hollywood Wallcoverings",
+      "Linen",
+      "Living Room",
+      "Sophisticated",
+      "Taupe",
+      "Type 2",
+      "Type 2 Durable Vinyl",
+      "Vaticano Durable Vinyl",
+      "Vinyl",
+      "Wallcovering",
+      "Yellow"
+    ],
+    "max_price": 4.25,
+    "aesthetic": "all",
+    "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72384"
+  }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..692729e
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+  "name": "linenwallpaper",
+  "version": "0.1.0",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "linenwallpaper",
+      "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..178dada
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+  "name": "linenwallpaper",
+  "version": "0.1.0",
+  "description": "LINEN 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..dbadd54
--- /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">L</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..6c331ae
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..a902921
--- /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>LINEN WALLPAPER — Quiet texture</title>
+<meta name="description" content="LINEN WALLPAPER · Quiet texture. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0e0c08">
+<link rel="canonical" href="https://linenwallpaper.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: #0e0c08;
+  --paper: #ffffff;
+  --muted: #a89878;
+  --line: rgba(255,255,255,0.10);
+  --accent: #a89060;
+  --bg-soft: #1a160e;
+  --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('linen_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">Natural Fiber</div>
+  <div class="center-mark">LINEN WALLPAPER<span class="tm">.</span><span class="sub">Quiet texture</span></div>
+  <div class="meta-line">Linen · Natural · Woven<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">Linen · Natural · Woven</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">LINEN WALLPAPER</div>
+      <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated linen · natural · woven 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">linenwallpaper</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>linenwallpaper.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 = "linenwallpaper";
+  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('linen_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('linen_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('linen_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..f42e602
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * LINEN 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 || 9842;
+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: "Linen Wallpaper", zdColor: "#a89060", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "linenwallpaper" });
+
+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 = ["natural","woven","botanical","abstract","stripe","neutral"];
+  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://linenwallpaper.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://linenwallpaper.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(`linenwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..20d8f10
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+  "slug": "linenwallpaper",
+  "siteName": "Linen Wallpaper",
+  "domain": "linenwallpaper.com",
+  "nicheKeyword": "linen",
+  "tagline": "Pure linen, woven texture, quiet rooms.",
+  "heroHeadline": "LINEN WALLPAPER",
+  "heroSub": "Pure linen, woven texture, quiet rooms.",
+  "theme": {
+    "accent": "#a89060"
+  },
+  "rails": [
+    "weave",
+    "fine",
+    "bouclé",
+    "heavy",
+    "natural",
+    "dyed"
+  ],
+  "port": 9842
+}

(oldest)  ·  back to Linenwallpaper  ·  Rebrand: LINEN WALLPAPER → Loma Studio (Loewe template) 0e19d74 →