← back to Hollywood Import
auto-save: 2026-07-15T14:07:06 (2 files) — backfill-specs.mjs backfill-targets.json
fa17d622f753091171dddaabcd7d120ac7a39115 · 2026-07-15 14:07:07 -0700 · Steve Abrams
Files touched
A backfill-specs.mjsA backfill-targets.json
Diff
commit fa17d622f753091171dddaabcd7d120ac7a39115
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed Jul 15 14:07:07 2026 -0700
auto-save: 2026-07-15T14:07:06 (2 files) — backfill-specs.mjs backfill-targets.json
---
backfill-specs.mjs | 137 ++++++++++++++++++++++++++++++++++++++++++++++++++
backfill-targets.json | 1 +
2 files changed, 138 insertions(+)
diff --git a/backfill-specs.mjs b/backfill-specs.mjs
new file mode 100644
index 0000000..c9af2e7
--- /dev/null
+++ b/backfill-specs.mjs
@@ -0,0 +1,137 @@
+// backfill-specs.mjs — write the missing spec metafields + rebuilt body_html onto live
+// Hollywood Wallcoverings products that the create drip shipped with ZERO metafields
+// (376 active as of 2026-07-15; 366 matched to momentum_colorways in backfill-targets.json).
+// Schema mirrors the healthy line (global.* specs + custom/dwc identity keys, Sidmouth
+// reference). Body rule: keep any existing <p> description (April batch), else use the
+// staged description; the spec <table> is always rebuilt from staging. Private-label
+// scrub on every written string. DRY-RUN by default; --apply --limit=N to write.
+// Audit JSONL, idempotent (skips DONE pids on resume). $0 — Admin API only.
+import fs from 'node:fs';
+
+const env = fs.readFileSync('/Users/macstudio3/Projects/secrets-manager/.env', 'utf8');
+const STORE = (env.match(/^SHOPIFY_STORE=(.+)$/m) || [])[1].trim();
+const TOKEN = (env.match(/^SHOPIFY_ADMIN_TOKEN=(.+)$/m) || [])[1].trim();
+const REST = `https://${STORE}/admin/api/2024-10`;
+const GQL = `${REST}/graphql.json`;
+const H = { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json' };
+const APPLY = process.argv.includes('--apply');
+const LIMIT = parseInt((process.argv.find(a => a.startsWith('--limit=')) || '').split('=')[1] || '0', 10);
+const AUDIT = new URL('backfill-specs-audit.jsonl', import.meta.url).pathname;
+
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+const scrub = s => String(s || '').replace(/\b(momentum(\s+textiles( and walls)?)?|versa(’s)?(\s+designed\s+surfaces)?|innovations(\s+usa)?|muratto)\b/gi, '').replace(/\s{2,}/g, ' ').replace(/\s+\|/g, ' |').trim();
+const LEAK = /\b(momentum|versa|innovations|muratto)\b/i; // word-bounded: "versatile" is not a leak
+const unitWord = u => ({ SR: 'Roll', EA: 'Panel', BOX: 'Box', PANEL: 'Panel', SY: 'Sq Yard', YD: 'Yard' }[String(u || '').toUpperCase()] || 'Yard');
+
+function buildMetafields(it) {
+ const sl = 'single_line_text_field', ml = 'multi_line_text_field';
+ const mf = [];
+ const add = (namespace, key, value, type = sl) => {
+ const v = scrub(value);
+ if (v) mf.push({ namespace, key, type, value: v });
+ };
+ const widthVal = it.width ? (/^[\d.]+$/.test(String(it.width).trim()) ? `${String(it.width).trim()}"` : it.width) : '';
+ add('global', 'width', widthVal);
+ // v_prods_weight only when the staged weight is in lb — a bare "25" from "25 oz/ly" would mislead
+ const wStr = String(it.weight || '');
+ if (/lb\b/i.test(wStr)) add('global', 'v_prods_weight', (wStr.match(/[\d.]+/) || [])[0]);
+ add('global', 'unit_of_measure', `Sold Per ${unitWord(it.uom)}`);
+ add('global', 'repeat', it.repeat_info);
+ add('global', 'fire_rating', it.fire_rating || (it.has_flame_cert ? 'Flame Certified' : ''));
+ add('global', 'lead_time', 'Usually in Stock');
+ // customer-facing PL pattern name comes from the live title (staging pattern_name is upstream):
+ // "Back Bay Glitterati | Hollywood Wallcoverings" → "Back Bay" (strip trailing color word)
+ const norm = s => String(s || '').toLowerCase().replace(/[^a-z0-9]/g, '');
+ let base = String(it.title || '').split('|')[0]
+ .replace(/\s*(commercial\s+wallcovering|acoustic\s+panel|wallcovering|fabric)\s*$/i, '').trim();
+ const color = String(it.color_name || '').trim();
+ let plPattern = '';
+ if (color && base.toLowerCase().endsWith(color.toLowerCase())) {
+ plPattern = base.slice(0, base.length - color.length).replace(/[\s\-–]+$/, '').trim();
+ } else if (norm(base).includes(norm(it.pattern_name)) && norm(it.pattern_name)) {
+ plPattern = scrub(it.pattern_name); // staging name survives in the title (color was PL-renamed)
+ } // else: title-only naming we can't decompose — omit rather than write a wrong pattern
+ add('custom', 'pattern_name', plPattern);
+ add('custom', 'supplier_name', 'Hollywood Wallcoverings');
+ add('custom', 'manufacturer_sku', it.momentum_sku);
+ add('custom', 'material', it.content, ml);
+ add('dwc', 'real_vendor', 'Hollywood Wallcoverings');
+ add('dwc', 'manufacturer_sku', it.momentum_sku);
+ return mf;
+}
+
+function buildBody(it) {
+ // keep existing <p>…</p> paragraphs (April batch has real descriptions); else staged description
+ const existingPs = (String(it.body_html || '').match(/<p>[\s\S]*?<\/p>/gi) || []).join('');
+ const para = existingPs || (it.description ? `<p>${scrub(it.description)}</p>` : '');
+ const row = (label, val) => {
+ const v = scrub(val);
+ return v ? `<tr><td>${label}</td><td>${v}</td></tr>` : '';
+ };
+ const widthVal = it.width ? (/^[\d.]+$/.test(String(it.width).trim()) ? `${String(it.width).trim()}"` : it.width) : '';
+ const table = '<table>' +
+ row('Width', widthVal) +
+ row('Weight', it.weight) +
+ row('Content', it.content) +
+ row('Finish', it.finish) +
+ row('Repeat', it.repeat_info) +
+ row('Fire Rating', it.fire_rating || (it.has_flame_cert ? 'Flame Certified' : '')) +
+ row('Cleaning', it.cleaning) +
+ row('Sold Per', unitWord(it.uom)) +
+ '</table>';
+ return para + table;
+}
+
+const M_SET = `mutation($mf:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mf){userErrors{field message}}}`;
+
+async function gql(query, variables) {
+ for (let a = 0; a < 4; a++) {
+ const r = await fetch(GQL, { method: 'POST', headers: H, body: JSON.stringify({ query, variables }) });
+ const j = await r.json();
+ if (j.errors) { if (a === 3) throw new Error(JSON.stringify(j.errors).slice(0, 200)); await sleep(900 * (a + 1)); continue; }
+ return j.data;
+ }
+}
+
+const items = JSON.parse(fs.readFileSync(new URL('backfill-targets.json', import.meta.url).pathname, 'utf8'));
+const doneSet = new Set();
+if (fs.existsSync(AUDIT)) for (const l of fs.readFileSync(AUDIT, 'utf8').trim().split('\n').filter(Boolean)) {
+ try { const r = JSON.parse(l); if (r.action === 'DONE') doneSet.add(r.pid); } catch {}
+}
+const remaining = items.filter(it => !doneSet.has(Number(it.shopify_id)));
+const todo = LIMIT > 0 ? remaining.slice(0, LIMIT) : remaining;
+if (doneSet.size) console.log(`resume: ${doneSet.size} already done, ${remaining.length} remain`);
+console.log(`backfill-specs: ${todo.length} items · ${APPLY ? 'APPLY' : 'DRY-RUN'}`);
+const out = APPLY ? fs.createWriteStream(AUDIT, { flags: 'a' }) : null;
+let done = 0, err = 0;
+for (const it of todo) {
+ const pid = Number(it.shopify_id);
+ const mf = buildMetafields(it);
+ const body = buildBody(it);
+ const leak = LEAK.test(mf.map(m => m.value).join(' ') + ' ' + body);
+ if (!APPLY) {
+ console.log(`\n${it.base_sku} ${it.handle} ${leak ? '⚠LEAK' : 'clean'} mf=${mf.length}`);
+ for (const m of mf) console.log(` ${m.namespace}.${m.key} = ${m.value.slice(0, 70)}`);
+ console.log(` body: ${body.replace(/</g, '‹').slice(0, 220)}`);
+ continue;
+ }
+ if (leak) { console.error(` SKIP LEAK ${it.base_sku}`); out.write(JSON.stringify({ pid, dw: it.base_sku, action: 'SKIP_LEAK' }) + '\n'); err++; continue; }
+ try {
+ const gid = `gid://shopify/Product/${pid}`;
+ const d = await gql(M_SET, { mf: mf.map(m => ({ ...m, ownerId: gid })) });
+ const ue = d.metafieldsSet.userErrors;
+ if (ue.length) throw new Error('metafieldsSet: ' + JSON.stringify(ue).slice(0, 150));
+ const r = await fetch(`${REST}/products/${pid}.json`, { method: 'PUT', headers: H, body: JSON.stringify({ product: { id: pid, body_html: body } }) });
+ if (!r.ok) throw new Error(`body PUT ${r.status}`);
+ out.write(JSON.stringify({ pid, dw: it.base_sku, action: 'DONE', mf: mf.length }) + '\n');
+ done++;
+ if (done % 25 === 0) console.log(` … ${done}/${todo.length}`);
+ await sleep(600);
+ } catch (e) {
+ console.error(` ERR ${it.base_sku}: ${e.message.slice(0, 140)}`);
+ out.write(JSON.stringify({ pid, dw: it.base_sku, action: 'ERR', msg: e.message.slice(0, 140) }) + '\n');
+ err++; await sleep(900);
+ }
+}
+if (out) out.end();
+console.log(`\nDONE: updated=${done} err=${err} of ${todo.length}` + (APPLY ? ` · audit ${AUDIT}` : ' · DRY-RUN, no writes'));
diff --git a/backfill-targets.json b/backfill-targets.json
new file mode 100644
index 0000000..b759fb2
--- /dev/null
+++ b/backfill-targets.json
@@ -0,0 +1 @@
+[{"shopify_id":"gid://shopify/Product/7879456096307","handle":"beam-100-3-5h-x-108l-celadon-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508083","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Acros","momentum_sku":"09660924","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and decorative appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456129075","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508084","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Beehive","momentum_sku":"09660935","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577876019","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings-2","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508139","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Highland","momentum_sku":"09661298","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7814884818995","handle":"back-bay-glitterati-hollywood-wallcoverings","title":"Back Bay Glitterati | Hollywood Wallcoverings","base_sku":"DWHD-502551","product_type":"Wallcovering","body_html":"<p>This is a textured wallcovering with a geometric fractal pattern in shades of gold and beige. It evokes a modern and luxurious mood.</p>","pattern_name":"Fractal","color_name":"Glitterati","momentum_sku":"09243254","width":"54","weight":"25 oz/ly (775 g/lm)","repeat_info":"","content":"100% Vinyl","finish":"Osnaburg","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 5, smoke developed 20, NFPA 286 Corner Burn, NFPA 101 Life Cycle Safety Code","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Back Bay in Glitterati is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Straight hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, water-based inks"}, {"shopify_id":"gid://shopify/Product/7881304604723","handle":"beam-250-timber-9h-x-108l-black-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Black | Hollywood Wallcoverings","base_sku":"DWHD-508160","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Yakisugi Black W30","momentum_sku":"09660759","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design suitable for contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816413347891","handle":"hammond-point-serene-dream-commercial-wallcovering-hollywood-wallcoverings","title":"Hammond Point - Serene Dream Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506273","product_type":"Commercial Wallcovering","body_html":"<p>Hammond Point Serene Dream is a contemporary geometric wallcovering featuring a subtle color palette. This durable vinyl material is ideal for high-traffic commercial spaces seeking a modern, minimalist aesthetic.</p>","pattern_name":"Shifting Motions","color_name":"Serene Dream","momentum_sku":"09601799","width":"54","weight":"20 oz.","repeat_info":"200\" H","content":"80% olefin composite, 20% post-industrial recycled olefin composite","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"EA","category":"Wallcovering","description":"Hammond Point in Serene Dream is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight match panels in sequence","full_roll_size":0,"minimum_order":null,"sustainability":"PVC free, Prop 65, HPD, Recycled content, Phthalate free, GREENGUARD certified, Low-VOC CA Section 01350, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7879456161843","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-1","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508085","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Canyon","momentum_sku":"09660946","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a linear pattern designed for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456194611","handle":"beam-100-3-5h-x-108l-charcoal-gray-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508086","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Cavalier","momentum_sku":"09660957","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456227379","handle":"beam-100-3-5h-x-108l-charcoal-gray-hollywood-wallcoverings-1","title":"Beam 100 3.5H x 108L Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508087","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Caspian","momentum_sku":"09660968","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a sleek, ribbed texture designed for modern interior spaces, enhancing both acoustics and visual appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456292915","handle":"beam-100-3-5h-x-108l-graphite-gray-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Graphite Gray | Hollywood Wallcoverings","base_sku":"DWHD-508088","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Empire","momentum_sku":"09660979","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte-finished acoustic panel designed for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456325683","handle":"beam-100-3-5h-x-108l-alabaster-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508089","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Flatiron","momentum_sku":"09660990","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456358451","handle":"beam-100-3-5h-x-108l-celadon-hollywood-wallcoverings-1","title":"Beam 100 3.5H x 108L Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508090","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Falling Water","momentum_sku":"09661001","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a smooth finish designed for wall covering in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456391219","handle":"beam-100-3-5h-x-108l-olive-green-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Olive Green | Hollywood Wallcoverings","base_sku":"DWHD-508091","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Gherkin","momentum_sku":"09661012","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456423987","handle":"beam-100-3-5h-x-108l-burgundy-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508092","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Sargazo","momentum_sku":"09661023","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456456755","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-2","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508093","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Highland","momentum_sku":"09661034","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456489523","handle":"beam-100-3-5h-x-108l-graphite-gray-hollywood-wallcoverings-1","title":"Beam 100 3.5H x 108L Graphite Gray | Hollywood Wallcoverings","base_sku":"DWHD-508094","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Muralla","momentum_sku":"09661045","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design and smooth finish ideal for contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456522291","handle":"beam-100-3-5h-x-108l-alabaster-hollywood-wallcoverings-1","title":"Beam 100 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508095","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Opera","momentum_sku":"09661056","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456555059","handle":"beam-100-3-5h-x-108l-navy-blue-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Navy Blue | Hollywood Wallcoverings","base_sku":"DWHD-508096","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Pinnacle","momentum_sku":"09661067","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456587827","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-3","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508097","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Parthenon","momentum_sku":"09661078","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456620595","handle":"beam-100-3-5h-x-108l-black-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Black | Hollywood Wallcoverings","base_sku":"DWHD-508098","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Petronas","momentum_sku":"09661089","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek, modern acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in contemporary interiors.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456653363","handle":"beam-100-3-5h-x-108l-alabaster-hollywood-wallcoverings-2","title":"Beam 100 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508099","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Rushmore","momentum_sku":"09661100","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design and smooth finish ideal for contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456686131","handle":"beam-100-3-5h-x-108l-charcoal-gray-hollywood-wallcoverings-2","title":"Beam 100 3.5H x 108L Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508100","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Herald","momentum_sku":"09661111","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456784435","handle":"beam-100-3-5h-x-108l-alabaster-hollywood-wallcoverings-3","title":"Beam 100 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508101","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Pavilion","momentum_sku":"09661122","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, textured acoustic panel designed for interior walls to enhance sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879456882739","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-4","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508102","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Senado","momentum_sku":"09661133","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019181619","handle":"beam-100-3-5h-x-108l-alabaster-hollywood-wallcoverings-4","title":"Beam 100 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508103","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Savoye","momentum_sku":"09661144","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in modern interiors.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019214387","handle":"beam-100-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-5","title":"Beam 100 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508104","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Terrace","momentum_sku":"09661155","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019279923","handle":"beam-100-3-5h-x-108l-forest-green-hollywood-wallcoverings","title":"Beam 100 3.5H x 108L Forest Green | Hollywood Wallcoverings","base_sku":"DWHD-508105","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / 3.5H x 108L","color_name":"Tree House","momentum_sku":"09661166","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019312691","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508106","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Birch W1","momentum_sku":"09660429","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019345459","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-1","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508107","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Tasmanian Oak W12","momentum_sku":"09660440","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019410995","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-2","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508108","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Grey Ironbark W18","momentum_sku":"09660451","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019443763","handle":"beam-100-timber-3-5h-x-108l-copper-hollywood-wallcoverings","title":"Beam 100 Timber 3.5H x 108L Copper | Hollywood Wallcoverings","base_sku":"DWHD-508109","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Blue Gum W19","momentum_sku":"09660462","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a copper finish designed for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019476531","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-3","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508110","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Hoop Pine W2","momentum_sku":"09660473","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019509299","handle":"beam-100-timber-3-5h-x-108l-burgundy-hollywood-wallcoverings","title":"Beam 100 Timber 3.5H x 108L Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508111","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Jarrah W20","momentum_sku":"09660484","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte-finished acoustic panel designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019542067","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-4","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508112","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Black Walnut W21","momentum_sku":"09660495","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a warm, natural finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019574835","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-5","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508113","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"OAK W3","momentum_sku":"09660506","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019607603","handle":"beam-100-timber-3-5h-x-108l-black-hollywood-wallcoverings","title":"Beam 100 Timber 3.5H x 108L Black | Hollywood Wallcoverings","base_sku":"DWHD-508114","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Yakisugi Black W30","momentum_sku":"09660517","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek grid pattern designed for wall installation in contemporary interiors.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019640371","handle":"beam-100-timber-3-5h-x-108l-alabaster-hollywood-wallcoverings","title":"Beam 100 Timber 3.5H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508115","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Whitewash Gum W31","momentum_sku":"09660528","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, linear acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019673139","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-6","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508116","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Aged Oak W32","momentum_sku":"09660539","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019705907","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-7","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508117","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Nordic Oak W33","momentum_sku":"09660550","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019738675","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-8","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508118","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Soft Walnut W36","momentum_sku":"09660561","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish suitable for modern interior design applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019804211","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-9","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508119","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Coastal Oak W37","momentum_sku":"09660572","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019836979","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-10","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508120","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Natural Oak W38","momentum_sku":"09660583","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019869747","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-11","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508121","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Civic Oak W39","momentum_sku":"09660594","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a linear grid pattern designed for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880019902515","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-12","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508122","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"American Ash W4","momentum_sku":"09660605","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880576958515","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-14","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508124","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Boston Oak W42","momentum_sku":"09660627","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577024051","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-15","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508125","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Eucalyptus W6","momentum_sku":"09660638","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish designed for interior wall applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577056819","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-16","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508126","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Queensland Walnut W7","momentum_sku":"09660649","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a warm, earthy finish ideal for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577089587","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-17","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508127","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Austr Blackbutt","momentum_sku":"09662024","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a warm, earthy finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577155123","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-18","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508128","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Tasm Blackwood","momentum_sku":"09662035","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577351731","handle":"beam-250-9h-x-108l-celadon-hollywood-wallcoverings","title":"Beam 250 9H x 108L Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508129","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Acros","momentum_sku":"09661188","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577417267","handle":"beam-250-9h-x-108l-charcoal-gray-hollywood-wallcoverings","title":"Beam 250 9H x 108L Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508130","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Empire","momentum_sku":"09661199","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek, modern acoustic panel with a textured finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577450035","handle":"beam-250-9h-x-108l-alabaster-hollywood-wallcoverings","title":"Beam 250 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508131","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Flatiron","momentum_sku":"09661210","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a grid pattern designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577515571","handle":"beam-250-9h-x-108l-celadon-hollywood-wallcoverings-1","title":"Beam 250 9H x 108L Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508132","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Falling Water","momentum_sku":"09661221","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a ribbed texture designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577581107","handle":"beam-250-9h-x-108l-burgundy-hollywood-wallcoverings","title":"Beam 250 9H x 108L Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508133","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Sargazo","momentum_sku":"09661232","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a deep burgundy finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577613875","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508134","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Beehive","momentum_sku":"09661243","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577679411","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings-1","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508135","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Canyon","momentum_sku":"09661254","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a slatted design for modern interior walls.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577744947","handle":"beam-250-9h-x-108l-lavender-hollywood-wallcoverings","title":"Beam 250 9H x 108L Lavender | Hollywood Wallcoverings","base_sku":"DWHD-508136","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Cavalier","momentum_sku":"09661265","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek, modern acoustic panel with a smooth finish ideal for enhancing sound quality in contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577777715","handle":"beam-250-9h-x-108l-graphite-gray-hollywood-wallcoverings","title":"Beam 250 9H x 108L Graphite Gray | Hollywood Wallcoverings","base_sku":"DWHD-508137","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Caspian","momentum_sku":"09661276","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design and matte finish suitable for contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577843251","handle":"beam-250-9h-x-108l-charcoal-hollywood-wallcoverings","title":"Beam 250 9H x 108L Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508138","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Gherkin","momentum_sku":"09661287","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577941555","handle":"beam-250-9h-x-108l-teal-hollywood-wallcoverings","title":"Beam 250 9H x 108L Teal | Hollywood Wallcoverings","base_sku":"DWHD-508140","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Muralla","momentum_sku":"09661309","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a textured finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880577974323","handle":"beam-250-9h-x-108l-alabaster-hollywood-wallcoverings-1","title":"Beam 250 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508141","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Rushmore","momentum_sku":"09661320","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, textured acoustic panel designed for modern interior walls to enhance sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880578039859","handle":"beam-250-9h-x-108l-charcoal-gray-hollywood-wallcoverings-1","title":"Beam 250 9H x 108L Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508142","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Herald","momentum_sku":"09661331","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a sleek, modern finish with a grid pattern designed for sound absorption and aesthetic appeal in commercial spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302179891","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings-3","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508143","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Terrace","momentum_sku":"09661342","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a slatted design for modern interior walls.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302212659","handle":"beam-250-9h-x-108l-alabaster-hollywood-wallcoverings-2","title":"Beam 250 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508144","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Opera","momentum_sku":"09661353","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a smooth finish ideal for modern interior design applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302245427","handle":"beam-250-9h-x-108l-navy-hollywood-wallcoverings","title":"Beam 250 9H x 108L Navy | Hollywood Wallcoverings","base_sku":"DWHD-508145","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Pinnacle","momentum_sku":"09661364","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302278195","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings-4","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508146","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Parthenon","momentum_sku":"09661375","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a slatted design for modern interior walls.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302310963","handle":"beam-250-9h-x-108l-black-hollywood-wallcoverings","title":"Beam 250 9H x 108L Black | Hollywood Wallcoverings","base_sku":"DWHD-508147","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Petronas","momentum_sku":"09661386","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek black acoustic panel with a grid pattern designed for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302343731","handle":"beam-250-9h-x-108l-alabaster-hollywood-wallcoverings-3","title":"Beam 250 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508148","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Pavilion","momentum_sku":"09661397","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, white acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption capabilities.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302376499","handle":"beam-250-9h-x-108l-harvest-tan-hollywood-wallcoverings-5","title":"Beam 250 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508149","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Senado","momentum_sku":"09661408","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured slatted design ideal for modern interior spaces, enhancing both acoustics and visual appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302409267","handle":"beam-250-9h-x-108l-alabaster-hollywood-wallcoverings-4","title":"Beam 250 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508150","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Savoye","momentum_sku":"09661419","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, textured acoustic panel designed for interior wall covering to enhance sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302442035","handle":"beam-250-9h-x-108l-forest-green-hollywood-wallcoverings","title":"Beam 250 9H x 108L Forest Green | Hollywood Wallcoverings","base_sku":"DWHD-508151","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / 9H x 108L","color_name":"Tree House","momentum_sku":"09661430","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881302474803","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508152","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Birch W1","momentum_sku":"09660671","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a natural wood finish with vertical slats, ideal for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881303621683","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-1","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508153","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Tasmanian Oak W12","momentum_sku":"09660682","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a natural wood finish designed for interior wall coverings and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304342579","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508154","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Grey Ironbark W18","momentum_sku":"09660693","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304408115","handle":"beam-250-timber-9h-x-108l-copper-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Copper | Hollywood Wallcoverings","base_sku":"DWHD-508155","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Blue Gum W19","momentum_sku":"09660704","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek copper finish designed for interior wall decor and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304440883","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-2","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508156","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Hoop Pine W2","momentum_sku":"09660715","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish ideal for enhancing sound quality in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304473651","handle":"beam-250-timber-9h-x-108l-burgundy-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508157","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Jarrah W20","momentum_sku":"09660726","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design and smooth finish suitable for interior wall decor.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304539187","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-1","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508158","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Black Walnut W21","momentum_sku":"09660737","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a slatted design for aesthetic and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304571955","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-3","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508159","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"OAK W3","momentum_sku":"09660748","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304637491","handle":"beam-250-timber-9h-x-108l-alabaster-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508161","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Whitewash Gum W31","momentum_sku":"09660770","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, uniform slat design ideal for acoustic panels or decorative wall coverings.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881304670259","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-4","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508162","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Aged Oak W32","momentum_sku":"09660781","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a natural wood finish with vertical slats and horizontal grooves for sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769367091","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-2","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508163","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Nordic Oak W33","momentum_sku":"09660792","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a slatted design for modern interior walls.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769399859","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-3","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508164","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Soft Walnut W36","momentum_sku":"09660803","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a slatted design for aesthetic and sound absorption in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769432627","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-4","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508165","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Coastal Oak W37","momentum_sku":"09660814","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769498163","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-5","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508166","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Natural Oak W38","momentum_sku":"09660825","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall coverings and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769530931","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-5","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508167","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Civic Oak W39","momentum_sku":"09660836","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural finish designed for interior wall applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882769858611","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-6","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508168","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"American Ash W4","momentum_sku":"09660847","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770153523","handle":"beam-250-timber-9h-x-108l-harvest-tan-hollywood-wallcoverings-6","title":"Beam 250 Timber 9H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508169","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Prime Oak W41","momentum_sku":"09660869","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770382899","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-7","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508170","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Boston Oak W42","momentum_sku":"09660880","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770415667","handle":"beam-250-timber-9h-x-108l-natural-wood-hollywood-wallcoverings-8","title":"Beam 250 Timber 9H x 108L Natural Wood | Hollywood Wallcoverings","base_sku":"DWHD-508171","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Eucalyptus W6","momentum_sku":"09660891","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for wall covering and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770448435","handle":"beam-250-timber-9h-x-108l-copper-hollywood-wallcoverings-1","title":"Beam 250 Timber 9H x 108L Copper | Hollywood Wallcoverings","base_sku":"DWHD-508172","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Queensland Walnut W7","momentum_sku":"09660902","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A modern acoustic panel with a sleek, linear design and a warm copper finish suitable for contemporary interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770481203","handle":"beam-250-timber-9h-x-108l-natural-maple-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Natural Maple | Hollywood Wallcoverings","base_sku":"DWHD-508173","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Austr Blackbutt","momentum_sku":"09662046","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek and modern acoustic panel with a natural wood finish ideal for contemporary interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770546739","handle":"beam-250-timber-9h-x-108l-cherrywood-hollywood-wallcoverings","title":"Beam 250 Timber 9H x 108L Cherrywood | Hollywood Wallcoverings","base_sku":"DWHD-508174","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 250 / Timber 9H x 108L","color_name":"Tasm Blackwood","momentum_sku":"09662057","width":"2.75","weight":"50.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural wood finish designed for interior wall decoration and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770612275","handle":"beehive-harvest-tan-hollywood-wallcoverings","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508175","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Natural Cork","momentum_sku":"09642763","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This cork acoustic panel features a natural, textured finish ideal for吸音和装饰。","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770677811","handle":"beehive-harvest-tan-hollywood-wallcoverings-1","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508176","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Ivory","momentum_sku":"09642774","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This cork acoustic panel features a natural, textured finish ideal for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770710579","handle":"beehive-celadon-hollywood-wallcoverings","title":"Beehive Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508177","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Emerald","momentum_sku":"09642785","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish suitable for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770743347","handle":"beehive-harvest-tan-hollywood-wallcoverings-2","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508178","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Yellow","momentum_sku":"09642796","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a natural cork finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770841651","handle":"beehive-celadon-hollywood-wallcoverings-1","title":"Beehive Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508179","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Turquoise","momentum_sku":"09642807","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish ideal for modern interior design, offering both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770874419","handle":"beehive-celadon-hollywood-wallcoverings-2","title":"Beehive Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508180","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Olive","momentum_sku":"09642818","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish ideal for sound absorption and aesthetic appeal in modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770907187","handle":"beehive-burgundy-hollywood-wallcoverings","title":"Beehive Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508181","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Red","momentum_sku":"09642829","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a felt-like finish ideal for sound absorption in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7882770939955","handle":"beehive-burgundy-hollywood-wallcoverings-1","title":"Beehive Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508182","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Bordeaux","momentum_sku":"09642840","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a soft, velvety finish ideal for enhancing sound quality in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883812864051","handle":"beehive-harvest-tan-hollywood-wallcoverings-3","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508183","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Aubergine","momentum_sku":"09642851","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a felt-like finish ideal for吸音和装饰。","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883812896819","handle":"beehive-charcoal-hollywood-wallcoverings","title":"Beehive Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508184","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Black","momentum_sku":"09642862","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and interior decoration.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883812929587","handle":"beehive-charcoal-gray-hollywood-wallcoverings","title":"Beehive Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508185","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Taupe","momentum_sku":"09642873","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish ideal for sound absorption in modern interior designs.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883812962355","handle":"beehive-charcoal-hollywood-wallcoverings-1","title":"Beehive Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508186","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Grey","momentum_sku":"09642884","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883812995123","handle":"beehive-harvest-tan-hollywood-wallcoverings-4","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508187","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Copper","momentum_sku":"09642895","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a cork-like finish suitable for interior wall coverings and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813158963","handle":"beehive-denim-blue-hollywood-wallcoverings","title":"Beehive Denim Blue | Hollywood Wallcoverings","base_sku":"DWHD-508188","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Blue","momentum_sku":"09642906","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a durable finish suitable for modern interior design applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813519411","handle":"beehive-harvest-tan-hollywood-wallcoverings-5","title":"Beehive Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508189","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Sand","momentum_sku":"09642917","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813814323","handle":"beehive-celadon-hollywood-wallcoverings-3","title":"Beehive Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508190","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Sage","momentum_sku":"09642928","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813879859","handle":"beehive-burgundy-hollywood-wallcoverings-2","title":"Beehive Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508191","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>9.6\"</td>\n</tr></table>","pattern_name":"Beehive","color_name":"Grape","momentum_sku":"09642939","width":"9.6","weight":"9.59 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a soft, felt-like finish ideal for吸音和装饰。","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813945395","handle":"bengal-solid-color-light-gray-hollywood-wallcoverings","title":"Bengal Solid Color Light Gray | Hollywood Wallcoverings","base_sku":"DWHD-508193","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Heather Gray","momentum_sku":"09575718","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814010931","handle":"bengal-solid-color-charcoal-gray-hollywood-wallcoverings-1","title":"Bengal Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508195","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Iron","momentum_sku":"09575740","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"Ribbed acoustic panel with a textured finish ideal for吸音和装饰。","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814043699","handle":"bengal-solid-color-black-hollywood-wallcoverings-1","title":"Bengal Solid Color Black | Hollywood Wallcoverings","base_sku":"DWHD-508196","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Cream","momentum_sku":"09575751","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek and modern acoustic panel with a smooth finish ideal for enhancing sound quality in contemporary interiors.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814076467","handle":"bengal-solid-color-blush-hollywood-wallcoverings","title":"Bengal Solid Color Blush | Hollywood Wallcoverings","base_sku":"DWHD-508197","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Beige","momentum_sku":"09575762","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A soft, textured acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814174771","handle":"bengal-solid-color-charcoal-hollywood-wallcoverings","title":"Bengal Solid Color Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508199","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Mushroom","momentum_sku":"09575784","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814207539","handle":"bengal-solid-color-navy-blue-hollywood-wallcoverings","title":"Bengal Solid Color Navy Blue | Hollywood Wallcoverings","base_sku":"DWHD-508200","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Indigo","momentum_sku":"09575795","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with vertical grooves for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814240307","handle":"bengal-solid-color-lime-green-hollywood-wallcoverings","title":"Bengal Solid Color Lime Green | Hollywood Wallcoverings","base_sku":"DWHD-508201","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Lime","momentum_sku":"09575806","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical black stripes for modern interior design applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884812681267","handle":"bengal-solid-color-charcoal-hollywood-wallcoverings-1","title":"Bengal Solid Color Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508203","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Black","momentum_sku":"09575828","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a vertical stripe pattern designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884812746803","handle":"bengal-solid-color-white-hollywood-wallcoverings","title":"Bengal Solid Color White | Hollywood Wallcoverings","base_sku":"DWHD-508204","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Almond","momentum_sku":"09604241","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a clean, vertical striped pattern with black lines on a white background, ideal for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884812877875","handle":"bengal-solid-color-charcoal-gray-hollywood-wallcoverings-2","title":"Bengal Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508205","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Mink","momentum_sku":"09604252","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical stripes in a modern design suitable for office or home use.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884814155827","handle":"buzzer-burgundy-hollywood-wallcoverings-1","title":"Buzzer Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508221","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Bordeaux","momentum_sku":"09644303","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a deep burgundy color with intricate geometric patterns, ideal for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884814188595","handle":"buzzer-harvest-tan-hollywood-wallcoverings-3","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508222","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Aubergine","momentum_sku":"09644314","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in commercial spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748600883","handle":"buzzer-charcoal-hollywood-wallcoverings","title":"Buzzer Charcoal | Hollywood Wallcoverings","base_sku":"DWHD-508223","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Black","momentum_sku":"09644325","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with geometric patterns for both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748863027","handle":"buzzer-harvest-tan-hollywood-wallcoverings-4","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508226","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Copper","momentum_sku":"09644358","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a geometric pattern with a matte finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748928563","handle":"buzzer-navy-blue-hollywood-wallcoverings","title":"Buzzer Navy Blue | Hollywood Wallcoverings","base_sku":"DWHD-508227","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Blue","momentum_sku":"09644369","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a deep navy blue finish designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749256243","handle":"cabana-solid-color-alabaster-hollywood-wallcoverings","title":"Cabana Solid Color Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508231","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Crisp White","momentum_sku":"09577225","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek, modern acoustic panel with a smooth finish ideal for contemporary interiors.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749321779","handle":"cabana-solid-color-charcoal-gray-hollywood-wallcoverings","title":"Cabana Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508232","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Heather Gray","momentum_sku":"09577236","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a soft, felt-like finish ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749420083","handle":"cabana-solid-color-charcoal-gray-hollywood-wallcoverings-1","title":"Cabana Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508233","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Shale","momentum_sku":"09577247","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A matte-finish acoustic panel designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749485619","handle":"cabana-solid-color-charcoal-gray-hollywood-wallcoverings-2","title":"Cabana Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508234","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Iron","momentum_sku":"09577258","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a ribbed texture designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749616691","handle":"cabana-solid-color-blush-pink-hollywood-wallcoverings","title":"Cabana Solid Color Blush Pink | Hollywood Wallcoverings","base_sku":"DWHD-508236","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Beige","momentum_sku":"09577280","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A soft, textured acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749714995","handle":"cabana-solid-color-harvest-tan-hollywood-wallcoverings","title":"Cabana Solid Color Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508237","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Camel","momentum_sku":"09577291","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a soft finish ideal for modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749780531","handle":"cabana-solid-color-charcoal-gray-hollywood-wallcoverings-3","title":"Cabana Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508238","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Mushroom","momentum_sku":"09577302","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte-finished acoustic panel ideal for sound absorption in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749846067","handle":"cabana-solid-color-navy-blue-hollywood-wallcoverings","title":"Cabana Solid Color Navy Blue | Hollywood Wallcoverings","base_sku":"DWHD-508239","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Indigo","momentum_sku":"09577313","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a smooth, felt-like surface ideal for吸音降噪。","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749977139","handle":"cabana-solid-color-lime-green-hollywood-wallcoverings","title":"Cabana Solid Color Lime Green | Hollywood Wallcoverings","base_sku":"DWHD-508240","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Lime","momentum_sku":"09577324","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte finish acoustic panel designed for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885750042675","handle":"cabana-solid-color-burgundy-hollywood-wallcoverings","title":"Cabana Solid Color Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508241","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"True Red","momentum_sku":"09577335","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte-finish acoustic panel designed for sound absorption and aesthetic appeal in interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885750173747","handle":"cabana-solid-color-black-hollywood-wallcoverings","title":"Cabana Solid Color Black | Hollywood Wallcoverings","base_sku":"DWHD-508242","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Black","momentum_sku":"09577346","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with vertical lines for aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880576041011","handle":"beam-100-timber-3-5h-x-108l-harvest-tan-hollywood-wallcoverings-13","title":"Beam 100 Timber 3.5H x 108L Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508123","product_type":"Acoustic Panel","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>2.75\"</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>3.5H x 108L</td>\n</tr>\n</table>","pattern_name":"Beam 100 / Timber 3.5H x 108L","color_name":"Prime Oak W41","momentum_sku":"09660616","width":"2.75","weight":"55.00 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for interior wall applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813978163","handle":"bengal-solid-color-charcoal-gray-hollywood-wallcoverings","title":"Bengal Solid Color Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508194","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Shale","momentum_sku":"09575729","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"Ribbed acoustic panel with a matte finish for sound absorption and modern decor.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884812910643","handle":"bengal-solid-color-teal-hollywood-wallcoverings","title":"Bengal Solid Color Teal | Hollywood Wallcoverings","base_sku":"DWHD-508206","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Teal","momentum_sku":"09604263","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884812976179","handle":"bengal-solid-color-harvest-tan-hollywood-wallcoverings-1","title":"Bengal Solid Color Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508207","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Terracotta","momentum_sku":"09604274","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a subtle striped pattern for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883814371379","handle":"bengal-solid-color-burgundy-hollywood-wallcoverings","title":"Bengal Solid Color Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508202","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"True Red","momentum_sku":"09575817","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with vertical stripes in burgundy and black, suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813107251","handle":"bengal-zuri-harvest-tan-hollywood-wallcoverings","title":"Bengal Zuri Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508209","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Ash","momentum_sku":"09568568","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical black stripes enhancing its visual appeal and sound absorption properties.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813041715","handle":"bengal-zuri-charcoal-gray-hollywood-wallcoverings","title":"Bengal Zuri Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508208","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Bleached Oak","momentum_sku":"09568546","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical stripes in Charcoal Gray and a neutral base, ideal for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813336627","handle":"bengal-zuri-charcoal-gray-hollywood-wallcoverings-2","title":"Bengal Zuri Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508212","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Ebony","momentum_sku":"09568601","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a ribbed finish designed for sound absorption and aesthetic appeal in commercial spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813434931","handle":"bengal-zuri-charcoal-gray-hollywood-wallcoverings-3","title":"Bengal Zuri Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508213","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Mahogany","momentum_sku":"09568612","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a ribbed design for sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813172787","handle":"bengal-zuri-harvest-tan-hollywood-wallcoverings-1","title":"Bengal Zuri Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508210","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Walnut","momentum_sku":"09568579","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813238323","handle":"bengal-zuri-charcoal-gray-hollywood-wallcoverings-1","title":"Bengal Zuri Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508211","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Zuri","color_name":"Weathered Oak","momentum_sku":"09568590","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with vertical stripes, ideal for modern interior design and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813795379","handle":"buzzer-celadon-hollywood-wallcoverings","title":"Buzzer Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508216","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Emerald","momentum_sku":"09644248","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with geometric patterns for both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817245032499","handle":"goat-rock-sky-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Sky Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508063","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Sky is a durable vinyl wallcovering featuring a subtle geometric pattern. Its textured surface and neutral color palette make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Seto","color_name":"Sky","momentum_sku":"09199650","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Sky is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244966963","handle":"goat-rock-smoke-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Smoke Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508064","product_type":"Commercial Wallcovering","body_html":"<p>This Goat Rock Smoke wallcovering offers a subtle geometric texture with a neutral color palette, perfect for modern commercial spaces. Its durable vinyl construction ensures longevity and easy maintenance in high-traffic areas.</p>","pattern_name":"Seto","color_name":"Smoke","momentum_sku":"09199628","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Smoke is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244901427","handle":"goat-rock-soy-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Soy Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508065","product_type":"Commercial Wallcovering","body_html":"<p>This textured wallcovering features a subtle geometric pattern in neutral tones. Its understated design makes it a versatile choice for a variety of commercial and architectural spaces.</p>","pattern_name":"Seto","color_name":"Soy","momentum_sku":"09199606","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Soy is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749125171","handle":"buzzer-plum-hollywood-wallcoverings","title":"Buzzer Plum | Hollywood Wallcoverings","base_sku":"DWHD-508230","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Grape","momentum_sku":"09644402","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a deep plum color with intricate geometric patterns for both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244934195","handle":"goat-rock-zinc-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Zinc Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508066","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Zinc is a sophisticated geometric wallcovering with a subtle texture. Its neutral color palette and minimalist design make it ideal for commercial and architectural spaces seeking a contemporary aesthetic.</p>","pattern_name":"Seto","color_name":"Zinc","momentum_sku":"09199617","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Zinc is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7883813912627","handle":"bengal-solid-color-black-hollywood-wallcoverings","title":"Bengal Solid Color Black | Hollywood Wallcoverings","base_sku":"DWHD-508192","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Crisp White","momentum_sku":"09575707","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A sleek and modern acoustic panel with a smooth finish ideal for interior design applications requiring both sound absorption and aesthetic appeal.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748797491","handle":"buzzer-charcoal-gray-hollywood-wallcoverings-1","title":"Buzzer Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508225","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Grey","momentum_sku":"09644347","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a geometric pattern designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813500467","handle":"buzzer-harvest-tan-hollywood-wallcoverings","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508214","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Ivory","momentum_sku":"09644226","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a speckled finish designed for interior wall applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813631539","handle":"buzzer-harvest-tan-hollywood-wallcoverings-1","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508215","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Natural Cork","momentum_sku":"09644237","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This cork wallcovering features a geometric pattern with a matte finish suitable for acoustic panels and interior decor.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813991987","handle":"buzzer-celadon-hollywood-wallcoverings-2","title":"Buzzer Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508219","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Olive","momentum_sku":"09644281","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a geometric pattern with a matte finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884814057523","handle":"buzzer-burgundy-hollywood-wallcoverings","title":"Buzzer Burgundy | Hollywood Wallcoverings","base_sku":"DWHD-508220","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Red","momentum_sku":"09644292","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a deep burgundy color with intricate geometric patterns that enhance both aesthetic appeal and sound absorption properties.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885749059635","handle":"buzzer-celadon-hollywood-wallcoverings-3","title":"Buzzer Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508229","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Sage","momentum_sku":"09644391","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This acoustic panel features a textured finish with embossed geometric patterns for both aesthetic appeal and sound absorption.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748994099","handle":"buzzer-harvest-tan-hollywood-wallcoverings-5","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508228","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Sand","momentum_sku":"09644380","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a geometric pattern with a soft, matte finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7885748666419","handle":"buzzer-charcoal-gray-hollywood-wallcoverings","title":"Buzzer Charcoal Gray | Hollywood Wallcoverings","base_sku":"DWHD-508224","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Taupe","momentum_sku":"09644336","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"This textured acoustic panel features a modern geometric pattern with a matte finish suitable for interior design applications.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813926451","handle":"buzzer-celadon-hollywood-wallcoverings-1","title":"Buzzer Celadon | Hollywood Wallcoverings","base_sku":"DWHD-508218","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Turquoise","momentum_sku":"09644270","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in modern interior spaces.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7884813860915","handle":"buzzer-harvest-tan-hollywood-wallcoverings-2","title":"Buzzer Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508217","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>19.8\"</td>\n</tr></table>","pattern_name":"Buzzer","color_name":"Yellow","momentum_sku":"09644259","width":"19.8","weight":"11.02 lb","repeat_info":"","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"The textured acoustic panel features a geometric pattern with a matte finish suitable for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244737587","handle":"hearst-castle-manta-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Manta Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508047","product_type":"Commercial Wallcovering","body_html":"<p>This vinyl wallcovering features a subtle geometric pattern with a textured effect, perfect for modern commercial spaces. Its durable construction and neutral color palette make it ideal for high-traffic areas.</p>","pattern_name":"Layout","color_name":"Manta","momentum_sku":"09199430","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Manta is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244672051","handle":"hearst-castle-neptune-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Neptune Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508048","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a geometric pattern in varying shades of gray-blue. Its textured surface adds depth and visual interest, making it suitable for high-traffic commercial spaces.</p>","pattern_name":"Layout","color_name":"Neptune","momentum_sku":"09199408","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Neptune is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244704819","handle":"hearst-castle-pewter-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Pewter Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508049","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a geometric pattern with a subtle texture, perfect for high-traffic commercial spaces. The neutral gray colorway offers a sophisticated and modern aesthetic.</p>","pattern_name":"Layout","color_name":"Pewter","momentum_sku":"09199419","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Pewter is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244475443","handle":"hearst-castle-rosegold-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Rosegold Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508050","product_type":"Commercial Wallcovering","body_html":"<p>The Hearst Castle Rosegold wallcovering features a subtle geometric pattern with a textured background, creating a sophisticated and modern look. Its durable vinyl construction makes it suitable for high-traffic commercial spaces.</p>","pattern_name":"Layout","color_name":"Rosegold","momentum_sku":"09199342","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Rosegold is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244639283","handle":"hearst-castle-sable-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Sable Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508051","product_type":"Commercial Wallcovering","body_html":"<p>Hearst Castle Sable is a sophisticated wallcovering featuring a geometric pattern with a textured effect. Its neutral brown tones and modern design make it suitable for various commercial and architectural spaces.</p>","pattern_name":"Layout","color_name":"Sable","momentum_sku":"09199397","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Sable is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244508211","handle":"hearst-castle-sisal-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Sisal Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508052","product_type":"Commercial Wallcovering","body_html":"<p>This textured geometric wallcovering offers a subtle yet sophisticated design element for any space. Its neutral color palette and clean lines make it a versatile choice for commercial and residential interiors alike.</p>","pattern_name":"Layout","color_name":"Sisal","momentum_sku":"09199353","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Sisal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244573747","handle":"hearst-castle-sterling-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Sterling Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508053","product_type":"Commercial Wallcovering","body_html":"<p>This geometric wallcovering features a subtle texture and a modern design. The neutral color palette makes it suitable for a variety of commercial and architectural applications.</p>","pattern_name":"Layout","color_name":"Sterling","momentum_sku":"09199375","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Sterling is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244409907","handle":"hearst-castle-vapor-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Vapor Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508054","product_type":"Commercial Wallcovering","body_html":"<p>The Hearst Castle Vapor wallcovering features a subtle geometric pattern with vertical stripes and a textured effect. Its neutral beige color makes it a versatile choice for commercial spaces seeking a modern and minimalist aesthetic.</p>","pattern_name":"Layout","color_name":"Vapor","momentum_sku":"09199320","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Vapor is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7881301229619","handle":"huntington-beach-convex-hollywood-wallcoverings","title":"Huntington Beach Convex | Hollywood Wallcoverings","base_sku":"DWHD-500312","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Annex WC","color_name":"Convex","momentum_sku":"09222189","width":"54","weight":"20.0 oz per lineal yard (452 g/sq m)","repeat_info":"18\" V, 13-1/4\" H","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code & CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Huntington Beach in Convex is a textured wallcovering by Hollywood Wallcoverings featuring rich Driftwood tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7880018591795","handle":"huntington-beach-frieze-hollywood-wallcoverings","title":"Huntington Beach Frieze | Hollywood Wallcoverings","base_sku":"DWHD-500313","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Annex WC","color_name":"Frieze","momentum_sku":"09222200","width":"54","weight":"20.0 oz per lineal yard (452 g/sq m)","repeat_info":"18\" V, 13-1/4\" H","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code & CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Huntington Beach in Frieze is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7881301262387","handle":"huntington-beach-prism-hollywood-wallcoverings","title":"Huntington Beach Prism | Hollywood Wallcoverings","base_sku":"DWHD-500317","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Annex WC","color_name":"Prism","momentum_sku":"09222244","width":"54","weight":"20.0 oz per lineal yard (452 g/sq m)","repeat_info":"18\" V, 13-1/4\" H","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code & CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Huntington Beach in Prism is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7880019017779","handle":"huntington-beach-volute-hollywood-wallcoverings","title":"Huntington Beach Volute | Hollywood Wallcoverings","base_sku":"DWHD-500320","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Annex WC","color_name":"Volute","momentum_sku":"09222277","width":"54","weight":"20.0 oz per lineal yard (452 g/sq m)","repeat_info":"18\" V, 13-1/4\" H","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code & CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Huntington Beach in Volute is a textured wallcovering by Hollywood Wallcoverings featuring rich Slate Blue tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816413610035","handle":"long-beach-sea-fan-commercial-wallcovering-hollywood-wallcoverings","title":"Long Beach - Sea Fan Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500335","product_type":"Commercial Wallcovering","body_html":"<p>The Long Beach Sea Fan wallcovering features a subtle geometric pattern with a textured effect. Its neutral color palette and non-woven construction make it suitable for a variety of commercial and residential applications.</p>","pattern_name":"Arashi Weave WS","color_name":"Sea Fan","momentum_sku":"09565092","width":"54","weight":"10.72 oz","repeat_info":"25-1/4\" V","content":"60% glass fiber, 40% bio-based coating","finish":null,"fire_rating":"ASTM E84 Class A, CAN/ULC S102, Passes IMO","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Long Beach in Sea Fan is a textured wallcovering by Hollywood Wallcoverings featuring rich Driftwood tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap\nBleach Cleanable: 10:1 water to bleach solution","application":"Non-reverse hang, align at arrows","full_roll_size":30,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816413511731","handle":"portuguese-bend-cotton-commercial-wallcovering-hollywood-wallcoverings","title":"Portuguese Bend - Cotton Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500374","product_type":"Commercial Wallcovering","body_html":"<p>This geometric wallcovering offers a subtle, modern design. The neutral color palette and clean lines make it suitable for a variety of commercial and residential spaces.</p>","pattern_name":"Ark","color_name":"Cotton","momentum_sku":"09598818","width":"54","weight":"20 oz.","repeat_info":"25-1/4\" V","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Portuguese Bend in Cotton is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880574828595","handle":"port-hueneme-makassar-hollywood-wallcoverings","title":"Port Hueneme Makassar | Hollywood Wallcoverings","base_sku":"DWHD-500501","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% Vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Cotton Scrim</td>\n</tr>\n</table>","pattern_name":"Avant","color_name":"Makassar","momentum_sku":"09223608","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% Vinyl","finish":"Cotton Scrim","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 10, smoke developed 45, NFPA 286 Corner Burn, NFPA 101 Life Cycle Safety Code","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Port Hueneme in Makassar is a textured wallcovering by Hollywood Wallcoverings featuring rich Cocoa Bean tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California Section 01350, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880575320115","handle":"venice-basalt-hollywood-wallcoverings","title":"Venice Basalt | Hollywood Wallcoverings","base_sku":"DWHD-500558","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Baccarat","color_name":"Basalt","momentum_sku":"09224411","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Venice in Basalt is a textured wallcovering by Hollywood Wallcoverings featuring rich Pewter tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives., Can contribute to LEED® MR 5.1 point for regional materials., Manufactured using comprehensive raw material recycling., Made with highly cleanable HAPs Free solvent based inks., Printing inks are 100% recycled., Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7816413413427","handle":"silver-strand-tartan-commercial-wallcovering-hollywood-wallcoverings","title":"Silver Strand - Tartan Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500044","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a classic tartan pattern in neutral gray and beige tones. It is suitable for high-traffic commercial spaces seeking a timeless and sophisticated aesthetic.</p>","pattern_name":"Aberdeen WC","color_name":"Tartan","momentum_sku":"09307384","width":"54","weight":"0.78 oz","repeat_info":"6-3/4\" V","content":"60% wood pulp, 40% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 35 (test procedure is comparable to UL 723), European Standard EN 13501 Fire Test: reaction to fire classification B-s1, d0","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Silver Strand in Tartan is a textured wallcovering by Hollywood Wallcoverings featuring rich Driftwood tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, 6 3/4\" (17 cm) vertical repeat, straight across match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified, Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7879455572019","handle":"coronado-slate-hollywood-wallcoverings","title":"Coronado Slate | Hollywood Wallcoverings","base_sku":"DWHD-500065","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Absolute","color_name":"Slate","momentum_sku":"09294184","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test\nPasses Class \"A\" NFPA 101 Life Safety Code\nPasses NFPA 286 Corner Burn Test\nTested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Coronado in Slate is a textured wallcovering by Hollywood Wallcoverings featuring rich Slate tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria, under Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7816351776819","handle":"del-mar-natural-commercial-wallcovering-hollywood","title":"Del Mar - Natural Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500151","product_type":"Commercial Wallcovering","body_html":"<p>Del Mar in Natural is a textured wallcovering by Hollywood Wallcoverings featuring rich Driftwood tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Alegre","color_name":"Natural","momentum_sku":"09513986","width":"54","weight":"20 oz.","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Del Mar in Natural is a textured wallcovering by Hollywood Wallcoverings featuring rich Driftwood tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, NSF/ANSI 342 certified, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816416690227","handle":"cardiff-ballpoint-commercial-wallcovering-hollywood-wallcoverings","title":"Cardiff - Ballpoint Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500177","product_type":"Commercial Wallcovering","body_html":"<p>Cardiff Ballpoint is a modern geometric wallcovering featuring a subtle circle pattern. The light color palette and textured background make it ideal for creating a sophisticated and understated space.</p>","pattern_name":"All Around","color_name":"Ballpoint","momentum_sku":"09605957","width":"54","weight":"20 oz.","repeat_info":"26\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Cardiff in Ballpoint is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7879455965235","handle":"encinitas-stone-wash-hollywood-wallcoverings","title":"Encinitas Stone Wash | Hollywood Wallcoverings","base_sku":"DWHD-500195","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg / Non-woven (Mylar)</td>\n</tr>\n</table>","pattern_name":"Alley Cat","color_name":"Stone Wash","momentum_sku":"09368555","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg / Non-woven (Mylar)","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Encinitas in Stone Wash is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Non-reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives, Support USGBC LEED v4 Criteria, Materials and Resources; Building Product Disclosure (includes Recycled Content; Construction Waste Management), Indoor Environmental Quality; Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7816416624691","handle":"laguna-beach-ecru-commercial-wallcovering-hollywood-wallcoverings","title":"Laguna Beach - Ecru Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500262","product_type":"Commercial Wallcovering","body_html":"<p>Laguna Beach Ecru is a sophisticated wallcovering featuring an abstract geometric pattern in neutral tones. Its textured surface and subtle color palette make it ideal for creating a calming and refined atmosphere in commercial and residential spaces.</p>","pattern_name":"Amari","color_name":"Ecru","momentum_sku":"09548152","width":"27","weight":"0.55 oz","repeat_info":"32\" V","content":"75% water-based plaster, 15% paper, 10% metallized polyester","finish":"Non-woven","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Laguna Beach in Ecru is a textured wallcovering by Hollywood Wallcoverings featuring rich Oatmeal tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Request detailed instructions","application":"*Non-reverse hang, straight-across match;\n**Non-reverse hang, random match","full_roll_size":15,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816416657459","handle":"laguna-beach-madagascar-commercial-wallcovering-hollywood-wallcoverings","title":"Laguna Beach - Madagascar Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500264","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features an abstract geometric pattern in dark, sophisticated tones. The textured surface adds depth and visual interest, making it suitable for high-traffic commercial spaces.</p>","pattern_name":"Amari","color_name":"Madagascar","momentum_sku":"09548196","width":"27","weight":"0.55 oz","repeat_info":"32\" V","content":"75% water-based plaster, 15% paper, 10% metallized polyester","finish":"Non-woven","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Laguna Beach in Madagascar is a textured wallcovering by Hollywood Wallcoverings featuring rich Charcoal Blue tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Request detailed instructions","application":"*Non-reverse hang, straight-across match;\n**Non-reverse hang, random match","full_roll_size":15,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879454949427","handle":"venice-yuma-hollywood-wallcoverings","title":"Venice Yuma | Hollywood Wallcoverings","base_sku":"DWHD-500573","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Baccarat","color_name":"Yuma","momentum_sku":"09224587","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Venice in Yuma is a textured wallcovering by Hollywood Wallcoverings featuring rich Pewter tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives., Can contribute to LEED® MR 5.1 point for regional materials., Manufactured using comprehensive raw material recycling., Made with highly cleanable HAPs Free solvent based inks., Printing inks are 100% recycled., Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7814879805491","handle":"signal-hill-minimalist-hollywood-wallcoverings","title":"Signal Hill Minimalist | Hollywood Wallcoverings","base_sku":"DWHD-500696","product_type":"Wallcovering","body_html":"<p>Signal Hill in Minimalist is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Beacon Hill","color_name":"Minimalist","momentum_sku":"09226072","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Signal Hill in Minimalist is a textured wallcovering by Hollywood Wallcoverings featuring rich Alabaster tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Materials and Resources; Building Product Disclosure (includes Recycled Content; Construction Waste Management), Indoor Environmental Quality; Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7883814109235","handle":"bengal-solid-color-harvest-tan-hollywood-wallcoverings","title":"Bengal Solid Color Harvest Tan | Hollywood Wallcoverings","base_sku":"DWHD-508198","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Bengal Solid Color","color_name":"Camel","momentum_sku":"09575773","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A textured acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879455014963","handle":"beacons-beach-rocker-hollywood-wallcoverings","title":"Beacon's Beach Rocker | Hollywood Wallcoverings","base_sku":"DWHD-500861","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% Vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Cotton Scrim</td>\n</tr>\n</table>","pattern_name":"Bentley","color_name":"Rocker","momentum_sku":"09227722","width":"54","weight":"25 oz/ly (775 g/lm)","repeat_info":"","content":"100% Vinyl","finish":"Cotton Scrim","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 5, smoke developed 40, NFPA 286 Corner Burn, NFPA 101 Life Cycle Safety Code","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Beacon's Beach in Rocker is a textured wallcovering by Hollywood Wallcoverings featuring rich Pewter tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Made with highly cleanable water-based inks.","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials., Made with highly cleanable water-based inks."}, {"shopify_id":"gid://shopify/Product/7816365867059","handle":"camp-pendleton-maiden-lane-commercial-wallcovering-hollywood","title":"Camp Pendleton - Maiden Lane Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-500946","product_type":"Commercial Wallcovering","body_html":"<p>Camp Pendleton Maiden Lane is a sophisticated vinyl wallcovering with an abstract design. The textured surface and metallic accents add a touch of luxury to any commercial or residential space.</p>","pattern_name":"Bowery","color_name":"Maiden Lane","momentum_sku":"09311201","width":"27","weight":"3.00 oz","repeat_info":"","content":"Polyester/metal film (with a water-based plaster surface effect)","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 15, smoke developed 15 (test procedure is comparable to UL 723)","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Camp Pendleton in Maiden Lane is a textured wallcovering by Hollywood Wallcoverings featuring rich Champagne tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Wash smoothing brush and seam roller often, as an accumulation of paste on tools may mark or scratch the material. Completely clean adhesive off the surface after each strip is hung. Wash seams with a damp sponge and clean, warm water. Change rinse water often. Any adhesive left on the surface can cause flaking. Dry carefully with a soft cloth or chamois.","application":"Wallcovering shall be installed by experienced workers and contractors in strict accordance with these instructions. For best results, the drywall surface should be finished to a level 4 prior to installation. Material must be dry table trimmed. Roll and strips should be hung in sequence, reverse hanging each strip as it comes off the bolt. DO NOT DOUBLE CUT. Apply material to wall using a soft brush, plastic smoother, or drywall blade wrapped with a soft cloth to lay out the material. When smoothing, work from the center out to the edges. To avoid trapping air bubbles, use an oval seam roller to butt seams.","full_roll_size":15,"minimum_order":null,"sustainability":"Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880575352883","handle":"doheny-state-sparkling-hollywood-wallcoverings","title":"Doheny State Sparkling | Hollywood Wallcoverings","base_sku":"DWHD-500999","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>96% polyester, 4% metalized polyester yarn</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Acrylic/latex</td>\n</tr>\n</table>","pattern_name":"Brilliance","color_name":"Sparkling","momentum_sku":"09295702","width":"54","weight":"1.10 oz","repeat_info":"","content":"96% polyester, 4% metalized polyester yarn","finish":"Acrylic/latex","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 25, smoke developed 25 (test procedure is comparable to ANSI/UL 723, NFPA 255 and UBC 8-1)\nUBC 42-2 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Doheny State in Sparkling is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Stain repellent","application":"Non-reverse hang, random match","full_roll_size":50,"minimum_order":null,"sustainability":"Recyclable, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880575615027","handle":"emerald-bay-mojito-hollywood-wallcoverings","title":"Emerald Bay Mojito | Hollywood Wallcoverings","base_sku":"DWHD-501068","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>Vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Bungalow WC","color_name":"Mojito","momentum_sku":"09229801","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":"Vinyl","finish":"Non-woven","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Emerald Bay in Mojito is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California Section 01350 Indoor Air Quality Standard, LEED® EQ 4.1, LEED® MR 5.1, Recycling, non-HAP inks, Printing inks are 100% recycled"}, {"shopify_id":"gid://shopify/Product/7885749551155","handle":"cabana-solid-color-alabaster-hollywood-wallcoverings-1","title":"Cabana Solid Color Alabaster | Hollywood Wallcoverings","base_sku":"DWHD-508235","product_type":"Acoustic Panel","body_html":"<table><tr>\n<td>Width</td>\n<td>24\"</td>\n</tr></table>","pattern_name":"Cabana Solid Color","color_name":"Cream","momentum_sku":"09577269","width":"24","weight":"20.00 lb","repeat_info":"24\" V, 48\" H","content":null,"finish":null,"fire_rating":null,"has_flame_cert":true,"uom":"BOX","category":"Acoustic","description":"A smooth, matte finish acoustic panel with vertical black stripes for modern interior design.","cleaning":null,"application":null,"full_roll_size":1,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880575221811","handle":"heisler-park-paola-hollywood-wallcoverings","title":"Heisler Park Paola | Hollywood Wallcoverings","base_sku":"DWHD-501128","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>52\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Calabria Silhouette","color_name":"Paola","momentum_sku":"09230505","width":"52","weight":"20 oz/ly (620 g/lm)","repeat_info":"6\" V, 5-1/4\" H","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 45 (test procedure is comparable to NFPA 255 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 45\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Heisler Park in Paola is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, straight across match (look for the arrows in the selvage for alignment)","full_roll_size":30,"minimum_order":null,"sustainability":"RECYCLED CONTENT 10% pre-consumer recycled content by weight, LOW VOC California Section 01350, May be recyclable through reclamation, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), HAPs free solvent-based inks"}, {"shopify_id":"gid://shopify/Product/7816413085747","handle":"bixby-knolls-chianti-commercial-wallcovering-hollywood-wallcoverings","title":"Bixby Knolls - Chianti Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-501394","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a subtle abstract pattern with a textured finish. The rich maroon color adds warmth and sophistication to any commercial space.</p>","pattern_name":"Celerity","color_name":"Chianti","momentum_sku":"09313940","width":"27.5","weight":"0.73 oz","repeat_info":"25-1/4\" V","content":null,"finish":"Non-woven","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 15, smoke developed 10 (test procedure is comparable to NFPA 255 and UL 723)","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Bixby Knolls in Chianti is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Paste the wall","full_roll_size":11,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879455309875","handle":"rose-park-coconut-sugar-hollywood-wallcoverings","title":"Rose Park Coconut Sugar | Hollywood Wallcoverings","base_sku":"DWHD-501419","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Chai Silk","color_name":"Coconut Sugar","momentum_sku":"09232936","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Rose Park in Coconut Sugar is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible hang with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks., Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7816365047859","handle":"moonstone-beach-zurich-snow-commercial-wallcovering-hollywood","title":"Moonstone Beach - Zurich Snow Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-501512","product_type":"Commercial Wallcovering","body_html":"<p>This white textured wallcovering offers a subtle, clean aesthetic suitable for a variety of commercial and residential spaces. Its durable construction and neutral color make it a versatile choice for modern interiors.</p>","pattern_name":"City Linen","color_name":"Zurich Snow","momentum_sku":"09234762","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Moonstone Beach in Zurich Snow is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria, under Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7816413315123","handle":"los-osos-dazzling-pearl-commercial-wallcovering-hollywood-wallcoverings","title":"Los Osos - Dazzling Pearl Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-501529","product_type":"Commercial Wallcovering","body_html":"<p>Los Osos Dazzling Pearl is a bold figurative wallcovering that makes a statement. This vinyl wallcovering is perfect for adding a touch of glamour to any commercial space.</p>","pattern_name":"Close Up","color_name":"Dazzling Pearl","momentum_sku":"09611325","width":"54","weight":"20 oz.","repeat_info":"4-1/8\" V, 6-3/8\" H","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Los Osos in Dazzling Pearl is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Close Up, Kimono Mosaic\nNon-reverse hang, straight-across match\nKimono Untamed, Fleur\nNon-reverse hang, straight match panels in sequence","full_roll_size":15,"minimum_order":null,"sustainability":"Phthalate free, Prop 65 compliant, EPD/HPD, Water-based inks, GREENGUARD certified, NSF/ANSI 342 certified, Low-VOC CA Section 01350"}, {"shopify_id":"gid://shopify/Product/7880018821171","handle":"campus-point-koa-hollywood-wallcoverings","title":"Campus Point Koa | Hollywood Wallcoverings","base_sku":"DWHD-501985","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>54\"</td>\n</tr></table>","pattern_name":"Dupioni","color_name":"Koa","momentum_sku":"09200244","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Crocking, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Campus Point in Koa is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816365932595","handle":"solimar-beach-obsidian-jewel-commercial-wallcovering-hollywood","title":"Solimar Beach - Obsidian Jewel Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-501779","product_type":"Commercial Wallcovering","body_html":"<p>This luxurious wallcovering features a geometric, Art Deco-inspired pattern with metallic accents and jewel-like embellishments. The textured background adds depth and dimension, making it a perfect statement piece for high-end commercial or hospitality spaces.</p>","pattern_name":"Deco Dreams","color_name":"Obsidian Jewel","momentum_sku":"09610951","width":"54","weight":"20 oz.","repeat_info":"7-1/2\" V, 9\" H","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Solimar Beach in Obsidian Jewel is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":15,"minimum_order":null,"sustainability":"Phthalate free, Prop 65 compliant, EPD/HPD, Water-based inks, GREENGUARD certified, NSF/ANSI 342 certified, Low-VOC CA Section 01350"}, {"shopify_id":"gid://shopify/Product/7880018788403","handle":"campus-point-quarry-hollywood-wallcoverings","title":"Campus Point Quarry | Hollywood Wallcoverings","base_sku":"DWHD-501993","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>54\"</td>\n</tr></table>","pattern_name":"Dupioni","color_name":"Quarry","momentum_sku":"09200288","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Crocking, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Campus Point in Quarry is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816365277235","handle":"santa-ynez-dark-slate-commercial-wallcovering-hollywood","title":"Santa Ynez - Dark Slate Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502048","product_type":"Commercial Wallcovering","body_html":"<p>Santa Ynez Dark Slate is a durable vinyl wallcovering featuring a geometric pattern with a textured finish. This wallcovering is ideal for high-traffic commercial spaces seeking a modern aesthetic.</p>","pattern_name":"Edge","color_name":"Dark Slate","momentum_sku":"09460933","width":"54","weight":"Type II. 20 oz.","repeat_info":"","content":null,"finish":"Fabric Type: Non-woven","fire_rating":"Passes ASTM E84 – Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Santa Ynez in Dark Slate is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Wallcoverings should only be cleaned with mild ingredients such as soap, detergent and water.","application":"Random Repeat • Reversible Match","full_roll_size":30,"minimum_order":null,"sustainability":"Indoor Air Quality – Passes California CDPH Standard method (Section 01350), Production - Printed using water-based inks, LEED - Can contribute towards LEED points"}, {"shopify_id":"gid://shopify/Product/7816416428083","handle":"hammonds-beach-buttercream-commercial-wallcovering-hollywood-wallcoverings","title":"Hammond's Beach - Buttercream Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508036","product_type":"Commercial Wallcovering","body_html":"<p>This geometric vinyl wallcovering features a subtle, contemporary design. The neutral color palette and textured finish make it ideal for commercial and architectural applications.</p>","pattern_name":"Floorplan","color_name":"Buttercream","momentum_sku":"09199903","width":"54","weight":"18.08 oz","repeat_info":"18\" V, 18\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hammond's Beach in Buttercream is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7815309426739","handle":"el-refugio-silverscreen-hollywood-wallcoverings","title":"El Refugio Silverscreen | Hollywood Wallcoverings","base_sku":"DWHD-502297","product_type":"Wallcovering","body_html":"<p>El Refugio in Silverscreen is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Entourage WC","color_name":"Silverscreen","momentum_sku":"09241274","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E -84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"El Refugio in Silverscreen is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7815312539699","handle":"dos-pueblos-mathematician-hollywood-wallcoverings","title":"Dos Pueblos Mathematician | Hollywood Wallcoverings","base_sku":"DWHD-502334","product_type":"Fabric","body_html":"<p>Dos Pueblos in Mathematician is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Euclidean Linen","color_name":"Mathematician","momentum_sku":"09297748","width":"54","weight":"0.81 oz","repeat_info":"6-1/4\" V, 13-3/8\" H","content":"100% linen","finish":"Paper (70% wood pulp, 30% polyester)","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 55 (test procedure is comparable to NFPA 255 and UL 723)\nEuropean Standard EN 13501 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Dos Pueblos in Mathematician is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll","full_roll_size":55,"minimum_order":null,"sustainability":"RECYCLED CONTENT, FSC certified, RAPIDLY RENEWABLE MATERIALS, LOW VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7816365408307","handle":"fernald-point-mushroom-commercial-wallcovering-hollywood","title":"Fernald Point - Mushroom Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502484","product_type":"Commercial Wallcovering","body_html":"<p>This textured wallcovering features a subtle vertical pattern in neutral tones. Its organic feel and warm color palette make it suitable for both commercial and residential spaces.</p>","pattern_name":"Flutter","color_name":"Mushroom","momentum_sku":"09242792","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":"10% recycled content (varied blend of pre-consumer and remanufactured material)","finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Fernald Point in Mushroom is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements, Complies with USGBC LEED v4 Criteria, Low VOC"}, {"shopify_id":"gid://shopify/Product/7881301327923","handle":"fernald-point-putty-hollywood-wallcoverings","title":"Fernald Point Putty | Hollywood Wallcoverings","base_sku":"DWHD-502487","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>10% recycled content (varied blend of pre-consumer and remanufactured material)</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Flutter","color_name":"Putty","momentum_sku":"09242825","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":"10% recycled content (varied blend of pre-consumer and remanufactured material)","finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Fernald Point in Putty is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements, Complies with USGBC LEED v4 Criteria, Low VOC"}, {"shopify_id":"gid://shopify/Product/7816413020211","handle":"point-buchon-moonspun-commercial-wallcovering-hollywood-wallcoverings","title":"Point Buchon - Moonspun Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502509","product_type":"Commercial Wallcovering","body_html":"<p>Point Buchon Moonspun is a modern, abstract wallcovering suitable for a variety of interior spaces. The textured, non-woven material adds depth and visual interest to any room.</p>","pattern_name":"Form","color_name":"Moonspun","momentum_sku":"09632874","width":"52","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Point Buchon in Moonspun is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants","application":null,"full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, 10% Recycled content, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65"}, {"shopify_id":"gid://shopify/Product/7816364851251","handle":"baywood-park-bamboo-commercial-wallcovering-hollywood","title":"Baywood Park - Bamboo Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502514","product_type":"Commercial Wallcovering","body_html":"<p>Baywood Park Bamboo is a sophisticated non-woven wallcovering with a subtle textured pattern. Its neutral color palette and durable construction make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Form Fiber","color_name":"Bamboo","momentum_sku":"09633545","width":"54","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Baywood Park in Bamboo is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection","application":"Reverse Random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled content, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7816413052979","handle":"hazard-canyon-bamboo-commercial-wallcovering-hollywood-wallcoverings","title":"Hazard Canyon - Bamboo Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502530","product_type":"Commercial Wallcovering","body_html":"<p>This wallcovering features an abstract geometric pattern with rounded shapes, creating a modern and organic aesthetic. The textured background adds depth and visual interest, making it suitable for a variety of commercial and residential spaces.</p>","pattern_name":"Form Fragments","color_name":"Bamboo","momentum_sku":"09633072","width":"52","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"18\" V, 52\" H","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hazard Canyon in Bamboo is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection","application":null,"full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, 10% Recycled content, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65"}, {"shopify_id":"gid://shopify/Product/7816413446195","handle":"atascadero-diamond-commercial-wallcovering-hollywood-wallcoverings","title":"Atascadero - Diamond Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502581","product_type":"Commercial Wallcovering","body_html":"<p>Atascadero Diamond is a modern geometric wallcovering with a subtle textured finish. Its neutral color palette and durable vinyl construction make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Fracture","color_name":"Diamond","momentum_sku":"09485573","width":"54","weight":"20 oz.","repeat_info":"12-5/8\" V","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Atascadero in Diamond is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, drop match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816413184051","handle":"templeton-fairy-tale-commercial-wallcovering-hollywood-wallcoverings","title":"Templeton - Fairy Tale Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502591","product_type":"Commercial Wallcovering","body_html":"<p>This vinyl wallcovering features a subtle geometric pattern in neutral tones, perfect for adding a touch of modern sophistication to any space. Its durable construction makes it ideal for high-traffic areas in commercial and residential settings.</p>","pattern_name":"French Crown","color_name":"Fairy Tale","momentum_sku":"09534303","width":"54","weight":"20 oz.","repeat_info":"24\" V, 52\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Templeton in Fairy Tale is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816364982323","handle":"pfeiffer-big-plum-commercial-wallcovering-hollywood","title":"Pfeiffer Big - Plum Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502742","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features an abstract geometric pattern in dark teal and burnt sienna. Its textured surface adds depth and visual interest, making it a suitable choice for high-traffic commercial spaces.</p>","pattern_name":"Go Gilded","color_name":"Plum","momentum_sku":"09481701","width":"52","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"18\" V, 52\" H","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pfeiffer Big in Plum is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Straight match","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements, Complies with USGBC LEED v4 Criteria"}, {"shopify_id":"gid://shopify/Product/7880018657331","handle":"big-sur-pentagon-hollywood-wallcoverings","title":"Big Sur Pentagon | Hollywood Wallcoverings","base_sku":"DWHD-502663","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Geodesic","color_name":"Pentagon","momentum_sku":"09244332","width":"54","weight":"25.0 oz per lineal yard","repeat_info":"7/8\" V, 3/4\" H","content":null,"finish":"Osnaburg","fire_rating":"Passes ASTM E84 & NFPA286","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Big Sur in Pentagon is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with highly cleanable water-based inks, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7879455768627","handle":"big-sur-radius-hollywood-wallcoverings","title":"Big Sur Radius | Hollywood Wallcoverings","base_sku":"DWHD-502664","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Geodesic","color_name":"Radius","momentum_sku":"09244343","width":"54","weight":"25.0 oz per lineal yard","repeat_info":"7/8\" V, 3/4\" H","content":null,"finish":"Osnaburg","fire_rating":"Passes ASTM E84 & NFPA286","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Big Sur in Radius is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with highly cleanable water-based inks, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7879454982195","handle":"big-sur-triangle-hollywood-wallcoverings","title":"Big Sur Triangle | Hollywood Wallcoverings","base_sku":"DWHD-502669","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Geodesic","color_name":"Triangle","momentum_sku":"09244398","width":"54","weight":"25.0 oz per lineal yard","repeat_info":"7/8\" V, 3/4\" H","content":null,"finish":"Osnaburg","fire_rating":"Passes ASTM E84 & NFPA286","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Big Sur in Triangle is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with highly cleanable water-based inks, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7879455866931","handle":"more-mesa-antler-hollywood-wallcoverings","title":"More Mesa Antler | Hollywood Wallcoverings","base_sku":"DWHD-502350","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Fabrications","color_name":"Antler","momentum_sku":"09241692","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"More Mesa in Antler is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7816364490803","handle":"sterns-wharf-biscotti-commercial-wallcovering-hollywood","title":"Sterns Wharf - Biscotti Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502370","product_type":"Commercial Wallcovering","body_html":"<p>Sterns Wharf Biscotti is a sophisticated, textured wallcovering in a warm beige tone. Its subtle pattern and durable construction make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Fibreux","color_name":"Biscotti","momentum_sku":"09319759","width":"54","weight":"0.00 oz","repeat_info":"","content":"60% wood pulp, 40% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 35 (test procedure is comparable to UL 723), European Standard EN 13501 Fire Test: reaction to fire classification B-s1, do","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sterns Wharf in Biscotti is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, random match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified, Low VOC, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816370192435","handle":"pebble-beach-chennai-commercial-wallcovering-hollywood","title":"Pebble Beach - Chennai Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502694","product_type":"Commercial Wallcovering","body_html":"<p>Pebble Beach Chennai is a durable vinyl wallcovering featuring an abstract, textured pattern in neutral tones. Its minimalist design and easy-to-clean surface make it ideal for high-traffic commercial and residential spaces.</p>","pattern_name":"Giverny","color_name":"Chennai","momentum_sku":"09322630","width":"54","weight":"1.00 oz","repeat_info":"9\" V","content":"70% wood pulp, 30% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 35 (test procedure is comparable to UL 723)\nEuropean Standard EN 13501 Fire Test: reaction to fire classification B-s1, do","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pebble Beach in Chennai is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, 9\" (23 cm) vertical repeat, straight across match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC, Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7880018886707","handle":"point-lobos-pewter-hollywood-wallcoverings","title":"Point Lobos Pewter | Hollywood Wallcoverings","base_sku":"DWHD-502707","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Glenwood","color_name":"Pewter","momentum_sku":"09365695","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 45 (test procedure is comparable to NFPA 255 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 45\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Point Lobos in Pewter is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Environmental Product Declaration (EPD), Health Product Declaration (HPD), Low VOC California Section 01350, Recyclable, Recycled content, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Phthalate free, HAPs free solvent-based inks"}, {"shopify_id":"gid://shopify/Product/7814464274483","handle":"asilomar-biscuit-hollywood-wallcoverings","title":"Asilomar - Biscuit Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502872","product_type":"Wallcovering","body_html":"<p>Edit modal test — republish working.</p>","pattern_name":"Halcyon","color_name":"Biscuit","momentum_sku":"09498652","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Biscuit is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464307251","handle":"asilomar-candlelight-hollywood-wallcoverings","title":"Asilomar - Candlelight Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502873","product_type":"Wallcovering","body_html":"<p>Asilomar in Candlelight is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Candlelight","momentum_sku":"09246202","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Candlelight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464340019","handle":"asilomar-cerulean-hollywood-wallcoverings","title":"Asilomar - Cerulean Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502874","product_type":"Wallcovering","body_html":"<p>Asilomar in Cerulean is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Cerulean","momentum_sku":"09498729","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Cerulean is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464372787","handle":"asilomar-chestnut-hollywood-wallcoverings","title":"Asilomar - Chestnut Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502875","product_type":"Wallcovering","body_html":"<p>Asilomar in Chestnut is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Chestnut","momentum_sku":"09498707","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Chestnut is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464405555","handle":"asilomar-coastal-fog-hollywood-wallcoverings","title":"Asilomar - Coastal Fog Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502876","product_type":"Wallcovering","body_html":"<p>Asilomar in Coastal Fog is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Coastal Fog","momentum_sku":"09246213","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Coastal Fog is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464438323","handle":"asilomar-cocoa-bean-hollywood-wallcoverings","title":"Asilomar - Cocoa Bean Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502877","product_type":"Wallcovering","body_html":"<p>Asilomar in Cocoa Bean is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Cocoa Bean","momentum_sku":"09498685","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Cocoa Bean is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464471091","handle":"asilomar-crystalline-hollywood-wallcoverings","title":"Asilomar - Crystalline Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502878","product_type":"Wallcovering","body_html":"<p>Asilomar in Crystalline is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Crystalline","momentum_sku":"09246224","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Crystalline is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464503859","handle":"asilomar-dappled-hollywood-wallcoverings","title":"Asilomar - Dappled Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502879","product_type":"Wallcovering","body_html":"<p>Asilomar in Dappled is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Dappled","momentum_sku":"09246235","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Dappled is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464700467","handle":"asilomar-dark-star-hollywood-wallcoverings","title":"Asilomar - Dark Star Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502880","product_type":"Wallcovering","body_html":"<p>Asilomar in Dark Star is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Dark Star","momentum_sku":"09246246","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Dark Star is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464733235","handle":"asilomar-dawn-hollywood-wallcoverings","title":"Asilomar - Dawn Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502881","product_type":"Wallcovering","body_html":"<p>Asilomar in Dawn is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Dawn","momentum_sku":"09246257","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Dawn is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464766003","handle":"asilomar-deep-shadow-hollywood-wallcoverings","title":"Asilomar - Deep Shadow Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502882","product_type":"Wallcovering","body_html":"<p>Asilomar in Deep Shadow is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Deep Shadow","momentum_sku":"09246268","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Deep Shadow is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464798771","handle":"asilomar-ember-glow-hollywood-wallcoverings","title":"Asilomar - Ember Glow Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502883","product_type":"Wallcovering","body_html":"<p>Asilomar in Ember Glow is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Ember Glow","momentum_sku":"09246279","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Ember Glow is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464831539","handle":"asilomar-felt-grey-hollywood-wallcoverings","title":"Asilomar - Felt Grey Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502884","product_type":"Wallcovering","body_html":"<p>Asilomar in Felt Grey is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Felt Grey","momentum_sku":"09498641","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Felt Grey is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464864307","handle":"asilomar-firelight-hollywood-wallcoverings","title":"Asilomar - Firelight Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502885","product_type":"Wallcovering","body_html":"<p>Asilomar in Firelight is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Firelight","momentum_sku":"09246290","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Firelight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464897075","handle":"asilomar-fossil-hollywood-wallcoverings","title":"Asilomar - Fossil Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502886","product_type":"Wallcovering","body_html":"<p>Asilomar in Fossil is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Fossil","momentum_sku":"09498696","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Fossil is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464929843","handle":"asilomar-herbal-hollywood-wallcoverings","title":"Asilomar - Herbal Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502887","product_type":"Wallcovering","body_html":"<p>Asilomar in Herbal is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Herbal","momentum_sku":"09498740","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Herbal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464962611","handle":"asilomar-hot-sun-hollywood-wallcoverings","title":"Asilomar - Hot Sun Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502888","product_type":"Wallcovering","body_html":"<p>Asilomar in Hot Sun is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Hot Sun","momentum_sku":"09246301","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Hot Sun is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464995379","handle":"asilomar-island-sky-hollywood-wallcoverings","title":"Asilomar - Island Sky Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502889","product_type":"Wallcovering","body_html":"<p>Asilomar in Island Sky is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Island Sky","momentum_sku":"09246312","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Island Sky is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465028147","handle":"asilomar-mirage-hollywood-wallcoverings","title":"Asilomar - Mirage Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502890","product_type":"Wallcovering","body_html":"<p>Asilomar in Mirage is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Mirage","momentum_sku":"09246323","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Mirage is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465060915","handle":"asilomar-moonlight-hollywood-wallcoverings","title":"Asilomar - Moonlight Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502891","product_type":"Wallcovering","body_html":"<p>Asilomar in Moonlight is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Moonlight","momentum_sku":"09246334","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Moonlight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465093683","handle":"asilomar-nimbus-hollywood-wallcoverings","title":"Asilomar - Nimbus Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502892","product_type":"Wallcovering","body_html":"<p>Asilomar in Nimbus is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Nimbus","momentum_sku":"09246345","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Nimbus is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465126451","handle":"asilomar-pale-silver-hollywood-wallcoverings","title":"Asilomar - Pale Silver Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502893","product_type":"Wallcovering","body_html":"<p>Asilomar in Pale Silver is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Pale Silver","momentum_sku":"09498630","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Pale Silver is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465159219","handle":"asilomar-peridot-hollywood-wallcoverings","title":"Asilomar - Peridot Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502894","product_type":"Wallcovering","body_html":"<p>Asilomar in Peridot is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Peridot","momentum_sku":"09246356","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Peridot is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465191987","handle":"asilomar-pewter-hollywood-wallcoverings","title":"Asilomar - Pewter Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502895","product_type":"Wallcovering","body_html":"<p>Asilomar in Pewter is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Pewter","momentum_sku":"09498718","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Pewter is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465224755","handle":"asilomar-porcelain-hollywood-wallcoverings","title":"Asilomar - Porcelain Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502896","product_type":"Wallcovering","body_html":"<p>Asilomar in Porcelain is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Porcelain","momentum_sku":"09498619","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Porcelain is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465257523","handle":"asilomar-radiance-hollywood-wallcoverings","title":"Asilomar - Radiance Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502897","product_type":"Wallcovering","body_html":"<p>Asilomar in Radiance is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Radiance","momentum_sku":"09246367","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Radiance is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465290291","handle":"asilomar-renaissance-hollywood-wallcoverings","title":"Asilomar - Renaissance Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502898","product_type":"Wallcovering","body_html":"<p>Asilomar in Renaissance is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Renaissance","momentum_sku":"09246378","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Renaissance is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465323059","handle":"asilomar-shimmer-hollywood-wallcoverings","title":"Asilomar - Shimmer Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502899","product_type":"Wallcovering","body_html":"<p>Asilomar in Shimmer is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Shimmer","momentum_sku":"09246389","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Shimmer is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465355827","handle":"asilomar-silver-leaf-hollywood-wallcoverings","title":"Asilomar - Silver Leaf Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502900","product_type":"Wallcovering","body_html":"<p>Asilomar in Silver Leaf is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Silver Leaf","momentum_sku":"09246400","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Silver Leaf is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465388595","handle":"asilomar-snow-field-hollywood-wallcoverings","title":"Asilomar - Snow Field Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502901","product_type":"Wallcovering","body_html":"<p>Asilomar in Snow Field is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Snow Field","momentum_sku":"09246411","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Snow Field is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465421363","handle":"asilomar-sparkle-hollywood-wallcoverings","title":"Asilomar - Sparkle Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502902","product_type":"Wallcovering","body_html":"<p>Asilomar in Sparkle is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Sparkle","momentum_sku":"09246422","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Sparkle is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465486899","handle":"asilomar-summer-field-hollywood-wallcoverings","title":"Asilomar - Summer Field Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502903","product_type":"Wallcovering","body_html":"<p>Asilomar in Summer Field is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Summer Field","momentum_sku":"09246433","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Summer Field is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814465519667","handle":"asilomar-suntan-hollywood-wallcoverings","title":"Asilomar - Suntan Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502904","product_type":"Wallcovering","body_html":"<p>Asilomar in Suntan is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Suntan","momentum_sku":"09246444","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Suntan is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464536627","handle":"asilomar-tangerine-hollywood-wallcoverings","title":"Asilomar - Tangerine Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502905","product_type":"Wallcovering","body_html":"<p>Asilomar in Tangerine is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Tangerine","momentum_sku":"09498674","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Tangerine is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7814464602163","handle":"asilomar-twilight-hollywood-wallcoverings","title":"Asilomar - Twilight Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502906","product_type":"Wallcovering","body_html":"<p>Asilomar in Twilight is a textured commercial wallcovering by Hollywood Wallcoverings. Its refined surface and commercial-grade durability make it ideal for high-traffic environments. Perfect for hospitality, corporate, and upscale residential interiors.</p>","pattern_name":"Halcyon","color_name":"Twilight","momentum_sku":"09246455","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Asilomar in Twilight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Agressive manufacturing materials recovery and reuse porgram, Highly cleanable water-based inks, Antimicrobial additives, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7816416526387","handle":"sand-city-charcoal-commercial-wallcovering-hollywood-wallcoverings","title":"Sand City - Charcoal Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502930","product_type":"Commercial Wallcovering","body_html":"<p>Sand City in Charcoal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Hanami Silk","color_name":"Charcoal","momentum_sku":"09246939","width":"54","weight":"20 oz.","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sand City in Charcoal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, NSF/ANSI 342 certified, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7814879445043","handle":"elkhorn-slough-solaire-hollywood-wallcoverings","title":"Elkhorn Slough Solaire | Hollywood Wallcoverings","base_sku":"DWHD-502969","product_type":"Wallcovering","body_html":"<p>This is a textured wallcovering with a subtle geometric pattern. It evokes a warm and inviting mood with its neutral color palette.</p>","pattern_name":"Harrison","color_name":"Solaire","momentum_sku":"09247302","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% Vinyl","finish":"Cotton Scrim","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 10, smoke developed 45, NFPA 286 Corner Burn, NFPA 101 Life Cycle Safety Code","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Elkhorn Slough in Solaire is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials., Made with highly cleanable water-based inks."}, {"shopify_id":"gid://shopify/Product/7814360137779","handle":"doud-creek-midnight-hollywood-wallcoverings","title":"Doud Creek - Midnight Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503061","product_type":"Wallcovering","body_html":"<p>Doud Creek in Midnight is a textured wallcovering by Hollywood Wallcoverings featuring a subtle geometric pattern in deep Dark Blue and Light Gray tones. Its commercial-grade ASTM E84 Class A fire rating and durable vinyl construction make it ideal for high-traffic spaces. Perfect for hospitality lobbies, corporate offices, and statement accent walls.</p>","pattern_name":"Hierarchy","color_name":"Midnight","momentum_sku":"09620400","width":"50.5","weight":"20 oz.","repeat_info":"44\" V, 50-1/2\" H","content":"*100% vinyl; **98% vinyl, 2% metalized polyester","finish":"*Osnaburg; **Non-woven","fire_rating":"*ASTM E84 Class A, CAN/ULC S102;\n**ASTM E84 Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Doud Creek in Midnight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":15,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD, NSF/ANSI 342 certified, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880574959667","handle":"salinas-marquetry-hollywood-wallcoverings","title":"Salinas Marquetry | Hollywood Wallcoverings","base_sku":"DWHD-503238","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Intarsia","color_name":"Marquetry","momentum_sku":"09250657","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 95 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 30\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13823 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Salinas in Marquetry is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"LOW VOC, California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880018722867","handle":"greenfield-cinereal-hollywood-wallcoverings","title":"Greenfield Cinereal | Hollywood Wallcoverings","base_sku":"DWHD-503291","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Intermix WC","color_name":"Cinereal","momentum_sku":"09250954","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Greenfield in Cinereal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7879455801395","handle":"greenfield-electrum-hollywood-wallcoverings","title":"Greenfield Electrum | Hollywood Wallcoverings","base_sku":"DWHD-503294","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Intermix WC","color_name":"Electrum","momentum_sku":"09250987","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Greenfield in Electrum is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7881301393459","handle":"greenfield-hybrid-hollywood-wallcoverings","title":"Greenfield Hybrid | Hollywood Wallcoverings","base_sku":"DWHD-503298","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Intermix WC","color_name":"Hybrid","momentum_sku":"09251031","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Greenfield in Hybrid is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7880018755635","handle":"greenfield-night-tide-hollywood-wallcoverings","title":"Greenfield Night Tide | Hollywood Wallcoverings","base_sku":"DWHD-503300","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Intermix WC","color_name":"Night Tide","momentum_sku":"09251053","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Greenfield in Night Tide is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816364326963","handle":"gorda-silverworks-commercial-wallcovering-hollywood","title":"Gorda - Silverworks Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503390","product_type":"Commercial Wallcovering","body_html":"<p>Gorda in Silverworks is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Ithaca","color_name":"Silverworks","momentum_sku":"09251669","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Gorda in Silverworks is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives, Support USGBC LEED v4 Criteria, Materials and Resources; Building Product Disclosure (includes Recycled Content; Construction Waste Management), Indoor Environmental Quality; Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7816365637683","handle":"kirk-creek-cassia-commercial-wallcovering-hollywood","title":"Kirk Creek - Cassia Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503394","product_type":"Commercial Wallcovering","body_html":"<p>This grasscloth wallcovering features a warm ochre hue with subtle horizontal striations, adding depth and texture to any space. Its natural fibers bring an organic feel, making it ideal for creating inviting and sophisticated interiors in commercial or residential settings.</p>","pattern_name":"Java Linen","color_name":"Cassia","momentum_sku":"09251911","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Kirk Creek in Cassia is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816365539379","handle":"kirk-creek-sugarcane-commercial-wallcovering-hollywood","title":"Kirk Creek - Sugarcane Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503409","product_type":"Commercial Wallcovering","body_html":"<p>This Sugarcane wallcovering offers a subtle, organic texture with a warm gold tone. Its durable construction makes it suitable for high-traffic commercial spaces seeking a touch of natural elegance.</p>","pattern_name":"Java Linen","color_name":"Sugarcane","momentum_sku":"09252076","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Kirk Creek in Sugarcane is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816413216819","handle":"prewitt-ridge-moonlight-commercial-wallcovering-hollywood-wallcoverings","title":"Prewitt Ridge - Moonlight Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503447","product_type":"Commercial Wallcovering","body_html":"<p>Prewitt Ridge Moonlight is a sophisticated wallcovering featuring a subtle abstract design on a textured background. Its neutral color palette and minimalist style make it ideal for creating a calming and contemporary atmosphere in commercial or residential spaces.</p>","pattern_name":"Kaali","color_name":"Moonlight","momentum_sku":"09559592","width":"54","weight":"20 oz.","repeat_info":"15\" V, 26\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Prewitt Ridge in Moonlight is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, half-drop match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816412856371","handle":"arroyo-seco-makai-commercial-wallcovering-hollywood-wallcoverings","title":"Arroyo Seco - Makai Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503562","product_type":"Commercial Wallcovering","body_html":"<p>Arroyo Seco Makai is a sophisticated non-woven wallcovering with a subtle textured stripe. Its neutral color palette and durable construction make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Konalea","color_name":"Makai","momentum_sku":"09461593","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 95 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723), CAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 30, NFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover, European Standard EN 13501 Fire Test: reaction to fire classification B-s2, d0","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Arroyo Seco in Makai is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Low-VOC CA Section 01350, NSF/ANSI 342 certified, Water-based inks, EPD/HPD"}, {"shopify_id":"gid://shopify/Product/7879454916659","handle":"coast-ridge-catalina-hollywood-wallcoverings","title":"Coast Ridge Catalina | Hollywood Wallcoverings","base_sku":"DWHD-503629","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Laguna Silk","color_name":"Catalina","momentum_sku":"09365893","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Coast Ridge in Catalina is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, LEED® EQ 4.1, LEED® MR 5.1, Manufactured using comprehensive raw material recycling., Printing inks are 100% recycled., Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7880018559027","handle":"coast-ridge-sagebrush-hollywood-wallcoverings","title":"Coast Ridge Sagebrush | Hollywood Wallcoverings","base_sku":"DWHD-503639","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Laguna Silk","color_name":"Sagebrush","momentum_sku":"09366003","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Coast Ridge in Sagebrush is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, LEED® EQ 4.1, LEED® MR 5.1, Manufactured using comprehensive raw material recycling., Printing inks are 100% recycled., Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7880018526259","handle":"coast-ridge-silverado-hollywood-wallcoverings","title":"Coast Ridge Silverado | Hollywood Wallcoverings","base_sku":"DWHD-503641","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Laguna Silk","color_name":"Silverado","momentum_sku":"09366025","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Coast Ridge in Silverado is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, LEED® EQ 4.1, LEED® MR 5.1, Manufactured using comprehensive raw material recycling., Printing inks are 100% recycled., Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7816413249587","handle":"pacific-valley-bramble-commercial-wallcovering-hollywood-wallcoverings","title":"Pacific Valley - Bramble Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503666","product_type":"Commercial Wallcovering","body_html":"<p>This textured vinyl wallcovering features a subtle floral pattern in neutral tones. Its durable construction makes it ideal for high-traffic commercial spaces.</p>","pattern_name":"Laurel Leaf","color_name":"Bramble","momentum_sku":"09549593","width":"54","weight":"20 oz.","repeat_info":"18\" V, 26\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pacific Valley in Bramble is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7817244540979","handle":"hearst-castle-halo-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Halo Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508045","product_type":"Commercial Wallcovering","body_html":"<p>This geometric vinyl wallcovering features a textured gold pattern with vertical stripes. Its durable construction makes it ideal for high-traffic commercial and hospitality spaces.</p>","pattern_name":"Layout","color_name":"Halo","momentum_sku":"09199364","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Halo is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244377139","handle":"hearst-castle-icicle-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Icicle Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508046","product_type":"Commercial Wallcovering","body_html":"<p>The Hearst Castle Icicle wallcovering features a geometric pattern with a subtle textured effect, creating a sophisticated and modern look. Its durable vinyl construction makes it ideal for high-traffic commercial spaces.</p>","pattern_name":"Layout","color_name":"Icicle","momentum_sku":"09199309","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Icicle is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244442675","handle":"hearst-castle-antique-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Antique Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508043","product_type":"Commercial Wallcovering","body_html":"<p>This geometric wallcovering features a subtle texture and a modern design. The neutral color palette makes it suitable for a variety of commercial and architectural applications.</p>","pattern_name":"Layout","color_name":"Antique","momentum_sku":"09199331","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Antique is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244606515","handle":"hearst-castle-copper-commercial-wallcovering-hollywood-wallcoverings","title":"Hearst Castle - Copper Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508044","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a geometric pattern with a textured effect. The neutral tan and beige tones make it suitable for a variety of commercial and hospitality settings.</p>","pattern_name":"Layout","color_name":"Copper","momentum_sku":"09199386","width":"54","weight":"18.08 oz","repeat_info":"4-3/4\" V, 4-3/4\" H","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hearst Castle in Copper is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816412954675","handle":"arroyo-de-cool-chord-commercial-wallcovering-hollywood-wallcoverings","title":"Arroyo De - Cool Chord Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503709","product_type":"Commercial Wallcovering","body_html":"<p>Arroyo De Cool Chord is a sophisticated and subtle wallcovering. Its textured, striped pattern and neutral color palette make it a versatile choice for a variety of commercial and architectural spaces.</p>","pattern_name":"Levels","color_name":"Cool Chord","momentum_sku":"09253671","width":"54","weight":"20 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":"Contains 10% recycled content","finish":"Osnaburg","fire_rating":"Class \"A\" fire rated - tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Arroyo De in Cool Chord is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Recycled content, NSF/ANSI 342 Sustainability Assessment, California Section 01350 IAQ, LEED EQ 4.1, LEED MR 5.1"}, {"shopify_id":"gid://shopify/Product/7816413282355","handle":"partington-canyon-night-wind-commercial-wallcovering-hollywood-wallcoverings","title":"Partington Canyon - Night Wind Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503842","product_type":"Commercial Wallcovering","body_html":"<p>Partington Canyon Night Wind is a sophisticated wallcovering featuring an abstract striped pattern in neutral tones. Its subtle texture and contemporary design make it ideal for creating a serene and modern atmosphere in commercial spaces.</p>","pattern_name":"Loire","color_name":"Night Wind","momentum_sku":"09567589","width":"54","weight":"20 oz.","repeat_info":"25-1/4\" V, 54\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Partington Canyon in Night Wind is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816415019059","handle":"pfeiffer-beach-jet-stream-commercial-wallcovering-hollywood-wallcoverings","title":"Pfeiffer Beach - Jet Stream Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504018","product_type":"Commercial Wallcovering","body_html":"<p>Pfeiffer Beach Jet Stream is a sophisticated vinyl wallcovering featuring a subtle, vertical texture. Its dark color and understated design make it ideal for modern commercial spaces.</p>","pattern_name":"Lustre Strie","color_name":"Jet Stream","momentum_sku":"09256223","width":"52","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pfeiffer Beach in Jet Stream is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria, under Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7880575254579","handle":"pfeiffer-beach-silvered-hollywood-wallcoverings","title":"Pfeiffer Beach Silvered | Hollywood Wallcoverings","base_sku":"DWHD-504031","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>52\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Lustre Strie","color_name":"Silvered","momentum_sku":"09256366","width":"52","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pfeiffer Beach in Silvered is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria, under Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7816412921907","handle":"aptos-buttercream-commercial-wallcovering-hollywood-wallcoverings","title":"Aptos - Buttercream Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504118","product_type":"Commercial Wallcovering","body_html":"<p>This Aptos Buttercream wallcovering offers a subtle, textured stripe for a sophisticated and understated look. Its neutral color and durable construction make it ideal for high-traffic commercial and residential spaces.</p>","pattern_name":"Maestro WC","color_name":"Buttercream","momentum_sku":"09256729","width":"54","weight":"20 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":"Contains 10% recycled content","finish":"Osnaburg","fire_rating":"Class \"A\" fire rated - tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Aptos in Buttercream is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Straight, random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Contains 10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wallcovering, Can contribute to LEED EQ 4.1 point for low-emitting materials, adhesives, and sealants, if used with low VOC adhesives, Can contribute to LEED MR 5.1 point for regional materials"}, {"shopify_id":"gid://shopify/Product/7879455998003","handle":"live-oak-raw-silk-hollywood-wallcoverings","title":"Live Oak Raw Silk | Hollywood Wallcoverings","base_sku":"DWHD-504168","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Mandolin","color_name":"Raw Silk","momentum_sku":"09257477","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Live Oak in Raw Silk is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7880575418419","handle":"felton-black-pearl-hollywood-wallcoverings","title":"Felton Black Pearl | Hollywood Wallcoverings","base_sku":"DWHD-504181","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Marquise","color_name":"Black Pearl","momentum_sku":"09257840","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"18\" V, 10-3/8\" H","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Felton in Black Pearl is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, match","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria"}, {"shopify_id":"gid://shopify/Product/7816415051827","handle":"felton-onyx-commercial-wallcovering-hollywood-wallcoverings","title":"Felton - Onyx Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504190","product_type":"Commercial Wallcovering","body_html":"<p>Felton Onyx is a modern geometric wallcovering featuring a striking linear pattern. The design offers a sophisticated touch to any commercial or residential space.</p>","pattern_name":"Marquise","color_name":"Onyx","momentum_sku":"09257950","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"18\" V, 10-3/8\" H","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Felton in Onyx is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, match","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria"}, {"shopify_id":"gid://shopify/Product/7816413577267","handle":"felton-rustic-jade-commercial-wallcovering-hollywood-wallcoverings","title":"Felton - Rustic Jade Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504193","product_type":"Commercial Wallcovering","body_html":"<p>This wallcovering features a bold geometric pattern with a textured background. The combination of burnt orange lines and a neutral gray backdrop creates a sophisticated and modern look suitable for various commercial and residential spaces.</p>","pattern_name":"Marquise","color_name":"Rustic Jade","momentum_sku":"09257983","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"18\" V, 10-3/8\" H","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Felton in Rustic Jade is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, match","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wall covering, Complies with USGBC LEED v4 Criteria"}, {"shopify_id":"gid://shopify/Product/7816416722995","handle":"boulder-creek-carnelian-commercial-wallcovering-hollywood-wallcoverings","title":"Boulder Creek - Carnelian Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504200","product_type":"Commercial Wallcovering","body_html":"<p>This vinyl wallcovering features a subtle striped pattern with a textured effect. Its warm, neutral color makes it suitable for a variety of commercial applications.</p>","pattern_name":"Marquise Silk","color_name":"Carnelian","momentum_sku":"09258071","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Boulder Creek in Carnelian is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Complies with USGBC LEED v4 Criteria"}, {"shopify_id":"gid://shopify/Product/7816095957043","handle":"pomponio-state-bakery-wallcovering-hollywood","title":"Pomponio State - Bakery Wallcovering | Hollywood","base_sku":"DWHD-504394","product_type":"Wallcovering","body_html":"<p>This wallcovering features a subtle vertical stripe texture in neutral beige tones. Its minimalist design and durable non-woven material make it suitable for both commercial and residential spaces.</p>","pattern_name":"Mill Street","color_name":"Bakery","momentum_sku":"09383845","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pomponio State in Bakery is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Can contribute to LEED® EQ 4.1 point, Can contribute to LEED® MR 5.1 point, Manufactured using comprehensive raw material recycling, Made with highly cleanable HAPs Free solvent-based inks, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7881301295155","handle":"gray-whale-caviar-hollywood-wallcoverings","title":"Gray Whale Caviar | Hollywood Wallcoverings","base_sku":"DWHD-504409","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Mimosa","color_name":"Caviar","momentum_sku":"09260491","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Non-woven","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Gray Whale in Caviar is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7880018919475","handle":"gray-whale-cocktail-hollywood-wallcoverings","title":"Gray Whale Cocktail | Hollywood Wallcoverings","base_sku":"DWHD-504412","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Mimosa","color_name":"Cocktail","momentum_sku":"09260535","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Non-woven","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Gray Whale in Cocktail is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7881301426227","handle":"gray-whale-luxe-hollywood-wallcoverings","title":"Gray Whale Luxe | Hollywood Wallcoverings","base_sku":"DWHD-504417","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Mimosa","color_name":"Luxe","momentum_sku":"09260590","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Non-woven","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Gray Whale in Luxe is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7880018985011","handle":"gray-whale-miami-blue-hollywood-wallcoverings","title":"Gray Whale Miami Blue | Hollywood Wallcoverings","base_sku":"DWHD-504418","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Mimosa","color_name":"Miami Blue","momentum_sku":"09260601","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Non-woven","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Gray Whale in Miami Blue is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816369963059","handle":"linda-mar-titanium-commercial-wallcovering-hollywood","title":"Linda Mar - Titanium Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504480","product_type":"Commercial Wallcovering","body_html":"<p>This textured vinyl wallcovering offers a subtle, sophisticated look for commercial interiors. Its neutral beige tone and durable construction make it ideal for high-traffic areas.</p>","pattern_name":"Mistral","color_name":"Titanium","momentum_sku":"09331793","width":"54","weight":"1.00 oz","repeat_info":"","content":"70% wood pulp, 30% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 25, smoke developed 15 (test procedure is comparable to UL 723)\nEuropean Standard EN 13501 Fire Test: reaction to fire classification B-s2, do","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Linda Mar in Titanium is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, random match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified, Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7816369897523","handle":"visitacion-valley-corinthian-commercial-wallcovering-hollywood","title":"Visitacion Valley - Corinthian Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505062","product_type":"Commercial Wallcovering","body_html":"<p>This textured vinyl wallcovering offers a subtle, yet sophisticated aesthetic for commercial spaces. Its neutral beige tone and abstract pattern provide a versatile backdrop for a variety of design schemes.</p>","pattern_name":"P3TEC Dimension Type II","color_name":"Corinthian","momentum_sku":"09476003","width":"54","weight":"20 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated - Tested in accordance with ASTM E-84 Tunnel Test\nPasses Class \"A\" NFPA 101 Life Safety Code\nPasses NFPA 286 Corner Burn Test","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Visitacion Valley in Corinthian is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content (varied blend of pre-consumer and remanufactured material), Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wallcovering, Complies with USGBC LEED v4 Criteria, under Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7816365473843","handle":"alviso-bespoke-commercial-wallcovering-hollywood","title":"Alviso - Bespoke Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-504693","product_type":"Commercial Wallcovering","body_html":"<p>Alviso Bespoke offers a subtle textured geometric pattern in neutral tones. This non-woven wallcovering provides a sophisticated and understated look suitable for commercial and architectural applications.</p>","pattern_name":"Noble Notch","color_name":"Bespoke","momentum_sku":"09593010","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Alviso in Bespoke is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants\nAvailable as a custom with | INVISICAP complete chemical protection","application":"Reverse Random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled content, Non-Phthalate, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7816366129203","handle":"sausalito-master-plan-fabric-hollywood","title":"Sausalito - Master Plan Fabric | Hollywood Wallcoverings","base_sku":"DWHD-504779","product_type":"Fabric","body_html":"<p>Sausalito Master Plan is a durable vinyl wallcovering featuring a geometric pattern in a cool blue palette. Ideal for high-traffic commercial spaces, this wallcovering offers a modern aesthetic with easy maintenance.</p>","pattern_name":"Oblong Linen","color_name":"Master Plan","momentum_sku":"09300982","width":"54","weight":"0.00 oz","repeat_info":"8-3/8\" V, 3\" H","content":"95% linen, 5% polyester","finish":"Paper (70% wood pulp, 30% polyester)","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 35 (test procedure is comparable to NFPA 255 and UL 723), European Standard EN 13501 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sausalito in Master Plan is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified, Recycled content, Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7879455703091","handle":"angel-island-balsawood-hollywood-wallcoverings","title":"Angel Island Balsawood | Hollywood Wallcoverings","base_sku":"DWHD-504801","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Ochroma","color_name":"Balsawood","momentum_sku":"09264033","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"18\" V, 52\" H","content":"100% vinyl","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 10, smoke developed 10 (test procedure is comparable to UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 25, smoke developed 65\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Angel Island in Balsawood is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang","full_roll_size":30,"minimum_order":null,"sustainability":"Environmental Product Declaration (EPD), California Section 01350, SCS Indoor Advantage™ Gold, Health Product Declaration (HPD), Recyclable, Heavy metal-free, PBDE-free, Water-based inks, Recycled content"}, {"shopify_id":"gid://shopify/Product/7880575025203","handle":"angel-island-pyramidale-hollywood-wallcoverings","title":"Angel Island Pyramidale | Hollywood Wallcoverings","base_sku":"DWHD-504810","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Ochroma","color_name":"Pyramidale","momentum_sku":"09264132","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"18\" V, 52\" H","content":"100% vinyl","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 10, smoke developed 10 (test procedure is comparable to UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 25, smoke developed 65\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Angel Island in Pyramidale is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang","full_roll_size":30,"minimum_order":null,"sustainability":"Environmental Product Declaration (EPD), California Section 01350, SCS Indoor Advantage™ Gold, Health Product Declaration (HPD), Recyclable, Heavy metal-free, PBDE-free, Water-based inks, Recycled content"}, {"shopify_id":"gid://shopify/Product/7814879576115","handle":"pacific-heights-loom-hollywood-wallcoverings","title":"Pacific Heights Loom | Hollywood Wallcoverings","base_sku":"DWHD-505164","product_type":"Wallcovering","body_html":"<p>Pacific Heights in Loom is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Pallas","color_name":"Loom","momentum_sku":"09592394","width":"54","weight":"20 oz.","repeat_info":"","content":"80% olefin composite, 20% post-industrial recycled olefin composite","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pacific Heights in Loom is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"PVC-free technology, Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816414953523","handle":"castro-district-spring-commercial-wallcovering-hollywood-wallcoverings","title":"Castro District - Spring Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505246","product_type":"Commercial Wallcovering","body_html":"<p>This subtle, textured wallcovering offers a sophisticated and understated look. Its neutral color and durable construction make it ideal for high-traffic commercial and residential spaces.</p>","pattern_name":"Passage","color_name":"Spring","momentum_sku":"09266706","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Castro District in Spring is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, LEED® EQ 4.1, LEED® MR 5.1, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816365670451","handle":"hayes-valley-luminous-commercial-wallcovering-hollywood","title":"Hayes Valley - Luminous Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505277","product_type":"Commercial Wallcovering","body_html":"<p>Hayes Valley Luminous offers a subtle textured geometric pattern in a clean white colorway. This durable vinyl wallcovering is ideal for high-traffic commercial spaces seeking a minimalist aesthetic.</p>","pattern_name":"Perplex","color_name":"Luminous","momentum_sku":"09267597","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hayes Valley in Luminous is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with highly cleanable water-based inks, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816365801523","handle":"sausalito-ferry-eggshell-commercial-wallcovering-hollywood","title":"Sausalito Ferry - Eggshell Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505552","product_type":"Commercial Wallcovering","body_html":"<p>This wallcovering features a subtle, undulating texture in a soft off-white hue, creating a calming and sophisticated backdrop. Its non-woven construction ensures durability and ease of installation, making it ideal for high-traffic commercial and residential spaces.</p>","pattern_name":"Pyla","color_name":"Eggshell","momentum_sku":"09519178","width":"54","weight":"20 oz.","repeat_info":"","content":"100% vinyl","finish":"Non-woven, 85% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sausalito Ferry in Eggshell is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816416493619","handle":"china-camp-jade-garden-commercial-wallcovering-hollywood-wallcoverings","title":"China Camp - Jade Garden Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505645","product_type":"Commercial Wallcovering","body_html":"<p>China Camp in Jade Garden is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Ravelle Texture","color_name":"Jade Garden","momentum_sku":"09270446","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"China Camp in Jade Garden is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard"}, {"shopify_id":"gid://shopify/Product/7880018264115","handle":"china-camp-sea-salt-hollywood-wallcoverings","title":"China Camp Sea Salt | Hollywood Wallcoverings","base_sku":"DWHD-505649","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Ravelle Texture","color_name":"Sea Salt","momentum_sku":"09270490","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"China Camp in Sea Salt is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard"}, {"shopify_id":"gid://shopify/Product/7816365211699","handle":"corona-del-vapor-commercial-wallcovering-hollywood","title":"Corona Del - Vapor Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505987","product_type":"Commercial Wallcovering","body_html":"<p>Corona Del in Vapor is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Sakura","color_name":"Vapor","momentum_sku":"09592482","width":"54","weight":"20 oz.","repeat_info":"17-1/4\" H","content":"100% vinyl","finish":"Osnaburg; *Non-woven","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Corona Del in Vapor is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, NSF/ANSI 342 certified, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816412823603","handle":"yerba-buena-lemon-commercial-wallcovering-hollywood-wallcoverings","title":"Yerba Buena - Lemon Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505356","product_type":"Commercial Wallcovering","body_html":"<p>Yerba Buena Lemon is a playful and modern wallcovering featuring an abstract geometric pattern. This durable vinyl wallcovering is perfect for adding a touch of whimsy to any commercial or residential space.</p>","pattern_name":"Places Spaces Faces WC","color_name":"Lemon","momentum_sku":"09464112","width":"53","weight":"20 oz","repeat_info":"32-3/4\" V, 26-1/2\" H","content":"69% cellulose/polyester, 31% post-consumer recycled polyester","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Yerba Buena in Lemon is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":15,"minimum_order":null,"sustainability":"PVC free, Phthalate free, Low-VOC CA Section 01350, GREENGUARD certified, Recycled content, EPD/HPD"}, {"shopify_id":"gid://shopify/Product/7880575123507","handle":"tiburon-san-fog-hollywood-wallcoverings","title":"Tiburon San Fog | Hollywood Wallcoverings","base_sku":"DWHD-505659","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Reese","color_name":"Fog","momentum_sku":"09270908","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 45 (test procedure is comparable to NFPA 255 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 45\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Tiburon San in Fog is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"RECYCLED CONTENT 10% pre-consumer recycled content by weight, LOW VOC California Section 01350, May be recyclable through reclamation, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Solvent-based inks"}, {"shopify_id":"gid://shopify/Product/7816414986291","handle":"anchor-bay-jubilee-commercial-wallcovering-hollywood-wallcoverings","title":"Anchor Bay - Jubilee Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-505817","product_type":"Commercial Wallcovering","body_html":"<p>This bold geometric wallcovering features a vibrant color palette and playful design. Ideal for creating a statement wall in modern commercial or residential spaces.</p>","pattern_name":"Rhythms Surround You WC","color_name":"Jubilee","momentum_sku":"09601887","width":"54","weight":"20 oz.","repeat_info":"200\" H","content":"80% olefin composite, 20% post-industrial recycled olefin composite","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"EA","category":"Wallcovering","description":"Anchor Bay in Jubilee is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight match panels in sequence","full_roll_size":0,"minimum_order":null,"sustainability":"PVC free, Prop 65, HPD, Recycled content, Phthalate free, GREENGUARD certified, Low-VOC CA Section 01350, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7879455735859","handle":"bucksport-feather-hollywood-wallcoverings","title":"Bucksport Feather | Hollywood Wallcoverings","base_sku":"DWHD-505882","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Roanoke","color_name":"Feather","momentum_sku":"09274010","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 95 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 30\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13823 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Bucksport in Feather is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"LOW VOC California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7817245130803","handle":"goat-rock-anchor-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Anchor Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508056","product_type":"Commercial Wallcovering","body_html":"<p>This geometric textured wallcovering offers a subtle yet sophisticated design element for modern interiors. Its durable vinyl construction makes it suitable for high-traffic commercial spaces.</p>","pattern_name":"Seto","color_name":"Anchor","momentum_sku":"09199683","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Anchor is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817245065267","handle":"goat-rock-cove-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Cove Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508057","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Cove is a durable vinyl wallcovering featuring a subtle geometric grid pattern. Its neutral gray tones and textured surface make it suitable for a variety of commercial and architectural applications.</p>","pattern_name":"Seto","color_name":"Cove","momentum_sku":"09199661","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Cove is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244803123","handle":"goat-rock-dover-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Dover Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508058","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Dover is a durable vinyl wallcovering with a subtle geometric texture. Its neutral beige color and minimalist design make it suitable for a variety of commercial spaces.</p>","pattern_name":"Seto","color_name":"Dover","momentum_sku":"09199573","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Dover is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244999731","handle":"goat-rock-glacier-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Glacier Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508059","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Glacier is a sophisticated wallcovering featuring a subtle geometric pattern with a textured effect. Its neutral color palette and modern design make it ideal for commercial and architectural applications.</p>","pattern_name":"Seto","color_name":"Glacier","momentum_sku":"09199639","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Glacier is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244868659","handle":"goat-rock-gravel-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Gravel Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508060","product_type":"Commercial Wallcovering","body_html":"<p>This Goat Rock Gravel wallcovering offers a subtle, textured geometric pattern in neutral beige tones. Its durable vinyl construction makes it ideal for high-traffic commercial spaces requiring easy maintenance.</p>","pattern_name":"Seto","color_name":"Gravel","momentum_sku":"09199595","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Gravel is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817245098035","handle":"goat-rock-jadeite-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Jadeite Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508061","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Jadeite is a durable vinyl wallcovering with a subtle geometric pattern. Its textured surface and sea green hue create a sophisticated and modern look suitable for commercial spaces.</p>","pattern_name":"Seto","color_name":"Jadeite","momentum_sku":"09199672","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Jadeite is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244835891","handle":"goat-rock-khaki-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Khaki Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508062","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Khaki is a sophisticated wallcovering featuring a subtle geometric pattern with a textured effect. Its neutral khaki color and understated design make it suitable for a variety of commercial and architectural spaces.</p>","pattern_name":"Seto","color_name":"Khaki","momentum_sku":"09199584","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Khaki is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7817244770355","handle":"goat-rock-alpine-commercial-wallcovering-hollywood-wallcoverings","title":"Goat Rock - Alpine Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508055","product_type":"Commercial Wallcovering","body_html":"<p>Goat Rock Alpine is a sophisticated textured vinyl wallcovering. Its subtle geometric pattern and neutral color palette make it a versatile choice for a variety of commercial and architectural applications.</p>","pattern_name":"Seto","color_name":"Alpine","momentum_sku":"09199562","width":"54","weight":"18.08 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Goat Rock in Alpine is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816707211315","handle":"green-drakes-atmospheric-commercial-wallcovering-hollywood-wallcoverings","title":"Green Drakes - Atmospheric Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506220","product_type":"Commercial Wallcovering","body_html":"<p>This light blue non-woven wallcovering offers a subtle, textured stripe effect. Its neutral tone and durable construction make it suitable for both commercial and residential interiors.</p>","pattern_name":"Shades of Silk","color_name":"Atmospheric","momentum_sku":"09564047","width":"52","weight":"20.0 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM","repeat_info":"24\" V, 52\" H","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Green Drakes in Atmospheric is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection","application":null,"full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled content, Non-Phthalate, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7816095989811","handle":"green-drakes-atmospheric-wallcovering-hollywood","title":"Green Drakes - Atmospheric Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506220","product_type":"Wallcovering","body_html":"<p>Green Drakes in Atmospheric is a wallcovering from Hollywood Wallcoverings. Subtle textured stripes create a calm, contemporary mood. Well-suited for both residential and commercial interiors.</p>","pattern_name":"Shades of Silk","color_name":"Atmospheric","momentum_sku":"09564047","width":"52","weight":"20.0 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM","repeat_info":"24\" V, 52\" H","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Green Drakes in Atmospheric is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection","application":null,"full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled content, Non-Phthalate, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7880574894131","handle":"guadalupe-dunes-wisdom-white-hollywood-wallcoverings","title":"Guadalupe Dunes Wisdom White | Hollywood Wallcoverings","base_sku":"DWHD-506270","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>10% recycled content (varied blend of pre-consumer and remanufactured material)</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Sherlock","color_name":"Wisdom White","momentum_sku":"09278300","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":"10% recycled content (varied blend of pre-consumer and remanufactured material)","finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Guadalupe Dunes in Wisdom White is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements, Complies with USGBC LEED v4 Criteria, Indoor Environmental Quality (CDPH/EHLB/Standard Method Version 1.1, 2010)"}, {"shopify_id":"gid://shopify/Product/7816413118515","handle":"hawks-nest-sequoia-commercial-wallcovering-hollywood-wallcoverings","title":"Hawks Nest - Sequoia Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506302","product_type":"Commercial Wallcovering","body_html":"<p>Hawks Nest Sequoia offers a sophisticated textured look with a blend of brown and gold tones. This durable non-woven wallcovering is ideal for high-traffic commercial spaces seeking a touch of organic modernism.</p>","pattern_name":"Sierra WC","color_name":"Sequoia","momentum_sku":"09278443","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84, Passes ASTM E84 & NFPA 101 & IBC","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Hawks Nest in Sequoia is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816364752947","handle":"indian-beach-cornsilk-commercial-wallcovering-hollywood","title":"Indian Beach - Cornsilk Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506361","product_type":"Commercial Wallcovering","body_html":"<p>This Indian Beach Cornsilk wallcovering offers a subtle textured look with a neutral beige tone. Its durable vinyl construction makes it suitable for high-traffic commercial and residential spaces.</p>","pattern_name":"Simply Sheer","color_name":"Cornsilk","momentum_sku":"09602536","width":"54","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Indian Beach in Cornsilk is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants","application":"Reverse Random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled conten, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7816412987443","handle":"indian-beach-linen-commercial-wallcovering-hollywood-wallcoverings","title":"Indian Beach - Linen Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506365","product_type":"Commercial Wallcovering","body_html":"<p>Indian Beach Linen is a versatile wallcovering with a subtle linen texture. Its neutral beige tone provides a calming backdrop for any interior, suitable for both commercial and residential spaces.</p>","pattern_name":"Simply Sheer","color_name":"Linen","momentum_sku":"09602503","width":"54","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Indian Beach in Linen is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants","application":"Reverse Random","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California section 01350 IAQ, 10% Recycled conten, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7879455899699","handle":"sea-ranch-navy-hollywood-wallcoverings","title":"Sea Ranch Navy | Hollywood Wallcoverings","base_sku":"DWHD-507327","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Urban Oasis","color_name":"Navy","momentum_sku":"09286781","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sea Ranch in Navy is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7880018395187","handle":"sea-ranch-peacock-hollywood-wallcoverings","title":"Sea Ranch Peacock | Hollywood Wallcoverings","base_sku":"DWHD-507330","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Urban Oasis","color_name":"Peacock","momentum_sku":"09286814","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sea Ranch in Peacock is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7880018362419","handle":"sea-ranch-steel-hollywood-wallcoverings","title":"Sea Ranch Steel | Hollywood Wallcoverings","base_sku":"DWHD-507333","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Urban Oasis","color_name":"Steel","momentum_sku":"09286847","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sea Ranch in Steel is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7880018427955","handle":"sea-ranch-tropic-hollywood-wallcoverings","title":"Sea Ranch Tropic | Hollywood Wallcoverings","base_sku":"DWHD-507335","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Urban Oasis","color_name":"Tropic","momentum_sku":"09286869","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sea Ranch in Tropic is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7879455834163","handle":"sea-ranch-whalebone-hollywood-wallcoverings","title":"Sea Ranch Whalebone | Hollywood Wallcoverings","base_sku":"DWHD-507336","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Urban Oasis","color_name":"Whalebone","momentum_sku":"09286880","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sea Ranch in Whalebone is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Antimicrobial additives"}, {"shopify_id":"gid://shopify/Product/7880018493491","handle":"south-salmon-silhouette-hollywood-wallcoverings","title":"South Salmon Silhouette | Hollywood Wallcoverings","base_sku":"DWHD-507413","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-Woven</td>\n</tr>\n</table>","pattern_name":"Velatura","color_name":"Silhouette","momentum_sku":"09387959","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"25-1/4\" V","content":null,"finish":"Non-Woven","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"South Salmon in Silhouette is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Made with highly cleanable water-based inks.","application":"Non-Reversible with a straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, LEED® EQ 4.1, LEED® MR 5.1, raw material recycling"}, {"shopify_id":"gid://shopify/Product/7879455440947","handle":"secret-beach-platinum-hollywood-wallcoverings","title":"Secret Beach Platinum | Hollywood Wallcoverings","base_sku":"DWHD-507362","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>20% recycled content by weight, minimum 10% post-consumer</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Vallejo","color_name":"Platinum","momentum_sku":"09287221","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"","content":"20% recycled content by weight, minimum 10% post-consumer","finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Secret Beach in Platinum is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Non-reverse hang / Random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Highly cleanable water-based inks, Recycled content, Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7815308738611","handle":"spooners-cove-cornelia-hollywood-wallcoverings","title":"Spooners Cove Cornelia | Hollywood Wallcoverings","base_sku":"DWHD-507419","product_type":"Wallcovering","body_html":"<p>Spooners Cove in Cornelia is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Venezia","color_name":"Cornelia","momentum_sku":"09526042","width":"54","weight":"25 oz.","repeat_info":"","content":"100% vinyl","finish":"Cotton scrim","fire_rating":"ASTM E84 Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Spooners Cove in Cornelia is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, HPD, NSF/ANSI 342 certified, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816413478963","handle":"pacific-village-rock-garden-commercial-wallcovering-hollywood-wallcoverings","title":"Pacific Village - Rock Garden Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506862","product_type":"Commercial Wallcovering","body_html":"<p>This wallcovering features an abstract geometric pattern in neutral tones, creating a subtle yet modern aesthetic. Its textured surface adds depth and visual interest, making it suitable for both commercial and residential spaces.</p>","pattern_name":"Taking Shape","color_name":"Rock Garden","momentum_sku":"09564355","width":"54","weight":"20 oz.","repeat_info":"54\" V, 54\" H","content":"100% vinyl","finish":"Non-woven, 50% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"पैसिफिक Village in Rock Garden is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880575582259","handle":"pacific-point-ashwood-hollywood-wallcoverings","title":"Pacific Point Ashwood | Hollywood Wallcoverings","base_sku":"DWHD-507024","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>36\"</td>\n</tr></table>","pattern_name":"TIGHTWEAVE JUTE","color_name":"Ashwood","momentum_sku":"09362802","width":"36","weight":"2.00 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"SR","category":"Wallcovering","description":"पैसिफिक Point in Ashwood is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":4,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7815309819955","handle":"pacific-junction-reverie-hollywood-wallcoverings","title":"Pacific Junction Reverie | Hollywood Wallcoverings","base_sku":"DWHD-506955","product_type":"Wallcovering","body_html":"<p>This neutral wallcovering features a subtle, textured stripe pattern. Its understated design and durable non-woven construction make it ideal for high-traffic commercial spaces.</p>","pattern_name":"Terra","color_name":"Reverie","momentum_sku":"09491667","width":"54","weight":"20 oz.","repeat_info":"","content":"80% olefin composite, 20% post-industrial recycled olefin composite","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"पैसिफिक Junction in Reverie is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"PVC free, Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, HPD, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7880575451187","handle":"pacific-point-fawn-hollywood-wallcoverings","title":"Pacific Point Fawn | Hollywood Wallcoverings","base_sku":"DWHD-507025","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>36\"</td>\n</tr></table>","pattern_name":"TIGHTWEAVE JUTE","color_name":"Fawn","momentum_sku":"09362813","width":"36","weight":"2.00 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"SR","category":"Wallcovering","description":"पैसिफिक Point in Fawn is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":4,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880575483955","handle":"pacific-point-surf-hollywood-wallcoverings","title":"Pacific Point Surf | Hollywood Wallcoverings","base_sku":"DWHD-507026","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>36\"</td>\n</tr></table>","pattern_name":"TIGHTWEAVE JUTE","color_name":"Surf","momentum_sku":"09362824","width":"36","weight":"2.00 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"SR","category":"Wallcovering","description":"पैसिफिक Point in Surf is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":4,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7880575516723","handle":"pacific-point-warmth-hollywood-wallcoverings","title":"Pacific Point Warmth | Hollywood Wallcoverings","base_sku":"DWHD-507027","product_type":"Wallcovering","body_html":"<table><tr>\n<td>Width</td>\n<td>36\"</td>\n</tr></table>","pattern_name":"TIGHTWEAVE JUTE","color_name":"Warmth","momentum_sku":"09362835","width":"36","weight":"2.00 oz","repeat_info":"","content":null,"finish":null,"fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"SR","category":"Wallcovering","description":"पैसिफिक Point in Warmth is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":null,"full_roll_size":4,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7879455047731","handle":"mcclures-beach-cotton-hollywood-wallcoverings","title":"McClures Beach Cotton | Hollywood Wallcoverings","base_sku":"DWHD-506633","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Stitched Leather","color_name":"Cotton","momentum_sku":"09280621","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"7-1/4\" V","content":null,"finish":"Osnaburg","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 5, smoke developed 35 (test procedure is comparable to ANSI/UL 723, NFPA 255 and UBC 8-1)\nCAN/ULC S102 Tunnel Test: flame spread 5, smoke developed 20\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"McClures Beach in Cotton is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, 7.283\" (18.5 cm) vertical repeat, drop match","full_roll_size":30,"minimum_order":null,"sustainability":"LOW VOC, Recyclable through reclamation, Antimicrobial additives, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Manufacturing materials recovery and reuse program, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7879455178803","handle":"mcclures-beach-cowboy-boot-hollywood-wallcoverings","title":"McClures Beach Cowboy Boot | Hollywood Wallcoverings","base_sku":"DWHD-506634","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Stitched Leather","color_name":"Cowboy Boot","momentum_sku":"09280632","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"7-1/4\" V","content":null,"finish":"Osnaburg","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 5, smoke developed 35 (test procedure is comparable to ANSI/UL 723, NFPA 255 and UBC 8-1)\nCAN/ULC S102 Tunnel Test: flame spread 5, smoke developed 20\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"McClures Beach in Cowboy Boot is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse hang, 7.283\" (18.5 cm) vertical repeat, drop match","full_roll_size":30,"minimum_order":null,"sustainability":"LOW VOC, Recyclable through reclamation, Antimicrobial additives, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Manufacturing materials recovery and reuse program, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7815308247091","handle":"oceanside-harbor-malibu-hollywood-wallcoverings","title":"Oceanside Harbor Malibu | Hollywood Wallcoverings","base_sku":"DWHD-506747","product_type":"Wallcovering","body_html":"<p>Oceanside Harbor in Malibu is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Surf","color_name":"Malibu","momentum_sku":"09281776","width":"54","weight":"35 oz/ly (1085 g/lm)","repeat_info":"","content":"100% Vinyl","finish":"Osnaburg","fire_rating":"ASTM E-84 Tunnel Test: Class A, flame spread 0, smoke developed 10, NFPA 286 Corner Burn, NFPA 101 Life Cycle Safety Code & CAN/ULC S102-07","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Oceanside Harbor in Malibu is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Straight hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials., Made with highly cleanable water-based inks."}, {"shopify_id":"gid://shopify/Product/7880575549491","handle":"pacific-grove-linen-hollywood-wallcoverings","title":"Pacific Grove Linen | Hollywood Wallcoverings","base_sku":"DWHD-506788","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>70% wood pulp, 30% polyester</td>\n</tr>\n</table>","pattern_name":"Synthesis Fusion","color_name":"Linen","momentum_sku":"09341264","width":"54","weight":"0.89 oz","repeat_info":"10-1/8\" V","content":"70% wood pulp, 30% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 35 (test procedure is comparable to UL 723)\nEuropean Standard EN 13501 Fire Test: reaction to fire classification B-s1, do","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"पैसिफिक Grove in Linen is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, 10 1/8\" (25.5 cm) vertical repeat, straight across match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified (wood pulp), Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7880018853939","handle":"painted-cave-gulf-coast-hollywood-wallcoverings","title":"Painted Cave Gulf Coast | Hollywood Wallcoverings","base_sku":"DWHD-506805","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Tableau","color_name":"Gulf Coast","momentum_sku":"09282051","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class A – ASTM E-84, Passes NFPA 101 & IBC Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Painted Cave in Gulf Coast is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7816369831987","handle":"larkspur-landing-vapor-commercial-wallcovering-hollywood","title":"Larkspur Landing - Vapor Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506511","product_type":"Commercial Wallcovering","body_html":"<p>Larkspur Landing Vapor is a durable vinyl wallcovering with a subtle textured pattern. Its neutral beige color and minimalist design make it suitable for a variety of commercial and architectural applications.</p>","pattern_name":"Sonnet WC","color_name":"Vapor","momentum_sku":"09279114","width":"54","weight":"20 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" fire rated - tested in accordance with ASTM E-84 Tunnel Test\nPasses Class \"A\" NFPA 101 Life Safety Code\nPasses NFPA 286 Corner Burn Test","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Larkspur Landing in Vapor is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":"Contains 10% recycled content, Certified to NSF/ANSI 342 Sustainability Assessment, Meets California Section 01350 IAQ test requirements for wallcovering, Can contribute to LEED EQ 4.1 point for low-emitting materials, adhesives, and sealants, if used with low VOC adhesives, Can contribute to LEED MR 5.1 point for regional materials"}, {"shopify_id":"gid://shopify/Product/7880018296883","handle":"little-river-garden-path-hollywood-wallcoverings","title":"Little River Garden Path | Hollywood Wallcoverings","base_sku":"DWHD-506516","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Sonoma WC","color_name":"Garden Path","momentum_sku":"09279180","width":"54","weight":"20 oz/ly (452 gr/m²)","repeat_info":"24\" V","content":null,"finish":"Osnaburg","fire_rating":"Class A - ASTM E-84 (GRC), Passes NFPA 286 Corner Burn, NFPA 101 Life Safety Code, CAN/ULC S102-03","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Little River in Garden Path is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Highly cleanable water-based inks","application":"Reverse hang / Straight across match","full_roll_size":30,"minimum_order":null,"sustainability":"Recyclable through Versa's Second-Look® Program, Meets State of Washington Building Specification for Indoor Air Quality, Meets California Section 01350 Indoor Air Quality Standard, Aggressive manufacturing materials recovery and reuse program, Indoor Environmental Quality; Low emitting materials"}, {"shopify_id":"gid://shopify/Product/7816416460851","handle":"mad-river-pearl-luster-commercial-wallcovering-hollywood-wallcoverings","title":"Mad River - Pearl Luster Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506565","product_type":"Commercial Wallcovering","body_html":"<p>This neutral wallcovering offers a subtle textured look, perfect for creating a calming and sophisticated atmosphere. Its durable construction makes it ideal for high-traffic commercial spaces.</p>","pattern_name":"Spun Silk","color_name":"Pearl Luster","momentum_sku":"09280093","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 20, smoke developed 95 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 30\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13823 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Mad River in Pearl Luster is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"LOW VOC California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816416591923","handle":"manchester-beach-lunar-gray-commercial-wallcovering-hollywood-wallcoverings","title":"Manchester Beach - Lunar Gray Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506584","product_type":"Commercial Wallcovering","body_html":"<p>This Manchester Beach Lunar Gray wallcovering features a geometric, abstract pattern with metallic silver lines on a gray background. It is ideal for adding a touch of modern luxury to commercial and residential spaces.</p>","pattern_name":"Star-Crossed","color_name":"Lunar Gray","momentum_sku":"09280225","width":"54","weight":"Total Weight (oz./lin.yd): 20.3 oz.\nTotal Weight (oz./sq.yd): 13.0 oz.","repeat_info":"8-3/8\" V","content":null,"finish":"Fabric Type: Non-woven\nBacking Fabric Weight: 1.8oz./sq.yard","fire_rating":"Passes ASTM E84 – Class A","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Manchester Beach in Lunar Gray is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Wallcoverings should only be cleaned with mild\ningredients such as soap, detergent and water.","application":null,"full_roll_size":30,"minimum_order":null,"sustainability":"Indoor Air Quality – Passes California CDPH Standard method (Section 01350), Production - Printed using water-based inks, LEED - Can contribute towards LEED points"}, {"shopify_id":"gid://shopify/Product/7816412889139","handle":"pescadero-state-asscher-stone-commercial-wallcovering-hollywood-wallcoverings","title":"Pescadero State - Asscher Stone Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507092","product_type":"Commercial Wallcovering","body_html":"<p>This wallcovering features a geometric pattern with a subtle texture, perfect for adding depth to any space. The neutral color palette and clean lines make it a versatile choice for commercial and residential interiors.</p>","pattern_name":"Trielle","color_name":"Asscher Stone","momentum_sku":"09527802","width":"54","weight":"20 oz.","repeat_info":"9\" V, 4-1/4\" H","content":"100% vinyl","finish":"Non-woven, 85% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Pescadero State in Asscher Stone is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, NSF/ANSI 342 certified, Recycled content, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816416559155","handle":"point-dume-dipped-metal-commercial-wallcovering-hollywood-wallcoverings","title":"Point Dume - Dipped Metal Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507131","product_type":"Commercial Wallcovering","body_html":"<p>Point Dume Dipped Metal wallcovering offers a sophisticated and modern aesthetic with its textured metallic finish. The vertical striations and dark color palette create a dramatic and luxurious statement for high-end commercial and residential spaces.</p>","pattern_name":"Trunk Show","color_name":"Dipped Metal","momentum_sku":"09284801","width":"54","weight":"20.3 oz.","repeat_info":"","content":"Fabric Type: Non-Woven","finish":"Non-woven","fire_rating":"Tested in accordance with ASTM E-84 Tunnel Test\nClass A Fire Rated","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Point Dume in Dipped Metal is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Wallcoverings should only be cleaned with mild ingredients such as soap, detergent and water. Stronger, alkaline household cleaners have the potential to damage the surface of the wallcoverings, as does excessive scrubbing.","application":"Random Match - Reversible","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California 01350, LEED, FSC, Water-based inks, Heavy Metal-free"}, {"shopify_id":"gid://shopify/Product/7880574992435","handle":"quail-hollow-organza-weave-hollywood-wallcoverings","title":"Quail Hollow Organza Weave | Hollywood Wallcoverings","base_sku":"DWHD-507173","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Tulle","color_name":"Organza Weave","momentum_sku":"09285230","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 10, smoke developed 25 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 31\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13501 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Quail Hollow in Organza Weave is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recycled content, Low VOC, California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7879455670323","handle":"quail-hollow-silken-hollywood-wallcoverings","title":"Quail Hollow Silken | Hollywood Wallcoverings","base_sku":"DWHD-507176","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% vinyl</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n</table>","pattern_name":"Tulle","color_name":"Silken","momentum_sku":"09285263","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 10, smoke developed 25 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 31\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13501 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Quail Hollow in Silken is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recycled content, Low VOC, California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816370126899","handle":"quail-hollow-smooth-satin-commercial-wallcovering-hollywood","title":"Quail Hollow - Smooth Satin Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507177","product_type":"Commercial Wallcovering","body_html":"<p>Quail Hollow Smooth Satin is a refined wallcovering with a subtle horizontal texture, perfect for adding depth to any space. Its neutral color palette and durable construction make it ideal for high-traffic commercial and residential environments.</p>","pattern_name":"Tulle","color_name":"Smooth Satin","momentum_sku":"09285274","width":"54","weight":"20 oz/ly (620 g/lm)","repeat_info":"","content":"100% vinyl","finish":"Non-woven","fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 10, smoke developed 25 (test procedure is comparable to NFPA 255, UBC 8-1 and UL 723)\nCAN/ULC S102 Tunnel Test: flame spread 0, smoke developed 31\nNFPA 286 Corner Burn Test: meets requirements for flame spread, smoke developed and flashover\nEuropean Standard EN 13501 Fire Test: meets requirements","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Quail Hollow in Smooth Satin is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang, random match","full_roll_size":30,"minimum_order":null,"sustainability":"Recycled content, Low VOC, California Section 01350, Recyclable, Cadmium and mercury free, Contains no heavy metals, Does not contain DEHP plasticizers, Free of PBDE's (Brominated Flame Retardants), Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816370028595","handle":"table-bluff-taupe-commercial-wallcovering-hollywood","title":"Table Bluff - Taupe Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507454","product_type":"Commercial Wallcovering","body_html":"<p>This Table Bluff Taupe wallcovering offers a subtle, textured stripe design perfect for commercial spaces. Its durable vinyl construction ensures longevity and easy maintenance in high-traffic areas.</p>","pattern_name":"Venlo","color_name":"Taupe","momentum_sku":"09344652","width":"54","weight":"1.00 oz","repeat_info":"","content":"70% wood pulp, 30% polyester","finish":null,"fire_rating":"ASTM E84 Tunnel Test: Class A, flame spread 25, smoke developed 15 (test procedure is comparable to UL 723)\nEuropean Standard EN 13501 Fire Test: reaction to fire classification B-s2, do","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Table Bluff in Taupe is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Non-reverse hang unless otherwise noted on the roll, random match","full_roll_size":55,"minimum_order":null,"sustainability":"FSC certified, Low VOC, Water based"}, {"shopify_id":"gid://shopify/Product/7816413151283","handle":"black-point-jade-commercial-wallcovering-hollywood-wallcoverings","title":"Black Point - Jade Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507657","product_type":"Commercial Wallcovering","body_html":"<p>This durable vinyl wallcovering features a subtle texture and a sophisticated dark green colorway. Ideal for high-traffic commercial spaces, it offers both style and longevity.</p>","pattern_name":"Wabi Sabi","color_name":"Jade","momentum_sku":"09390005","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Black Point in Jade is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Made with highly cleanable HAPs Free solvent-based inks","application":"Reversible with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC. Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Contains no cadmium or mercury-based pigments."}, {"shopify_id":"gid://shopify/Product/7880575287347","handle":"sunset-cliffs-aura-hollywood-wallcoverings","title":"Sunset Cliffs Aura | Hollywood Wallcoverings","base_sku":"DWHD-507673","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>54\"</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Osnaburg</td>\n</tr>\n</table>","pattern_name":"Watercolor Silk","color_name":"Aura","momentum_sku":"09290202","width":"54","weight":"20.0 oz per lineal yard","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"CLASS A - ASTM E-84","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Sunset Cliffs in Aura is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reversible pattern with a random match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, Meets California Section 01350 Indoor Air Quality Standard, Can contribute to LEED® EQ 4.1 point for low-emitting materials, adhesives, and sealants if used with low VOC adhesives, Can contribute to LEED® MR 5.1 point for regional materials, Manufactured using comprehensive raw material recycling, Made with non-HAP inks, Printing inks are 100% recycled, Contains no cadmium or mercury-based pigments"}, {"shopify_id":"gid://shopify/Product/7879455080499","handle":"treasure-island-brown-birch-hollywood-wallcoverings","title":"Treasure Island Brown Birch | Hollywood Wallcoverings","base_sku":"DWHD-507816","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>36\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% cellulose</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Paper, 79% post-consumer recycled content</td>\n</tr>\n</table>","pattern_name":"Woods","color_name":"Brown Birch","momentum_sku":"09304887","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Brown Birch is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7880018460723","handle":"treasure-island-butternut-hollywood-wallcoverings","title":"Treasure Island Butternut | Hollywood Wallcoverings","base_sku":"DWHD-507818","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>36\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% cellulose</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Paper, 79% post-consumer recycled content</td>\n</tr>\n</table>","pattern_name":"Woods","color_name":"Butternut","momentum_sku":"09304909","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Butternut is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7816413544499","handle":"treasure-island-cypress-commercial-wallcovering-hollywood-wallcoverings","title":"Treasure Island - Cypress Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-507824","product_type":"Commercial Wallcovering","body_html":"<p>Treasure Island Cypress offers a realistic wood grain texture with a durable vinyl construction. This wallcovering is ideal for high-traffic commercial spaces seeking a natural and easy-to-maintain aesthetic.</p>","pattern_name":"Woods","color_name":"Cypress","momentum_sku":"09595705","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Cypress is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7881301360691","handle":"treasure-island-lacewood-hollywood-wallcoverings","title":"Treasure Island Lacewood | Hollywood Wallcoverings","base_sku":"DWHD-507848","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>36\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% cellulose</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Paper, 79% post-consumer recycled content</td>\n</tr>\n</table>","pattern_name":"Woods","color_name":"Lacewood","momentum_sku":"09305305","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Lacewood is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7880574795827","handle":"treasure-island-quartered-brown-ash-hollywood-wallcoverings","title":"Treasure Island Quartered Brown Ash | Hollywood Wallcoverings","base_sku":"DWHD-507856","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>36\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% cellulose</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Paper, 79% post-consumer recycled content</td>\n</tr>\n</table>","pattern_name":"Woods","color_name":"Quartered Brown Ash","momentum_sku":"09305360","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Quartered Brown Ash is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7880574763059","handle":"treasure-island-rifted-oak-hollywood-wallcoverings","title":"Treasure Island Rifted Oak | Hollywood Wallcoverings","base_sku":"DWHD-507862","product_type":"Wallcovering","body_html":"<table>\n<tr>\n<td>Width</td>\n<td>36\"</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>100% cellulose</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Paper, 79% post-consumer recycled content</td>\n</tr>\n</table>","pattern_name":"Woods","color_name":"Rifted Oak","momentum_sku":"09305558","width":"36","weight":"0.30 oz","repeat_info":"","content":"100% cellulose","finish":"Paper, 79% post-consumer recycled content","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Treasure Island in Rifted Oak is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Dusting","application":"SWS & SWM: Non-reverse hang, random match\nSWIII: Non-reverse hang, straight-match, 37.4\" V repeat\nSWIV: Non-reverse hang, straight-match, 49.2\" V repeat\nSWV: Non-reverse hang, half drop match, 37.4\" V repeat\nSWVI: Non-reverse hang, half drop match, 48.4\" V repeat","full_roll_size":55,"minimum_order":null,"sustainability":"PVC free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, Recycled content, FSC certified"}, {"shopify_id":"gid://shopify/Product/7814360989747","handle":"zipper-zing-toasted-almond-hollywood-wallcoverings","title":"Zipper Zing - Toasted Almond Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-508021","product_type":"Wallcovering","body_html":"<p>Zipper Zing in Toasted Almond is a textured commercial wallcovering by Hollywood Wallcoverings. Its warm driftwood tones and sophisticated surface bring refined elegance to any space. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Zipper Zing","color_name":"Toasted Almond","momentum_sku":"09482834","width":"54","weight":"20.0 oz. PLY/620 G/PLM 13.3 oz. PSY/451 G/PSM","repeat_info":"","content":null,"finish":"Osnaburg","fire_rating":"Class \"A\" Fire rated-Tested in accordance with ASTM E-84 Tunnel Test, Passes Class \"A\" NFPA 101 Life Safety Code, Passes NFPA 286 Corner Burn Test, Tested in accordance with CAN/ULC S102.2","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Spooner Cove in Toasted Almond is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":null,"application":"Reverse, random","full_roll_size":30,"minimum_order":null,"sustainability":null}, {"shopify_id":"gid://shopify/Product/7816413380659","handle":"las-cruces-lady-slipper-commercial-wallcovering-hollywood-wallcoverings","title":"Las Cruces - Lady Slipper Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-502243","product_type":"Commercial Wallcovering","body_html":"<p>This damask wallcovering features a classic floral pattern in beige against a light gray textured background. Ideal for adding a touch of traditional elegance to residential or commercial spaces.</p>","pattern_name":"Empress Filigree","color_name":"Lady Slipper","momentum_sku":"09636966","width":"54","weight":"20 oz.","repeat_info":"18\" V, 13\" H","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Las Cruces in Lady Slipper is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816365735987","handle":"point-pinos-parchment-commercial-wallcovering-hollywood","title":"Point Pinos - Parchment Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-503133","product_type":"Commercial Wallcovering","body_html":"<p>Point Pinos Parchment is a durable vinyl wallcovering with a woven, basketweave texture. This neutral beige pattern adds subtle visual interest to commercial spaces.</p>","pattern_name":"Hutton","color_name":"Parchment","momentum_sku":"09636064","width":"54","weight":"24 oz.","repeat_info":"1/8\" V","content":"100% vinyl","finish":"Osnaburg","fire_rating":"ASTM E84 Class A, CAN/ULC S102","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Point Pinos in Parchment is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Warm water, mild soap","application":"Non-reverse hang, straight-across match","full_roll_size":30,"minimum_order":null,"sustainability":"Phthalate free, Prop 65, GREENGUARD certified, Low-VOC CA Section 01350, EPD/HPD, Water-based inks"}, {"shopify_id":"gid://shopify/Product/7816414920755","handle":"humboldt-lagoons-linen-sail-commercial-wallcovering-hollywood-wallcoverings","title":"Humboldt Lagoons - Linen Sail Commercial Wallcovering | Hollywood Wallcoverings","base_sku":"DWHD-506352","product_type":"Commercial Wallcovering","body_html":"<p>This geometric wallcovering features a modern design with a linen-like texture. The abstract pattern and neutral color palette make it suitable for a variety of commercial and residential spaces.</p>","pattern_name":"Simply Geo","color_name":"Linen Sail","momentum_sku":"09639012","width":"54","weight":"20 oz. PLY, 620 G/PLM 13.3 oz. PSY, 451 G/PSM","repeat_info":"18\" V","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"Humboldt Lagoons in Linen Sail is a textured wallcovering by Hollywood Wallcoverings featuring sophisticated colorways. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants","application":"Reverse Match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, RECYCLED CONTENT, 10% Recycled content, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65, no labeling required"}, {"shopify_id":"gid://shopify/Product/7815337836595","handle":"san-ysidro-cane-hollywood-wallcoverings","title":"San Ysidro Cane | Hollywood Wallcoverings","base_sku":"DWHD-500000","product_type":"Wallcovering","body_html":"<p>San Ysidro in Cane is a textured wallcovering by Hollywood Wallcoverings featuring rich Cane tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.</p>","pattern_name":"Abaca Geo","color_name":"Cane","momentum_sku":"09652322","width":"54","weight":"20.0 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM","repeat_info":"52\" V, 18\" H","content":null,"finish":"Non-woven","fire_rating":"ACT Flammability, ACT Colorfastness, Flame Cert","has_flame_cert":true,"uom":"YD","category":"Wallcovering","description":"San Ysidro in Cane is a textured wallcovering by Hollywood Wallcoverings featuring rich Cane tones. Its commercial-grade durability meets refined design with ACT-certified performance. Ideal for hospitality, corporate, and high-traffic residential interiors.","cleaning":"Inherent anti-microbial protection\nWithstands hospital-grade cleaners & disinfectants","application":"Straight Match","full_roll_size":30,"minimum_order":null,"sustainability":"Low VOC, California Section 01350 IA Q, 10% Recycled content, Non-Phthalate, NSF/ANSI 342 certified, EPD/HPD, California Prop 65, no labeling required"}]
← 8d25794 auto-save: 2026-07-15T08:05:18 (2 files) — hollywood-add-yar
·
back to Hollywood Import
·
specs fix: backfill metafields+body on 366 metafield-less Ho 3a08d03 →