[object Object]

← back to Hollywood Body Table Migration

Hollywood body-table -> metafield migration (script + dry-run restore)

5a64ef93b78a7b65beb11fdc9d64d3a8e040a3ca · 2026-08-18 13:19:32 -0700 · Steve

Files touched

Diff

commit 5a64ef93b78a7b65beb11fdc9d64d3a8e040a3ca
Author: Steve <steve@designerwallcoverings.com>
Date:   Tue Aug 18 13:19:32 2026 -0700

    Hollywood body-table -> metafield migration (script + dry-run restore)
---
 .gitignore                                  |  5 ++
 migrate.py                                  | 87 +++++++++++++++++++++++++++++
 restore/restore-DRYRUN-20260818-200650.json |  1 +
 3 files changed, 93 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ff2422c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+node_modules/
+.env*
+tmp/
+*.log
+.DS_Store
diff --git a/migrate.py b/migrate.py
new file mode 100644
index 0000000..1687a6b
--- /dev/null
+++ b/migrate.py
@@ -0,0 +1,87 @@
+#!/usr/bin/env python3
+"""Move Hollywood Wallcoverings spec <table> data out of body_html into global.* metafields.
+Lossless: backfills any table label whose metafield is absent/empty BEFORE stripping the table.
+Reversible: snapshots every original body_html + records created metafields to restore/.
+Usage: migrate.py [--apply]   (default = DRY RUN)
+"""
+import os,json,re,time,sys,urllib.request,urllib.parse,urllib.error,datetime
+APPLY='--apply' in sys.argv
+STORE=os.environ.get('SHOPIFY_STORE_DOMAIN','designer-laboratory-sandbox.myshopify.com')
+TOK=os.environ['SHOPIFY_ADMIN_TOKEN']
+API=f"https://{STORE}/admin/api/2024-10"
+HDR={'X-Shopify-Access-Token':TOK,'Content-Type':'application/json'}
+
+# table label -> metafield (namespace,key). Unknown labels slugified to global.<snake>.
+MAP={
+ 'Width':('global','width'), 'Weight':('global','v_prods_weight'),
+ 'Fire Rating':('global','fire_rating'), 'Sold Per':('global','unit_of_measure'),
+ 'Panel Spec':('global','panel_spec'), 'Repeat':('global','repeat'),
+ 'Finish':('global','finish'), 'Cleaning':('global','cleaning'),
+}
+def key_for(label):
+    if label in MAP: return MAP[label]
+    return ('global', re.sub(r'[^a-z0-9]+','_',label.lower()).strip('_'))
+
+def req(method,url,body=None):
+    for attempt in range(6):
+        try:
+            r=urllib.request.Request(url,data=(json.dumps(body).encode() if body else None),headers=HDR,method=method)
+            resp=urllib.request.urlopen(r); return json.load(resp)
+        except urllib.error.HTTPError as e:
+            if e.code==429: time.sleep(2*(attempt+1)); continue
+            print('HTTP',e.code,url,e.read()[:200]); return None
+        except Exception as ex:
+            time.sleep(1); continue
+    return None
+
+def parse_rows(body):
+    return [(l.strip(),v.strip()) for l,v in re.findall(r'<td>\s*([^<]+?)\s*</td>\s*<td>\s*([^<]*?)\s*</td>', body)]
+
+def strip_tables(body):
+    b=re.sub(r'<table[\s\S]*?</table>','',body,flags=re.I)
+    b=re.sub(r'\s+$','',b).strip()
+    return b
+
+rows=json.load(open('/tmp/hw_all.json'))
+targets=[r for r in rows if '<table' in r['body'].lower()]
+ts=datetime.datetime.utcnow().strftime('%Y%m%d-%H%M%S')
+restore={'ts':ts,'store':STORE,'products':[]}
+created_count=0; body_changes=0; skipped=0
+for i,r in enumerate(targets,1):
+    pid=r['id']; body=r['body']
+    tbl=parse_rows(body)
+    # fetch existing metafields
+    mfs=req('GET',f"{API}/products/{pid}/metafields.json") or {'metafields':[]}
+    have={(m['namespace'],m['key']):(m.get('value') or '').strip() for m in mfs['metafields']}
+    created=[]
+    for label,val in tbl:
+        if not val: continue
+        ns,k=key_for(label)
+        if have.get((ns,k)):   # already present & non-empty -> keep curated value
+            continue
+        # backfill missing datum
+        if APPLY:
+            res=req('POST',f"{API}/products/{pid}/metafields.json",
+                {'metafield':{'namespace':ns,'key':k,'type':'single_line_text_field','value':val}})
+            mid=res['metafield']['id'] if res and res.get('metafield') else None
+            if mid: created.append({'id':mid,'ns':ns,'key':k,'val':val}); created_count+=1
+            time.sleep(0.25)
+        else:
+            created.append({'id':None,'ns':ns,'key':k,'val':val}); created_count+=1
+    new_body=strip_tables(body)
+    if new_body!=body:
+        restore['products'].append({'id':pid,'handle':r['handle'],'old_body':body,'created_metafields':created})
+        if APPLY:
+            req('PUT',f"{API}/products/{pid}.json",{'product':{'id':pid,'body_html':new_body}})
+            body_changes+=1; time.sleep(0.25)
+        else:
+            body_changes+=1
+    else:
+        skipped+=1
+    if i%50==0: print(f'  ...{i}/{len(targets)} processed')
+
+mode='APPLY' if APPLY else 'DRYRUN'
+rf=os.path.expanduser(f'~/Projects/hollywood-body-table-migration/restore/restore-{mode}-{ts}.json')
+json.dump(restore,open(rf,'w'))
+print(f'[{mode}] products with table: {len(targets)}  body-strips: {body_changes}  metafields backfilled: {created_count}  no-change: {skipped}')
+print('restore/undo file:',rf)
diff --git a/restore/restore-DRYRUN-20260818-200650.json b/restore/restore-DRYRUN-20260818-200650.json
new file mode 100644
index 0000000..430467d
--- /dev/null
+++ b/restore/restore-DRYRUN-20260818-200650.json
@@ -0,0 +1 @@
+{"ts": "20260818-200650", "store": "designer-laboratory-sandbox.myshopify.com", "products": [{"id": 7902661410867, "handle": "chock-burgundy-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902664359987, "handle": "chock-celadon-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a speckled texture ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902663540787, "handle": "chock-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902662066227, "handle": "chock-charcoal-hollywood-wallcoverings", "old_body": "<p>A matte, textured acoustic panel designed for sound absorption and aesthetic appeal in modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902661607475, "handle": "chock-dark-umber-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish suitable for sound absorption and interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902663213107, "handle": "chock-harvest-tan-hollywood-wallcoverings-3", "old_body": "<p>A textured acoustic panel with a speckled finish ideal for sound absorption and aesthetic appeal in interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902663704627, "handle": "chock-harvest-tan-hollywood-wallcoverings-4", "old_body": "<p>A natural cork wallcovering with a matte finish ideal for acoustic panels and eco-friendly decor.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902664097843, "handle": "chock-harvest-tan-hollywood-wallcoverings-5", "old_body": "<p>A matte-finish acoustic panel with a speckled texture ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902664753203, "handle": "chock-harvest-tan-hollywood-wallcoverings-6", "old_body": "<p>This cork wallcovering/acoustic panel features a natural, organic texture with speckled patterns and a matte finish suitable for acoustic applications or as a decorative element in interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902666752051, "handle": "chock-harvest-tan-hollywood-wallcoverings-7", "old_body": "<p>A textured acoustic panel with a natural stone-like finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902663868467, "handle": "chock-navy-blue-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish suitable for noise reduction and aesthetic wall decor.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902661017651, "handle": "chock-olive-green-hollywood-wallcoverings", "old_body": "<p>A matte-finish acoustic panel with a speckled texture ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902664458291, "handle": "chock-plum-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish ideal for sound absorption and aesthetic appeal in interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902661214259, "handle": "chock-ruby-red-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish ideal for sound absorption and decorative wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902665736243, "handle": "chock-terracotta-hollywood-wallcoverings", "old_body": "<p>A natural terracotta wallcovering with a matte finish suitable for acoustic panels or decorative walls.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902660853811, "handle": "chock-turquoise-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a speckled finish ideal for noise reduction and aesthetic appeal in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>9.7\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>10.58 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902667309107, "handle": "circ-alabaster-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a geometric pattern and a smooth finish ideal for interior walls.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904914833459, "handle": "circ-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a subtle geometric pattern designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915882035, "handle": "circ-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A textured acoustic panel with a subtle geometric pattern designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915816499, "handle": "circ-black-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a textured finish featuring concentric circles and grid patterns for sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904914866227, "handle": "circ-blush-hollywood-wallcoverings", "old_body": "<p>A soft, matte finish acoustic panel with a geometric circle pattern ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902668587059, "handle": "circ-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a textured finish featuring overlapping circular patterns for aesthetic and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915914803, "handle": "circ-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A modern acoustic panel with a textured finish featuring repeating circular patterns for both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902668816435, "handle": "circ-charcoal-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a modern geometric pattern in Charcoal color, suitable for sound absorption and contemporary interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904914997299, "handle": "circ-charcoal-hollywood-wallcoverings-1", "old_body": "<p>A modern acoustic panel with a textured finish featuring overlapping circular patterns for both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915783731, "handle": "circ-crimson-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a bold geometric pattern of overlapping circles in a deep crimson hue.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904914898995, "handle": "circ-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern in Harvest Tan, suitable for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915587123, "handle": "circ-lime-green-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a repeating geometric circle pattern designed for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7902668128307, "handle": "circ-linen-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a subtle geometric pattern designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915292211, "handle": "circ-navy-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric circle pattern designed for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904915980339, "handle": "circ-teal-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a modern geometric pattern with a smooth finish ideal for sound absorption and contemporary decor.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916013107, "handle": "circ-terracotta-hollywood-wallcoverings", "old_body": "<p>A matte-finished acoustic panel with a geometric circle pattern ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916045875, "handle": "circlet-alabaster-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a sleek geometric pattern in neutral tones for contemporary spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916078643, "handle": "circlet-charcoal-hollywood-wallcoverings", "old_body": "<p>This wallcovering/acoustic panel features a modern geometric pattern with a matte finish suitable for both aesthetic and acoustic purposes.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904917520435, "handle": "circlet-charcoal-hollywood-wallcoverings-1", "old_body": "<p>A modern acoustic panel with a sleek geometric pattern in varying shades of charcoal and gray, suitable for contemporary interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916144179, "handle": "circlet-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern in Harvest Tan and dark blue tones, suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916111411, "handle": "circlet-midnight-blue-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a modern geometric pattern with semi-circles in varying shades of blue and gray, ideal for enhancing sound absorption while adding visual interest to any space.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904916832307, "handle": "circlet-purple-plum-hollywood-wallcoverings", "old_body": "<p>The textured acoustic panel features a geometric pattern with semi-circles in varying shades of purple and brown on a black background, ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904917585971, "handle": "clara-silk-blush-pink-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel with a subtle speckled finish ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7904917553203, "handle": "clara-silk-blush-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907132538931, "handle": "clara-silk-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907132702771, "handle": "clara-silk-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for sound absorption and interior decor.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907132178483, "handle": "clara-silk-lavender-mist-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel designed for modern office spaces to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907132375091, "handle": "clara-silk-lavender-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, velvety finish ideal for modern interior spaces seeking both sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907133489203, "handle": "cluster-alabaster-hollywood-wallcoverings", "old_body": "<p>This textured wallcovering features a subtle, embossed pattern that mimics natural stone, ideal for creating a sophisticated and organic ambiance in interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>54\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>1.50 oz</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "1.50 oz"}]}, {"id": 7907133325363, "handle": "cluster-black-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a dark, matte finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>54\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>1.50 oz</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "1.50 oz"}]}, {"id": 7907132997683, "handle": "cluster-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a woven pattern that enhances sound absorption and adds visual interest to interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>54\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>1.50 oz</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "1.50 oz"}]}, {"id": 7907132801075, "handle": "cluster-charcoal-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a deep, rich Charcoal finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>54\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>1.50 oz</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "1.50 oz"}]}, {"id": 7907133194291, "handle": "cluster-midnight-navy-hollywood-wallcoverings", "old_body": "<p>A deep, textured acoustic panel with a velvety finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>54\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>1.50 oz</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "1.50 oz"}]}, {"id": 7908769300531, "handle": "composition-panel-smooth-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769366067, "handle": "composition-panel-smooth-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769398835, "handle": "composition-panel-smooth-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433076787, "handle": "composition-panel-smooth-alabaster-hollywood-wallcoverings-3", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768383027, "handle": "composition-panel-smooth-aquamarine-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769529907, "handle": "composition-panel-smooth-black-hollywood-wallcoverings", "old_body": "<p>A matte black wallcovering with a subtle textured finish suitable for acoustic panels or modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769693747, "handle": "composition-panel-smooth-burgundy-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture suitable for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907133685811, "handle": "composition-panel-smooth-celadon-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel with a matte finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769103923, "handle": "composition-panel-smooth-celadon-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for interior walls to enhance sound absorption and add visual interest.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134767155, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134930995, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A matte-finished acoustic panel with a soft, felt-like texture ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907135389747, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture for modern interior design applications.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768415795, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel with a uniform texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769202227, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769562675, "handle": "composition-panel-smooth-charcoal-gray-hollywood-wallcoverings-5", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for\u5438\u97f3 and aesthetic appeal in interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907135062067, "handle": "composition-panel-smooth-crimson-hollywood-wallcoverings", "old_body": "<p>A matte-finished, deep crimson wallcovering/acoustic panel suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433240627, "handle": "composition-panel-smooth-denim-blue-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768448563, "handle": "composition-panel-smooth-forest-green-hollywood-wallcoverings", "old_body": "<p>A matte-finished acoustic panel with a soft, felt-like texture ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433338931, "handle": "composition-panel-smooth-forest-green-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134046259, "handle": "composition-panel-smooth-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134603315, "handle": "composition-panel-smooth-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel with a soft, textured surface ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768546867, "handle": "composition-panel-smooth-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel with a subtle textured surface ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433109555, "handle": "composition-panel-smooth-harvest-tan-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel with a subtle textured surface ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433142323, "handle": "composition-panel-smooth-harvest-tan-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a warm, earthy finish ideal for interior design applications requiring both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134472243, "handle": "composition-panel-smooth-lavender-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769497139, "handle": "composition-panel-smooth-light-slate-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768481331, "handle": "composition-panel-smooth-lime-green-hollywood-wallcoverings", "old_body": "<p>A vibrant lime green acoustic panel with a textured finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769234995, "handle": "composition-panel-smooth-lime-green-hollywood-wallcoverings-1", "old_body": "<p>A soft, felt-like texture with a matte finish suitable for acoustic panels or interior wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433273395, "handle": "composition-panel-smooth-mocha-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, textured surface ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908768841779, "handle": "composition-panel-smooth-navy-blue-hollywood-wallcoverings", "old_body": "<p>A deep navy blue acoustic panel with a textured finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769267763, "handle": "composition-panel-smooth-navy-blue-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769464371, "handle": "composition-panel-smooth-navy-hollywood-wallcoverings", "old_body": "<p>A matte-finished acoustic panel with a dense, felt-like texture suitable for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769431603, "handle": "composition-panel-smooth-pale-blue-hollywood-wallcoverings", "old_body": "<p>A soft, felt-like texture suitable for acoustic panels or interior wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>47\"\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907134210099, "handle": "composition-panel-smooth-ruby-red-hollywood-wallcoverings", "old_body": "<p>A vibrant red acoustic panel with a matte finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433404467, "handle": "composition-panel-smooth-rustic-red-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a warm, earthy finish ideal for creating cozy and acoustically balanced spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907133915187, "handle": "composition-panel-smooth-teal-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7908769333299, "handle": "composition-panel-smooth-teal-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433175091, "handle": "composition-panel-smooth-teal-hollywood-wallcoverings-2", "old_body": "<p>A soft, felt-like acoustic panel with a matte finish ideal for interior walls to enhance sound absorption and provide a subtle aesthetic.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7907135225907, "handle": "composition-panel-smooth-turquoise-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184512563, "handle": "composition-panel-velour-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184905779, "handle": "composition-panel-velour-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185004083, "handle": "composition-panel-velour-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A soft, neutral-toned wallcovering with a subtle matte finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185987123, "handle": "composition-panel-velour-alabaster-hollywood-wallcoverings-3", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911434092595, "handle": "composition-panel-velour-aquamarine-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185167923, "handle": "composition-panel-velour-black-hollywood-wallcoverings", "old_body": "<p>A matte black wallcovering with a smooth finish ideal for acoustic panels or modern interior decor.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913537962035, "handle": "composition-panel-velour-blue-slate-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185823283, "handle": "composition-panel-velour-burgundy-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture suitable for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433470003, "handle": "composition-panel-velour-celadon-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel with a matte finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183955507, "handle": "composition-panel-velour-celadon-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433863219, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a subtle textured surface ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433928755, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A matte-finished acoustic panel with a soft, felt-like texture ideal for interior wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911434059827, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings-2", "old_body": "<p>A matte-finished acoustic panel with a uniform dark gray color suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183136307, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel with a soft, uniform texture ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184053811, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish ideal for interior walls to enhance sound absorption and add visual interest.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185626675, "handle": "composition-panel-velour-charcoal-gray-hollywood-wallcoverings-5", "old_body": "<p>A matte-finished acoustic panel with a soft, felt-like texture ideal for interior walls or ceilings to enhance sound absorption and create a cozy ambiance.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433961523, "handle": "composition-panel-velour-crimson-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a rich, deep red hue ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913538355251, "handle": "composition-panel-velour-dark-green-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a matte finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183332915, "handle": "composition-panel-velour-forest-green-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433601075, "handle": "composition-panel-velour-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture ideal for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433830451, "handle": "composition-panel-velour-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>A soft, textured finish ideal for acoustic panels in a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183627827, "handle": "composition-panel-velour-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel with a subtle textured surface ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912186118195, "handle": "composition-panel-velour-harvest-tan-hollywood-wallcoverings-3", "old_body": "<p>This textured acoustic panel offers a warm and natural appearance suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913537830963, "handle": "composition-panel-velour-harvest-tan-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a warm, earthy finish ideal for interior design applications requiring both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433764915, "handle": "composition-panel-velour-lavender-hollywood-wallcoverings", "old_body": "<p>A soft, felt-like texture ideal for acoustic panels or interior walls.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185495603, "handle": "composition-panel-velour-light-slate-hollywood-wallcoverings", "old_body": "<p>A soft, textured acoustic panel with a subtle sheen suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183463987, "handle": "composition-panel-velour-lime-green-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a vibrant lime green finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184217651, "handle": "composition-panel-velour-lime-green-hollywood-wallcoverings-1", "old_body": "<p>This textured acoustic panel features a soft, felt-like finish ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913537994803, "handle": "composition-panel-velour-mocha-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a soft, velvety texture ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912183791667, "handle": "composition-panel-velour-navy-blue-hollywood-wallcoverings", "old_body": "<p>A deep, textured acoustic panel designed for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184381491, "handle": "composition-panel-velour-navy-blue-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel with a soft, felt-like texture suitable for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912185298995, "handle": "composition-panel-velour-navy-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a matte finish suitable for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433699379, "handle": "composition-panel-velour-red-hollywood-wallcoverings", "old_body": "<p>A vibrant red acoustic panel with a felt-like texture suitable for interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913538715699, "handle": "composition-panel-velour-rustic-red-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a warm, earthy finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911433535539, "handle": "composition-panel-velour-teal-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for interior walls and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7912184709171, "handle": "composition-panel-velour-teal-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for interior wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913537896499, "handle": "composition-panel-velour-teal-hollywood-wallcoverings-2", "old_body": "<p>A soft, felt-like texture with a matte finish suitable for acoustic panels or interior decor.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7911434027059, "handle": "composition-panel-velour-turquoise-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>17.00 lb</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539305523, "handle": "covered-quietspace-velour-1in-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>16.00 lb</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7913539338291, "handle": "covered-quietspace-velour-1in-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>16.00 lb</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7913539371059, "handle": "covered-quietspace-velour-1in-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A smooth, textured wallcovering with a subtle sheen suitable for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>16.00 lb</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7913539043379, "handle": "covered-quietspace-velour-1in-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>16.00 lb</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7913539272755, "handle": "covered-quietspace-velour-1in-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A matte-finished acoustic panel with a subtle speckled texture ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>16.00 lb</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7914287202355, "handle": "cross-black-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a diamond pattern designed for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539665971, "handle": "cross-burgundy-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a geometric pattern with a deep burgundy finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287235123, "handle": "cross-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a geometric lattice design with horizontal striations for added visual interest and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287267891, "handle": "cross-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>This acoustic panel features a textured diamond pattern with horizontal lines for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539698739, "handle": "cross-chocolate-brown-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a diamond pattern and ribbed finish for sound dampening.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539403827, "handle": "cross-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric lattice design, ideal for modern interior spaces seeking both functionality and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539436595, "handle": "cross-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>This textured acoustic panel features a geometric pattern with diagonal lines and X shapes, ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539502131, "handle": "cross-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>This textured acoustic panel features a geometric lattice pattern that enhances sound absorption and adds visual interest to any interior space.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287300659, "handle": "cross-harvest-tan-hollywood-wallcoverings-3", "old_body": "<p>This textured acoustic panel features a geometric X pattern with vertical lines, ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287398963, "handle": "cross-harvest-tan-hollywood-wallcoverings-4", "old_body": "<p>This textured acoustic panel features a geometric pattern with diagonal lines and X shapes, ideal for\u5438\u97f3\u964d\u566a\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539567667, "handle": "cross-lime-green-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a geometric pattern with a ribbed finish for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287366195, "handle": "cross-navy-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a diamond pattern and ribbed finish for sound absorption in interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287464499, "handle": "cross-plum-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a diamond pattern with vertical lines, ideal for\u5438\u97f3\u548c\u88c5\u9970\u3002</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539600435, "handle": "cross-red-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern designed for sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287431731, "handle": "cross-sage-green-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a geometric pattern with diagonal lines and crossbars, ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539469363, "handle": "cross-teal-hollywood-wallcoverings", "old_body": "<p>This textured acoustic panel features a diamond pattern with a ribbed finish for sound absorption and visual interest.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7913539534899, "handle": "cross-teal-hollywood-wallcoverings-1", "old_body": "<p>This textured acoustic panel features a geometric pattern with diagonal lines creating an X-shape, suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>27.3\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>11.13 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Box</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287530035, "handle": "cross-the-line-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a sleek geometric pattern and subtle metallic accents for contemporary interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287562803, "handle": "cross-the-line-charcoal-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a modern geometric pattern in muted tones for sound absorption and visual interest.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287661107, "handle": "cross-the-line-charcoal-hollywood-wallcoverings-1", "old_body": "<p>A sleek acoustic panel with a modern geometric pattern in muted tones for contemporary interiors.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287628339, "handle": "cross-the-line-lime-green-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces, featuring geometric patterns in contrasting colors.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287595571, "handle": "cross-the-line-navy-hollywood-wallcoverings", "old_body": "<p>A matte-finish acoustic panel with intersecting geometric lines in red and blue on a dark navy background.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287497267, "handle": "cross-the-line-white-hollywood-wallcoverings", "old_body": "<p>A sleek acoustic panel with a geometric pattern for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>118\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287693875, "handle": "crosscut-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287890483, "handle": "crosscut-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915257823283, "handle": "crosscut-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A modern acoustic panel with a subtle geometric pattern and smooth finish ideal for contemporary interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287923251, "handle": "crosscut-blush-pink-hollywood-wallcoverings", "old_body": "<p>A soft, matte acoustic panel with a geometric pattern for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287792179, "handle": "crosscut-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern designed for sound absorption and modern decor.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256578099, "handle": "crosscut-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a modern geometric pattern, ideal for sound absorption and contemporary wall decor.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256873011, "handle": "crosscut-charcoal-hollywood-wallcoverings", "old_body": "<p>A sleek, modern acoustic panel with a matte finish designed for sound absorption and aesthetic appeal in contemporary interiors.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256676403, "handle": "crosscut-crimson-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with geometric lines, ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287759411, "handle": "crosscut-graphite-hollywood-wallcoverings", "old_body": "<p>A modern acoustic panel with a textured finish designed for sound absorption and aesthetic appeal in contemporary interiors.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256545331, "handle": "crosscut-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with geometric patterns ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7914287726643, "handle": "crosscut-light-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern, ideal for modern office or home decor.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256643635, "handle": "crosscut-lime-green-hollywood-wallcoverings", "old_body": "<p>A smooth, matte acoustic panel with geometric lines for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915256610867, "handle": "crosscut-navy-blue-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a geometric pattern in a deep navy blue, suitable for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915258085427, "handle": "crosscut-neutral-gray-hollywood-wallcoverings", "old_body": "<p>A smooth, matte acoustic panel with geometric lines enhancing its modern aesthetic for interior walls.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915258118195, "handle": "crosscut-teal-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915258150963, "handle": "crosscut-terracotta-hollywood-wallcoverings", "old_body": "<p>A smooth, matte terracotta acoustic panel with geometric lines for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.00 lb</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>120\" V, 48\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7915258183731, "handle": "cube-concrete-1in-concrete-gray-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258249267, "handle": "cube-concrete-9mm-concrete-gray-hollywood-wallcoverings", "old_body": "<p>A smooth, textured acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9mm</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9mm"}]}, {"id": 7915258282035, "handle": "cube-stone-1in-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel with a subtle veining pattern reminiscent of marble, ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258314803, "handle": "cube-stone-1in-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light beige acoustic panel with subtle veining suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258347571, "handle": "cube-stone-1in-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A sleek and modern acoustic panel with a subtle marble-like finish ideal for contemporary interior design spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258413107, "handle": "cube-stone-1in-alabaster-hollywood-wallcoverings-3", "old_body": "<p>A sleek and modern acoustic panel with a smooth marble-like finish ideal for contemporary interiors.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258511411, "handle": "cube-stone-1in-black-marble-hollywood-wallcoverings", "old_body": "<p>A sleek black marble wallcovering/acoustic panel with a polished finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258380339, "handle": "cube-stone-1in-desert-sand-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a natural stone-like finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915260051507, "handle": "cube-stone-1in-emerald-green-hollywood-wallcoverings", "old_body": "<p>A sleek and modern acoustic panel with a deep emerald green finish featuring subtle veining for a natural stone-like appearance.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915258445875, "handle": "cube-stone-1in-terracotta-hollywood-wallcoverings", "old_body": "<p>A textured terracotta wallcovering with a natural finish suitable for acoustic panels.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915793776691, "handle": "cube-stone-9mm-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, light gray acoustic panel with subtle veining that mimics marble, ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793842227, "handle": "cube-stone-9mm-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, high-gloss finish with subtle veining, ideal for modern acoustic panels in interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793907763, "handle": "cube-stone-9mm-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A smooth, elegant marble-like finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793973299, "handle": "cube-stone-9mm-black-marble-hollywood-wallcoverings", "old_body": "<p>A sleek black marble panel with a polished finish ideal for modern interior design and acoustic applications.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793874995, "handle": "cube-stone-9mm-desert-sand-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a subtle veining effect and a matte finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915794006067, "handle": "cube-stone-9mm-emerald-green-hollywood-wallcoverings", "old_body": "<p>A luxurious acoustic panel with a deep emerald green finish and subtle veining, ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793809459, "handle": "cube-stone-9mm-ivory-hollywood-wallcoverings", "old_body": "<p>A smooth, textured acoustic panel with a natural stone-like finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915793940531, "handle": "cube-stone-9mm-terracotta-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a warm terracotta finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915794038835, "handle": "cube-stucco-1in-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern office spaces and studios.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794104371, "handle": "cube-stucco-1in-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel designed for interior walls to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794137139, "handle": "cube-stucco-9mm-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7915794202675, "handle": "cube-stucco-9mm-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916259115059, "handle": "cube-timber-1in-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, light gray panel with a subtle wood grain texture suitable for acoustic panels or interior walls.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259246131, "handle": "cube-timber-1in-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light beige acoustic panel with a subtle wood grain finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794497587, "handle": "cube-timber-1in-beech-hollywood-wallcoverings", "old_body": "<p>A smooth, natural wood finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259213363, "handle": "cube-timber-1in-beech-hollywood-wallcoverings-1", "old_body": "<p>A smooth, natural wood finish acoustic panel ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794399283, "handle": "cube-timber-1in-birch-hollywood-wallcoverings", "old_body": "<p>A smooth birch wallcovering/acoustic panel with a natural wood finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259409971, "handle": "cube-timber-1in-birch-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light birch finish acoustic panel ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259573811, "handle": "cube-timber-1in-birch-hollywood-wallcoverings-2", "old_body": "<p>A smooth birch wood finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259082291, "handle": "cube-timber-1in-black-ash-hollywood-wallcoverings", "old_body": "<p>A sleek black ash finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794366515, "handle": "cube-timber-1in-cherrywood-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a smooth, natural wood grain finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794464819, "handle": "cube-timber-1in-cherrywood-hollywood-wallcoverings-1", "old_body": "<p>This acoustic panel features a natural wood grain finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": []}, {"id": 7916259541043, "handle": "cube-timber-1in-cherrywood-hollywood-wallcoverings-2", "old_body": "<p>This acoustic panel features a smooth finish with natural wood grain patterns ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794235443, "handle": "cube-timber-1in-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259147827, "handle": "cube-timber-1in-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light oak finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259278899, "handle": "cube-timber-1in-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>A smooth, textured acoustic panel with a natural wood grain finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794432051, "handle": "cube-timber-1in-mahogany-hollywood-wallcoverings", "old_body": "<p>A smooth, glossy finish with a rich, warm tone ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259442739, "handle": "cube-timber-1in-natural-beige-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794268211, "handle": "cube-timber-1in-natural-oak-hollywood-wallcoverings", "old_body": "<p>A smooth, light oak finish ideal for acoustic panels in modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259311667, "handle": "cube-timber-1in-natural-oak-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel with a natural wood grain appearance ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259475507, "handle": "cube-timber-1in-natural-oak-hollywood-wallcoverings-2", "old_body": "<p>A smooth, matte-finished acoustic panel with a natural wood grain pattern ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259344435, "handle": "cube-timber-1in-oak-hollywood-wallcoverings", "old_body": "<p>A smooth, natural wood grain finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259508275, "handle": "cube-timber-1in-oak-hollywood-wallcoverings-1", "old_body": "<p>This panel features a natural wood grain finish ideal for acoustic applications and interior wall coverings.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7915794300979, "handle": "cube-timber-1in-walnut-brown-hollywood-wallcoverings", "old_body": "<p>A smooth, glossy acoustic panel with a rich walnut finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259606579, "handle": "cube-timber-1in-walnut-hollywood-wallcoverings", "old_body": "<p>A smooth, natural wood grain finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916259180595, "handle": "cube-timber-1in-warm-gray-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a smooth finish with subtle wood grain patterns ideal for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7916739100723, "handle": "cube-timber-9mm-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, light gray acoustic panel with a subtle wood grain finish ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739264563, "handle": "cube-timber-9mm-alabaster-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light beige acoustic panel with a subtle wood grain finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739231795, "handle": "cube-timber-9mm-beech-hollywood-wallcoverings", "old_body": "<p>A smooth, natural wood grain finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739428403, "handle": "cube-timber-9mm-beech-hollywood-wallcoverings-1", "old_body": "<p>A smooth, natural wood finish acoustic panel ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739395635, "handle": "cube-timber-9mm-birch-hollywood-wallcoverings", "old_body": "<p>A smooth, light birch panel with a subtle wood grain finish suitable for acoustic or decorative wall applications.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739690547, "handle": "cube-timber-9mm-birch-hollywood-wallcoverings-1", "old_body": "<p>A smooth birch wood finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739199027, "handle": "cube-timber-9mm-birchwood-hollywood-wallcoverings", "old_body": "<p>A smooth, light birch wood finish panel designed for acoustic and aesthetic wall applications.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739002419, "handle": "cube-timber-9mm-black-ash-hollywood-wallcoverings", "old_body": "<p>A sleek black panel with a textured finish ideal for acoustic applications or modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916259672115, "handle": "cube-timber-9mm-cherrywood-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a smooth, wood grain finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916259704883, "handle": "cube-timber-9mm-cherrywood-hollywood-wallcoverings-1", "old_body": "<p>A smooth, glossy finish acoustic panel designed for interior walls, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739625011, "handle": "cube-timber-9mm-cherrywood-hollywood-wallcoverings-2", "old_body": "<p>A smooth, natural wood grain finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916259639347, "handle": "cube-timber-9mm-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior design spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916738936883, "handle": "cube-timber-9mm-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel with a natural wood grain pattern ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739133491, "handle": "cube-timber-9mm-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>A smooth, light oak finish acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739330099, "handle": "cube-timber-9mm-light-oak-hollywood-wallcoverings", "old_body": "<p>This light oak panel features a smooth finish with subtle wood grain texture ideal for acoustic panels in modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739362867, "handle": "cube-timber-9mm-light-oak-hollywood-wallcoverings-1", "old_body": "<p>A smooth, light oak finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916738904115, "handle": "cube-timber-9mm-mahogany-hollywood-wallcoverings", "old_body": "<p>A rich mahogany finish with a subtle wood grain texture ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916259737651, "handle": "cube-timber-9mm-natural-maple-hollywood-wallcoverings", "old_body": "<p>This acoustic panel features a smooth finish with natural wood grain patterns ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916738969651, "handle": "cube-timber-9mm-natural-maple-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739788851, "handle": "cube-timber-9mm-natural-oak-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel with a natural wood grain pattern ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739461171, "handle": "cube-timber-9mm-oak-hollywood-wallcoverings", "old_body": "<p>A smooth, natural wood grain finish ideal for acoustic panels in modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739559475, "handle": "cube-timber-9mm-oak-hollywood-wallcoverings-1", "old_body": "<p>This acoustic panel features a natural wood grain finish suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739756083, "handle": "cube-timber-9mm-walnut-hollywood-wallcoverings", "old_body": "<p>A smooth, high-gloss finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7916739297331, "handle": "cube-timber-9mm-warm-sand-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel with a subtle wood grain pattern ideal for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>47.25\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>12.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>9MM</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "9MM"}]}, {"id": 7917730037811, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730103347, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-1", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730201651, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-2", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730267187, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-3", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479376435, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-4", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479507507, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-5", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479638579, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-6", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479835187, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-7", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111929907, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-8", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112126515, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-9", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112257587, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-10", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112323123, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-11", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012558387, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-12", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012623923, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-13", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012722227, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-14", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920013213747, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-15", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812687411, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-16", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812752947, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-17", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812851251, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-18", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812916787, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-19", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921708924979, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-20", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709350963, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-21", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709482035, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-22", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709547571, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-23", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273746995, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-24", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273845299, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-25", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922274041907, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-26", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922274107443, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-27", "old_body": "<p>A smooth, matte-finish acoustic panel ideal for modern office spaces and soundproofing.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989858867, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-28", "old_body": "<p>A smooth, matte-finished acoustic panel suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989924403, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-29", "old_body": "<p>Smooth and matte finish suitable for acoustic panels in modern office spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922990022707, "handle": "cube-panel-1in-alabaster-hollywood-wallcoverings-30", "old_body": "<p>A textured acoustic panel with a soft, neutral finish ideal for office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730136115, "handle": "cube-panel-1in-black-hollywood-wallcoverings", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479540275, "handle": "cube-panel-1in-black-hollywood-wallcoverings-1", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112159283, "handle": "cube-panel-1in-black-hollywood-wallcoverings-2", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012656691, "handle": "cube-panel-1in-black-hollywood-wallcoverings-3", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812785715, "handle": "cube-panel-1in-black-hollywood-wallcoverings-4", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709416499, "handle": "cube-panel-1in-black-hollywood-wallcoverings-5", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273910835, "handle": "cube-panel-1in-black-hollywood-wallcoverings-6", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989957171, "handle": "cube-panel-1in-black-hollywood-wallcoverings-7", "old_body": "<p>A matte black acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730234419, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479769651, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112290355, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012951603, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812884019, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-4", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709514803, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-5", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922274074675, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-6", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922990055475, "handle": "cube-panel-1in-burgundy-hollywood-wallcoverings-7", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729513523, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729775667, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918478917683, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-2", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479114291, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-3", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919110619187, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-4", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111438387, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-5", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012132403, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-6", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012329011, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-7", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812064819, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-8", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812326963, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-9", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921704796211, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-10", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921707319347, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-11", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922271617075, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-12", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273484851, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-13", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989400115, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-14", "old_body": "<p>A smooth, matte finish acoustic panel designed for modern interior spaces.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989629491, "handle": "cube-panel-1in-celadon-hollywood-wallcoverings-15", "old_body": "<p>A smooth, matte finish acoustic panel ideal for modern interior spaces requiring sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729677363, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729742899, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-1", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729906739, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-2", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479015987, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-3", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479081523, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-4", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479278131, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-5", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111045171, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-6", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111307315, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-7", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111634995, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-8", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012230707, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-9", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012296243, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-10", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012460083, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-11", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812163123, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-12", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812294195, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-13", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812523571, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-14", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921705713715, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-15", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921707024435, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-16", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921708105779, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-17", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273288243, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-18", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273419315, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-19", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273615923, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-20", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989531187, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-21", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989596723, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-22", "old_body": "<p>A matte-finished acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989760563, "handle": "cube-panel-1in-charcoal-gray-hollywood-wallcoverings-23", "old_body": "<p>A matte-finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729841203, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479212595, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111536691, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-2", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012394547, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-3", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812458035, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921707843635, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-5", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273583155, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-6", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989727795, "handle": "cube-panel-1in-forest-green-hollywood-wallcoverings-7", "old_body": "<p>A textured acoustic panel with a matte finish ideal for sound absorption and modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729579059, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729939507, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730070579, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918478950451, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479310899, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-4", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479474739, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-5", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919110946867, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-6", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111733299, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-7", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112028211, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-8", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012165171, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-9", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012492851, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-10", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012591155, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-11", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812097587, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-12", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812589107, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-13", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812720179, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-14", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921705123891, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-15", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921708400691, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-16", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709187123, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-17", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922272174131, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-18", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273648691, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-19", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273812531, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-20", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989432883, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-21", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989793331, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-22", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces with a warm, earthy tone.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989891635, "handle": "cube-panel-1in-harvest-tan-hollywood-wallcoverings-23", "old_body": "<p>A matte finish acoustic panel designed for modern interior spaces, offering both aesthetic appeal and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729808435, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479147059, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111503923, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-2", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012361779, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-3", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812425267, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921707581491, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-5", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273550387, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-6", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989695027, "handle": "cube-panel-1in-light-gray-hollywood-wallcoverings-7", "old_body": "<p>A textured acoustic panel with a soft finish suitable for office or home use to enhance sound absorption and aesthetic appeal.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729710131, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479048755, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-1", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111110707, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-2", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012263475, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-3", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812261427, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-4", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921706270771, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-5", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273353779, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-6", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989563955, "handle": "cube-panel-1in-mauve-hollywood-wallcoverings-7", "old_body": "<p>A matte finish acoustic panel with a subtle speckled texture suitable for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730005043, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479343667, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-1", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919111864371, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-2", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012525619, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-3", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812621875, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-4", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921708662835, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-5", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273714227, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-6", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989826099, "handle": "cube-panel-1in-midnight-blue-hollywood-wallcoverings-7", "old_body": "<p>A textured acoustic panel with a soft, felt-like finish suitable for modern office or home environments.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917730168883, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918479573043, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-1", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919112224819, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-2", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012689459, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-3", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812818483, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-4", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921709449267, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-5", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273976371, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-6", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989989939, "handle": "cube-panel-1in-navy-blue-hollywood-wallcoverings-7", "old_body": "<p>A smooth, matte-finished acoustic panel ideal for modern interior design.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7917729644595, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7918478983219, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-1", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7919110979635, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-2", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920012197939, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-3", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7920812130355, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-4", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7921705418803, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-5", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922273189939, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-6", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7922989498419, "handle": "cube-panel-1in-terracotta-hollywood-wallcoverings-7", "old_body": "<p>A matte terracotta acoustic panel with a textured finish ideal for modern interior design and sound absorption.</p><table>\n<tr>\n<td>Width</td>\n<td>48\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>28.00 lb</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>Flame Certified</td>\n</tr>\n<tr>\n<td>Panel Spec</td>\n<td>1IN</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Panel</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "panel_spec", "val": "1IN"}]}, {"id": 7816707211315, "handle": "green-drakes-atmospheric-commercial-wallcovering-hollywood-wallcoverings", "old_body": "<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><table>\n<tr>\n<td>Width</td>\n<td>52\"</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td>20.0 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM</td>\n</tr>\n<tr>\n<td>Finish</td>\n<td>Non-woven</td>\n</tr>\n<tr>\n<td>Repeat</td>\n<td>24\" V, 52\" H</td>\n</tr>\n<tr>\n<td>Fire Rating</td>\n<td>ACT Flammability, ACT Colorfastness, Flame Cert</td>\n</tr>\n<tr>\n<td>Cleaning</td>\n<td>Inherent anti-microbial protection\nWithstands hospital-grade cleaners &amp; disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection</td>\n</tr>\n<tr>\n<td>Sold Per</td>\n<td>Yard</td>\n</tr>\n</table>", "created_metafields": [{"id": null, "ns": "global", "key": "v_prods_weight", "val": "20.0 oz. PLY/620 G/PLM\n13.3 oz. PSY/451 G/PSM"}, {"id": null, "ns": "global", "key": "finish", "val": "Non-woven"}, {"id": null, "ns": "global", "key": "cleaning", "val": "Inherent anti-microbial protection\nWithstands hospital-grade cleaners &amp; disinfectants\nAvailable as a custom with INVISICAP | complete chemical protection"}]}]}
\ No newline at end of file

(oldest)  ·  back to Hollywood Body Table Migration  ·  Apply migration: 400 bodies stripped, 241 specs backfilled t c57326c →