[object Object]

← back to Designerwallcoverings

TK-11186: showroom-vendor suppression enforcement — tagger guards (New Arrival + Trending reconcilers) + Step D remove-tags toolkit (restore-map + rollback)

d455f5dd97500cfe3448c5a95a9e6f1666bbf015 · 2026-09-03 11:55:00 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01YXf9gMQQWRfNex6EestZhp

Files touched

Diff

commit d455f5dd97500cfe3448c5a95a9e6f1666bbf015
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 3 11:55:00 2026 -0700

    TK-11186: showroom-vendor suppression enforcement — tagger guards (New Arrival + Trending reconcilers) + Step D remove-tags toolkit (restore-map + rollback)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    Claude-Session: https://claude.ai/code/session_01YXf9gMQQWRfNex6EestZhp
---
 .../new-arrivals-daily/new-arrival-tag-sync.cjs    |    12 +-
 .../tk11186-showroom-hide/build-remove-tags.mjs    |   190 +
 .../tk11186-showroom-hide/build-restore-map.mjs    |   142 +
 .../out/restore-map-2026-09-03T18-51-54-093Z.json  | 23039 +++++++++++++++++++
 .../out/restore-map-latest.json                    |  1042 +-
 scripts/tk11186-showroom-hide/rollback.mjs         |    75 +
 scripts/trending-2026/trending-tag-sync.cjs        |    12 +-
 7 files changed, 23474 insertions(+), 1038 deletions(-)

diff --git a/scripts/new-arrivals-daily/new-arrival-tag-sync.cjs b/scripts/new-arrivals-daily/new-arrival-tag-sync.cjs
index 9a01c3c..2ec9ce4 100644
--- a/scripts/new-arrivals-daily/new-arrival-tag-sync.cjs
+++ b/scripts/new-arrivals-daily/new-arrival-tag-sync.cjs
@@ -20,6 +20,10 @@
  */
 const fs = require('fs');
 const path = require('path');
+// Canonical showroom-vendor primitive (list + logic live in fix-live-board/config).
+// Showroom-only vendors are addressable-not-discoverable: they must NEVER be added to
+// the New Arrivals discoverability flow. Never hardcode a vendor — edit showroom-vendors.json. TK-11186.
+const { isShowroomVendor } = require(path.join(process.env.HOME, 'Projects/fix-live-board/config/showroom-vendor.cjs'));
 
 const TAG = 'New Arrival';
 const HOST = 'designer-laboratory-sandbox.myshopify.com';
