";
metafields["age_list"] = "Adults (18-64 years)Seniors (65+ years)";
metafields["warranty"] = "{"type"=>"root", "children"=>[{"type"=>"paragraph", "children"=>[{"type"=>"text", "value"=>"Raz-ART products are covered under a limited warranty for "}, {"type"=>"text", "value"=>"manufacturing defects", "bold"=>true}, {"type"=>"text", "value"=>" in materials and workmanship."}]}, {"type"=>"heading", "level"=>4, "children"=>[{"type"=>"text", "value"=>"Warranty Period:", "bold"=>true}]}, {"type"=>"list", "listType"=>"unordered", "children"=>[{"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"Frame:", "bold"=>true}, {"type"=>"text", "value"=>" 2-year limited warranty"}]}, {"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"All other components:", "bold"=>true}, {"type"=>"text", "value"=>" 1-year limited warranty"}]}]}, {"type"=>"heading", "level"=>4, "children"=>[{"type"=>"text", "value"=>"Exclusions:", "bold"=>true}]}, {"type"=>"paragraph", "children"=>[{"type"=>"text", "value"=>"The warranty does not cover:"}]}, {"type"=>"list", "listType"=>"unordered", "children"=>[{"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"Normal wear and tear"}]}, {"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"Misuse, abuse, or neglect"}]}, {"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"Unauthorized modifications or repairs"}]}, {"type"=>"list-item", "children"=>[{"type"=>"text", "value"=>"Changes in product specifications or options, which are subject to change without notice"}]}]}]}";
metafields["product_availability"] = "2-3 weeks";
const productInfo = {
itemId: "9344706281749",
itemGroupId: "9344706281749",
itemVariantId: "48967030571285",
title: "Raz Design ZUM SP Folding Frame Shower Commode Chair – MPN: Z22218",
url: "https://especialneeds.com/products/raz-design-zum-sp-folding-frame-shower-commode-chair-mpn-z22218",
description: "",
vendor: "Raz Design",
priceMax: "$0.00 USD",
priceMin: "$0.00 USD",
tags: ["Commode Chairs - Bathing \u0026 Toileting","configurable","parent-sku","Standard Shipping"],
options: [
{
name: "Title",
values: ["Default Title"]
}
],
images: [
"https://especialneeds.com/cdn/shop/files/1.zum-2025_c26df561-6391-48f6-ad3d-1246a52a80cc.jpg?v=1774638637",
"https://especialneeds.com/cdn/shop/files/2.Zum-FootSupports-Cropped-768x751.jpg?v=1774638636",
"https://especialneeds.com/cdn/shop/files/3.Zum-AxlePlate-Cropped-716x1024.jpg?v=1774638636",
"https://especialneeds.com/cdn/shop/files/4.Raz-Designs1890-scaled.jpg?v=1774638636",
"https://especialneeds.com/cdn/shop/files/Commode-Pan-with-Lid-Cropped-768x461.png?v=1774638636"
],
variants: [
{
itemVariantId: "48967030571285",
title: "Default Title",
sku: "RA-Z22218",
url: "https://especialneeds.com/products/raz-design-zum-sp-folding-frame-shower-commode-chair-mpn-z22218?variant=48967030571285",
price: "$0.00 USD",
weight: "10.0 lb",
metafields: (function() {
const variantMetafields = {};
return variantMetafields;
})(),
inventoryStatus: (function() {
let inventoryStatus = "";
inventoryStatus = "INVENTORY_NOT_TRACKED";
return inventoryStatus;
})()
}
],
channelId: "74563453205",
locale: "en_US",
metafields: metafields // Product-level metafields
};
function getProductInfo() {
return productInfo;
}
function loadVariantSelection(variantUrl) {
if(variantUrl.searchParams.has("variant") && productInfo!==null) {
productInfo.itemVariantId = variantUrl.searchParams.get("variant");
let pqaWidget = document.getElementsByTagName("klevu-product-query")
if (pqaWidget.length > 0) {
pqaWidget[0].setAttribute("item-variant-id", variantUrl.searchParams.get("variant"));
}
console.debug("variant selection updated.");
}
}
window.navigation.addEventListener("navigate", (event) => {
console.debug("variant selection changed");
if (document.readyState === "complete") {
loadVariantSelection(new URL(event.destination.url));
} else {
window.addEventListener('load', function onLoad() {
loadVariantSelection(new URL(event.destination.url));
window.removeEventListener('load', onLoad);
});
}
});