@@ -108,10 +112,14 @@ async function runPool(ids, kind) {
   logline(`--- New Arrival sync START ${DRY ? '(DRY-RUN)' : ''} top=${TOP_N} conc=${CONC} ---`);
   const newest = await fetchAll('status:active', { sortKey: 'CREATED_AT', reverse: true, cap: TOP_N });
   const tagged = await fetchAll(`tag:${JSON.stringify(TAG)}`);
-  const target = new Set(newest.map(n => n.id));
+  // Showroom-only vendors never enter the target (never get the tag added), and are
+  // excluded from this reconciler's remove path — the dedicated, ledgered TK-11186
+  // build-remove-tags.mjs owns the one-time showroom cleanup (restore-map + 90s gaps).
+  const showroomTaggedIds = new Set(tagged.filter(n => isShowroomVendor(n.vendor)).map(n => n.id));
+  const target = new Set(newest.filter(n => !isShowroomVendor(n.vendor)).map(n => n.id));
   const have = new Set(tagged.map(n => n.id));
   const toAdd = [...target].filter(id => !have.has(id));
-  const toRemove = [...have].filter(id => !target.has(id));
+  const toRemove = [...have].filter(id => !target.has(id) && !showroomTaggedIds.has(id));
   const cutoff = newest.length ? newest[newest.length - 1].createdAt : 'n/a';
   logline(`newest active=${newest.length} (oldest in set ${cutoff}) | target=${target.size} | currently tagged=${have.size}`);
   logline(`plan: +${toAdd.length} add, -${toRemove.length} remove`);
diff --git a/scripts/tk11186-showroom-hide/build-remove-tags.mjs b/scripts/tk11186-showroom-hide/build-remove-tags.mjs
new file mode 100644
index 0000000..0b850c1
--- /dev/null
+++ b/scripts/tk11186-showroom-hide/build-remove-tags.mjs
@@ -0,0 +1,190 @@
+#!/usr/bin/env node
+/**
+ * TK-11186 STEP D — remove "New Arrival" + "Trending Wallcovering Collection 2026"
+ * tags from showroom-only vendor products, + defensive collectionRemoveProducts on the
+ * old-manual Trending collection (298339205171). Idempotent, mirror-first then Shopify.
+ *
+ * WHY tags (not collectionRemoveProducts) do the customer-facing work:
+ *   The two PUBLISHED, customer-facing collections are BOTH smart/tag-driven off "New Arrival":
+ *     167327760435 (New Arrivals)   rule tag=New Arrival
+ *     302873149491 (Trending 2026)  rule tag=New Arrival
+ *   Smart collections REJECT manual membership edits, so removing the tag is the ONLY way to
+ *   evict a product. 298339205171 is the OLD-MANUAL Trending collection (published_at:null,
+ *   0 showroom members at prep time) — collectionRemoveProducts there is a defensive no-op.
+ *
+ * Vendor set is read LIVE from the canonical showroom list (never hardcoded):
+ *   ~/Projects/fix-live-board/config/showroom-vendor.cjs -> showroom-vendors.json
+ *
+ * DEFAULT = --dry-run (prints exactly what it WOULD change). --apply executes.
+ * Reversible: the sibling restore-map (build-restore-map.mjs out/restore-map-latest.json)
+ *   records each product's full prior tags; re-adding them restores the smart collections,
+ *   and collectionAddProducts(298339205171, inManualTrending ids) restores manual membership.
+ * Ledgers each Shopify batch to ~/.claude/yolo-queue/executed-reversible/ledger.jsonl.
+ * Cost: $0 (Shopify Admin API has no per-call charge; local psql).
+ *
+ * Usage:
+ *   node build-remove-tags.mjs            # DRY-RUN (default)
+ *   node build-remove-tags.mjs --apply    # execute (mirror-first, then Shopify)
+ *   flags: --batch N (250) --conc N (5) --gap MS (90000) --map <restore-map.json>
+ */
+import { gql } from '../lib/shopify.mjs';
+import { createRequire } from 'node:module';
+import { execFileSync } from 'node:child_process';
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const require = createRequire(import.meta.url);
+const { showroomVendors } = require(process.env.HOME + '/Projects/fix-live-board/config/showroom-vendor.cjs');
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const OUT_DIR = path.join(__dirname, 'out');
+const LOG_EXEC = process.env.HOME + '/.claude/yolo-queue/executed-reversible/log-exec.mjs';
+const PG = 'host=/tmp dbname=dw_unified';
+
+const args = process.argv.slice(2);
+const APPLY = args.includes('--apply');
+const DRY = !APPLY;
+const argN = (k, d) => { const i = args.indexOf(k); return i >= 0 ? parseInt(args[i + 1], 10) : d; };
+const BATCH = argN('--batch', 250);
+const CONC = argN('--conc', 5);
+const GAP = argN('--gap', 90000);
+const MAP_PATH = (() => { const i = args.indexOf('--map'); return i >= 0 ? args[i + 1] : path.join(OUT_DIR, 'restore-map-latest.json'); })();
+
+const TAG_NEW = 'New Arrival';
+const TAG_TRENDING = 'Trending Wallcovering Collection 2026';
+const TAGS = [TAG_NEW, TAG_TRENDING];
+const MANUAL_TRENDING = '298339205171';
+const SMART_TRENDING = '302873149491';
+const SMART_NEWARR = '167327760435';
+
+const vendors = showroomVendors();
+if (!vendors.length) { console.error('showroom list empty — abort'); process.exit(1); }
+const vendorClause = '(' + vendors.map(v => `vendor:'${v.replace(/'/g, "\\'")}'`).join(' OR ') + ')';
+const showroomSet = new Set(vendors.map(v => v.toLowerCase()));
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+const stamp = () => new Date().toISOString();
+
+async function searchIds(q) {
+  const out = []; let cur = null;
+  while (true) {
+    const d = await gql(`query($q:String!,$c:String){ products(first:200, query:$q, after:$c){ pageInfo{hasNextPage endCursor} nodes{ id } } }`, { q, c: cur });
+    if (!d?.products) throw new Error('search failed: ' + JSON.stringify(d).slice(0, 200));
+    out.push(...d.products.nodes.map(n => n.id));
+    if (!d.products.pageInfo.hasNextPage) break;
+    cur = d.products.pageInfo.endCursor;
+  }
+  return out;
+}
+async function collectionShowroomMemberIds(idNum) {
+  const out = []; let cur = null;
+  while (true) {
+    const d = await gql(`query($id:ID!,$c:String){ collection(id:$id){ products(first:250, after:$c){ pageInfo{hasNextPage endCursor} nodes{ id vendor } } } }`, { id: `gid://shopify/Collection/${idNum}`, c: cur });
+    const p = d?.collection?.products; if (!p) throw new Error('coll read failed: ' + JSON.stringify(d).slice(0, 200));
+    out.push(...p.nodes);
+    if (!p.pageInfo.hasNextPage) break; cur = p.pageInfo.endCursor;
+  }
+  return out.filter(x => showroomSet.has((x.vendor || '').toLowerCase())).map(x => x.id);
+}
+function ledger(rec) {
+  try { execFileSync('node', [LOG_EXEC], { input: JSON.stringify(rec) }); }
+  catch (e) { console.error('  [ledger WARN]', e.message); }
+}
+function psqlMirrorRemove(shopifyIds) {
+  // mirror-first: remove both tags from the local dw_unified mirror rows (format-preserving
+  // array_remove round-trip). Bounded to the exact target ids. Reversible via restore-map.
+  if (!shopifyIds.length) return { rows: 0 };
+  const sqlFile = path.join(OUT_DIR, `mirror-remove-${Date.now()}.sql`);
+  const arr = shopifyIds.map(id => `'${id.replace(/'/g, "''")}'`).join(',');
+  const sql = `UPDATE shopify_products
+SET tags = array_remove(array_remove(tags::text[], '${TAG_NEW}'), '${TAG_TRENDING}')::text
+WHERE shopify_id = ANY(ARRAY[${arr}])
+  AND (tags LIKE '%${TAG_NEW}%' OR tags LIKE '%${TAG_TRENDING}%');`;
+  fs.writeFileSync(sqlFile, sql);
+  const out = execFileSync('psql', [PG, '-v', 'ON_ERROR_STOP=1', '-f', sqlFile], { encoding: 'utf8' });
+  const m = out.match(/UPDATE (\d+)/); return { rows: m ? Number(m[1]) : 0, sqlFile };
+}
+
+// ---- derive live target ----
+console.log(`[${stamp()}] TK-11186 STEP D — ${DRY ? 'DRY-RUN' : 'APPLY'} | showroom vendors: ${JSON.stringify(vendors)}`);
+const idsNew = await searchIds(`${vendorClause} AND status:active AND tag:'${TAG_NEW}'`);
+const idsTrend = await searchIds(`${vendorClause} AND status:active AND tag:'${TAG_TRENDING}'`);
+const targetTagIds = [...new Set([...idsNew, ...idsTrend])];
+const manualIds = await collectionShowroomMemberIds(MANUAL_TRENDING);
+
+// rollback-coverage warning: any live target not in the restore-map?
+let mapIds = new Set();
+try { const map = JSON.parse(fs.readFileSync(MAP_PATH, 'utf8')); mapIds = new Set(map.rows.map(r => r.id)); }
+catch { console.error(`  [WARN] restore-map not readable at ${MAP_PATH} — rollback coverage UNVERIFIED`); }
+const uncovered = targetTagIds.filter(id => !mapIds.has(id));
+
+console.log(`  live active w/ '${TAG_NEW}': ${idsNew.length}`);
+console.log(`  live active w/ '${TAG_TRENDING}': ${idsTrend.length}`);
+console.log(`  union tag-removal targets: ${targetTagIds.length}`);
+console.log(`  manual-collection(${MANUAL_TRENDING}) showroom members (collectionRemoveProducts): ${manualIds.length}`);
+if (uncovered.length) console.log(`  [WARN] ${uncovered.length} live target(s) NOT in restore-map (drift since prep) — re-run build-restore-map.mjs before apply for full rollback coverage`);
+
+if (DRY) {
+  console.log(`\nDRY-RUN — would:`);
+  console.log(`  1) mirror-first: UPDATE up to ${targetTagIds.length} dw_unified rows, removing tags ${JSON.stringify(TAGS)}`);
+  console.log(`  2) Shopify tagsRemove(${JSON.stringify(TAGS)}) on ${targetTagIds.length} products (batch ${BATCH}, conc ${CONC}, gap ${GAP}ms)`);
+  console.log(`  3) Shopify collectionRemoveProducts(${MANUAL_TRENDING}) on ${manualIds.length} products`);
+  console.log(`\nNo writes performed. Re-run with --apply to execute.`);
+  process.exit(0);
+}
+
+// ---- APPLY ----
+console.log(`\n[${stamp()}] APPLY starting`);
+// (1) mirror-first
+const mir = psqlMirrorRemove(targetTagIds);
+console.log(`  mirror UPDATE: ${mir.rows} rows (${mir.sqlFile || 'n/a'})`);
+ledger({ agent: process.env.TK_AGENT || 'vp-dw-commerce', ticket: 'TK-11186',
+  action: `STEP D mirror-first: removed tags ${JSON.stringify(TAGS)} from ${mir.rows} dw_unified shopify_products rows (showroom vendors ${JSON.stringify(vendors)})`,
+  blast_radius: mir.rows,
+  undo_cmd: `re-add tags from restore-map: node ~/Projects/designerwallcoverings/scripts/tk11186-showroom-hide/rollback.mjs --apply --map ${MAP_PATH}`,
+  verify: `psql "${PG}" -tAc "select count(*) from shopify_products where vendor='Phillip Jeffries' and tags like '%New Arrival%'" => expect 0` });
+
+// (2) Shopify tagsRemove, batched
+async function tagsRemoveOne(id) {
+  const d = await gql(`mutation($id:ID!,$tags:[String!]!){ tagsRemove(id:$id, tags:$tags){ userErrors{field message} } }`, { id, tags: TAGS });
+  const ue = d?.tagsRemove?.userErrors; if (ue && ue.length) throw new Error('userErrors ' + JSON.stringify(ue));
+  if (d?.__err) throw new Error('gql err ' + JSON.stringify(d.__err).slice(0, 150));
+}
+let done = 0, failed = 0;
+for (let b = 0; b < targetTagIds.length; b += BATCH) {
+  const batch = targetTagIds.slice(b, b + BATCH);
+  for (let i = 0; i < batch.length; i += CONC) {
+    const chunk = batch.slice(i, i + CONC);
+    const res = await Promise.allSettled(chunk.map(tagsRemoveOne));
+    res.forEach(r => r.status === 'fulfilled' ? done++ : (failed++, console.error('  [tagsRemove FAIL]', r.reason?.message)));
+  }
+  console.log(`  tagsRemove progress: ${Math.min(b + BATCH, targetTagIds.length)}/${targetTagIds.length} (ok ${done}, fail ${failed})`);
+  ledger({ agent: process.env.TK_AGENT || 'vp-dw-commerce', ticket: 'TK-11186',
+    action: `STEP D Shopify tagsRemove ${JSON.stringify(TAGS)} batch [${b}..${Math.min(b + BATCH, targetTagIds.length)}) — ok ${done} fail ${failed}`,
+    blast_radius: batch.length,
+    undo_cmd: `node ~/Projects/designerwallcoverings/scripts/tk11186-showroom-hide/rollback.mjs --apply --map ${MAP_PATH}`,
+    verify: `New Arrivals(${SMART_NEWARR})+Trending(${SMART_TRENDING}) smart membership shows 0 showroom vendor products` });
+  if (b + BATCH < targetTagIds.length) { console.log(`  ...inter-batch gap ${GAP}ms`); await sleep(GAP); }
+}
+
+// (3) defensive collectionRemoveProducts on old-manual Trending
+if (manualIds.length) {
+  const d = await gql(`mutation($id:ID!,$pids:[ID!]!){ collectionRemoveProducts(id:$id, productIds:$pids){ job{id} userErrors{field message} } }`,
+    { id: `gid://shopify/Collection/${MANUAL_TRENDING}`, pids: manualIds });
+  const ue = d?.collectionRemoveProducts?.userErrors;
+  console.log(`  collectionRemoveProducts(${MANUAL_TRENDING}): ${manualIds.length} products, job ${d?.collectionRemoveProducts?.job?.id || 'n/a'}${ue && ue.length ? ' ERR ' + JSON.stringify(ue) : ''}`);
+  ledger({ agent: process.env.TK_AGENT || 'vp-dw-commerce', ticket: 'TK-11186',
+    action: `STEP D collectionRemoveProducts(${MANUAL_TRENDING}) on ${manualIds.length} showroom products`,
+    blast_radius: manualIds.length,
+    undo_cmd: `collectionAddProducts(gid://shopify/Collection/${MANUAL_TRENDING}, <inManualTrending ids from ${MAP_PATH}>)`,
+    verify: `collection ${MANUAL_TRENDING} shows 0 showroom vendor products` });
+} else {
+  console.log(`  collectionRemoveProducts(${MANUAL_TRENDING}): 0 showroom members — skipped (no-op)`);
+}
+
+// (4) verify
+async function pjMembers(idNum) { return (await collectionShowroomMemberIds(idNum)).length; }
+const vNa = await pjMembers(SMART_NEWARR), vTr = await pjMembers(SMART_TRENDING), vMa = await pjMembers(MANUAL_TRENDING);
+console.log(`\n[VERIFY] showroom members — NewArrivals(${SMART_NEWARR})=${vNa} Trending(${SMART_TRENDING})=${vTr} manual(${MANUAL_TRENDING})=${vMa}`);
+console.log(`[${stamp()}] APPLY done — tagsRemove ok ${done} fail ${failed}`);
+process.exit(failed || vNa || vTr || vMa ? 1 : 0);
diff --git a/scripts/tk11186-showroom-hide/build-restore-map.mjs b/scripts/tk11186-showroom-hide/build-restore-map.mjs
new file mode 100644
index 0000000..99f9393
--- /dev/null
+++ b/scripts/tk11186-showroom-hide/build-restore-map.mjs
@@ -0,0 +1,142 @@
+#!/usr/bin/env node
+/**
+ * TK-11186 STEP D — RESTORE-MAP builder (READ-ONLY).
+ *
+ * Snapshots, for every showroom-only vendor product that currently carries the
+ * "New Arrival" and/or "Trending Wallcovering Collection 2026" tag (union), OR that
+ * is a member of the OLD-MANUAL Trending collection (298339205171):
+ *   { id, title, vendor, status, tags[], hasNewArrivalTag, hasTrendingTag, inManualTrending }
+ * plus a header recording the live PJ membership of the three affected collections.
+ *
+ * This is the reversible undo record for build-remove-tags.mjs --apply:
+ *   - re-adding the two tags restores the two TAG-DRIVEN SMART collections
+ *     (167327760435 New Arrivals, 302873149491 published Trending) automatically;
+ *   - collectionAddProducts(298339205171, ids-with-inManualTrending) restores manual membership.
+ *
+ * Vendor set is NOT hardcoded — it is read live from the canonical showroom list via
+ * isShowroomVendor()/showroomVendors() in ~/Projects/fix-live-board/config/showroom-vendor.cjs.
+ *
+ * Cost: $0 (Shopify Admin API, no per-call charge). Writes only a local JSON file.
+ * Usage: node build-restore-map.mjs
+ */
+import { gql } from '../lib/shopify.mjs';
+import { createRequire } from 'node:module';
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const require = createRequire(import.meta.url);
+const { showroomVendors } = require(process.env.HOME + '/Projects/fix-live-board/config/showroom-vendor.cjs');
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const OUT_DIR = path.join(__dirname, 'out');
+
+const TAG_NEW = 'New Arrival';
+const TAG_TRENDING = 'Trending Wallcovering Collection 2026';
+const MANUAL_TRENDING = '298339205171';           // old-manual (published_at:null)
+const SMART_TRENDING = '302873149491';            // published, tag:New Arrival driven
+const SMART_NEWARR = '167327760435';              // published New Arrivals, tag:New Arrival driven
+
+const vendors = showroomVendors();
+if (!vendors.length) { console.error('showroom list empty — nothing to snapshot'); process.exit(1); }
+// Shopify search vendor clause: quote each, OR them together.
+const vendorClause = '(' + vendors.map(v => `vendor:'${v.replace(/'/g, "\\'")}'`).join(' OR ') + ')';
+
+async function searchAll(q) {
+  const out = []; let cur = null;
+  while (true) {
+    const d = await gql(
+      `query($q:String!,$c:String){ products(first:200, query:$q, after:$c){ pageInfo{hasNextPage endCursor} nodes{ id title vendor status tags } } }`,
+      { q, c: cur });
+    const p = d?.products;
+    if (!p) { throw new Error('search failed: ' + JSON.stringify(d).slice(0, 300)); }
+    out.push(...p.nodes);
+    if (!p.pageInfo.hasNextPage) break;
+    cur = p.pageInfo.endCursor;
+  }
+  return out;
+}
+async function collectionMembers(idNum) {
+  const out = []; let cur = null;
+  while (true) {
+    const d = await gql(
+      `query($id:ID!,$c:String){ collection(id:$id){ products(first:250, after:$c){ pageInfo{hasNextPage endCursor} nodes{ id vendor } } } }`,
+      { id: `gid://shopify/Collection/${idNum}`, c: cur });
+    const p = d?.collection?.products;
+    if (!p) throw new Error('collection read failed: ' + JSON.stringify(d).slice(0, 200));
+    out.push(...p.nodes);
+    if (!p.pageInfo.hasNextPage) break;
+    cur = p.pageInfo.endCursor;
+  }
+  return out;
+}
+
+// Universe: active showroom-vendor products carrying either tag (union).
+const withNew = await searchAll(`${vendorClause} AND status:active AND tag:'${TAG_NEW}'`);
+const withTrend = await searchAll(`${vendorClause} AND status:active AND tag:'${TAG_TRENDING}'`);
+
+// Manual-collection showroom-vendor members (may include any status).
+const showroomSet = new Set(vendors.map(v => v.toLowerCase()));
+const manualPJ = (await collectionMembers(MANUAL_TRENDING)).filter(x => showroomSet.has((x.vendor || '').toLowerCase()));
+const manualPJIds = new Set(manualPJ.map(x => x.id));
+
+// Merge into one record set keyed by id.
+const byId = new Map();
+function ensure(n) {
+  if (!byId.has(n.id)) byId.set(n.id, {
+    id: n.id, title: n.title, vendor: n.vendor, status: n.status,
+    tags: n.tags || [], hasNewArrivalTag: false, hasTrendingTag: false, inManualTrending: false,
+  });
+  return byId.get(n.id);
+}
+for (const n of withNew) ensure(n).hasNewArrivalTag = true;
+for (const n of withTrend) ensure(n).hasTrendingTag = true;
+// manual members may not appear in the tag searches (different status / no tag) — add id-only rows.
+for (const m of manualPJ) {
+  if (!byId.has(m.id)) byId.set(m.id, { id: m.id, title: '(manual-collection-only)', vendor: m.vendor, status: '(unknown)', tags: null, hasNewArrivalTag: false, hasTrendingTag: false, inManualTrending: true });
+  else byId.get(m.id).inManualTrending = true;
+}
+for (const id of manualPJIds) if (byId.has(id)) byId.get(id).inManualTrending = true;
+
+const rows = [...byId.values()];
+
+// Live membership header for verify/rollback context.
+const memberCounts = {};
+for (const [idNum, label] of [[MANUAL_TRENDING, 'manual_trending_298339205171'], [SMART_TRENDING, 'smart_trending_302873149491'], [SMART_NEWARR, 'smart_newarrivals_167327760435']]) {
+  const m = await collectionMembers(idNum);
+  memberCounts[label] = { total: m.length, showroomVendor: m.filter(x => showroomSet.has((x.vendor || '').toLowerCase())).length };
+}
+
+const stamp = new Date().toISOString().replace(/[:.]/g, '-');
+const outPath = path.join(OUT_DIR, `restore-map-${stamp}.json`);
+const payload = {
+  ticket: 'TK-11186',
+  builtAt: new Date().toISOString(),
+  store: 'designer-laboratory-sandbox.myshopify.com',
+  apiVersion: '2024-10',
+  showroomVendors: vendors,
+  tagsRemoved: [TAG_NEW, TAG_TRENDING],
+  collections: {
+    manual_trending_298339205171: '298339205171',
+    smart_trending_302873149491: '302873149491',
+    smart_newarrivals_167327760435: '167327760435',
+  },
+  liveMemberCountsBefore: memberCounts,
+  counts: {
+    activeWithNewArrivalTag: withNew.length,
+    activeWithTrendingTag: withTrend.length,
+    unionRows: rows.length,
+    manualTrendingShowroomMembers: manualPJ.length,
+  },
+  rows,
+};
+fs.writeFileSync(outPath, JSON.stringify(payload, null, 2));
+// stable "latest" pointer for the apply script + verify
+fs.writeFileSync(path.join(OUT_DIR, 'restore-map-latest.json'), JSON.stringify(payload, null, 2));
+
+console.log('RESTORE-MAP written:', outPath);
+console.log('rows (union):', rows.length,
+  '| tag New Arrival:', withNew.length,
+  '| tag Trending:', withTrend.length,
+  '| manual-collection showroom members:', manualPJ.length);
+console.log('live member counts (before):', JSON.stringify(memberCounts));
diff --git a/scripts/tk11186-showroom-hide/out/restore-map-2026-09-03T18-51-54-093Z.json b/scripts/tk11186-showroom-hide/out/restore-map-2026-09-03T18-51-54-093Z.json
new file mode 100644
index 0000000..1106221
--- /dev/null
+++ b/scripts/tk11186-showroom-hide/out/restore-map-2026-09-03T18-51-54-093Z.json
@@ -0,0 +1,23039 @@
+{
+  "ticket": "TK-11186",
+  "builtAt": "2026-09-03T18:51:54.094Z",
+  "store": "designer-laboratory-sandbox.myshopify.com",
+  "apiVersion": "2024-10",
+  "showroomVendors": [
+    "Phillip Jeffries"
+  ],
+  "tagsRemoved": [
+    "New Arrival",
+    "Trending Wallcovering Collection 2026"
+  ],
+  "collections": {
+    "manual_trending_298339205171": "298339205171",
+    "smart_trending_302873149491": "302873149491",
+    "smart_newarrivals_167327760435": "167327760435"
+  },
+  "liveMemberCountsBefore": {
+    "manual_trending_298339205171": {
+      "total": 500,
+      "showroomVendor": 0
+    },
+    "smart_trending_302873149491": {
+      "total": 1962,
+      "showroomVendor": 760
+    },
+    "smart_newarrivals_167327760435": {
+      "total": 1962,
+      "showroomVendor": 760
+    }
+  },
+  "counts": {
+    "activeWithNewArrivalTag": 760,
+    "activeWithTrendingTag": 855,
+    "unionRows": 855,
+    "manualTrendingShowroomMembers": 0
+  },
+  "rows": [
+    {
+      "id": "gid://shopify/Product/7941179736115",
+      "title": "Vinyl Strata - Rosewood Heights",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46012",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|rosewood heights",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rosewood Heights",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179768883",
+      "title": "Vinyl Groovy - Soft White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37905",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|soft white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft White",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179801651",
+      "title": "Vinyl Leno Weave - Pebble",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46707",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|pebble",
+        "lifecycle:active",
+        "New Arrival",
+        "Pebble",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179834419",
+      "title": "Vinyl Groovy - Shadow Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37906",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|shadow gray",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow Gray",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179867187",
+      "title": "Vinyl Groovy - Rustic Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37902",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|rustic brown",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rustic Brown",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179899955",
+      "title": "Vinyl Groovy - Sandstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37901",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|sandstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandstone",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179932723",
+      "title": "Vinyl Groovy - Buttercream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37904",
+        "browse-hidden",
+        "Buttercream",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|buttercream",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179965491",
+      "title": "Vinyl Groovy - Golden Tan",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37907",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|golden tan",
+        "Golden Tan",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941179998259",
+      "title": "Vinyl Groovy - Foggy Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37909",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|foggy blue",
+        "Foggy Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180063795",
+      "title": "Unveiled - Antique White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42500",
+        "Antique White",
+        "browse-hidden",
+        "Collection NEW - Unveiled",
+        "display_variant",
+        "DWJP-identity:unveiled|antique white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180096563",
+      "title": "Raffia Atelier - Cobalt Vine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45900",
+        "browse-hidden",
+        "Cobalt Vine",
+        "Collection NEW - Raffia Atelier",
+        "display_variant",
+        "DWJP-identity:raffia atelier|cobalt vine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180129331",
+      "title": "Vinyl Leno Weave - Pearl",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46706",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|pearl",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearl",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180162099",
+      "title": "Madison Stripe - Denim Wash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43708",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "Denim Wash",
+        "display_variant",
+        "DWJP-identity:madison stripe|denim wash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180194867",
+      "title": "Raffia Atelier - Pitch Flora",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45903",
+        "browse-hidden",
+        "Collection NEW - Raffia Atelier",
+        "display_variant",
+        "DWJP-identity:raffia atelier|pitch flora",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Pitch Flora",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180227635",
+      "title": "Idyllic - Blooming Reed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50404",
+        "Blooming Reed",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "DWJP-identity:idyllic|blooming reed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180260403",
+      "title": "Vinyl Strata - Wheat Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46005",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|wheat taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wheat Taupe"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180293171",
+      "title": "Vinyl Strata - Midnight Navy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46003",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|midnight navy",
+        "lifecycle:active",
+        "Midnight Navy",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180391475",
+      "title": "Vinyl Leno Weave - Lilac",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46702",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|lilac",
+        "lifecycle:active",
+        "Lilac",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180424243",
+      "title": "Vinyl Melange - Sandstone Gleam",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39104",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|sandstone gleam",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandstone Gleam",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180457011",
+      "title": "Arbor Stripe - Midnight Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43406",
+        "browse-hidden",
+        "Collection NEW - Arbor Stripe",
+        "display_variant",
+        "DWJP-identity:arbor stripe|midnight drift",
+        "lifecycle:active",
+        "Midnight Drift",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180489779",
+      "title": "Cirque De Soho - Buff",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45401",
+        "browse-hidden",
+        "Buff",
+        "Collection NEW - Cirque de Soho",
+        "display_variant",
+        "DWJP-identity:cirque de soho|buff",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180522547",
+      "title": "Vinyl Leno Weave - Sable",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46711",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|sable",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sable",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180555315",
+      "title": "Vinyl Melange - Twilight Plum",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39106",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|twilight plum",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Twilight Plum",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180588083",
+      "title": "Plush Pillars - Green Form",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43503",
+        "browse-hidden",
+        "Collection NEW - Plush Pillars",
+        "display_variant",
+        "DWJP-identity:plush pillars|green form",
+        "Green Form",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180620851",
+      "title": "Arbor Stripe - Deep Charcoal",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43407",
+        "browse-hidden",
+        "Collection NEW - Arbor Stripe",
+        "Deep Charcoal",
+        "display_variant",
+        "DWJP-identity:arbor stripe|deep charcoal",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180653619",
+      "title": "Vinyl Leno Weave - Olive",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46710",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|olive",
+        "lifecycle:active",
+        "New Arrival",
+        "Olive",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180686387",
+      "title": "Unveiled - Pale Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42501",
+        "browse-hidden",
+        "Collection NEW - Unveiled",
+        "display_variant",
+        "DWJP-identity:unveiled|pale blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Pale Blue",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180719155",
+      "title": "Vinyl Crocodile Rock - Olive Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10845",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|olive green",
+        "lifecycle:active",
+        "New Arrival",
+        "Olive Green",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180751923",
+      "title": "Vinyl Atmosphere - Tide",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38206",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|tide",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tide",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180784691",
+      "title": "Vinyl Fringe - Slate",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38109",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|slate",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180817459",
+      "title": "Vinyl Crocodile Rock - Deep Teal",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10847",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "Deep Teal",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|deep teal",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180850227",
+      "title": "Vinyl Atmosphere - Driftwood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38200",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "Driftwood",
+        "DWJP-identity:vinyl atmosphere|driftwood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180882995",
+      "title": "Vinyl Fringe - Camel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38110",
+        "browse-hidden",
+        "Camel",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|camel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180915763",
+      "title": "All Wound Up - Blue Tangle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10844",
+        "Blue Tangle",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:all wound up|blue tangle",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180948531",
+      "title": "Vinyl Fringe - Flax",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38107",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|flax",
+        "Flax",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941180981299",
+      "title": "Vinyl Fringe - Pine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38100",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|pine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Pine",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181014067",
+      "title": "Vinyl Atmosphere - Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38201",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shade",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181046835",
+      "title": "Vinyl Crocodile Rock - Victorian Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10846",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|victorian blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Victorian Blue",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181079603",
+      "title": "All Wound Up - Cool Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10843",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "Cool Blue",
+        "display_variant",
+        "DWJP-identity:all wound up|cool blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181112371",
+      "title": "Vinyl Atmosphere - Sea Glass",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38203",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|sea glass",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sea Glass",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181145139",
+      "title": "Vinyl Crocodile Rock - Caramel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10848",
+        "browse-hidden",
+        "Caramel",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|caramel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181177907",
+      "title": "Vinyl Eclipse - Chalk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38302",
+        "browse-hidden",
+        "Chalk",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|chalk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181341747",
+      "title": "Vinyl Eclipse - Portland",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38304",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|portland",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Portland",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181374515",
+      "title": "Vinyl Eclipse - Blackboard",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38301",
+        "Blackboard",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|blackboard",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181407283",
+      "title": "Emeline Pvc Free - Fawn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38500",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|fawn",
+        "Fawn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181440051",
+      "title": "Emeline Pvc Free - Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38503",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|mist",
+        "lifecycle:active",
+        "Mist",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181472819",
+      "title": "Pawleys Parquet - Storm",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37704",
+        "browse-hidden",
+        "Collection Pawleys Parquet",
+        "display_variant",
+        "DWJP-identity:pawleys parquet|storm",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Storm",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181505587",
+      "title": "Vinyl Eclipse - Blue Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38305",
+        "Blue Clay",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|blue clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181538355",
+      "title": "Emeline Pvc Free - Clove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38508",
+        "browse-hidden",
+        "Clove",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|clove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181571123",
+      "title": "Vinyl Crocodile Rock - Fawn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10849",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|fawn",
+        "Fawn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181603891",
+      "title": "Emeline Pvc Free - Mangrove Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38511",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|mangrove brown",
+        "lifecycle:active",
+        "Mangrove Brown",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181669427",
+      "title": "Emeline Pvc Free - Poolside",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38507",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|poolside",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Poolside",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181702195",
+      "title": "Vinyl Marina - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42201",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181734963",
+      "title": "Vinyl Atmosphere - Sable",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38207",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|sable",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sable",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181767731",
+      "title": "Vinyl Marina - Cinder",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42206",
+        "browse-hidden",
+        "Cinder",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|cinder",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181800499",
+      "title": "Vinyl Marina - Teak",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42205",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|teak",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Teak",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181833267",
+      "title": "Vinyl Marina - Ash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42204",
+        "Ash",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|ash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181866035",
+      "title": "Manor House - Indigo Alcove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40304",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|indigo alcove",
+        "Indigo Alcove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181898803",
+      "title": "Vinyl Crocodile Rock - Oxblood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10853",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|oxblood",
+        "lifecycle:active",
+        "New Arrival",
+        "Oxblood",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181931571",
+      "title": "Parlor Cloth - Clay Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39700",
+        "browse-hidden",
+        "Clay Beige",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|clay beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181964339",
+      "title": "Parlor Cloth - Buttercream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39702",
+        "browse-hidden",
+        "Buttercream",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|buttercream",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941181997107",
+      "title": "Vinyl Silk Tones - Lace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34212",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:vinyl silk tones|lace",
+        "Lace",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182029875",
+      "title": "Promenade - Gilded Serenade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34206",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|gilded serenade",
+        "Gilded Serenade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182062643",
+      "title": "Charmed - Enchanted Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40600",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|enchanted mist",
+        "Enchanted Mist",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182128179",
+      "title": "Parlor Cloth - Rustic Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39708",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|rustic brown",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rustic Brown",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182226483",
+      "title": "Vinyl Crocodile Rock - Yellow Ochre",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10850",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|yellow ochre",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Yellow Ochre"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182259251",
+      "title": "Morning Meadow - Wildflower Glow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42700",
+        "browse-hidden",
+        "Collection Morning Meadow",
+        "display_variant",
+        "DWJP-identity:morning meadow|wildflower glow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wildflower Glow"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182390323",
+      "title": "Harbor Weave - Ocean Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44203",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|ocean mist",
+        "lifecycle:active",
+        "New Arrival",
+        "Ocean Mist",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182423091",
+      "title": "Parlor Cloth - Powder Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39704",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|powder blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Powder Blue",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182455859",
+      "title": "Vinyl Marina - Olivewood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42202",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|olivewood",
+        "lifecycle:active",
+        "New Arrival",
+        "Olivewood",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182488627",
+      "title": "Magnolia Mosaic - Southern Stem",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44100",
+        "browse-hidden",
+        "Collection Magnolia Mosaic",
+        "display_variant",
+        "DWJP-identity:magnolia mosaic|southern stem",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Southern Stem",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182521395",
+      "title": "Morning Meadow - Blush Anne",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42703",
+        "Blush Anne",
+        "browse-hidden",
+        "Collection Morning Meadow",
+        "display_variant",
+        "DWJP-identity:morning meadow|blush anne",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182554163",
+      "title": "Heirloom Bloom - Faint Flora",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35701",
+        "browse-hidden",
+        "Collection Heirloom Bloom",
+        "display_variant",
+        "DWJP-identity:heirloom bloom|faint flora",
+        "Faint Flora",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182619699",
+      "title": "Veranda Vines - Gilded Whitewood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43800",
+        "browse-hidden",
+        "Collection Veranda Vines",
+        "display_variant",
+        "DWJP-identity:veranda vines|gilded whitewood",
+        "Gilded Whitewood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182652467",
+      "title": "Heirloom Bloom - Keepsake Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35703",
+        "browse-hidden",
+        "Collection Heirloom Bloom",
+        "display_variant",
+        "DWJP-identity:heirloom bloom|keepsake grey",
+        "Keepsake Grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182685235",
+      "title": "Vinyl Fringe - Alabaster",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38103",
+        "Alabaster",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|alabaster",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182718003",
+      "title": "Posy - Mauve Meadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40402",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|mauve meadow",
+        "lifecycle:active",
+        "Mauve Meadow",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182750771",
+      "title": "Heirloom Bloom - Silver Thistle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35700",
+        "browse-hidden",
+        "Collection Heirloom Bloom",
+        "display_variant",
+        "DWJP-identity:heirloom bloom|silver thistle",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver Thistle",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182783539",
+      "title": "Morning Meadow - Honey Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42701",
+        "browse-hidden",
+        "Collection Morning Meadow",
+        "display_variant",
+        "DWJP-identity:morning meadow|honey shade",
+        "Honey Shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182816307",
+      "title": "Lush Layers - Ivory Canopy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "26400",
+        "browse-hidden",
+        "Collection Lush Layers",
+        "display_variant",
+        "DWJP-identity:lush layers|ivory canopy",
+        "Ivory Canopy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182849075",
+      "title": "Vinyl Fringe - Heather",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38105",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|heather",
+        "Heather",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182881843",
+      "title": "Manor House - Lavender Stroll",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40302",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|lavender stroll",
+        "Lavender Stroll",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182914611",
+      "title": "Manor House - Chateau Fog",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40300",
+        "browse-hidden",
+        "Chateau Fog",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|chateau fog",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182947379",
+      "title": "Vinyl Crocodile Rock - Toile Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10855",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|toile blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Toile Blue",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941182980147",
+      "title": "Manor House - Antique Marigold",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40306",
+        "Antique Marigold",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|antique marigold",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183012915",
+      "title": "Parlor Cloth - Drift Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39703",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "Drift Grey",
+        "DWJP-identity:parlor cloth|drift grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183045683",
+      "title": "Posy - Bluebell Waltz",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40404",
+        "Bluebell Waltz",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|bluebell waltz",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183078451",
+      "title": "Vinyl Marina - Almond",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42203",
+        "Almond",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|almond",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183111219",
+      "title": "Vinyl Marina - Marine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42207",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|marine",
+        "lifecycle:active",
+        "Marine",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183143987",
+      "title": "Posy - Botanic Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40403",
+        "Botanic Drift",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|botanic drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183176755",
+      "title": "Manor House - Autumn Topiary",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40305",
+        "Autumn Topiary",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|autumn topiary",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941183209523",
+      "title": "Charmed - Verdure Spell",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40604",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|verdure spell",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Verdure Spell",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184094259",
+      "title": "Heirloom Bloom - Porcelain Pink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35702",
+        "browse-hidden",
+        "Collection Heirloom Bloom",
+        "display_variant",
+        "DWJP-identity:heirloom bloom|porcelain pink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Porcelain Pink",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184127027",
+      "title": "Veranda Vines - Sterling Root",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43803",
+        "browse-hidden",
+        "Collection Veranda Vines",
+        "display_variant",
+        "DWJP-identity:veranda vines|sterling root",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sterling Root",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184159795",
+      "title": "Wellington Weave - Cozy Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35206",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "Cozy Grey",
+        "display_variant",
+        "DWJP-identity:wellington weave|cozy grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184192563",
+      "title": "Emeline Pvc Free - Key Largo Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38510",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|key largo blue",
+        "Key Largo Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184225331",
+      "title": "Emeline Pvc Free - Cannes Copper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38509",
+        "browse-hidden",
+        "Cannes Copper",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|cannes copper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184258099",
+      "title": "Charmed - Lemon Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40602",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|lemon veil",
+        "Lemon Veil",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184290867",
+      "title": "Emeline Pvc Free - Moss",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38505",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|moss",
+        "lifecycle:active",
+        "Moss",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184323635",
+      "title": "Emeline Pvc Free - Linen",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38501",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|linen",
+        "lifecycle:active",
+        "Linen",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184356403",
+      "title": "Vinyl Eclipse - Carbon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38309",
+        "browse-hidden",
+        "Carbon",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|carbon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184389171",
+      "title": "Veranda Vines - Silver Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43801",
+        "browse-hidden",
+        "Collection Veranda Vines",
+        "display_variant",
+        "DWJP-identity:veranda vines|silver grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver Grove",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184421939",
+      "title": "Morning Meadow - Midnight Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42702",
+        "browse-hidden",
+        "Collection Morning Meadow",
+        "display_variant",
+        "DWJP-identity:morning meadow|midnight bloom",
+        "lifecycle:active",
+        "Midnight Bloom",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184454707",
+      "title": "Charmed - Secret Meadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40607",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|secret meadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Secret Meadow",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184487475",
+      "title": "Vinyl Eclipse - Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38303",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184520243",
+      "title": "Parlor Cloth - Fog Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39707",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|fog blue",
+        "Fog Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184553011",
+      "title": "Parlor Cloth - Blush Pink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39706",
+        "Blush Pink",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|blush pink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184585779",
+      "title": "Harbor Weave - Mocha Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44204",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|mocha brown",
+        "lifecycle:active",
+        "Mocha Brown",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184618547",
+      "title": "Charmed - Celestial Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40606",
+        "browse-hidden",
+        "Celestial Drift",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|celestial drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184651315",
+      "title": "Harbor Weave - Moss Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44205",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|moss veil",
+        "lifecycle:active",
+        "Moss Veil",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184684083",
+      "title": "All Wound Up - Golden Tan",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10842",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:all wound up|golden tan",
+        "Golden Tan",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184716851",
+      "title": "Vinyl Fringe - Grain",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38104",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|grain",
+        "Grain",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184749619",
+      "title": "Vinyl Fringe - Pebble",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38108",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|pebble",
+        "lifecycle:active",
+        "New Arrival",
+        "Pebble",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184782387",
+      "title": "Charmed - Thistle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40605",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|thistle",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Thistle",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184815155",
+      "title": "Charmed - Ethereal Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40601",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|ethereal grove",
+        "Ethereal Grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184847923",
+      "title": "Vinyl Atmosphere - Salt",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38202",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|salt",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Salt",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941184913459",
+      "title": "Vinyl Atmosphere - Fenn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38204",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|fenn",
+        "Fenn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185044531",
+      "title": "Vinyl Marina - Espresso",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42208",
+        "browse-hidden",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|espresso",
+        "Espresso",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185077299",
+      "title": "Vinyl Eclipse - Greige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38300",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|greige",
+        "Greige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185110067",
+      "title": "Harbor Weave - Sand Horizon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44202",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|sand horizon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand Horizon",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185142835",
+      "title": "Vinyl Fringe - Umber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38111",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|umber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Umber",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185175603",
+      "title": "Posy - Blue Thistle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40401",
+        "Blue Thistle",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|blue thistle",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185208371",
+      "title": "Posy - Garden Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40400",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|garden haze",
+        "Garden Haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185241139",
+      "title": "Manor House - Spring Terrace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40307",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|spring terrace",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Spring Terrace",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185273907",
+      "title": "Parlor Cloth - Soft White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39701",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|soft white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft White",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185306675",
+      "title": "Manor House - Estate Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40303",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|estate garden",
+        "Estate Garden",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185339443",
+      "title": "Magnolia Mosaic - Creekside Canopy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44103",
+        "browse-hidden",
+        "Collection Magnolia Mosaic",
+        "Creekside Canopy",
+        "display_variant",
+        "DWJP-identity:magnolia mosaic|creekside canopy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185372211",
+      "title": "Vinyl Fringe - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38106",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185404979",
+      "title": "Vinyl Marina - Cloudstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42200",
+        "browse-hidden",
+        "Cloudstone",
+        "Collection Vinyl Marina",
+        "display_variant",
+        "DWJP-identity:vinyl marina|cloudstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185437747",
+      "title": "Lush Layers - Palm Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "26402",
+        "browse-hidden",
+        "Collection Lush Layers",
+        "display_variant",
+        "DWJP-identity:lush layers|palm beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Palm Beige",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185470515",
+      "title": "Pawleys Parquet - Driftwood Smoke",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37702",
+        "browse-hidden",
+        "Collection Pawleys Parquet",
+        "display_variant",
+        "Driftwood Smoke",
+        "DWJP-identity:pawleys parquet|driftwood smoke",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185503283",
+      "title": "Pawleys Parquet - Sandstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37701",
+        "browse-hidden",
+        "Collection Pawleys Parquet",
+        "display_variant",
+        "DWJP-identity:pawleys parquet|sandstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandstone",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185536051",
+      "title": "Vinyl Crocodile Rock - Denim Wash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10856",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "Denim Wash",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|denim wash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185568819",
+      "title": "Lush Layers - Green Haven",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "26401",
+        "browse-hidden",
+        "Collection Lush Layers",
+        "display_variant",
+        "DWJP-identity:lush layers|green haven",
+        "Green Haven",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185601587",
+      "title": "Harbor Weave - Meadow Grass",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44201",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|meadow grass",
+        "lifecycle:active",
+        "Meadow Grass",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185634355",
+      "title": "Pawleys Parquet - Salted Burl",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37700",
+        "browse-hidden",
+        "Collection Pawleys Parquet",
+        "display_variant",
+        "DWJP-identity:pawleys parquet|salted burl",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Salted Burl",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185667123",
+      "title": "Vinyl Crocodile Rock - Cognac",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10851",
+        "browse-hidden",
+        "Cognac",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|cognac",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185699891",
+      "title": "Wellington Weave - Clay Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35200",
+        "browse-hidden",
+        "Clay Beige",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|clay beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185732659",
+      "title": "Magnolia Mosaic - Porchlight Petals",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44101",
+        "browse-hidden",
+        "Collection Magnolia Mosaic",
+        "display_variant",
+        "DWJP-identity:magnolia mosaic|porchlight petals",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Porchlight Petals",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185765427",
+      "title": "Vinyl Crocodile Rock - Tobacco Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10852",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|tobacco brown",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tobacco Brown",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185798195",
+      "title": "Monet Hemp - Moonlit",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34215",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:monet hemp|moonlit",
+        "lifecycle:active",
+        "Moonlit",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941185830963",
+      "title": "Parlor Cloth - Mushroom Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39705",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|mushroom beige",
+        "lifecycle:active",
+        "Mushroom Beige",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186027571",
+      "title": "Wellington Weave - Cloud White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35201",
+        "browse-hidden",
+        "Cloud White",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|cloud white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186060339",
+      "title": "Sateen Studio - Burgundy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34214",
+        "browse-hidden",
+        "Burgundy",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:sateen studio|burgundy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186093107",
+      "title": "Sateen Studio - Verdant",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34213",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:sateen studio|verdant",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Verdant",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186125875",
+      "title": "Shades Of Silk - Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34211",
+        "Bloom",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:shades of silk|bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186158643",
+      "title": "Shades Of Silk - Primrose",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34210",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:shades of silk|primrose",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Primrose",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186191411",
+      "title": "Parlor Cloth - Midnight Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39709",
+        "browse-hidden",
+        "Collection Parlor Cloth",
+        "display_variant",
+        "DWJP-identity:parlor cloth|midnight black",
+        "lifecycle:active",
+        "Midnight Black",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186224179",
+      "title": "Veranda Vines - Golden Trellis",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43802",
+        "browse-hidden",
+        "Collection Veranda Vines",
+        "display_variant",
+        "DWJP-identity:veranda vines|golden trellis",
+        "Golden Trellis",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186289715",
+      "title": "Promenade - Moonlit Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34209",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|moonlit garden",
+        "lifecycle:active",
+        "Moonlit Garden",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186322483",
+      "title": "Promenade - Burgundy Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34208",
+        "browse-hidden",
+        "Burgundy Bloom",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|burgundy bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186355251",
+      "title": "Promenade - Verdant Waltz",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34207",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|verdant waltz",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Verdant Waltz",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186388019",
+      "title": "Vinyl Atmosphere - Skylight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38205",
+        "browse-hidden",
+        "Collection Vinyl Atmosphere",
+        "display_variant",
+        "DWJP-identity:vinyl atmosphere|skylight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Skylight",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186420787",
+      "title": "Promenade - Ink Reverie",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34205",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|ink reverie",
+        "Ink Reverie",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186453555",
+      "title": "Promenade - Sterling Pathway",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34204",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|sterling pathway",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sterling Pathway",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186486323",
+      "title": "Promenade - Lacewalk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34203",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|lacewalk",
+        "Lacewalk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186519091",
+      "title": "Promenade - Primrose Way",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34202",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|primrose way",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Primrose Way",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186551859",
+      "title": "Promenade - Serenity Stroll",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34201",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|serenity stroll",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Serenity Stroll",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186584627",
+      "title": "Promenade - Antique Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34200",
+        "Antique Bloom",
+        "browse-hidden",
+        "Collection Promenade",
+        "display_variant",
+        "DWJP-identity:promenade|antique bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186617395",
+      "title": "Emeline Pvc Free - Lava Rock",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38512",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|lava rock",
+        "Lava Rock",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186650163",
+      "title": "Pawleys Parquet - Palmetto Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37703",
+        "browse-hidden",
+        "Collection Pawleys Parquet",
+        "display_variant",
+        "DWJP-identity:pawleys parquet|palmetto shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Palmetto Shade",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186682931",
+      "title": "Wellington Weave - Ice Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35204",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|ice blue",
+        "Ice Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186715699",
+      "title": "Veranda Vines - Bronzed Ebony",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43804",
+        "Bronzed Ebony",
+        "browse-hidden",
+        "Collection Veranda Vines",
+        "display_variant",
+        "DWJP-identity:veranda vines|bronzed ebony",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186748467",
+      "title": "Wellington Weave - Light Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35203",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|light grey",
+        "lifecycle:active",
+        "Light Grey",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186781235",
+      "title": "Emeline Pvc Free - Capri Cliffs",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38506",
+        "browse-hidden",
+        "Capri Cliffs",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|capri cliffs",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186814003",
+      "title": "Emeline Pvc Free - Canvas",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38504",
+        "browse-hidden",
+        "Canvas",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|canvas",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186846771",
+      "title": "Manor House - Powder Room",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40301",
+        "browse-hidden",
+        "Collection Manor House",
+        "display_variant",
+        "DWJP-identity:manor house|powder room",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Powder Room",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941186977843",
+      "title": "Wellington Weave - Tawny Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35205",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|tawny clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tawny Clay",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187010611",
+      "title": "Magnolia Mosaic - Coastal Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44102",
+        "browse-hidden",
+        "Coastal Bloom",
+        "Collection Magnolia Mosaic",
+        "display_variant",
+        "DWJP-identity:magnolia mosaic|coastal bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187043379",
+      "title": "Vinyl Fringe - Obsidian",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38102",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|obsidian",
+        "lifecycle:active",
+        "New Arrival",
+        "Obsidian",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187076147",
+      "title": "Emeline Pvc Free - Wheat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38502",
+        "browse-hidden",
+        "Collection Emeline PVC Free",
+        "display_variant",
+        "DWJP-identity:emeline pvc free|wheat",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wheat"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187108915",
+      "title": "Harbor Weave - Golden Straw",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44200",
+        "browse-hidden",
+        "Collection Harbor Weave",
+        "display_variant",
+        "DWJP-identity:harbor weave|golden straw",
+        "Golden Straw",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187141683",
+      "title": "Posy - Phantom Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40405",
+        "browse-hidden",
+        "Collection Posy",
+        "display_variant",
+        "DWJP-identity:posy|phantom bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phantom Bloom",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187174451",
+      "title": "Wellington Weave - Warm Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35202",
+        "browse-hidden",
+        "Collection Wellington Weave & All Wound Up",
+        "display_variant",
+        "DWJP-identity:wellington weave|warm beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Warm Beige"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187207219",
+      "title": "Charmed - Whispering Rose",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40603",
+        "browse-hidden",
+        "Collection Charmed",
+        "display_variant",
+        "DWJP-identity:charmed|whispering rose",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Whispering Rose"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187239987",
+      "title": "Vinyl Eclipse - Sage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38308",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|sage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187272755",
+      "title": "Vinyl Eclipse - Ochrie",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38307",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|ochrie",
+        "lifecycle:active",
+        "New Arrival",
+        "Ochrie",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187305523",
+      "title": "Vinyl Eclipse - Raw Linen",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38306",
+        "browse-hidden",
+        "Collection Vinyl Eclipse",
+        "display_variant",
+        "DWJP-identity:vinyl eclipse|raw linen",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Raw Linen",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187338291",
+      "title": "Vinyl Crocodile Rock - Porcelain Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10854",
+        "browse-hidden",
+        "Collection Vinyl Crocodile Rock II",
+        "display_variant",
+        "DWJP-identity:vinyl crocodile rock|porcelain shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Porcelain Shadow",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187371059",
+      "title": "Vinyl Fringe - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38101",
+        "browse-hidden",
+        "Collection Vinyl Fringe",
+        "display_variant",
+        "DWJP-identity:vinyl fringe|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187403827",
+      "title": "Vinyl Chiseled - White Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34804",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|white sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White Sand"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187436595",
+      "title": "Vinyl Bermuda Hemp - Cotton",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42300",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "Cotton",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|cotton",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187469363",
+      "title": "Mulberry Bark - Arid Agave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42003",
+        "Arid Agave",
+        "browse-hidden",
+        "Collection Mulberry Bark",
+        "display_variant",
+        "DWJP-identity:mulberry bark|arid agave",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187502131",
+      "title": "Mulberry Bark - Moody Mink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42002",
+        "browse-hidden",
+        "Collection Mulberry Bark",
+        "display_variant",
+        "DWJP-identity:mulberry bark|moody mink",
+        "lifecycle:active",
+        "Moody Mink",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187534899",
+      "title": "Mulberry Bark - Rustic Rye",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42001",
+        "browse-hidden",
+        "Collection Mulberry Bark",
+        "display_variant",
+        "DWJP-identity:mulberry bark|rustic rye",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rustic Rye",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187567667",
+      "title": "Mulberry Bark - Slate Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42004",
+        "browse-hidden",
+        "Collection Mulberry Bark",
+        "display_variant",
+        "DWJP-identity:mulberry bark|slate grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate Grey",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187600435",
+      "title": "Vinyl Bermuda Hemp - Dusted Pink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42303",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "Dusted Pink",
+        "DWJP-identity:vinyl bermuda hemp|dusted pink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187633203",
+      "title": "Vinyl Bermuda Hemp - Dew Drops",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42306",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "Dew Drops",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|dew drops",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187665971",
+      "title": "Vinyl Bermuda Hemp - Parchment",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42302",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|parchment",
+        "lifecycle:active",
+        "New Arrival",
+        "Parchment",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187698739",
+      "title": "Vinyl Bermuda Hemp - Elephant",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42310",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|elephant",
+        "Elephant",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187731507",
+      "title": "Vinyl Bermuda Hemp - Hunter Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42312",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|hunter green",
+        "Hunter Green",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187764275",
+      "title": "Vinyl Bermuda Hemp - Marigold",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42308",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|marigold",
+        "lifecycle:active",
+        "Marigold",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187829811",
+      "title": "Vinyl Bermuda Hemp - Grass Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42307",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|grass green",
+        "Grass Green",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187862579",
+      "title": "Vinyl Sedona - Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37004",
+        "Brown",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|brown",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187895347",
+      "title": "Vinyl Sedona - Blush Tide",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37003",
+        "Blush Tide",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|blush tide",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187928115",
+      "title": "Sheer Oasis - Joshua Tree",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42400",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|joshua tree",
+        "Joshua Tree",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941187993651",
+      "title": "Vinyl Sedona - Salted Fade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37001",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|salted fade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Salted Fade",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188059187",
+      "title": "Sheer Oasis - Mushroom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42405",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|mushroom",
+        "lifecycle:active",
+        "Mushroom",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188091955",
+      "title": "Sheer Oasis - Draped Jasper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42403",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "Draped Jasper",
+        "DWJP-identity:sheer oasis|draped jasper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188124723",
+      "title": "Sheer Oasis - Unearthed Umber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42406",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|unearthed umber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Unearthed Umber",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188157491",
+      "title": "Sheer Oasis - Pebble Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42402",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|pebble grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Pebble Grey",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188190259",
+      "title": "Vinyl Sirocco - Midnight Gild",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36708",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|midnight gild",
+        "lifecycle:active",
+        "Midnight Gild",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188223027",
+      "title": "Vinyl Sirocco - Amazon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36707",
+        "Amazon",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|amazon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188255795",
+      "title": "Vinyl Sedona - Rua Rust",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37006",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|rua rust",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rua Rust",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188288563",
+      "title": "Sheer Oasis - Chalk Cliffs",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42401",
+        "browse-hidden",
+        "Chalk Cliffs",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|chalk cliffs",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188321331",
+      "title": "Vinyl Sirocco - Skyline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36705",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|skyline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Skyline",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188354099",
+      "title": "Vinyl Sirocco - Celestial",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36703",
+        "browse-hidden",
+        "Celestial",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|celestial",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188386867",
+      "title": "Vinyl Fresco - Cognac",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22801",
+        "browse-hidden",
+        "Cognac",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|cognac",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188419635",
+      "title": "Vinyl Sirocco - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36701",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188452403",
+      "title": "Vinyl Sirocco - Groove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36700",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|groove",
+        "Groove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188485171",
+      "title": "Vinyl Chiseled - Snow Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34805",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|snow drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Snow Drift",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188517939",
+      "title": "Palm Washi - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42900",
+        "browse-hidden",
+        "Collection Palm Washi & Ribbon Washi",
+        "display_variant",
+        "DWJP-identity:palm washi|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188550707",
+      "title": "Velvet Dunes - Mojave Moss",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36004",
+        "browse-hidden",
+        "Collection Velvet Dunes",
+        "display_variant",
+        "DWJP-identity:velvet dunes|mojave moss",
+        "lifecycle:active",
+        "Mojave Moss",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188583475",
+      "title": "Velvet Dunes - Dusk Dunes",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36002",
+        "browse-hidden",
+        "Collection Velvet Dunes",
+        "display_variant",
+        "Dusk Dunes",
+        "DWJP-identity:velvet dunes|dusk dunes",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188616243",
+      "title": "Velvet Dunes - Vanilla Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36001",
+        "browse-hidden",
+        "Collection Velvet Dunes",
+        "display_variant",
+        "DWJP-identity:velvet dunes|vanilla haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Vanilla Haze",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188649011",
+      "title": "Vinyl Sedona - Cypress Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37007",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "Cypress Shadow",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|cypress shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941188681779",
+      "title": "Velvet Dunes - Muted Skies",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36000",
+        "browse-hidden",
+        "Collection Velvet Dunes",
+        "display_variant",
+        "DWJP-identity:velvet dunes|muted skies",
+        "lifecycle:active",
+        "Muted Skies",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941190910003",
+      "title": "Canyon Cloth - Seafoam Stone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35907",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|seafoam stone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Seafoam Stone",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941191041075",
+      "title": "Fade - Dusty Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43002",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "Dusty Taupe",
+        "DWJP-identity:fade|dusty taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941191532595",
+      "title": "Canyon Cloth - Harvest",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35905",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|harvest",
+        "Harvest",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941191958579",
+      "title": "Canyon Cloth - Evening Light",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35904",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|evening light",
+        "Evening Light",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941192679475",
+      "title": "Canyon Cloth - Cavern Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35903",
+        "browse-hidden",
+        "Cavern Clay",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|cavern clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941192974387",
+      "title": "Canyon Cloth - Skythread",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35901",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|skythread",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Skythread",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941193269299",
+      "title": "Canyon Cloth - Light Cinder",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35900",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|light cinder",
+        "lifecycle:active",
+        "Light Cinder",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941193531443",
+      "title": "Fade - Misty",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43010",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|misty",
+        "lifecycle:active",
+        "Misty",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941193662515",
+      "title": "Fade - Golden Hour",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43007",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|golden hour",
+        "Golden Hour",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941193924659",
+      "title": "Vinyl Fresco - Parchment",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22800",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|parchment",
+        "lifecycle:active",
+        "New Arrival",
+        "Parchment",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194022963",
+      "title": "Fade - Muted Melange",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43003",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|muted melange",
+        "lifecycle:active",
+        "Muted Melange",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194252339",
+      "title": "Fade - Frosted",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43001",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|frosted",
+        "Frosted",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194285107",
+      "title": "Fade - Pale Dune",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43000",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|pale dune",
+        "lifecycle:active",
+        "New Arrival",
+        "Pale Dune",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194383411",
+      "title": "Ribbon Washi - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42901",
+        "browse-hidden",
+        "Collection Palm Washi & Ribbon Washi",
+        "display_variant",
+        "DWJP-identity:ribbon washi|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194481715",
+      "title": "Santa Fe Stripe - Blue Mirage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40106",
+        "Blue Mirage",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|blue mirage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194547251",
+      "title": "Vinyl Bermuda Hemp - Sepia",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42313",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|sepia",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194612787",
+      "title": "Vinyl Sandswept - Linen",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34906",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|linen",
+        "lifecycle:active",
+        "Linen",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194743859",
+      "title": "Desert Ivy - Black Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40207",
+        "Black Veil",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|black veil",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194874931",
+      "title": "Fade - Wisteria",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43004",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|wisteria",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wisteria"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941194940467",
+      "title": "Fade - Spool",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43005",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|spool",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Spool",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941195071539",
+      "title": "Sheer Oasis - Blush Husk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42404",
+        "Blush Husk",
+        "browse-hidden",
+        "Collection Sheer Oasis",
+        "display_variant",
+        "DWJP-identity:sheer oasis|blush husk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941195169843",
+      "title": "Fade - Sepia Horizon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43009",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|sepia horizon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia Horizon",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941195268147",
+      "title": "Desert Ivy - Navy Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40206",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|navy drift",
+        "lifecycle:active",
+        "Navy Drift",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941195399219",
+      "title": "Desert Ivy - Sage Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40203",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|sage shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage Shade",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941195431987",
+      "title": "Vinyl Bermuda Hemp - Graphite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42311",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|graphite",
+        "Graphite",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941197889587",
+      "title": "Vinyl Bermuda Hemp - Ecru",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42309",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|ecru",
+        "Ecru",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941197987891",
+      "title": "Fade - Peony",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43008",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "DWJP-identity:fade|peony",
+        "lifecycle:active",
+        "New Arrival",
+        "Peony",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198118963",
+      "title": "Canyon Cloth - Echo",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35902",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|echo",
+        "Echo",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198184499",
+      "title": "Vinyl Bermuda Hemp - Morning Sky",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42305",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|morning sky",
+        "lifecycle:active",
+        "Morning Sky",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198381107",
+      "title": "Vinyl Bermuda Hemp - Soft Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42301",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|soft ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Ivory",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198544947",
+      "title": "Mojave Stripe - Arroyo",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35305",
+        "Arroyo",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "display_variant",
+        "DWJP-identity:mojave stripe|arroyo",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198610483",
+      "title": "Canyon Cloth - Shale Whisper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35906",
+        "browse-hidden",
+        "Collection Canyon Cloth",
+        "display_variant",
+        "DWJP-identity:canyon cloth|shale whisper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shale Whisper",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198676019",
+      "title": "Mojave Stripe - Range",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35304",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "display_variant",
+        "DWJP-identity:mojave stripe|range",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Range",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198741555",
+      "title": "Mojave Stripe - Voyage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35303",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "display_variant",
+        "DWJP-identity:mojave stripe|voyage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Voyage",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198807091",
+      "title": "Mojave Stripe - Plateau Peaks",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35302",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "display_variant",
+        "DWJP-identity:mojave stripe|plateau peaks",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plateau Peaks",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941198905395",
+      "title": "Mulberry Bark - Pale Timber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42000",
+        "browse-hidden",
+        "Collection Mulberry Bark",
+        "display_variant",
+        "DWJP-identity:mulberry bark|pale timber",
+        "lifecycle:active",
+        "New Arrival",
+        "Pale Timber",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199003699",
+      "title": "Mojave Stripe - Indigo Sky",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35301",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "display_variant",
+        "DWJP-identity:mojave stripe|indigo sky",
+        "Indigo Sky",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199102003",
+      "title": "Vinyl Sirocco - Stone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36702",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|stone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Stone",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199134771",
+      "title": "Mojave Stripe - Desert Inlet",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35300",
+        "browse-hidden",
+        "Collection Mojave Stripe",
+        "Desert Inlet",
+        "display_variant",
+        "DWJP-identity:mojave stripe|desert inlet",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199167539",
+      "title": "Velvet Dunes - Soft Sands",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36003",
+        "browse-hidden",
+        "Collection Velvet Dunes",
+        "display_variant",
+        "DWJP-identity:velvet dunes|soft sands",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Sands",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199233075",
+      "title": "Swept Away - Slate Tides",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41509",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|slate tides",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate Tides",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199396915",
+      "title": "Swept Away - Blue Abyss",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41508",
+        "Blue Abyss",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|blue abyss",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199495219",
+      "title": "Swept Away - Arbor Tint",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41506",
+        "Arbor Tint",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|arbor tint",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199560755",
+      "title": "Swept Away - Muted Ridge",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41505",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|muted ridge",
+        "lifecycle:active",
+        "Muted Ridge",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199593523",
+      "title": "Swept Away - Sand Trace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41504",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|sand trace",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand Trace",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199659059",
+      "title": "Swept Away - Misty Shore",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41502",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|misty shore",
+        "lifecycle:active",
+        "Misty Shore",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199822899",
+      "title": "Swept Away - Blush Current",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41501",
+        "Blush Current",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|blush current",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941199888435",
+      "title": "Swept Away - Meadow Wash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41500",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|meadow wash",
+        "lifecycle:active",
+        "Meadow Wash",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941200052275",
+      "title": "Vinyl Sandswept - Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34909",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Taupe",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941202608179",
+      "title": "Rosetta - Sage Ink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40803",
+        "browse-hidden",
+        "Collection Rosetta",
+        "display_variant",
+        "DWJP-identity:rosetta|sage ink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage Ink",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941202706483",
+      "title": "Adobe - Terracotta Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41303",
+        "browse-hidden",
+        "Collection Adobe",
+        "display_variant",
+        "DWJP-identity:adobe|terracotta drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Terracotta Drift",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941202837555",
+      "title": "Adobe - Clay Stitch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41301",
+        "browse-hidden",
+        "Clay Stitch",
+        "Collection Adobe",
+        "display_variant",
+        "DWJP-identity:adobe|clay stitch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941203263539",
+      "title": "Azriel Pvc Free - Sunbath",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40900",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|sunbath",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunbath",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941203361843",
+      "title": "Arroyo Raffia - Mesa Straw",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41203",
+        "browse-hidden",
+        "Collection Arroyo Raffia",
+        "display_variant",
+        "DWJP-identity:arroyo raffia|mesa straw",
+        "lifecycle:active",
+        "Mesa Straw",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941203722291",
+      "title": "Arroyo Raffia - Salt Wind",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41201",
+        "browse-hidden",
+        "Collection Arroyo Raffia",
+        "display_variant",
+        "DWJP-identity:arroyo raffia|salt wind",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Salt Wind",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941203918899",
+      "title": "Mosaic Metals - Gold Fusion",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41102",
+        "browse-hidden",
+        "Collection Mosaic Metals",
+        "display_variant",
+        "DWJP-identity:mosaic metals|gold fusion",
+        "Gold Fusion",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941204213811",
+      "title": "Mosaic Metals - Titanium Gleam",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41100",
+        "browse-hidden",
+        "Collection Mosaic Metals",
+        "display_variant",
+        "DWJP-identity:mosaic metals|titanium gleam",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Titanium Gleam",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941204344883",
+      "title": "Vinyl Sirocco - Rose",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36704",
+        "browse-hidden",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|rose",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rose",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941204508723",
+      "title": "Vinyl Sandswept - Nightfall",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34911",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|nightfall",
+        "lifecycle:active",
+        "New Arrival",
+        "Nightfall",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941204607027",
+      "title": "Vinyl Fresco - Antique White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22802",
+        "Antique White",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|antique white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941204967475",
+      "title": "Vinyl Sandswept - Aloe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34910",
+        "Aloe",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|aloe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941205327923",
+      "title": "Azriel Pvc Free - Navy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40909",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|navy",
+        "lifecycle:active",
+        "Navy",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941206081587",
+      "title": "Azriel Pvc Free - Picante",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40908",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|picante",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Picante",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941207195699",
+      "title": "Vinyl Sandswept - Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34901",
+        "browse-hidden",
+        "Clay",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941207687219",
+      "title": "Vinyl Sandswept - Terrain",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34900",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|terrain",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Terrain",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941211652147",
+      "title": "Azriel Pvc Free - Nightingale",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40904",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|nightingale",
+        "lifecycle:active",
+        "New Arrival",
+        "Nightingale",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941220335667",
+      "title": "Vinyl Chiseled - Sable",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34811",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|sable",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sable",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941225513011",
+      "title": "Vinyl Chiseled - Slate",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34810",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|slate",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941233737779",
+      "title": "Azriel Pvc Free - Moss",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40901",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|moss",
+        "lifecycle:active",
+        "Moss",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941237899315",
+      "title": "Vinyl Chiseled - Canyon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34809",
+        "browse-hidden",
+        "Canyon",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|canyon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941241569331",
+      "title": "Azriel Pvc Free - Wren",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40905",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|wren",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wren"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941338431539",
+      "title": "Vinyl Chiseled - Dune",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34808",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "Dune",
+        "DWJP-identity:vinyl chiseled|dune",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941343576115",
+      "title": "Vinyl Sedona - Mattina",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37000",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|mattina",
+        "lifecycle:active",
+        "Mattina",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941346459699",
+      "title": "Vinyl Chiseled - Savannah",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34807",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|savannah",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Savannah",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941351145523",
+      "title": "Vinyl Sedona - Stone Whisper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37002",
+        "browse-hidden",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|stone whisper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Stone Whisper",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941353930803",
+      "title": "Vinyl Chiseled - Sun Bleached",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34806",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|sun bleached",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sun Bleached",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941359665203",
+      "title": "Vinyl Sedona - Calcada",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37005",
+        "browse-hidden",
+        "Calcada",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|calcada",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941365137459",
+      "title": "Vinyl Chiseled - Tawny",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34803",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|tawny",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tawny",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941368086579",
+      "title": "Vinyl Sedona - Burnt Fig",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37008",
+        "browse-hidden",
+        "Burnt Fig",
+        "Collection Vinyl Sedona",
+        "display_variant",
+        "DWJP-identity:vinyl sedona|burnt fig",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941370937395",
+      "title": "Vinyl Chiseled - Sandstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34802",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|sandstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandstone",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941373526067",
+      "title": "Vinyl Chiseled - Eggshell",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34801",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|eggshell",
+        "Eggshell",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941376311347",
+      "title": "Vinyl Chiseled - Cactus",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34800",
+        "browse-hidden",
+        "Cactus",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|cactus",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941379424307",
+      "title": "Azriel Pvc Free - Mink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40907",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|mink",
+        "lifecycle:active",
+        "Mink",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941381980211",
+      "title": "Azriel Pvc Free - Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40910",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Taupe",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941384831027",
+      "title": "Vinyl Bermuda Hemp - French Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42304",
+        "browse-hidden",
+        "Collection Vinyl Bermuda Hemp",
+        "display_variant",
+        "DWJP-identity:vinyl bermuda hemp|french blue",
+        "French Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941389942835",
+      "title": "Vinyl Sandswept - Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34905",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|mist",
+        "lifecycle:active",
+        "Mist",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941392859187",
+      "title": "Azriel Pvc Free - French Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40906",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|french blue",
+        "French Blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941395644467",
+      "title": "Azriel Pvc Free - Soft White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40903",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|soft white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft White",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941398298675",
+      "title": "Mosaic Metals - Champagne Alloy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41101",
+        "browse-hidden",
+        "Champagne Alloy",
+        "Collection Mosaic Metals",
+        "display_variant",
+        "DWJP-identity:mosaic metals|champagne alloy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941401313331",
+      "title": "Desert Ivy - Blush Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40208",
+        "Blush Haze",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|blush haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941404229683",
+      "title": "Arroyo Raffia - Sun Husk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41202",
+        "browse-hidden",
+        "Collection Arroyo Raffia",
+        "display_variant",
+        "DWJP-identity:arroyo raffia|sun husk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sun Husk",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941407047731",
+      "title": "Desert Ivy - Blue Oasis",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40205",
+        "Blue Oasis",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|blue oasis",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941409964083",
+      "title": "Desert Ivy - Rooted Cocoa",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40204",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|rooted cocoa",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rooted Cocoa",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941484707891",
+      "title": "Desert Ivy - Sunbaked Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40202",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|sunbaked grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunbaked Grove",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941485068339",
+      "title": "Desert Ivy - Faded Canopy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40201",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|faded canopy",
+        "Faded Canopy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941485428787",
+      "title": "Desert Ivy - Shadow Vine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40200",
+        "browse-hidden",
+        "Collection Desert Ivy",
+        "display_variant",
+        "DWJP-identity:desert ivy|shadow vine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow Vine",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941485822003",
+      "title": "Arroyo Raffia - Agave Sky",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41200",
+        "Agave Sky",
+        "browse-hidden",
+        "Collection Arroyo Raffia",
+        "display_variant",
+        "DWJP-identity:arroyo raffia|agave sky",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941486116915",
+      "title": "Adobe - Parchment",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41300",
+        "browse-hidden",
+        "Collection Adobe",
+        "display_variant",
+        "DWJP-identity:adobe|parchment",
+        "lifecycle:active",
+        "New Arrival",
+        "Parchment",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941486411827",
+      "title": "Santa Fe Stripe - Cotton Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40108",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "Cotton Haze",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|cotton haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941486673971",
+      "title": "Santa Fe Stripe - Navy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40107",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|navy",
+        "lifecycle:active",
+        "Navy",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487001651",
+      "title": "Santa Fe Stripe - Cocoa Ridge",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40105",
+        "browse-hidden",
+        "Cocoa Ridge",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|cocoa ridge",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487296563",
+      "title": "Santa Fe Stripe - Black Ash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40104",
+        "Black Ash",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|black ash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487460403",
+      "title": "Santa Fe Stripe - Sunlit Sage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40103",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|sunlit sage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunlit Sage",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487624243",
+      "title": "Arroyo Raffia - Cactus Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41204",
+        "browse-hidden",
+        "Cactus Shade",
+        "Collection Arroyo Raffia",
+        "display_variant",
+        "DWJP-identity:arroyo raffia|cactus shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487755315",
+      "title": "Santa Fe Stripe - Faded Trail",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40102",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|faded trail",
+        "Faded Trail",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487886387",
+      "title": "Santa Fe Stripe - Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40101",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941487984691",
+      "title": "Santa Fe Stripe - Morning Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40100",
+        "browse-hidden",
+        "Collection Santa Fe Stripe",
+        "display_variant",
+        "DWJP-identity:santa fe stripe|morning shadow",
+        "lifecycle:active",
+        "Morning Shadow",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488017459",
+      "title": "Vinyl Sandswept - Limestone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34903",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|limestone",
+        "lifecycle:active",
+        "Limestone",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488050227",
+      "title": "Vinyl Sandswept - Bone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34904",
+        "Bone",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|bone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488082995",
+      "title": "Azriel Pvc Free - Modern Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40911",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|modern black",
+        "lifecycle:active",
+        "Modern Black",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488115763",
+      "title": "Vinyl Sandswept - Mesa",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34907",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|mesa",
+        "lifecycle:active",
+        "Mesa",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488148531",
+      "title": "Vinyl Sandswept - Basalt",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34908",
+        "Basalt",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|basalt",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488181299",
+      "title": "Vinyl Fresco - Charcoal",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22813",
+        "browse-hidden",
+        "Charcoal",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|charcoal",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488214067",
+      "title": "Adobe - Onyx Dusk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41304",
+        "browse-hidden",
+        "Collection Adobe",
+        "display_variant",
+        "DWJP-identity:adobe|onyx dusk",
+        "lifecycle:active",
+        "New Arrival",
+        "Onyx Dusk",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488246835",
+      "title": "Vinyl Fresco - Maritime",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22810",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|maritime",
+        "lifecycle:active",
+        "Maritime",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488279603",
+      "title": "Vinyl Chiseled - Bedrock",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34812",
+        "Bedrock",
+        "browse-hidden",
+        "Collection Vinyl Chiseled",
+        "display_variant",
+        "DWJP-identity:vinyl chiseled|bedrock",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488312371",
+      "title": "Vinyl Fresco - Nomad",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22811",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|nomad",
+        "lifecycle:active",
+        "New Arrival",
+        "Nomad",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488345139",
+      "title": "Vinyl Sirocco - Canyon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36706",
+        "browse-hidden",
+        "Canyon",
+        "Collection Vinyl Sirocco",
+        "display_variant",
+        "DWJP-identity:vinyl sirocco|canyon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488508979",
+      "title": "Vinyl Sandswept - Desert Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34902",
+        "browse-hidden",
+        "Collection Vinyl Sandswept",
+        "Desert Sand",
+        "display_variant",
+        "DWJP-identity:vinyl sandswept|desert sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488541747",
+      "title": "Vinyl Fresco - Cashmere",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22808",
+        "browse-hidden",
+        "Cashmere",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|cashmere",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488574515",
+      "title": "Vinyl Fresco - Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22809",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|fern",
+        "Fern",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488607283",
+      "title": "Vinyl Fresco - Espresso",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22812",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|espresso",
+        "Espresso",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488640051",
+      "title": "Vinyl Fresco - Khaki",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22803",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|khaki",
+        "Khaki",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488672819",
+      "title": "Vinyl Fresco - Oxblood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22804",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|oxblood",
+        "lifecycle:active",
+        "New Arrival",
+        "Oxblood",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488705587",
+      "title": "Vinyl Fresco - Cotton",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22805",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "Cotton",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|cotton",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488738355",
+      "title": "Vinyl Fresco - Serene",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22806",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|serene",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Serene",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488771123",
+      "title": "Swept Away - Juniper Mirage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41507",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|juniper mirage",
+        "Juniper Mirage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488803891",
+      "title": "Vinyl Fresco - Fountain",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22807",
+        "browse-hidden",
+        "Collection Vinyl Fresco",
+        "display_variant",
+        "DWJP-identity:vinyl fresco|fountain",
+        "Fountain",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488836659",
+      "title": "Fade - Drift Iron",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43006",
+        "browse-hidden",
+        "Collection Fade II",
+        "display_variant",
+        "Drift Iron",
+        "DWJP-identity:fade|drift iron",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488869427",
+      "title": "Swept Away - Soft Strata",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41503",
+        "browse-hidden",
+        "Collection Swept Away",
+        "display_variant",
+        "DWJP-identity:swept away|soft strata",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Strata",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488902195",
+      "title": "Adobe - Champagne",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "41302",
+        "browse-hidden",
+        "Champagne",
+        "Collection Adobe",
+        "display_variant",
+        "DWJP-identity:adobe|champagne",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488934963",
+      "title": "Azriel Pvc Free - Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "40902",
+        "browse-hidden",
+        "Collection Azriel PVC Free",
+        "display_variant",
+        "DWJP-identity:azriel pvc free|fern",
+        "Fern",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941488967731",
+      "title": "Vinyl Crush - Cloud Nine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34001",
+        "browse-hidden",
+        "Cloud Nine",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|cloud nine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489000499",
+      "title": "Vinyl Crush - Soft Champagne",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34000",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|soft champagne",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Champagne",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489033267",
+      "title": "Vinyl Sisal Strings - Wheat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34705",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|wheat",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wheat"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489066035",
+      "title": "Cabaret Cloth - Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32902",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Taupe",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489098803",
+      "title": "Savile Suiting - Antique Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10841",
+        "Antique Black",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting|antique black",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489131571",
+      "title": "Vinyl Enchanted Woods - Deep Bordeaux",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10837",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "Deep Bordeaux",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|deep bordeaux",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489164339",
+      "title": "Vinyl Enchanted Woods - Navy Fantasy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10838",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|navy fantasy",
+        "lifecycle:active",
+        "Navy Fantasy",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489197107",
+      "title": "Cabaret Cloth - Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32906",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489262643",
+      "title": "Savile Suiting - Wool Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10840",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting|wool grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wool Grey"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489295411",
+      "title": "Cabaret Cloth - Emerald",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32905",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|emerald",
+        "Emerald",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489328179",
+      "title": "Cabaret Cloth - Silver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32904",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|silver",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489623091",
+      "title": "Arlo Pvc Free - Tobacco",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36909",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|tobacco",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tobacco",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489655859",
+      "title": "Cabaret Cloth - Amber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32903",
+        "Amber",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|amber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489688627",
+      "title": "Curtain Call - Act Of Ivy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32809",
+        "Act Of Ivy",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|act of ivy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489721395",
+      "title": "Curtain Call - Midnight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32808",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|midnight",
+        "lifecycle:active",
+        "Midnight",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489754163",
+      "title": "Cabaret Cloth - Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32901",
+        "Beige",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489786931",
+      "title": "Grandview Grass - Deep Coast",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37812",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "Deep Coast",
+        "display_variant",
+        "DWJP-identity:grandview grass|deep coast",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489819699",
+      "title": "Grandview Grass - Eucalyptus Weave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37808",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|eucalyptus weave",
+        "Eucalyptus Weave",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489852467",
+      "title": "Curtain Call - Draped Wisteria",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32807",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "Draped Wisteria",
+        "DWJP-identity:curtain call|draped wisteria",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489885235",
+      "title": "Grandview Grass - Silver Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37807",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|silver drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver Drift",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489918003",
+      "title": "Grandview Grass - Soft Umber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37805",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|soft umber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Umber",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489950771",
+      "title": "Curtain Call - Finale",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32806",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|finale",
+        "Finale",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941489983539",
+      "title": "Grandview Grass - Oyster Shell",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37804",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|oyster shell",
+        "lifecycle:active",
+        "New Arrival",
+        "Oyster Shell",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490016307",
+      "title": "Grandview Grass - Sea Breeze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37802",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|sea breeze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sea Breeze",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490049075",
+      "title": "Curtain Call - Matinee",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32805",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|matinee",
+        "lifecycle:active",
+        "Matinee",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490081843",
+      "title": "Grandview Grass - Frosted Reed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37801",
+        "browse-hidden",
+        "Collection Grandview Grass",
+        "display_variant",
+        "DWJP-identity:grandview grass|frosted reed",
+        "Frosted Reed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490114611",
+      "title": "Curtain Call - Encore",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32804",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|encore",
+        "Encore",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490147379",
+      "title": "Vinyl Enchanted Woods - Ethereal Sage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10835",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|ethereal sage",
+        "Ethereal Sage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490180147",
+      "title": "Curtain Call - Intermission",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32803",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|intermission",
+        "Intermission",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490212915",
+      "title": "Curtain Call - Limelight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32802",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|limelight",
+        "lifecycle:active",
+        "Limelight",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490278451",
+      "title": "Vinyl Enchanted Woods - Mocha Mink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10836",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|mocha mink",
+        "lifecycle:active",
+        "Mocha Mink",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490343987",
+      "title": "Venetian Plaster - Hunter Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37608",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|hunter shadow",
+        "Hunter Shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490376755",
+      "title": "Venetian Plaster - Graphite Glaze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37607",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|graphite glaze",
+        "Graphite Glaze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490409523",
+      "title": "Curtain Call - Ovation",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32801",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|ovation",
+        "lifecycle:active",
+        "New Arrival",
+        "Ovation",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490442291",
+      "title": "Venetian Plaster - Pewter Wash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37606",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|pewter wash",
+        "lifecycle:active",
+        "New Arrival",
+        "Pewter Wash",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490475059",
+      "title": "Venetian Plaster - Tonal Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37605",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|tonal clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tonal Clay",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490704435",
+      "title": "Curtain Call - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32800",
+        "browse-hidden",
+        "Collection Curtain Call",
+        "display_variant",
+        "DWJP-identity:curtain call|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490737203",
+      "title": "Venetian Plaster - Ash Fig",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37604",
+        "Ash Fig",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|ash fig",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490769971",
+      "title": "Venetian Plaster - Tuscan Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37603",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|tuscan taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tuscan Taupe",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490802739",
+      "title": "Quiet Quarters - Cerise",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32705",
+        "browse-hidden",
+        "Cerise",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|cerise",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490868275",
+      "title": "Venetian Plaster - Dolce Creme",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37602",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "Dolce Creme",
+        "DWJP-identity:venetian plaster|dolce creme",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490901043",
+      "title": "Quiet Quarters - Emerald Revue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32704",
+        "browse-hidden",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|emerald revue",
+        "Emerald Revue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490933811",
+      "title": "Venetian Plaster - Muted Rose",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37601",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|muted rose",
+        "lifecycle:active",
+        "Muted Rose",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490966579",
+      "title": "Quiet Quarters - Shadow Act",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32703",
+        "browse-hidden",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|shadow act",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow Act",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941490999347",
+      "title": "Vinyl Enchanted Woods - Alabaster Glow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10831",
+        "Alabaster Glow",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|alabaster glow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491032115",
+      "title": "Vinyl Enchanted Woods - Gilded Horizon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10834",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|gilded horizon",
+        "Gilded Horizon",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491064883",
+      "title": "Vinyl Enchanted Woods - Moonlit Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10832",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|moonlit taupe",
+        "lifecycle:active",
+        "Moonlit Taupe",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491097651",
+      "title": "Savile Suiting Pinstripe - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10825",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting pinstripe|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491130419",
+      "title": "Savile Suiting Pinstripe - Ecru",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10826",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting pinstripe|ecru",
+        "Ecru",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491228723",
+      "title": "Savile Suiting Pinstripe - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10823",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting pinstripe|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491261491",
+      "title": "Savile Suiting Pinstripe - London",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10827",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting pinstripe|london",
+        "lifecycle:active",
+        "London",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491294259",
+      "title": "Silky Strings - Cobalt Spinel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10819",
+        "browse-hidden",
+        "Cobalt Spinel",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|cobalt spinel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491327027",
+      "title": "Savile Suiting Plaid - Beige Suit",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10828",
+        "Beige Suit",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting plaid|beige suit",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491359795",
+      "title": "Silky Strings - Azurite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10820",
+        "Azurite",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|azurite",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491392563",
+      "title": "Arlo Pvc Free - Ink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36910",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|ink",
+        "Ink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491425331",
+      "title": "Arlo Pvc Free - Tweed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36908",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|tweed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tweed",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491458099",
+      "title": "Savile Suiting Plaid - Tailored Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10829",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting plaid|tailored green",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tailored Green",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491490867",
+      "title": "Arlo Pvc Free - Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36906",
+        "browse-hidden",
+        "Clay",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491523635",
+      "title": "Arlo Pvc Free - Harvest",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36905",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|harvest",
+        "Harvest",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491556403",
+      "title": "Arlo Pvc Free - Notting Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36904",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|notting gray",
+        "lifecycle:active",
+        "New Arrival",
+        "Notting Gray",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491589171",
+      "title": "Arlo Pvc Free - Chelsea Linen",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36903",
+        "browse-hidden",
+        "Chelsea Linen",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|chelsea linen",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491621939",
+      "title": "Arlo Pvc Free - Almond",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36902",
+        "Almond",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|almond",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491687475",
+      "title": "Silky Strings - Sunstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10818",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|sunstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunstone",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491720243",
+      "title": "Arlo Pvc Free - Tudor",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36901",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "DWJP-identity:arlo pvc free|tudor",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tudor",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491753011",
+      "title": "Arlo Pvc Free - Dogwood White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36900",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "Dogwood White",
+        "DWJP-identity:arlo pvc free|dogwood white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491785779",
+      "title": "Silky Strings - Deep Jasper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10817",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "Deep Jasper",
+        "display_variant",
+        "DWJP-identity:silky strings|deep jasper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491851315",
+      "title": "Vinyl Enchanted Woods - Ivory Dove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10830",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|ivory dove",
+        "Ivory Dove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491884083",
+      "title": "Silky Strings - Morganite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10815",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|morganite",
+        "lifecycle:active",
+        "Morganite",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491916851",
+      "title": "Silky Strings - Lavender Jade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10816",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|lavender jade",
+        "Lavender Jade",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491949619",
+      "title": "Blossom - Mink Shimmer",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36410",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|mink shimmer",
+        "lifecycle:active",
+        "Mink Shimmer",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941491982387",
+      "title": "Blossom - Moonlit Rose",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36409",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|moonlit rose",
+        "lifecycle:active",
+        "Moonlit Rose",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492015155",
+      "title": "Blossom - Violet Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36408",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|violet fern",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Violet Fern",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492047923",
+      "title": "Blossom - Canyon Pink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36407",
+        "browse-hidden",
+        "Canyon Pink",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|canyon pink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492080691",
+      "title": "Blossom - Blush Mauve",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36406",
+        "Blush Mauve",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|blush mauve",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492146227",
+      "title": "Blossom - Sage Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36405",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|sage bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage Bloom",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492178995",
+      "title": "Blossom - Hushed Violet",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36404",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|hushed violet",
+        "Hushed Violet",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492211763",
+      "title": "Blossom - Bare Blush",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36403",
+        "Bare Blush",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|bare blush",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492244531",
+      "title": "Blossom - Ivory Gleam",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36402",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|ivory gleam",
+        "Ivory Gleam",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492277299",
+      "title": "Blossom - Rosy Chrome",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36401",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|rosy chrome",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rosy Chrome",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492310067",
+      "title": "Blossom - Pearlescent Petals",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36400",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:blossom|pearlescent petals",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearlescent Petals",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492342835",
+      "title": "Arlo Pvc Free - Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36907",
+        "browse-hidden",
+        "Collection Arlo PVC Free",
+        "display_variant",
+        "Drift",
+        "DWJP-identity:arlo pvc free|drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492375603",
+      "title": "Silky Strings - Hematite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10814",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|hematite",
+        "Hematite",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492408371",
+      "title": "Drama - Twilight Plum",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35806",
+        "browse-hidden",
+        "Collection Drama",
+        "display_variant",
+        "DWJP-identity:drama|twilight plum",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Twilight Plum",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492441139",
+      "title": "Monet Hemp - Pearlescent",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37104",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:monet hemp|pearlescent",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearlescent",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492473907",
+      "title": "Drama - Merlot Muse",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35805",
+        "browse-hidden",
+        "Collection Drama",
+        "display_variant",
+        "DWJP-identity:drama|merlot muse",
+        "lifecycle:active",
+        "Merlot Muse",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492506675",
+      "title": "Drama - Graphite Glow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35803",
+        "browse-hidden",
+        "Collection Drama",
+        "display_variant",
+        "DWJP-identity:drama|graphite glow",
+        "Graphite Glow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492703283",
+      "title": "Drama - Ghosted Satin",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35800",
+        "browse-hidden",
+        "Collection Drama",
+        "display_variant",
+        "DWJP-identity:drama|ghosted satin",
+        "Ghosted Satin",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492736051",
+      "title": "Silky Strings - Serpentine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10822",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|serpentine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Serpentine",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492768819",
+      "title": "Fable - Enchanted Blues",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35607",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|enchanted blues",
+        "Enchanted Blues",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492801587",
+      "title": "Fable - Mystic Meadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35606",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|mystic meadow",
+        "lifecycle:active",
+        "Mystic Meadow",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492834355",
+      "title": "Fable - Sepia Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35605",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|sepia garden",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia Garden",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492899891",
+      "title": "Glimmering Grass - Sage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37106",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:glimmering grass|sage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492932659",
+      "title": "Fable - Garnet Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35604",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|garnet grove",
+        "Garnet Grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492965427",
+      "title": "Fable - Harvest Whim",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35603",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|harvest whim",
+        "Harvest Whim",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941492998195",
+      "title": "Fable - Tonal Dream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35602",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|tonal dream",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tonal Dream",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493030963",
+      "title": "Silky Strings - Aventurine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10821",
+        "Aventurine",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|aventurine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493456947",
+      "title": "Fable - Glimmer",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35601",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|glimmer",
+        "Glimmer",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493653555",
+      "title": "Vinyl Panache - Pitch Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29709",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|pitch black",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Pitch Black",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493686323",
+      "title": "Fable - Fantasy Fog",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35600",
+        "browse-hidden",
+        "Collection Fable",
+        "display_variant",
+        "DWJP-identity:fable|fantasy fog",
+        "Fantasy Fog",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493719091",
+      "title": "Garden Gate - Willow Whisper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35507",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|willow whisper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Willow Whisper"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493751859",
+      "title": "Garden Gate - Moonshadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35506",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|moonshadow",
+        "lifecycle:active",
+        "Moonshadow",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493784627",
+      "title": "Garden Gate - Vineyard Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35505",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|vineyard mist",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Vineyard Mist",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493817395",
+      "title": "Vinyl Panache - Graphite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29708",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|graphite",
+        "Graphite",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493850163",
+      "title": "Garden Gate - Honeyed Vine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35504",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|honeyed vine",
+        "Honeyed Vine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493882931",
+      "title": "Garden Gate - Harvest Frame",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35503",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|harvest frame",
+        "Harvest Frame",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493915699",
+      "title": "Garden Gate - Blushing Lattice",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35502",
+        "Blushing Lattice",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|blushing lattice",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941493981235",
+      "title": "Glimmering Grass - Hushed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37105",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:glimmering grass|hushed",
+        "Hushed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494014003",
+      "title": "Garden Gate - Lunar Web",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35501",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|lunar web",
+        "lifecycle:active",
+        "Lunar Web",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494046771",
+      "title": "Garden Gate - Muted Arbor",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35500",
+        "browse-hidden",
+        "Collection Garden Gate",
+        "display_variant",
+        "DWJP-identity:garden gate|muted arbor",
+        "lifecycle:active",
+        "Muted Arbor",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494079539",
+      "title": "Vinyl Panache - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29707",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494112307",
+      "title": "Glimmering Grass - Powder",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37101",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:glimmering grass|powder",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Powder",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494243379",
+      "title": "Jasmine - Emerald Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35406",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|emerald bloom",
+        "Emerald Bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494276147",
+      "title": "Jasmine - Celestial Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35405",
+        "browse-hidden",
+        "Celestial Veil",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|celestial veil",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494308915",
+      "title": "Jasmine - Sky Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35404",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|sky blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Sky Blue",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494341683",
+      "title": "Jasmine - Autumn Petals",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35403",
+        "Autumn Petals",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|autumn petals",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494374451",
+      "title": "Vinyl Panache - Fresh White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29706",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|fresh white",
+        "Fresh White",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494407219",
+      "title": "Jasmine - Blushing Vine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35402",
+        "Blushing Vine",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|blushing vine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494472755",
+      "title": "Jasmine - Draped Meadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35401",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "Draped Meadow",
+        "DWJP-identity:jasmine|draped meadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494505523",
+      "title": "Vinyl Panache - Burnished Steel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29705",
+        "browse-hidden",
+        "Burnished Steel",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|burnished steel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494538291",
+      "title": "Jasmine - Muted Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35400",
+        "browse-hidden",
+        "Collection Jasmine",
+        "display_variant",
+        "DWJP-identity:jasmine|muted garden",
+        "lifecycle:active",
+        "Muted Garden",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494571059",
+      "title": "Cabaret Cloth - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32900",
+        "browse-hidden",
+        "Collection Cabaret Cloth",
+        "display_variant",
+        "DWJP-identity:cabaret cloth|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494603827",
+      "title": "Glimmering Grass - Moonlit",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37110",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:glimmering grass|moonlit",
+        "lifecycle:active",
+        "Moonlit",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494636595",
+      "title": "Aura - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37500",
+        "browse-hidden",
+        "Collection Aura",
+        "display_variant",
+        "DWJP-identity:aura|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494669363",
+      "title": "Vinyl Panache - Forged Umber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29704",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|forged umber",
+        "Forged Umber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494702131",
+      "title": "Aura - Ecru",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37501",
+        "browse-hidden",
+        "Collection Aura",
+        "display_variant",
+        "DWJP-identity:aura|ecru",
+        "Ecru",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494734899",
+      "title": "Vinyl Panache - Copper Nostalgia",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29703",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "Copper Nostalgia",
+        "display_variant",
+        "DWJP-identity:vinyl panache|copper nostalgia",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494767667",
+      "title": "Quiet Quarters - Ivory Spotlight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32700",
+        "browse-hidden",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|ivory spotlight",
+        "Ivory Spotlight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494800435",
+      "title": "Vinyl Panache - Golden Hour",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29702",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|golden hour",
+        "Golden Hour",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494833203",
+      "title": "Aura - Cove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37502",
+        "browse-hidden",
+        "Collection Aura",
+        "Cove",
+        "display_variant",
+        "DWJP-identity:aura|cove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494865971",
+      "title": "Glimmer Weave - Spotlight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35107",
+        "browse-hidden",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|spotlight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Spotlight",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494898739",
+      "title": "Glimmer Weave - Skyline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35106",
+        "browse-hidden",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|skyline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Skyline",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494931507",
+      "title": "Glimmer Weave - Callback",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35105",
+        "browse-hidden",
+        "Callback",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|callback",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494964275",
+      "title": "Vinyl Panache - White Silver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29701",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|white silver",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White Silver"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941494997043",
+      "title": "Glimmer Weave - Ciel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35104",
+        "browse-hidden",
+        "Ciel",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|ciel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495062579",
+      "title": "Glimmer Weave - Quartz",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35103",
+        "browse-hidden",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|quartz",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Quartz",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495095347",
+      "title": "Glimmer Weave - Upstage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35102",
+        "browse-hidden",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|upstage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Upstage",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495160883",
+      "title": "Glimmer Weave - Cheers",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35101",
+        "browse-hidden",
+        "Cheers",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|cheers",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495226419",
+      "title": "Vinyl Panache - Antique Gold",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29700",
+        "Antique Gold",
+        "browse-hidden",
+        "Collection Vinyl Panache",
+        "display_variant",
+        "DWJP-identity:vinyl panache|antique gold",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495259187",
+      "title": "Glimmer Weave - Nickel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "35100",
+        "browse-hidden",
+        "Collection Glimmer Weave",
+        "display_variant",
+        "DWJP-identity:glimmer weave|nickel",
+        "lifecycle:active",
+        "New Arrival",
+        "Nickel",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495291955",
+      "title": "Quiet Quarters - Broadway Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32701",
+        "Broadway Beige",
+        "browse-hidden",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|broadway beige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495324723",
+      "title": "Glimmering Grass - Mauve",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37107",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:glimmering grass|mauve",
+        "lifecycle:active",
+        "Mauve",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495357491",
+      "title": "Vinyl Enchanted Woods - Silver Whisper",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10833",
+        "browse-hidden",
+        "Collection Vinyl Enchanted Woods II",
+        "display_variant",
+        "DWJP-identity:vinyl enchanted woods|silver whisper",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver Whisper",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495390259",
+      "title": "Aura - Nocturne",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37504",
+        "browse-hidden",
+        "Collection Aura",
+        "display_variant",
+        "DWJP-identity:aura|nocturne",
+        "lifecycle:active",
+        "New Arrival",
+        "Nocturne",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495423027",
+      "title": "Vinyl Sisal Strings - Charcoal",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34719",
+        "browse-hidden",
+        "Charcoal",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|charcoal",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495455795",
+      "title": "Vinyl Sisal Strings - Iron",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34718",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|iron",
+        "Iron",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495488563",
+      "title": "Vinyl Sisal Strings - Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34717",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|garden",
+        "Garden",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495521331",
+      "title": "Quiet Quarters - Feathered Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32702",
+        "browse-hidden",
+        "Collection Quiet Quarters",
+        "display_variant",
+        "DWJP-identity:quiet quarters|feathered taupe",
+        "Feathered Taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495554099",
+      "title": "Vinyl Sisal Strings - Dusk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34716",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "Dusk",
+        "DWJP-identity:vinyl sisal strings|dusk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495619635",
+      "title": "Vinyl Sisal Strings - Twilight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34715",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|twilight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Twilight",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495652403",
+      "title": "Vinyl Sisal Strings - Granite",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34714",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|granite",
+        "Granite",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495685171",
+      "title": "Vinyl Sisal Strings - Serenity",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34713",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|serenity",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Serenity",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495717939",
+      "title": "Vinyl Sisal Strings - Elephant",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34712",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|elephant",
+        "Elephant",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495750707",
+      "title": "Vinyl Sisal Strings - Talc",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34711",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|talc",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Talc",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495783475",
+      "title": "Vinyl Sisal Strings - Pebblestone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34710",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|pebblestone",
+        "lifecycle:active",
+        "New Arrival",
+        "Pebblestone",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495816243",
+      "title": "Vinyl Sisal Strings - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34709",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495849011",
+      "title": "Vinyl Sisal Strings - Marshmallow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34708",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|marshmallow",
+        "lifecycle:active",
+        "Marshmallow",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495881779",
+      "title": "Vinyl Sisal Strings - Mahogany",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34707",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|mahogany",
+        "lifecycle:active",
+        "Mahogany",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495914547",
+      "title": "Vinyl Sisal Strings - Mink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34704",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|mink",
+        "lifecycle:active",
+        "Mink",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495947315",
+      "title": "Vinyl Sisal Strings - Butterscotch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34703",
+        "browse-hidden",
+        "Butterscotch",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|butterscotch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941495980083",
+      "title": "Vinyl Sisal Strings - Creme Brulee",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34702",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "Creme Brulee",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|creme brulee",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941496012851",
+      "title": "Vinyl Sisal Strings - Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34701",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|mist",
+        "lifecycle:active",
+        "Mist",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941496930355",
+      "title": "Vinyl Sisal Strings - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34700",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941496963123",
+      "title": "Venetian Plaster - French Vanilla",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37600",
+        "browse-hidden",
+        "Collection Venetian Plaster II",
+        "display_variant",
+        "DWJP-identity:venetian plaster|french vanilla",
+        "French Vanilla",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941496995891",
+      "title": "Aura - Claret",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37503",
+        "browse-hidden",
+        "Claret",
+        "Collection Aura",
+        "display_variant",
+        "DWJP-identity:aura|claret",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497028659",
+      "title": "Vinyl Gatsby - Iron Bark",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39906",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|iron bark",
+        "Iron Bark",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497061427",
+      "title": "Vinyl Gatsby - Copper Mist",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39905",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "Copper Mist",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|copper mist",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497094195",
+      "title": "Vinyl Gatsby - Weathered Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39904",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|weathered clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Weathered Clay"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497126963",
+      "title": "Vinyl Gatsby - Sahara Wash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39903",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|sahara wash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sahara Wash",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497159731",
+      "title": "Vinyl Gatsby - Cashmere Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39902",
+        "browse-hidden",
+        "Cashmere Shadow",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|cashmere shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497192499",
+      "title": "Vinyl Gatsby - Pacific Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39901",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|pacific haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Pacific Haze",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497225267",
+      "title": "Vinyl Gatsby - Porcelain Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39900",
+        "browse-hidden",
+        "Collection Vinyl Gatsby",
+        "display_variant",
+        "DWJP-identity:vinyl gatsby|porcelain drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Porcelain Drift",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497290803",
+      "title": "Vinyl Sisal Strings - Rust",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34706",
+        "browse-hidden",
+        "Collection Vinyl Sisal Strings",
+        "display_variant",
+        "DWJP-identity:vinyl sisal strings|rust",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rust",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497323571",
+      "title": "Vinyl Crush - Obsidian",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34009",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|obsidian",
+        "lifecycle:active",
+        "New Arrival",
+        "Obsidian",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497356339",
+      "title": "Vinyl Crush - Storm",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34008",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|storm",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Storm",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497389107",
+      "title": "Monet Hemp - Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37100",
+        "Blue",
+        "browse-hidden",
+        "Collection Blossom II",
+        "display_variant",
+        "DWJP-identity:monet hemp|blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497421875",
+      "title": "Vinyl Crush - Crimson",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34007",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "Crimson",
+        "display_variant",
+        "DWJP-identity:vinyl crush|crimson",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497454643",
+      "title": "Vinyl Crush - Pine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34006",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|pine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Pine",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497487411",
+      "title": "Silky Strings - Smokey Quartz",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10813",
+        "browse-hidden",
+        "Collection Silky Strings II",
+        "display_variant",
+        "DWJP-identity:silky strings|smokey quartz",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Smokey Quartz",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497520179",
+      "title": "Vinyl Crush - Steel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34005",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|steel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Steel",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497552947",
+      "title": "Vinyl Crush - Dune",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34004",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "Dune",
+        "DWJP-identity:vinyl crush|dune",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497585715",
+      "title": "Vinyl Crush - Chrome",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34003",
+        "browse-hidden",
+        "Chrome",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|chrome",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497618483",
+      "title": "Vinyl Crush - Quicksilver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34002",
+        "browse-hidden",
+        "Collection Vinyl Crush",
+        "display_variant",
+        "DWJP-identity:vinyl crush|quicksilver",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Quicksilver",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497651251",
+      "title": "Savile Suiting Pinstripe - Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10824",
+        "Black",
+        "browse-hidden",
+        "Collection Savile Suiting",
+        "display_variant",
+        "DWJP-identity:savile suiting pinstripe|black",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Plaid & Pinstripe II",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497684019",
+      "title": "Parquetry Plaid - Caraway",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31100",
+        "browse-hidden",
+        "Caraway",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|caraway",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497716787",
+      "title": "Avon - Canterbury",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33306",
+        "browse-hidden",
+        "Canterbury",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|canterbury",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497749555",
+      "title": "Avon - Valley",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33305",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|valley",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Valley",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497847859",
+      "title": "Avon - Honeystone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33304",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|honeystone",
+        "Honeystone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497880627",
+      "title": "Avon - Riverside",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33303",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|riverside",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Riverside",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497913395",
+      "title": "Avon - Roselyn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33302",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|roselyn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Roselyn",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497946163",
+      "title": "Avon - Welsley",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33301",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|welsley",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Welsley"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941497978931",
+      "title": "Avon - Whitethorne",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "33300",
+        "browse-hidden",
+        "Collection Avon",
+        "display_variant",
+        "DWJP-identity:avon|whitethorne",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Whitethorne"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498011699",
+      "title": "Lofted Lines - Lush Loden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28804",
+        "browse-hidden",
+        "Collection Lofted Lines",
+        "display_variant",
+        "DWJP-identity:lofted lines|lush loden",
+        "lifecycle:active",
+        "Lush Loden",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498044467",
+      "title": "Kent - Auburn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30907",
+        "Auburn",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|auburn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498077235",
+      "title": "Kent - Prestige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30906",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|prestige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Prestige",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498110003",
+      "title": "Lofted Lines - Paloma Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28803",
+        "browse-hidden",
+        "Collection Lofted Lines",
+        "display_variant",
+        "DWJP-identity:lofted lines|paloma grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Paloma Grey",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498142771",
+      "title": "Vinyl Cotswolds - Cairn Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29514",
+        "browse-hidden",
+        "Cairn Black",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|cairn black",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498175539",
+      "title": "Kent - Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30905",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|fern",
+        "Fern",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498208307",
+      "title": "Vinyl Cotswolds - Stone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29507",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|stone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Stone",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498241075",
+      "title": "Vinyl Cotswolds - Autumn Fleece",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29506",
+        "Autumn Fleece",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|autumn fleece",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498273843",
+      "title": "Vinyl Cotswolds - Spring Air",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29505",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|spring air",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Spring Air",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498306611",
+      "title": "Kent - Admiral",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30904",
+        "Admiral",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|admiral",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498339379",
+      "title": "Vinyl Cotswolds - Lambs Wool",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29503",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|lambs wool",
+        "Lambs Wool",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498372147",
+      "title": "Vinyl Dover Chevron - Midnight Crest",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32605",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover chevron|midnight crest",
+        "lifecycle:active",
+        "Midnight Crest",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498404915",
+      "title": "Vinyl Cotswolds - Harris Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29504",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|harris sand",
+        "Harris Sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498437683",
+      "title": "Vinyl Cotswolds - Mire Moss",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29508",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|mire moss",
+        "lifecycle:active",
+        "Mire Moss",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498470451",
+      "title": "Vinyl Dover Chevron - Bayou Wave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32604",
+        "Bayou Wave",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover chevron|bayou wave",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498503219",
+      "title": "Kent - Viola",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30903",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|viola",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Viola",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498535987",
+      "title": "Vinyl Cotswolds - Soft Cinnabar",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29501",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|soft cinnabar",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Cinnabar",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498568755",
+      "title": "Vinyl Dover Chevron - Driftstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32603",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "Driftstone",
+        "DWJP-identity:vinyl dover chevron|driftstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498601523",
+      "title": "Vinyl Cotswolds - Moorland Tawny",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29509",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|moorland tawny",
+        "lifecycle:active",
+        "Moorland Tawny",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498634291",
+      "title": "Vinyl Dover Chevron - Bronzed Arrow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32602",
+        "Bronzed Arrow",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover chevron|bronzed arrow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498863667",
+      "title": "Kent - Oakwood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30902",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|oakwood",
+        "lifecycle:active",
+        "New Arrival",
+        "Oakwood",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498896435",
+      "title": "Vinyl Dover Chevron - Shadow Ridge",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32601",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover chevron|shadow ridge",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow Ridge",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498929203",
+      "title": "Kent - Chesterfield",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30901",
+        "browse-hidden",
+        "Chesterfield",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|chesterfield",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498961971",
+      "title": "Vinyl Dover Chevron - Tawny Weave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32600",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover chevron|tawny weave",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tawny Weave",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941498994739",
+      "title": "Vinyl Dover - Midnight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32508",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|midnight",
+        "lifecycle:active",
+        "Midnight",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499027507",
+      "title": "Vinyl Dover - Northern Lights",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32507",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|northern lights",
+        "lifecycle:active",
+        "New Arrival",
+        "Northern Lights",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499060275",
+      "title": "Kent - Earl Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "30900",
+        "browse-hidden",
+        "Collection Kent",
+        "display_variant",
+        "DWJP-identity:kent|earl grey",
+        "Earl Grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499093043",
+      "title": "Vinyl Dover - Straw",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32506",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|straw",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Straw",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499125811",
+      "title": "Vinyl Amalfi Silk - White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10411",
+        "browse-hidden",
+        "Collection Vinyl Amalfi Silk",
+        "display_variant",
+        "DWJP-identity:vinyl amalfi silk|white",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "White"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499158579",
+      "title": "Vinyl Dover - Bayou",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32505",
+        "Bayou",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|bayou",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499191347",
+      "title": "Sutton Weave - Pearl",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22201",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|pearl",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearl",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499224115",
+      "title": "Sutton Weave - Fawn",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22203",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|fawn",
+        "Fawn",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499256883",
+      "title": "Vinyl Dover - Bronzed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32504",
+        "Bronzed",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|bronzed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499289651",
+      "title": "Vinyl Dover - Sandy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32503",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|sandy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandy",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499322419",
+      "title": "Vinyl Dover - Eucalyptus",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32502",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|eucalyptus",
+        "Eucalyptus",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499387955",
+      "title": "Vinyl Dover - Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32501",
+        "browse-hidden",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|shadow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shadow",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499420723",
+      "title": "Lofted Lines - Mod Dune",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28802",
+        "browse-hidden",
+        "Collection Lofted Lines",
+        "display_variant",
+        "DWJP-identity:lofted lines|mod dune",
+        "lifecycle:active",
+        "Mod Dune",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499453491",
+      "title": "Sutton Weave - Oat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22202",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|oat",
+        "lifecycle:active",
+        "New Arrival",
+        "Oat",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499486259",
+      "title": "Vinyl Dover - Chalkline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32500",
+        "browse-hidden",
+        "Chalkline",
+        "Collection Vinyl Dover Chevron and Vinyl Dover",
+        "display_variant",
+        "DWJP-identity:vinyl dover|chalkline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499519027",
+      "title": "Vinyl Ashford Mosaic - Thyme Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32403",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford mosaic|thyme veil",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Thyme Veil",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499551795",
+      "title": "Vinyl Ashford Mosaic - Savanna Grain",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32402",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford mosaic|savanna grain",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Savanna Grain",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499584563",
+      "title": "Vinyl Ashford Mosaic - Fog Imprint",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32401",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford mosaic|fog imprint",
+        "Fog Imprint",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499617331",
+      "title": "Vinyl Ashford Mosaic - Pale Quarry",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32400",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford mosaic|pale quarry",
+        "lifecycle:active",
+        "New Arrival",
+        "Pale Quarry",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499650099",
+      "title": "Vinyl Ashford - Slate",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32308",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|slate",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941499682867",
+      "title": "Sutton Weave - Gossamer",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22205",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|gossamer",
+        "Gossamer",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500469299",
+      "title": "Vinyl Ashford - Cork",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32307",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "Cork",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|cork",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500534835",
+      "title": "Vinyl Ashford - Thyme",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32306",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|thyme",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Thyme",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500633139",
+      "title": "Vinyl Ashford - Seaside",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32305",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|seaside",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Seaside",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500764211",
+      "title": "Vinyl Ashford - Baja",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32304",
+        "Baja",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|baja",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500796979",
+      "title": "Cameron Pvc Free - Loden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29908",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|loden",
+        "lifecycle:active",
+        "Loden",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941500928051",
+      "title": "Vinyl Ashford - Savanna",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32303",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|savanna",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Savanna",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501026355",
+      "title": "Vinyl Ashford - Fog",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32302",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|fog",
+        "Fog",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501091891",
+      "title": "Cameron Pvc Free - Midnight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29907",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|midnight",
+        "lifecycle:active",
+        "Midnight",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501255731",
+      "title": "Vinyl Ashford - Shell",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32301",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|shell",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shell",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501321267",
+      "title": "Vinyl Ashford - Pale",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32300",
+        "browse-hidden",
+        "Collection Vinyl Ashford Mosaic and Vinyl Ashford",
+        "display_variant",
+        "DWJP-identity:vinyl ashford|pale",
+        "lifecycle:active",
+        "New Arrival",
+        "Pale",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501419571",
+      "title": "Cameron Pvc Free - Burnished",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29906",
+        "browse-hidden",
+        "Burnished",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|burnished",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501517875",
+      "title": "Lofted Lines - Metro Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28801",
+        "browse-hidden",
+        "Collection Lofted Lines",
+        "display_variant",
+        "DWJP-identity:lofted lines|metro taupe",
+        "lifecycle:active",
+        "Metro Taupe",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501616179",
+      "title": "Ginkgo Garden - Moonlit Blossom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32205",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|moonlit blossom",
+        "lifecycle:active",
+        "Moonlit Blossom",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501714483",
+      "title": "Ginkgo Garden - Cypress Glow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32204",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "Cypress Glow",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|cypress glow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501780019",
+      "title": "Cameron Pvc Free - Garnet",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29905",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|garnet",
+        "Garnet",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501845555",
+      "title": "Sutton Weave - Mistwoven",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22204",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|mistwoven",
+        "lifecycle:active",
+        "Mistwoven",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941501976627",
+      "title": "Ginkgo Garden - Hickory Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32203",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|hickory bloom",
+        "Hickory Bloom",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502074931",
+      "title": "Ginkgo Garden - Smoky Harvest",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32202",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|smoky harvest",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Smoky Harvest",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502173235",
+      "title": "Cameron Pvc Free - Farrow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29904",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|farrow",
+        "Farrow",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502304307",
+      "title": "Ginkgo Garden - Beige Fleur",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32201",
+        "Beige Fleur",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|beige fleur",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502337075",
+      "title": "Ginkgo Garden - Sunlit Fan",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32200",
+        "browse-hidden",
+        "Collection Ginkgo Garden",
+        "display_variant",
+        "DWJP-identity:ginkgo garden|sunlit fan",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunlit Fan",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502369843",
+      "title": "Cameron Pvc Free - Ashen",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29903",
+        "Ashen",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|ashen",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502500915",
+      "title": "Threadwork - Woven Ink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32103",
+        "browse-hidden",
+        "Collection Threadwork",
+        "display_variant",
+        "DWJP-identity:threadwork|woven ink",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Woven Ink"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502599219",
+      "title": "Threadwork - Cinder Stitch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32102",
+        "browse-hidden",
+        "Cinder Stitch",
+        "Collection Threadwork",
+        "display_variant",
+        "DWJP-identity:threadwork|cinder stitch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941502664755",
+      "title": "Cameron Pvc Free - Chambray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29902",
+        "browse-hidden",
+        "Chambray",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|chambray",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941506760755",
+      "title": "Threadwork - Lace Blush",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32101",
+        "browse-hidden",
+        "Collection Threadwork",
+        "display_variant",
+        "DWJP-identity:threadwork|lace blush",
+        "Lace Blush",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941506957363",
+      "title": "Threadwork - Olive Trace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32100",
+        "browse-hidden",
+        "Collection Threadwork",
+        "display_variant",
+        "DWJP-identity:threadwork|olive trace",
+        "lifecycle:active",
+        "New Arrival",
+        "Olive Trace",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941507153971",
+      "title": "Cameron Pvc Free - Alabaster",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29901",
+        "Alabaster",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|alabaster",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941507285043",
+      "title": "Bungalow Bark - Cerulean Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32005",
+        "browse-hidden",
+        "Cerulean Drift",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|cerulean drift",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941507481651",
+      "title": "Graceful Grid - Honeyed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10484",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|honeyed",
+        "Honeyed",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941507645491",
+      "title": "Bungalow Bark - Cedar Ash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32004",
+        "browse-hidden",
+        "Cedar Ash",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|cedar ash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941507874867",
+      "title": "Cameron Pvc Free - Hearthstone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29900",
+        "browse-hidden",
+        "Collection Cameron PVC Free",
+        "display_variant",
+        "DWJP-identity:cameron pvc free|hearthstone",
+        "Hearthstone",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941508005939",
+      "title": "Graceful Grid - Mushroom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10485",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|mushroom",
+        "lifecycle:active",
+        "Mushroom",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941508268083",
+      "title": "Graceful Grid - Middle Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10481",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|middle blue",
+        "lifecycle:active",
+        "Middle Blue",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941508399155",
+      "title": "Graceful Grid - Coastal Clouds",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10482",
+        "browse-hidden",
+        "Coastal Clouds",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|coastal clouds",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941508628531",
+      "title": "Bungalow Bark - Sand Shimmer",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32003",
+        "browse-hidden",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|sand shimmer",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand Shimmer",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941508857907",
+      "title": "Graceful Grid - Ecru",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10483",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|ecru",
+        "Ecru",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509021747",
+      "title": "Bungalow Bark - Seashell Weave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32002",
+        "browse-hidden",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|seashell weave",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Seashell Weave",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509251123",
+      "title": "Lofted Lines - Cloud Cover",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28800",
+        "browse-hidden",
+        "Cloud Cover",
+        "Collection Lofted Lines",
+        "display_variant",
+        "DWJP-identity:lofted lines|cloud cover",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509382195",
+      "title": "Graceful Grid - Heather",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10478",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|heather",
+        "Heather",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509578803",
+      "title": "Bungalow Bark - Golden Harvest",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32001",
+        "browse-hidden",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|golden harvest",
+        "Golden Harvest",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509677107",
+      "title": "Graceful Grid - Earl Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10479",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|earl grey",
+        "Earl Grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941509808179",
+      "title": "Bungalow Bark - Raven Wood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "32000",
+        "browse-hidden",
+        "Collection Bungalow Bark",
+        "display_variant",
+        "DWJP-identity:bungalow bark|raven wood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Raven Wood",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510004787",
+      "title": "Graceful Grid - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10480",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510135859",
+      "title": "Peyton Pvc Free - Loden Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31908",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|loden stripe",
+        "lifecycle:active",
+        "Loden Stripe",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510332467",
+      "title": "Peyton Pvc Free - Midnight Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31907",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|midnight stripe",
+        "lifecycle:active",
+        "Midnight Stripe",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510463539",
+      "title": "Lacquered Walls - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10811",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered walls|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510594611",
+      "title": "Peyton Pvc Free - Burnished Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31906",
+        "browse-hidden",
+        "Burnished Stripe",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|burnished stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510660147",
+      "title": "Peyton Pvc Free - Garnet Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31905",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|garnet stripe",
+        "Garnet Stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941510758451",
+      "title": "Peyton Pvc Free - Farrow Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31904",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|farrow stripe",
+        "Farrow Stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513379891",
+      "title": "Peyton Pvc Free - Ashen Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31903",
+        "Ashen Stripe",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|ashen stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513445427",
+      "title": "Peyton Pvc Free - Chambray Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31902",
+        "browse-hidden",
+        "Chambray Stripe",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|chambray stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513543731",
+      "title": "Sutton Weave - Ciel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22207",
+        "browse-hidden",
+        "Ciel",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|ciel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513642035",
+      "title": "Peyton Pvc Free - Alabaster Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31901",
+        "Alabaster Stripe",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|alabaster stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513773107",
+      "title": "Sutton Weave - Cobalt",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22208",
+        "browse-hidden",
+        "Cobalt",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|cobalt",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513805875",
+      "title": "Peyton Pvc Free - Hearthstone Stripe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31900",
+        "browse-hidden",
+        "Collection Peyton PVC Free",
+        "display_variant",
+        "DWJP-identity:peyton pvc free|hearthstone stripe",
+        "Hearthstone Stripe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941513838643",
+      "title": "Sutton Weave - Saddle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22209",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|saddle",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Saddle",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514002483",
+      "title": "Vinyl Cotswolds - Tweed Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29502",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|tweed brown",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tweed Brown",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514100787",
+      "title": "Brighton Weave - Seagrass",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31706",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|seagrass",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Seagrass",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514264627",
+      "title": "Brighton Weave - Eclipse",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31705",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|eclipse",
+        "Eclipse",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514362931",
+      "title": "Brighton Weave - Lakeside",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31704",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|lakeside",
+        "Lakeside",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514461235",
+      "title": "Brighton Weave - Parchment",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31703",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|parchment",
+        "lifecycle:active",
+        "New Arrival",
+        "Parchment",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514559539",
+      "title": "Graceful Grid - Wheat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10477",
+        "browse-hidden",
+        "Collection Graceful Grid",
+        "display_variant",
+        "DWJP-identity:graceful grid|wheat",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wheat"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514657843",
+      "title": "Lacquered Walls - Merlot",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "10812",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered walls|merlot",
+        "lifecycle:active",
+        "Merlot",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514788915",
+      "title": "Brighton Weave - Clay",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31702",
+        "browse-hidden",
+        "Clay",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|clay",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941514854451",
+      "title": "Brighton Weave - Sisal",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31701",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|sisal",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Sisal",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515018291",
+      "title": "Brighton Weave - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31700",
+        "browse-hidden",
+        "Collection Brighton Weave",
+        "display_variant",
+        "DWJP-identity:brighton weave|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515051059",
+      "title": "Vinyl Woodwork - Ebony",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29610",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|ebony",
+        "Ebony",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515214899",
+      "title": "Chamberlain Stripe - Sterling",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31606",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|sterling",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sterling",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515313203",
+      "title": "Chamberlain Stripe - Oxford",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31605",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|oxford",
+        "lifecycle:active",
+        "New Arrival",
+        "Oxford",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515444275",
+      "title": "Chamberlain Stripe - Hunting",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31604",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|hunting",
+        "Hunting",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515542579",
+      "title": "Vinyl Woodwork - Indigo Cedar",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29609",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|indigo cedar",
+        "Indigo Cedar",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515706419",
+      "title": "Chamberlain Stripe - Savile",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31603",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|savile",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Savile",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515771955",
+      "title": "Chamberlain Stripe - Sepia",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31602",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|sepia",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941515837491",
+      "title": "Vinyl Woodwork - Chestnut",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29608",
+        "browse-hidden",
+        "Chestnut",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|chestnut",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518393395",
+      "title": "Chamberlain Stripe - Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31601",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Taupe",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518524467",
+      "title": "Chamberlain Stripe - Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31600",
+        "browse-hidden",
+        "Collection Chamberlain Stripe",
+        "display_variant",
+        "DWJP-identity:chamberlain stripe|grey",
+        "Grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518590003",
+      "title": "Vinyl Woodwork - Barnwood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29607",
+        "Barnwood",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|barnwood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518753843",
+      "title": "Midsummer - Sterling Wood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31506",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|sterling wood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sterling Wood",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518819379",
+      "title": "Midsummer - Oxford Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31505",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|oxford blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Oxford Blue",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941518983219",
+      "title": "Vinyl Woodwork - Amber",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29606",
+        "Amber",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|amber",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519048755",
+      "title": "Midsummer - Hunting Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31504",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|hunting green",
+        "Hunting Green",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519147059",
+      "title": "Midsummer - Savile Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31503",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|savile blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Savile Blue",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519245363",
+      "title": "Vinyl Woodwork - Sunlit Ash",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29605",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|sunlit ash",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunlit Ash",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519343667",
+      "title": "Midsummer - Sepia Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31502",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|sepia grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia Grove",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519474739",
+      "title": "Midsummer - Coventry Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31500",
+        "browse-hidden",
+        "Collection Midsummer",
+        "Coventry Grey",
+        "display_variant",
+        "DWJP-identity:midsummer|coventry grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519540275",
+      "title": "Vinyl Woodwork - Honeyed Walnut",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29604",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|honeyed walnut",
+        "Honeyed Walnut",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519638579",
+      "title": "Midsummer - Birchmist Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31501",
+        "Birchmist Taupe",
+        "browse-hidden",
+        "Collection Midsummer",
+        "display_variant",
+        "DWJP-identity:midsummer|birchmist taupe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519736883",
+      "title": "Vinyl Woodwork - Maple",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29603",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|maple",
+        "lifecycle:active",
+        "Maple",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519802419",
+      "title": "Lacquered Fluting - Neptune Tide",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23306",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|neptune tide",
+        "lifecycle:active",
+        "Neptune Tide",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941519933491",
+      "title": "Vinyl Woodwork - Silver Birch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29602",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|silver birch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver Birch",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520031795",
+      "title": "Lacquered Fluting - Raven Groove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23307",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|raven groove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Raven Groove",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520162867",
+      "title": "Lacquered Fluting - Anchor Channel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23304",
+        "Anchor Channel",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|anchor channel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520228403",
+      "title": "Vinyl Cotswolds - Hearth",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29500",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|hearth",
+        "Hearth",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520326707",
+      "title": "Lacquered Fluting - Ionic Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23300",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|ionic ivory",
+        "Ionic Ivory",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520359475",
+      "title": "Vinyl Woodwork - Birch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29601",
+        "Birch",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|birch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520392243",
+      "title": "Lacquered Fluting - Mulled Merlot",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23301",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|mulled merlot",
+        "lifecycle:active",
+        "Mulled Merlot",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520425011",
+      "title": "Vinyl Woodwork - Pearl Oak",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29600",
+        "browse-hidden",
+        "Collection Vinyl Woodwork",
+        "display_variant",
+        "DWJP-identity:vinyl woodwork|pearl oak",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearl Oak",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520457779",
+      "title": "Lacquered Fluting - Glace Cameo",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23302",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|glace cameo",
+        "Glace Cameo",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520490547",
+      "title": "Vinyl Cotswolds - Navy Loch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29513",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|navy loch",
+        "lifecycle:active",
+        "Navy Loch",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520719923",
+      "title": "Vinyl Cotswolds - Glen Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29512",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|glen grey",
+        "Glen Grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520752691",
+      "title": "Lacquered Fluting - Creme Strie",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23303",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "Creme Strie",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|creme strie",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520785459",
+      "title": "Cambridge Cloth - Flint",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38711",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|flint",
+        "Flint",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520818227",
+      "title": "Cambridge Cloth - Pine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38710",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|pine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "Pine",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520850995",
+      "title": "Cambridge Cloth - Cashmere",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38709",
+        "browse-hidden",
+        "Cashmere",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|cashmere",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520883763",
+      "title": "Cambridge Cloth - Dusk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38708",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "Dusk",
+        "DWJP-identity:cambridge cloth|dusk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520916531",
+      "title": "Vinyl Cotswolds - Bracken Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29511",
+        "Bracken Fern",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|bracken fern",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520949299",
+      "title": "Cambridge Cloth - Heather",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38707",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|heather",
+        "Heather",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941520982067",
+      "title": "Cambridge Cloth - Hayfield",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38706",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|hayfield",
+        "Hayfield",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521014835",
+      "title": "Cambridge Cloth - Skyline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38705",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|skyline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Skyline",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521047603",
+      "title": "Cambridge Cloth - Dovetail",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38704",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "Dovetail",
+        "DWJP-identity:cambridge cloth|dovetail",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521080371",
+      "title": "Vinyl Cotswolds - Highland Heather",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29510",
+        "browse-hidden",
+        "Collection Vinyl Cotswolds",
+        "display_variant",
+        "DWJP-identity:vinyl cotswolds|highland heather",
+        "Highland Heather",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521113139",
+      "title": "Cambridge Cloth - Soho",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38703",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|soho",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soho",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521145907",
+      "title": "Cambridge Cloth - Sand",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38702",
+        "browse-hidden",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|sand",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sand",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521178675",
+      "title": "Cambridge Cloth - Buttercream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "38701",
+        "browse-hidden",
+        "Buttercream",
+        "Collection Cambridge Cloth",
+        "display_variant",
+        "DWJP-identity:cambridge cloth|buttercream",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521211443",
+      "title": "Parquetry Plaid - Regatta",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31108",
+        "browse-hidden",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|regatta",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Regatta",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521244211",
+      "title": "Sutton Weave - Sage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22206",
+        "browse-hidden",
+        "Collection Sutton Weave",
+        "display_variant",
+        "DWJP-identity:sutton weave|sage",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sage",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521276979",
+      "title": "Parquetry Plaid - Hemlock",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31107",
+        "browse-hidden",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|hemlock",
+        "Hemlock",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521309747",
+      "title": "Parquetry Plaid - Mink",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31106",
+        "browse-hidden",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|mink",
+        "lifecycle:active",
+        "Mink",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521342515",
+      "title": "Parquetry Plaid - Russet",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31104",
+        "browse-hidden",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|russet",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Russet",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521375283",
+      "title": "Parquetry Plaid - Shale",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31101",
+        "browse-hidden",
+        "Collection Parquetry Plaid",
+        "display_variant",
+        "DWJP-identity:parquetry plaid|shale",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shale",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521440819",
+      "title": "Lofted Lines - Deep Carmine",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28805",
+        "browse-hidden",
+        "Collection Lofted Lines",
+        "Deep Carmine",
+        "display_variant",
+        "DWJP-identity:lofted lines|deep carmine",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521473587",
+      "title": "Lacquered Fluting - Fossil Dunes",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "23305",
+        "browse-hidden",
+        "Collection Lacquered Walls and Lacquered Fluting",
+        "display_variant",
+        "DWJP-identity:lacquered fluting|fossil dunes",
+        "Fossil Dunes",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521506355",
+      "title": "Isla Pvc Free - Sandbar",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29301",
+        "browse-hidden",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|sandbar",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandbar",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521539123",
+      "title": "Palmera - Rosé Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31009",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|ros grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Rosé Grove",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521735731",
+      "title": "Palmera - Tropical Noir",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31008",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|tropical noir",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tropical Noir",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521768499",
+      "title": "Palmera - Moroccan Sunset",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31007",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|moroccan sunset",
+        "lifecycle:active",
+        "Moroccan Sunset",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521801267",
+      "title": "Palmera - Ocean Breeze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31006",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|ocean breeze",
+        "lifecycle:active",
+        "New Arrival",
+        "Ocean Breeze",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521834035",
+      "title": "Palmera - Seaside Canopy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31005",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|seaside canopy",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Seaside Canopy",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521866803",
+      "title": "Palmera - Tuscan Twilight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31004",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|tuscan twilight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tuscan Twilight",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521899571",
+      "title": "Palmera - Oasis Shade",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31003",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|oasis shade",
+        "lifecycle:active",
+        "New Arrival",
+        "Oasis Shade",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521932339",
+      "title": "Vinyl Tranquil Weave - Solace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29412",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|solace",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Solace",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521965107",
+      "title": "Vinyl Tranquil Weave - Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29400",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|veil",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Veil",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941521997875",
+      "title": "Palmera - Saharan Leaf",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31002",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|saharan leaf",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Saharan Leaf",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522030643",
+      "title": "Palmera - Malta Mirage",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31001",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|malta mirage",
+        "lifecycle:active",
+        "Malta Mirage",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522063411",
+      "title": "Vinyl Tranquil Weave - Starlight",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29411",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|starlight",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Starlight",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522096179",
+      "title": "Palmera - Ecru Tropics",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31000",
+        "browse-hidden",
+        "Collection Palmera",
+        "display_variant",
+        "DWJP-identity:palmera|ecru tropics",
+        "Ecru Tropics",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522128947",
+      "title": "Vinyl Tranquil Weave - Shoreline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29410",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|shoreline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shoreline",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522161715",
+      "title": "Mariner Cloth - Tan",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28603",
+        "browse-hidden",
+        "Collection High Tide and Mariner Cloth",
+        "display_variant",
+        "DWJP-identity:mariner cloth|tan",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tan",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522194483",
+      "title": "Vinyl Tranquil Weave - Overcast",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29409",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|overcast",
+        "lifecycle:active",
+        "New Arrival",
+        "Overcast",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522260019",
+      "title": "Vinyl Tranquil Weave - Sagewood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29408",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|sagewood",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sagewood",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522292787",
+      "title": "Vinyl Tranquil Weave - Royal Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29407",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|royal blue",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Royal Blue",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522325555",
+      "title": "Vinyl Tranquil Weave - Bisque",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29406",
+        "Bisque",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|bisque",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522358323",
+      "title": "Vinyl Tranquil Weave - Wheat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29405",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|wheat",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wheat"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522423859",
+      "title": "Mariner Cloth - Ocean",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28602",
+        "browse-hidden",
+        "Collection High Tide and Mariner Cloth",
+        "display_variant",
+        "DWJP-identity:mariner cloth|ocean",
+        "lifecycle:active",
+        "New Arrival",
+        "Ocean",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522456627",
+      "title": "Vinyl Tranquil Weave - Tawny",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29404",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|tawny",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Tawny",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522489395",
+      "title": "Fringe Benefits - Golden Shoreline Fringe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28400",
+        "browse-hidden",
+        "Collection Fringe Benefits and Capri Raffia",
+        "display_variant",
+        "DWJP-identity:fringe benefits|golden shoreline fringe",
+        "Golden Shoreline Fringe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522522163",
+      "title": "Vinyl Tranquil Weave - Blush",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29403",
+        "Blush",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|blush",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522554931",
+      "title": "Vinyl Tranquil Weave - Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29402",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|haze",
+        "Haze",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941522587699",
+      "title": "Vinyl Tranquil Weave - Pearl Grey",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29401",
+        "browse-hidden",
+        "Collection Vinyl Tranquil Weave",
+        "display_variant",
+        "DWJP-identity:vinyl tranquil weave|pearl grey",
+        "lifecycle:active",
+        "New Arrival",
+        "Pearl Grey",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523439667",
+      "title": "Toulouse Toile - Blue City",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28905",
+        "Blue City",
+        "browse-hidden",
+        "Collection Toulouse Toile",
+        "display_variant",
+        "DWJP-identity:toulouse toile|blue city",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523472435",
+      "title": "Vinyl Washed Weave - Vintage Cocoa",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22608",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|vintage cocoa",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Vintage Cocoa",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523505203",
+      "title": "Vinyl Washed Weave - Warm Greige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22605",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|warm greige",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Warm Greige"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523537971",
+      "title": "Mariner Cloth - Shell",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28601",
+        "browse-hidden",
+        "Collection High Tide and Mariner Cloth",
+        "display_variant",
+        "DWJP-identity:mariner cloth|shell",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Shell",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523570739",
+      "title": "Vinyl Washed Weave - Butterscotch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22604",
+        "browse-hidden",
+        "Butterscotch",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|butterscotch",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523603507",
+      "title": "Vinyl Washed Weave - Elephant",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22606",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|elephant",
+        "Elephant",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523636275",
+      "title": "Vinyl Washed Weave - Weathered Skies",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22607",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|weathered skies",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Weathered Skies"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523669043",
+      "title": "Mariner Cloth - Carmel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28606",
+        "browse-hidden",
+        "Carmel",
+        "Collection High Tide and Mariner Cloth",
+        "display_variant",
+        "DWJP-identity:mariner cloth|carmel",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523701811",
+      "title": "Vinyl Washed Weave - Tusk",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22600",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|tusk",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Tusk",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523734579",
+      "title": "Fringe Benefits - Sunset Silver Fringe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28401",
+        "browse-hidden",
+        "Collection Fringe Benefits and Capri Raffia",
+        "display_variant",
+        "DWJP-identity:fringe benefits|sunset silver fringe",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunset Silver Fringe",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523767347",
+      "title": "Toulouse Toile - Blush Bazaar",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28904",
+        "Blush Bazaar",
+        "browse-hidden",
+        "Collection Toulouse Toile",
+        "display_variant",
+        "DWJP-identity:toulouse toile|blush bazaar",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523800115",
+      "title": "Vinyl Washed Weave - Mindful Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22601",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|mindful gray",
+        "lifecycle:active",
+        "Mindful Gray",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523832883",
+      "title": "Vinyl Washed Weave - Blue River",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22602",
+        "Blue River",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|blue river",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523865651",
+      "title": "Isla Pvc Free - Walnut",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29311",
+        "browse-hidden",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|walnut",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Walnut"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523898419",
+      "title": "Isla Pvc Free - Sepia",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29310",
+        "browse-hidden",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|sepia",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sepia",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523931187",
+      "title": "Toulouse Toile - Palm Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28903",
+        "browse-hidden",
+        "Collection Toulouse Toile",
+        "display_variant",
+        "DWJP-identity:toulouse toile|palm grove",
+        "lifecycle:active",
+        "New Arrival",
+        "Palm Grove",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523963955",
+      "title": "Vinyl Washed Weave - Sea Salt",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "22603",
+        "browse-hidden",
+        "Collection Vinyl Washed Weave",
+        "display_variant",
+        "DWJP-identity:vinyl washed weave|sea salt",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Sea Salt",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941523996723",
+      "title": "Isla Pvc Free - Cobalt",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29309",
+        "browse-hidden",
+        "Cobalt",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|cobalt",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524029491",
+      "title": "Toulouse Toile - Saharan Sands",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28902",
+        "browse-hidden",
+        "Collection Toulouse Toile",
+        "display_variant",
+        "DWJP-identity:toulouse toile|saharan sands",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Saharan Sands",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524095027",
+      "title": "Isla Pvc Free - Cognac",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29308",
+        "browse-hidden",
+        "Cognac",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|cognac",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524127795",
+      "title": "Isla Pvc Free - Opaline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29307",
+        "browse-hidden",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|opaline",
+        "lifecycle:active",
+        "New Arrival",
+        "Opaline",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524160563",
+      "title": "Capri Raffia - Sunset Silver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31401",
+        "browse-hidden",
+        "Collection Fringe Benefits and Capri Raffia",
+        "display_variant",
+        "DWJP-identity:capri raffia|sunset silver",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunset Silver",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524193331",
+      "title": "Capri Raffia - Golden Shoreline",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "31400",
+        "browse-hidden",
+        "Collection Fringe Benefits and Capri Raffia",
+        "display_variant",
+        "DWJP-identity:capri raffia|golden shoreline",
+        "Golden Shoreline",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524226099",
+      "title": "Isla Pvc Free - Wisp",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "29306",
+        "browse-hidden",
+        "Collection Isla PVC Free",
+        "display_variant",
+        "DWJP-identity:isla pvc free|wisp",
+        "lifecycle:active",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Wisp"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941524258867",
+      "title": "Toulouse Toile - Midnight Stroll",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "28901",
+        "browse-hidden",
+        "Collection Toulouse Toile",
+        "display_variant",
+        "DWJP-identity:toulouse toile|midnight stroll",
+        "lifecycle:active",
+        "Midnight Stroll",
+        "New Arrival",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": true,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941169840179",
+      "title": "Vinyl Voyage - Mushroom Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34504",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|mushroom beige",
+        "lifecycle:active",
+        "Mushroom Beige",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170004019",
+      "title": "Cirque De Soho - Silver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45404",
+        "browse-hidden",
+        "Collection NEW - Cirque de Soho",
+        "display_variant",
+        "DWJP-identity:cirque de soho|silver",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silver",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170069555",
+      "title": "Vinyl Leno Weave - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46700",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170331699",
+      "title": "Coco Weave - Ink Black",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39502",
+        "browse-hidden",
+        "Collection NEW - Coco Weave & Boucle Lane",
+        "display_variant",
+        "DWJP-identity:coco weave|ink black",
+        "Ink Black",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170528307",
+      "title": "Dapper Duke - Slate Stitch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43302",
+        "browse-hidden",
+        "Collection NEW - Dapper Duke",
+        "display_variant",
+        "DWJP-identity:dapper duke|slate stitch",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate Stitch",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170724915",
+      "title": "Caldwell Plaid - Grey Grid",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43201",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|grey grid",
+        "Grey Grid",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941170921523",
+      "title": "Vinyl Groovy - Driftwood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37910",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "Driftwood",
+        "DWJP-identity:vinyl groovy|driftwood",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171183667",
+      "title": "Coco Weave - Linen Cream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39500",
+        "browse-hidden",
+        "Collection NEW - Coco Weave & Boucle Lane",
+        "display_variant",
+        "DWJP-identity:coco weave|linen cream",
+        "lifecycle:active",
+        "Linen Cream",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171413043",
+      "title": "Caldwell Plaid - Umber Lines",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43205",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|umber lines",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Umber Lines",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171609651",
+      "title": "Essex Weave - Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44605",
+        "browse-hidden",
+        "Collection NEW - Essex Weave",
+        "display_variant",
+        "Drift",
+        "DWJP-identity:essex weave|drift",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171773491",
+      "title": "Vinyl Voyage - Clay Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34500",
+        "browse-hidden",
+        "Clay Beige",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|clay beige",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171839027",
+      "title": "Idyllic - Dusk Horizon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50405",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "Dusk Horizon",
+        "DWJP-identity:idyllic|dusk horizon",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941171970099",
+      "title": "Caldwell Plaid - Azure Stitch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43204",
+        "Azure Stitch",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|azure stitch",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172035635",
+      "title": "Arbor Stripe - Porcelain Lines",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43400",
+        "browse-hidden",
+        "Collection NEW - Arbor Stripe",
+        "display_variant",
+        "DWJP-identity:arbor stripe|porcelain lines",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "Porcelain Lines",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172199475",
+      "title": "Madison Stripe - Sky Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43705",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "display_variant",
+        "DWJP-identity:madison stripe|sky blue",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Sky Blue",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172363315",
+      "title": "Vinyl Groovy - Forest Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37911",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|forest green",
+        "Forest Green",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172494387",
+      "title": "Madison Stripe - Natural Blend",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43702",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "display_variant",
+        "DWJP-identity:madison stripe|natural blend",
+        "lifecycle:active",
+        "Natural Blend",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172559923",
+      "title": "Plush Pillars - Taupe Rise",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43502",
+        "browse-hidden",
+        "Collection NEW - Plush Pillars",
+        "display_variant",
+        "DWJP-identity:plush pillars|taupe rise",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Taupe Rise",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172690995",
+      "title": "Madison Stripe - Moss Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43707",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "display_variant",
+        "DWJP-identity:madison stripe|moss veil",
+        "lifecycle:active",
+        "Moss Veil",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172756531",
+      "title": "Vinyl Melange - Antique White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39102",
+        "Antique White",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|antique white",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941172887603",
+      "title": "Dapper Duke - Charcoal Weave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43305",
+        "browse-hidden",
+        "Charcoal Weave",
+        "Collection NEW - Dapper Duke",
+        "display_variant",
+        "DWJP-identity:dapper duke|charcoal weave",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941173018675",
+      "title": "Dapper Duke - Midnight Tweed",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43304",
+        "browse-hidden",
+        "Collection NEW - Dapper Duke",
+        "display_variant",
+        "DWJP-identity:dapper duke|midnight tweed",
+        "lifecycle:active",
+        "Midnight Tweed",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941173116979",
+      "title": "Unveiled - Burnished Bronze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42502",
+        "browse-hidden",
+        "Burnished Bronze",
+        "Collection NEW - Unveiled",
+        "display_variant",
+        "DWJP-identity:unveiled|burnished bronze",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941173248051",
+      "title": "Vinyl Voyage - Soft White",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34503",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|soft white",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft White",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941173346355",
+      "title": "Idyllic - Soft Horizon",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50400",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "DWJP-identity:idyllic|soft horizon",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Horizon",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175148595",
+      "title": "Silken Streams - Gilded Onyx",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36306",
+        "browse-hidden",
+        "Collection NEW - Silken Streams",
+        "display_variant",
+        "DWJP-identity:silken streams|gilded onyx",
+        "Gilded Onyx",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175181363",
+      "title": "Vinyl Leno Weave - Frost",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46704",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|frost",
+        "Frost",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175246899",
+      "title": "Vinyl Cork Couture - Beige Essence",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44904",
+        "Beige Essence",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|beige essence",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175279667",
+      "title": "Vinyl Strata - Drift Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46008",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "Drift Gray",
+        "DWJP-identity:vinyl strata|drift gray",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175312435",
+      "title": "Vinyl Cork Couture - Noir Root",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44910",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|noir root",
+        "lifecycle:active",
+        "Noir Root",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175345203",
+      "title": "Idyllic - Quiet Stream",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50407",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "DWJP-identity:idyllic|quiet stream",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "Quiet Stream",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175377971",
+      "title": "Idyllic - River Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50401",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "DWJP-identity:idyllic|river haze",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "River Haze",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175410739",
+      "title": "Vinyl Cork Couture - Moss Opulence",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44909",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|moss opulence",
+        "lifecycle:active",
+        "Moss Opulence",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175443507",
+      "title": "Vinyl Leno Weave - Oat",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46705",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|oat",
+        "lifecycle:active",
+        "Oat",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175541811",
+      "title": "Madison Stripe - Soft Camel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43704",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "display_variant",
+        "DWJP-identity:madison stripe|soft camel",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Camel",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175574579",
+      "title": "Raffia Atelier - Almond Bloom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45901",
+        "Almond Bloom",
+        "browse-hidden",
+        "Collection NEW - Raffia Atelier",
+        "display_variant",
+        "DWJP-identity:raffia atelier|almond bloom",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175607347",
+      "title": "Vinyl Groovy - Slate Blue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37912",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|slate blue",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Slate Blue",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175640115",
+      "title": "Meta Metallic - Gold",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46400",
+        "browse-hidden",
+        "Collection NEW - Meta Metallic",
+        "display_variant",
+        "DWJP-identity:meta metallic|gold",
+        "Gold",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175705651",
+      "title": "Vinyl Cork Couture - Arbor Pearl",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44901",
+        "Arbor Pearl",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|arbor pearl",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175738419",
+      "title": "Essex Weave - Mushroom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44602",
+        "browse-hidden",
+        "Collection NEW - Essex Weave",
+        "display_variant",
+        "DWJP-identity:essex weave|mushroom",
+        "lifecycle:active",
+        "Mushroom",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175771187",
+      "title": "Vinyl Cork Couture - Bordeaux Chic",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44908",
+        "Bordeaux Chic",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|bordeaux chic",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175803955",
+      "title": "Vinyl Strata - Soft Camel",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46006",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|soft camel",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "Soft Camel",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175836723",
+      "title": "Arbor Stripe - Clay Trace",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43404",
+        "browse-hidden",
+        "Clay Trace",
+        "Collection NEW - Arbor Stripe",
+        "display_variant",
+        "DWJP-identity:arbor stripe|clay trace",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175869491",
+      "title": "Vinyl Voyage - Mocha Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34502",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|mocha brown",
+        "lifecycle:active",
+        "Mocha Brown",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175902259",
+      "title": "Caldwell Plaid - Bamboo Check",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43202",
+        "Bamboo Check",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|bamboo check",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175935027",
+      "title": "Vinyl Leno Weave - Sterling",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46703",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|sterling",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sterling",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941175967795",
+      "title": "Vinyl Voyage - Driftwood",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34505",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "Driftwood",
+        "DWJP-identity:vinyl voyage|driftwood",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176033331",
+      "title": "Riviera Raffia - Coastal Whispers",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "21905",
+        "browse-hidden",
+        "Coastal Whispers",
+        "Collection NEW - Riviera Raffia",
+        "display_variant",
+        "DWJP-identity:riviera raffia|coastal whispers",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176066099",
+      "title": "Essex Weave - Glacier",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44606",
+        "browse-hidden",
+        "Collection NEW - Essex Weave",
+        "display_variant",
+        "DWJP-identity:essex weave|glacier",
+        "Glacier",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176131635",
+      "title": "Silken Streams - Midnight Pewter",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36305",
+        "browse-hidden",
+        "Collection NEW - Silken Streams",
+        "display_variant",
+        "DWJP-identity:silken streams|midnight pewter",
+        "lifecycle:active",
+        "Midnight Pewter",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176262707",
+      "title": "Plush Pillars - Neutral Haven",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43501",
+        "browse-hidden",
+        "Collection NEW - Plush Pillars",
+        "display_variant",
+        "DWJP-identity:plush pillars|neutral haven",
+        "lifecycle:active",
+        "Neutral Haven",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176295475",
+      "title": "Dapper Duke - Porcelain Check",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43300",
+        "browse-hidden",
+        "Collection NEW - Dapper Duke",
+        "display_variant",
+        "DWJP-identity:dapper duke|porcelain check",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "Porcelain Check",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176328243",
+      "title": "Coco Weave - Rustic Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39503",
+        "browse-hidden",
+        "Collection NEW - Coco Weave & Boucle Lane",
+        "display_variant",
+        "DWJP-identity:coco weave|rustic brown",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Rustic Brown",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176361011",
+      "title": "Vinyl Cork Couture - Silken Earth",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44903",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|silken earth",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Silken Earth",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176393779",
+      "title": "Idyllic - Crimson Veil",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50406",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "Crimson Veil",
+        "display_variant",
+        "DWJP-identity:idyllic|crimson veil",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176426547",
+      "title": "Essex Weave - Valley",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44608",
+        "browse-hidden",
+        "Collection NEW - Essex Weave",
+        "display_variant",
+        "DWJP-identity:essex weave|valley",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Valley",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176524851",
+      "title": "Riviera Raffia - Lava Stone",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "21904",
+        "browse-hidden",
+        "Collection NEW - Riviera Raffia",
+        "display_variant",
+        "DWJP-identity:riviera raffia|lava stone",
+        "Lava Stone",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176557619",
+      "title": "Essex Weave - Ocean",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44609",
+        "browse-hidden",
+        "Collection NEW - Essex Weave",
+        "display_variant",
+        "DWJP-identity:essex weave|ocean",
+        "lifecycle:active",
+        "Ocean",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176590387",
+      "title": "Vinyl Cork Couture - Natural Belle",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44905",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|natural belle",
+        "lifecycle:active",
+        "Natural Belle",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176623155",
+      "title": "Vinyl Melange - Ash Greige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39105",
+        "Ash Greige",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|ash greige",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176655923",
+      "title": "Riviera Raffia - Sunkissed Weave",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "21901",
+        "browse-hidden",
+        "Collection NEW - Riviera Raffia",
+        "display_variant",
+        "DWJP-identity:riviera raffia|sunkissed weave",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunkissed Weave",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176721459",
+      "title": "Arbor Stripe - Bamboo Haze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43402",
+        "Bamboo Haze",
+        "browse-hidden",
+        "Collection NEW - Arbor Stripe",
+        "display_variant",
+        "DWJP-identity:arbor stripe|bamboo haze",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176754227",
+      "title": "Vinyl Melange - Olive Gold",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39101",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|olive gold",
+        "lifecycle:active",
+        "Olive Gold",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176786995",
+      "title": "Vinyl Groovy - Mushroom Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37900",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|mushroom beige",
+        "lifecycle:active",
+        "Mushroom Beige",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176819763",
+      "title": "Vinyl Strata - Burnt Sienna",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46009",
+        "browse-hidden",
+        "Burnt Sienna",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|burnt sienna",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176852531",
+      "title": "Cirque De Soho - Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45402",
+        "Beige",
+        "browse-hidden",
+        "Collection NEW - Cirque de Soho",
+        "display_variant",
+        "DWJP-identity:cirque de soho|beige",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176885299",
+      "title": "Cirque De Soho - Red",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45400",
+        "browse-hidden",
+        "Collection NEW - Cirque de Soho",
+        "display_variant",
+        "DWJP-identity:cirque de soho|red",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Red",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176918067",
+      "title": "Vinyl Cork Couture - Onyx Texture",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44911",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|onyx texture",
+        "lifecycle:active",
+        "Onyx Texture",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176950835",
+      "title": "Vinyl Groovy - Mocha Brown",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37903",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|mocha brown",
+        "lifecycle:active",
+        "Mocha Brown",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941176983603",
+      "title": "Vinyl Groovy - Warm Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "37908",
+        "browse-hidden",
+        "Collection NEW - Vinyl Groovy",
+        "display_variant",
+        "DWJP-identity:vinyl groovy|warm gray",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Warm Gray"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177016371",
+      "title": "Cirque De Soho - Navy",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45405",
+        "browse-hidden",
+        "Collection NEW - Cirque de Soho",
+        "display_variant",
+        "DWJP-identity:cirque de soho|navy",
+        "lifecycle:active",
+        "Navy",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177081907",
+      "title": "Vinyl Leno Weave - Ivory",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46701",
+        "browse-hidden",
+        "Collection NEW - Vinyl Leno Weave",
+        "display_variant",
+        "DWJP-identity:vinyl leno weave|ivory",
+        "Ivory",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177114675",
+      "title": "Raffia Atelier - Ivory Grove",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45902",
+        "browse-hidden",
+        "Collection NEW - Raffia Atelier",
+        "display_variant",
+        "DWJP-identity:raffia atelier|ivory grove",
+        "Ivory Grove",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177180211",
+      "title": "Silken Streams - Sandwashed Pewter",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36303",
+        "browse-hidden",
+        "Collection NEW - Silken Streams",
+        "display_variant",
+        "DWJP-identity:silken streams|sandwashed pewter",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Sandwashed Pewter",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177245747",
+      "title": "Vinyl Melange - Porcelain Glow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39103",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|porcelain glow",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "Porcelain Glow",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177311283",
+      "title": "Vinyl Strata - Dark Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46011",
+        "browse-hidden",
+        "Collection NEW - Vinyl Strata",
+        "Dark Taupe",
+        "display_variant",
+        "DWJP-identity:vinyl strata|dark taupe",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177344051",
+      "title": "Unveiled - Cocoa Onyx",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "42503",
+        "browse-hidden",
+        "Cocoa Onyx",
+        "Collection NEW - Unveiled",
+        "display_variant",
+        "DWJP-identity:unveiled|cocoa onyx",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177376819",
+      "title": "Coco Weave - Warm Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39501",
+        "browse-hidden",
+        "Collection NEW - Coco Weave & Boucle Lane",
+        "display_variant",
+        "DWJP-identity:coco weave|warm beige",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Warm Beige"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177409587",
+      "title": "Idyllic - Sunset Drift",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "50403",
+        "browse-hidden",
+        "Collection NEW - Idyllic",
+        "display_variant",
+        "DWJP-identity:idyllic|sunset drift",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunset Drift",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177442355",
+      "title": "Vinyl Cork Couture - Blanc Mode",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44900",
+        "Blanc Mode",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|blanc mode",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177475123",
+      "title": "Madison Stripe - Pebble Gray",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43706",
+        "browse-hidden",
+        "Collection NEW - Madison Stripe",
+        "display_variant",
+        "DWJP-identity:madison stripe|pebble gray",
+        "lifecycle:active",
+        "Pebble Gray",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177507891",
+      "title": "Vinyl Melange - Warm Beige",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "39100",
+        "browse-hidden",
+        "Collection NEW - Vinyl Melange",
+        "display_variant",
+        "DWJP-identity:vinyl melange|warm beige",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering",
+        "Warm Beige"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177540659",
+      "title": "Hana - Night Garden",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46502",
+        "browse-hidden",
+        "Collection NEW - Hana",
+        "display_variant",
+        "DWJP-identity:hana|night garden",
+        "lifecycle:active",
+        "Night Garden",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177573427",
+      "title": "Hana - Sunwashed Blossom",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46503",
+        "browse-hidden",
+        "Collection NEW - Hana",
+        "display_variant",
+        "DWJP-identity:hana|sunwashed blossom",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Sunwashed Blossom",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177606195",
+      "title": "Vinyl Strata - Brushed Silver",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "46004",
+        "browse-hidden",
+        "Brushed Silver",
+        "Collection NEW - Vinyl Strata",
+        "display_variant",
+        "DWJP-identity:vinyl strata|brushed silver",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177638963",
+      "title": "Raffia Atelier - Crimson Fern",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "45904",
+        "browse-hidden",
+        "Collection NEW - Raffia Atelier",
+        "Crimson Fern",
+        "display_variant",
+        "DWJP-identity:raffia atelier|crimson fern",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177671731",
+      "title": "Caldwell Plaid - Porcelain Thread",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43200",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|porcelain thread",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "Porcelain Thread",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177704499",
+      "title": "Vinyl Voyage - Evening Sky",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34507",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|evening sky",
+        "Evening Sky",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177737267",
+      "title": "Vinyl Voyage - Olive Green",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "34508",
+        "browse-hidden",
+        "Collection NEW - Vinyl Voyage",
+        "display_variant",
+        "DWJP-identity:vinyl voyage|olive green",
+        "lifecycle:active",
+        "Olive Green",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177770035",
+      "title": "Arbor Stripe - Muted Stitch",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43403",
+        "browse-hidden",
+        "Collection NEW - Arbor Stripe",
+        "display_variant",
+        "DWJP-identity:arbor stripe|muted stitch",
+        "lifecycle:active",
+        "Muted Stitch",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177802803",
+      "title": "Dapper Duke - Clay Mark",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43303",
+        "browse-hidden",
+        "Clay Mark",
+        "Collection NEW - Dapper Duke",
+        "display_variant",
+        "DWJP-identity:dapper duke|clay mark",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177835571",
+      "title": "Vinyl Cork Couture - Mocha Vogue",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "44907",
+        "browse-hidden",
+        "Collection NEW - Vinyl Cork Couture",
+        "display_variant",
+        "DWJP-identity:vinyl cork couture|mocha vogue",
+        "lifecycle:active",
+        "Mocha Vogue",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177868339",
+      "title": "Silken Streams - Gilded Taupe",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "36304",
+        "browse-hidden",
+        "Collection NEW - Silken Streams",
+        "display_variant",
+        "DWJP-identity:silken streams|gilded taupe",
+        "Gilded Taupe",
+        "lifecycle:active",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177901107",
+      "title": "Caldwell Plaid - Moss Shadow",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "43206",
+        "browse-hidden",
+        "Collection NEW - Caldwell Plaid",
+        "display_variant",
+        "DWJP-identity:caldwell plaid|moss shadow",
+        "lifecycle:active",
+        "Moss Shadow",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    },
+    {
+      "id": "gid://shopify/Product/7941177933875",
+      "title": "Riviera Raffia - Natural Breeze",
+      "vendor": "Phillip Jeffries",
+      "status": "ACTIVE",
+      "tags": [
+        "21900",
+        "browse-hidden",
+        "Collection NEW - Riviera Raffia",
+        "display_variant",
+        "DWJP-identity:riviera raffia|natural breeze",
+        "lifecycle:active",
+        "Natural Breeze",
+        "Phillip Jeffries",
+        "quotes",
+        "Showroom Line",
+        "Showroom Only",
+        "Social-Needs-Showroom-CTA",
+        "source:algolia-refresh",
+        "Trending Wallcovering Collection 2026",
+        "Wallcovering"
+      ],
+      "hasNewArrivalTag": false,
+      "hasTrendingTag": true,
+      "inManualTrending": false
+    }
+  ]
+}
\ No newline at end of file
diff --git a/scripts/tk11186-showroom-hide/out/restore-map-latest.json b/scripts/tk11186-showroom-hide/out/restore-map-latest.json
index 0b0474c..1106221 100644
--- a/scripts/tk11186-showroom-hide/out/restore-map-latest.json
+++ b/scripts/tk11186-showroom-hide/out/restore-map-latest.json
@@ -1,6 +1,6 @@
 {
   "ticket": "TK-11186",
-  "builtAt": "2026-09-03T18:34:19.333Z",
+  "builtAt": "2026-09-03T18:51:54.094Z",
   "store": "designer-laboratory-sandbox.myshopify.com",
   "apiVersion": "2024-10",
   "showroomVendors": [
@@ -21,1047 +21,21 @@
       "showroomVendor": 0
     },
     "smart_trending_302873149491": {
-      "total": 2000,
-      "showroomVendor": 798
+      "total": 1962,
+      "showroomVendor": 760
     },
     "smart_newarrivals_167327760435": {
-      "total": 2000,
-      "showroomVendor": 798
+      "total": 1962,
+      "showroomVendor": 760
     }
   },
   "counts": {
-    "activeWithNewArrivalTag": 798,
-    "activeWithTrendingTag": 893,
-    "unionRows": 893,
+    "activeWithNewArrivalTag": 760,
+    "activeWithTrendingTag": 855,
+    "unionRows": 855,
     "manualTrendingShowroomMembers": 0
   },
   "rows": [
-    {
-      "id": "gid://shopify/Product/7941177966643",
-      "title": "Silken Streams - Frosted Pewter",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "36300",
-        "browse-hidden",
-        "Collection NEW - Silken Streams",
-        "display_variant",
-        "DWJP-identity:silken streams|frosted pewter",
-        "Frosted Pewter",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178064947",
-      "title": "Dapper Duke - Bamboo Thread",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43301",
-        "Bamboo Thread",
-        "browse-hidden",
-        "Collection NEW - Dapper Duke",
-        "display_variant",
-        "DWJP-identity:dapper duke|bamboo thread",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178097715",
-      "title": "Plush Pillars - White Loft",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43500",
-        "browse-hidden",
-        "Collection NEW - Plush Pillars",
-        "display_variant",
-        "DWJP-identity:plush pillars|white loft",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering",
-        "White Loft"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178130483",
-      "title": "Silken Streams - Gilded Beige",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "36301",
-        "browse-hidden",
-        "Collection NEW - Silken Streams",
-        "display_variant",
-        "DWJP-identity:silken streams|gilded beige",
-        "Gilded Beige",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178163251",
-      "title": "Plush Pillars - Grey Tone",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43504",
-        "browse-hidden",
-        "Collection NEW - Plush Pillars",
-        "display_variant",
-        "DWJP-identity:plush pillars|grey tone",
-        "Grey Tone",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178294323",
-      "title": "Essex Weave - Camel",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44607",
-        "browse-hidden",
-        "Camel",
-        "Collection NEW - Essex Weave",
-        "display_variant",
-        "DWJP-identity:essex weave|camel",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178327091",
-      "title": "Vinyl Voyage - Brick Red",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "34501",
-        "Brick Red",
-        "browse-hidden",
-        "Collection NEW - Vinyl Voyage",
-        "display_variant",
-        "DWJP-identity:vinyl voyage|brick red",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178359859",
-      "title": "Essex Weave - Desert",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44604",
-        "browse-hidden",
-        "Collection NEW - Essex Weave",
-        "Desert",
-        "display_variant",
-        "DWJP-identity:essex weave|desert",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178425395",
-      "title": "Idyllic - Rustic Dawn",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "50402",
-        "browse-hidden",
-        "Collection NEW - Idyllic",
-        "display_variant",
-        "DWJP-identity:idyllic|rustic dawn",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Rustic Dawn",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178458163",
-      "title": "Arbor Stripe - Sky Breeze",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43401",
-        "browse-hidden",
-        "Collection NEW - Arbor Stripe",
-        "display_variant",
-        "DWJP-identity:arbor stripe|sky breeze",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Sky Breeze",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178490931",
-      "title": "Essex Weave - Shadow",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44603",
-        "browse-hidden",
-        "Collection NEW - Essex Weave",
-        "display_variant",
-        "DWJP-identity:essex weave|shadow",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Shadow",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178556467",
-      "title": "Essex Weave - Sandstone",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44601",
-        "browse-hidden",
-        "Collection NEW - Essex Weave",
-        "display_variant",
-        "DWJP-identity:essex weave|sandstone",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Sandstone",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178589235",
-      "title": "Arbor Stripe - Moss Trail",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43405",
-        "browse-hidden",
-        "Collection NEW - Arbor Stripe",
-        "display_variant",
-        "DWJP-identity:arbor stripe|moss trail",
-        "lifecycle:active",
-        "Moss Trail",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178622003",
-      "title": "Vinyl Melange - Midnight Navy",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "39107",
-        "browse-hidden",
-        "Collection NEW - Vinyl Melange",
-        "display_variant",
-        "DWJP-identity:vinyl melange|midnight navy",
-        "lifecycle:active",
-        "Midnight Navy",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178654771",
-      "title": "Vinyl Cork Couture - Midnight Atelier",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44902",
-        "browse-hidden",
-        "Collection NEW - Vinyl Cork Couture",
-        "display_variant",
-        "DWJP-identity:vinyl cork couture|midnight atelier",
-        "lifecycle:active",
-        "Midnight Atelier",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178687539",
-      "title": "Madison Stripe - Mushroom Greige",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43703",
-        "browse-hidden",
-        "Collection NEW - Madison Stripe",
-        "display_variant",
-        "DWJP-identity:madison stripe|mushroom greige",
-        "lifecycle:active",
-        "Mushroom Greige",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178720307",
-      "title": "Vinyl Strata - Ice Blue",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46007",
-        "browse-hidden",
-        "Collection NEW - Vinyl Strata",
-        "display_variant",
-        "DWJP-identity:vinyl strata|ice blue",
-        "Ice Blue",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178753075",
-      "title": "Essex Weave - Bone",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44600",
-        "Bone",
-        "browse-hidden",
-        "Collection NEW - Essex Weave",
-        "display_variant",
-        "DWJP-identity:essex weave|bone",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178785843",
-      "title": "Riviera Raffia - Oyster Isle",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "21903",
-        "browse-hidden",
-        "Collection NEW - Riviera Raffia",
-        "display_variant",
-        "DWJP-identity:riviera raffia|oyster isle",
-        "lifecycle:active",
-        "New Arrival",
-        "Oyster Isle",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178818611",
-      "title": "Vinyl Voyage - Desert Umber",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "34506",
-        "browse-hidden",
-        "Collection NEW - Vinyl Voyage",
-        "Desert Umber",
-        "display_variant",
-        "DWJP-identity:vinyl voyage|desert umber",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178851379",
-      "title": "Vinyl Cork Couture - Taupe Grove",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "44906",
-        "browse-hidden",
-        "Collection NEW - Vinyl Cork Couture",
-        "display_variant",
-        "DWJP-identity:vinyl cork couture|taupe grove",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Taupe Grove",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178884147",
-      "title": "Caldwell Plaid - Midnight Fog",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43207",
-        "browse-hidden",
-        "Collection NEW - Caldwell Plaid",
-        "display_variant",
-        "DWJP-identity:caldwell plaid|midnight fog",
-        "lifecycle:active",
-        "Midnight Fog",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178916915",
-      "title": "Caldwell Plaid - Charcoal Cross",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43208",
-        "browse-hidden",
-        "Charcoal Cross",
-        "Collection NEW - Caldwell Plaid",
-        "display_variant",
-        "DWJP-identity:caldwell plaid|charcoal cross",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941178949683",
-      "title": "Meta Metallic - Pewter",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46401",
-        "browse-hidden",
-        "Collection NEW - Meta Metallic",
-        "display_variant",
-        "DWJP-identity:meta metallic|pewter",
-        "lifecycle:active",
-        "New Arrival",
-        "Pewter",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179015219",
-      "title": "Caldwell Plaid - Clay Stripe",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43203",
-        "browse-hidden",
-        "Clay Stripe",
-        "Collection NEW - Caldwell Plaid",
-        "display_variant",
-        "DWJP-identity:caldwell plaid|clay stripe",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179047987",
-      "title": "Vinyl Strata - Sweeping Loden",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46000",
-        "browse-hidden",
-        "Collection NEW - Vinyl Strata",
-        "display_variant",
-        "DWJP-identity:vinyl strata|sweeping loden",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Sweeping Loden",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179080755",
-      "title": "Vinyl Strata - Steel Gray",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46001",
-        "browse-hidden",
-        "Collection NEW - Vinyl Strata",
-        "display_variant",
-        "DWJP-identity:vinyl strata|steel gray",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Steel Gray",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179113523",
-      "title": "Hana - Sakura Grove",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46501",
-        "browse-hidden",
-        "Collection NEW - Hana",
-        "display_variant",
-        "DWJP-identity:hana|sakura grove",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Sakura Grove",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179146291",
-      "title": "Silken Streams - Gilded Tan",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "36302",
-        "browse-hidden",
-        "Collection NEW - Silken Streams",
-        "display_variant",
-        "DWJP-identity:silken streams|gilded tan",
-        "Gilded Tan",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179211827",
-      "title": "Vinyl Leno Weave - Sesame",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46709",
-        "browse-hidden",
-        "Collection NEW - Vinyl Leno Weave",
-        "display_variant",
-        "DWJP-identity:vinyl leno weave|sesame",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Sesame",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179441203",
-      "title": "Cirque De Soho - Cocolat",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "45403",
-        "browse-hidden",
-        "Cocolat",
-        "Collection NEW - Cirque de Soho",
-        "display_variant",
-        "DWJP-identity:cirque de soho|cocolat",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179473971",
-      "title": "Madison Stripe - Ivory Mist",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43700",
-        "browse-hidden",
-        "Collection NEW - Madison Stripe",
-        "display_variant",
-        "DWJP-identity:madison stripe|ivory mist",
-        "Ivory Mist",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179506739",
-      "title": "Vinyl Leno Weave - Ink",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46712",
-        "browse-hidden",
-        "Collection NEW - Vinyl Leno Weave",
-        "display_variant",
-        "DWJP-identity:vinyl leno weave|ink",
-        "Ink",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179539507",
-      "title": "Madison Stripe - Pearl Bliss",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "43701",
-        "browse-hidden",
-        "Collection NEW - Madison Stripe",
-        "display_variant",
-        "DWJP-identity:madison stripe|pearl bliss",
-        "lifecycle:active",
-        "New Arrival",
-        "Pearl Bliss",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179572275",
-      "title": "Vinyl Leno Weave - Fawn",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46708",
-        "browse-hidden",
-        "Collection NEW - Vinyl Leno Weave",
-        "display_variant",
-        "DWJP-identity:vinyl leno weave|fawn",
-        "Fawn",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179605043",
-      "title": "Vinyl Strata - Deep Jade",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46010",
-        "browse-hidden",
-        "Collection NEW - Vinyl Strata",
-        "Deep Jade",
-        "display_variant",
-        "DWJP-identity:vinyl strata|deep jade",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179637811",
-      "title": "Vinyl Strata - Shadow Black",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46002",
-        "browse-hidden",
-        "Collection NEW - Vinyl Strata",
-        "display_variant",
-        "DWJP-identity:vinyl strata|shadow black",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Shadow Black",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
-    {
-      "id": "gid://shopify/Product/7941179670579",
-      "title": "Hana - First Bloom",
-      "vendor": "Phillip Jeffries",
-      "status": "ACTIVE",
-      "tags": [
-        "46500",
-        "browse-hidden",
-        "Collection NEW - Hana",
-        "display_variant",
-        "DWJP-identity:hana|first bloom",
-        "First Bloom",
-        "lifecycle:active",
-        "New Arrival",
-        "Phillip Jeffries",
-        "quotes",
-        "Showroom Line",
-        "Showroom Only",
-        "Social-Needs-Showroom-CTA",
-        "source:algolia-refresh",
-        "Trending Wallcovering Collection 2026",
-        "Wallcovering"
-      ],
-      "hasNewArrivalTag": true,
-      "hasTrendingTag": true,
-      "inManualTrending": false
-    },
     {
       "id": "gid://shopify/Product/7941179736115",
       "title": "Vinyl Strata - Rosewood Heights",
diff --git a/scripts/tk11186-showroom-hide/rollback.mjs b/scripts/tk11186-showroom-hide/rollback.mjs
new file mode 100644
index 0000000..b96039a
--- /dev/null
+++ b/scripts/tk11186-showroom-hide/rollback.mjs
@@ -0,0 +1,75 @@
+#!/usr/bin/env node
+/**
+ * TK-11186 STEP D — ROLLBACK. Re-adds the two tags (and manual-collection membership)
+ * exactly as recorded in the restore-map, restoring the pre-apply state. Mirror-first
+ * then Shopify. DEFAULT = --dry-run. Cost: $0.
+ *
+ * Usage: node rollback.mjs [--apply] [--map out/restore-map-latest.json] [--batch 250] [--conc 5] [--gap 90000]
+ */
+import { gql } from '../lib/shopify.mjs';
+import { execFileSync } from 'node:child_process';
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const OUT_DIR = path.join(__dirname, 'out');
+const PG = 'host=/tmp dbname=dw_unified';
+const args = process.argv.slice(2);
+const APPLY = args.includes('--apply');
+const argV = (k, d) => { const i = args.indexOf(k); return i >= 0 ? args[i + 1] : d; };
+const argN = (k, d) => { const i = args.indexOf(k); return i >= 0 ? parseInt(args[i + 1], 10) : d; };
+const MAP_PATH = argV('--map', path.join(OUT_DIR, 'restore-map-latest.json'));
+const BATCH = argN('--batch', 250), CONC = argN('--conc', 5), GAP = argN('--gap', 90000);
+const TAG_NEW = 'New Arrival', TAG_TRENDING = 'Trending Wallcovering Collection 2026';
+const MANUAL_TRENDING = '298339205171';
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+const map = JSON.parse(fs.readFileSync(MAP_PATH, 'utf8'));
+const addNew = map.rows.filter(r => r.hasNewArrivalTag);
+const addTrend = map.rows.filter(r => r.hasTrendingTag);
+const addManual = map.rows.filter(r => r.inManualTrending).map(r => r.id);
+const allIds = [...new Set([...addNew, ...addTrend].map(r => r.id))];
+console.log(`ROLLBACK ${APPLY ? 'APPLY' : 'DRY-RUN'} from ${MAP_PATH}`);
+console.log(`  re-add '${TAG_NEW}': ${addNew.length} | re-add '${TAG_TRENDING}': ${addTrend.length} | manual re-add: ${addManual.length}`);
+if (!APPLY) { console.log('  (dry-run — no writes). Re-run with --apply.'); process.exit(0); }
+
+// mirror-first: re-append tags per product (only where the row currently lacks them)
+function mirrorAdd(ids, tag) {
+  if (!ids.length) return;
+  const arr = ids.map(id => `'${id.replace(/'/g, "''")}'`).join(',');
+  const sql = `UPDATE shopify_products SET tags = (tags::text[] || ARRAY['${tag}'])::text
+WHERE shopify_id = ANY(ARRAY[${arr}]) AND NOT (tags::text[] @> ARRAY['${tag}']);`;
+  const f = path.join(OUT_DIR, `mirror-add-${Date.now()}.sql`); fs.writeFileSync(f, sql);
+  const out = execFileSync('psql', [PG, '-v', 'ON_ERROR_STOP=1', '-f', f], { encoding: 'utf8' });
+  console.log(`  mirror re-add ${tag}: ${out.match(/UPDATE (\d+)/)?.[1] || 0} rows`);
+}
+mirrorAdd(addNew.map(r => r.id), TAG_NEW);
+mirrorAdd(addTrend.map(r => r.id), TAG_TRENDING);
+
+// Shopify tagsAdd, batched. Per product, re-add only the tags it originally had.
+const wantByld = new Map();
+for (const r of addNew) (wantByld.get(r.id) || wantByld.set(r.id, new Set()).get(r.id)).add(TAG_NEW);
+for (const r of addTrend) (wantByld.get(r.id) || wantByld.set(r.id, new Set()).get(r.id)).add(TAG_TRENDING);
+async function tagsAddOne(id) {
+  const tags = [...wantByld.get(id)];
+  const d = await gql(`mutation($id:ID!,$tags:[String!]!){ tagsAdd(id:$id, tags:$tags){ userErrors{message} } }`, { id, tags });
+  const ue = d?.tagsAdd?.userErrors; if (ue && ue.length) throw new Error(JSON.stringify(ue));
+}
+let done = 0, failed = 0;
+for (let b = 0; b < allIds.length; b += BATCH) {
+  const batch = allIds.slice(b, b + BATCH);
+  for (let i = 0; i < batch.length; i += CONC) {
+    const res = await Promise.allSettled(batch.slice(i, i + CONC).map(tagsAddOne));
+    res.forEach(r => r.status === 'fulfilled' ? done++ : (failed++, console.error('  [tagsAdd FAIL]', r.reason?.message)));
+  }
+  console.log(`  tagsAdd ${Math.min(b + BATCH, allIds.length)}/${allIds.length} (ok ${done} fail ${failed})`);
+  if (b + BATCH < allIds.length) await sleep(GAP);
+}
+if (addManual.length) {
+  const d = await gql(`mutation($id:ID!,$pids:[ID!]!){ collectionAddProducts(id:$id, productIds:$pids){ userErrors{message} } }`,
+    { id: `gid://shopify/Collection/${MANUAL_TRENDING}`, pids: addManual });
+  console.log(`  collectionAddProducts(${MANUAL_TRENDING}): ${addManual.length} ${JSON.stringify(d?.collectionAddProducts?.userErrors || [])}`);
+}
+console.log(`ROLLBACK done — tagsAdd ok ${done} fail ${failed}`);
+process.exit(failed ? 1 : 0);
diff --git a/scripts/trending-2026/trending-tag-sync.cjs b/scripts/trending-2026/trending-tag-sync.cjs
index b4a491c..1a7995a 100644
--- a/scripts/trending-2026/trending-tag-sync.cjs
+++ b/scripts/trending-2026/trending-tag-sync.cjs
@@ -17,6 +17,10 @@
  */
 const fs = require('fs');
 const path = require('path');
+// Canonical showroom-vendor primitive (list + logic live in fix-live-board/config).
+// Showroom-only vendors are addressable-not-discoverable: they must NEVER be added to
+// the Trending discoverability flow. Never hardcode a vendor — edit showroom-vendors.json. TK-11186.
+const { isShowroomVendor } = require(path.join(process.env.HOME, 'Projects/fix-live-board/config/showroom-vendor.cjs'));
 
 const TAG = 'Trending Wallcovering Collection 2026';
 const HOST = 'designer-laboratory-sandbox.myshopify.com';
@@ -120,11 +124,15 @@ async function runPool(ids, kind) {
   // everything currently carrying the tag (any status)
   const tagged = await fetchAll(`tag:${JSON.stringify(TAG)}`);
 
-  const target = new Set(newest.map(n => n.id));
+  // Showroom-only vendors never enter the target (never get the tag added), and are
+  // excluded from this reconciler's remove path — the dedicated, ledgered TK-11186
+  // build-remove-tags.mjs owns the one-time showroom cleanup (restore-map + 90s gaps).
+  const showroomTaggedIds = new Set(tagged.filter(n => isShowroomVendor(n.vendor)).map(n => n.id));
+  const target = new Set(newest.filter(n => !isShowroomVendor(n.vendor)).map(n => n.id));
   const have = new Set(tagged.map(n => n.id));
 
   const toAdd = [...target].filter(id => !have.has(id));
-  const toRemove = [...have].filter(id => !target.has(id));
+  const toRemove = [...have].filter(id => !target.has(id) && !showroomTaggedIds.has(id));
 
   const artmuraInSet = newest.filter(n => n.vendor === ARTMURA_VENDOR).length;
   const newestCutoff = newest.length ? newest[newest.length - 1].createdAt : 'n/a';

← cda6d43 auto-data-snapshot: 2026-09-03T11:49:57 (8 data files) — dat  ·  back to Designerwallcoverings  ·  TK-10372: turnkey fix+rollback for final 3 dup-image cross-l 9f550a9 →