{"product_id":"cooll","title":"cooll","description":"\u003cstyle\u003e      \n    \n  .table-container {      \n    \n    border: 0.5px solid black;      \n    \n    border-collapse: collapse;      \n    \n    width: 100%;      \n    \n    margin: 0 auto;      \n    \n    background-color: transparent;      \n    \n  }      \n    \n      \n    \n  .accordion {      \n    \n    background-color: transparent;      \n    \n    color: black;      \n    \n    cursor: pointer;      \n    \n    padding: 15px;      \n    \n    width: 100%;      \n    \n    border: 0.5px solid black;      \n    \n    text-align: left;      \n    \n    outline: none;      \n    \n    font-size: 16px;      \n    \n    font-weight: bold;      \n    \n    display: flex;      \n    \n    justify-content: space-between;      \n    \n    align-items: center;      \n    \n    box-sizing: border-box;      \n    \n  }      \n    \n      \n    \n  .accordion:after {      \n    \n    content: '\\276F';      \n    \n    font-size: 16px;      \n    \n    color: black;      \n    \n    font-weight: 100;      \n    \n    transform: rotate(90deg);      \n    \n    transition: transform 0.3s;      \n    \n  }      \n    \n      \n    \n  .accordion.active:after {      \n    \n    transform: rotate(-90deg);      \n    \n  }      \n    \n      \n    \n  .panel {      \n    \n    padding: 15px;      \n    \n    display: none;      \n    \n    background-color: transparent;      \n    \n    border: 0.5px solid black;      \n    \n    border-top: none;      \n    \n    box-sizing: border-box;      \n    \n  }      \n    \n      \n    \n  .panel p.left-text {      \n    \n    text-align: left;      \n    \n    margin-top: 15px;      \n    \n  }      \n    \n      \n    \n  .panel table {      \n    \n    margin: 20px auto;      \n    \n    border-collapse: collapse;      \n    \n    width: 100%;      \n    \n    text-align: center;      \n    \n  }      \n    \n      \n    \n  .panel th, .panel td {      \n    \n    border: 0.5px solid black;      \n    \n    padding: 8px;      \n    \n  }      \n    \n      \n    \n  .panel th:first-child,      \n    \n  .panel td:first-child {      \n    \n    text-align: left;      \n    \n  }      \n    \n      \n    \n  .panel ul {      \n    \n    margin-top: 10px;      \n    \n    padding-left: 20px;      \n    \n  }      \n    \n  .size-guide-image {\n    \n    width: 520px;\n    \n    max-width: 100%;\n    \n    height: auto;\n    \n    display: block;\n    \n    margin: 0 auto;\n    \n  }\n  \n  @media screen and (max-width: 767px) {\n    \n    .size-guide-image {\n      \n      width: auto;\n      \n      max-width: 100%;\n      \n      height: auto;\n      \n      display: block;\n      \n      margin: 0 auto;\n      \n    }\n    \n  }\n    \n\u003c\/style\u003e      \n\n\u003cdiv class=\"table-container\"\u003e        \n\n  \u003cbutton type=\"button\" class=\"accordion\"\u003eMore About This T-Shirt\u003c\/button\u003e  \n\n  \u003cdiv class=\"panel\"\u003e  \n\n    \u003cp class=\"left-text\"\u003e✦ Made with ultra-soft 100% ring-spun cotton (90% for certain colors), this t-shirt delivers all-day comfort.\u003c\/p\u003e  \n\n    \u003cp class=\"left-text\"\u003e✦ Styled with a classic fit and crew neckline for a clean, versatile look.\u003c\/p\u003e  \n\n    \u003cp class=\"left-text\"\u003e✦ Printed using premium DTG technology for vibrant, long-lasting designs.\u003c\/p\u003e  \n\n    \u003cp class=\"left-text\"\u003e✦ Reinforced with taped shoulders and a ribbed collar for enhanced durability and shape retention.\u003c\/p\u003e  \n\n  \u003c\/div\u003e  \n\n  \u003cbutton type=\"button\" class=\"accordion\"\u003eSize Guide\u003c\/button\u003e  \n\n  \u003cdiv class=\"panel\"\u003e  \n\n    \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0670\/8320\/6794\/files\/Tee_Size_Guide.jpg?v=1745681706\" alt=\"T-Shirt Size Guide\" class=\"size-guide-image\"\u003e  \n\n  \u003c\/div\u003e  \n\n\u003c\/div\u003e\n\n\n\u003cscript\u003e\n\nsetTimeout(function() {\n\n  if (window.lpjeAccordionReady === true) {\n    return;\n  }\n\n  window.lpjeAccordionReady = true;\n\n  document.addEventListener(\"click\", function(event) {\n\n    var clickedAccordion = event.target.closest(\".accordion\");\n\n    if (!clickedAccordion) {\n      return;\n    }\n\n    var clickedPanel = clickedAccordion.nextElementSibling;\n\n    if (!clickedPanel || !clickedPanel.classList.contains(\"panel\")) {\n      return;\n    }\n\n    var topBefore = clickedAccordion.getBoundingClientRect().top;\n\n    var wasOpen = clickedPanel.style.display === \"block\";\n\n    var keepAccordions = [clickedAccordion];\n\n    var parentPanel = clickedAccordion.parentElement.closest(\".panel\");\n\n    while (parentPanel) {\n\n      var parentAccordion = parentPanel.previousElementSibling;\n\n      if (parentAccordion \u0026\u0026 parentAccordion.classList.contains(\"accordion\")) {\n        keepAccordions.push(parentAccordion);\n      }\n\n      parentPanel = parentPanel.parentElement.closest(\".panel\");\n\n    }\n\n    var allAccordions = document.querySelectorAll(\".accordion\");\n\n    allAccordions.forEach(function(accordion) {\n\n      if (keepAccordions.indexOf(accordion) === -1) {\n\n        accordion.classList.remove(\"active\");\n\n        var panel = accordion.nextElementSibling;\n\n        if (panel \u0026\u0026 panel.classList.contains(\"panel\")) {\n          panel.style.display = \"none\";\n        }\n\n      }\n\n    });\n\n    if (wasOpen) {\n\n      clickedAccordion.classList.remove(\"active\");\n\n      clickedPanel.style.display = \"none\";\n\n    } else {\n\n      clickedAccordion.classList.add(\"active\");\n\n      clickedPanel.style.display = \"block\";\n\n      keepAccordions.forEach(function(accordion) {\n\n        if (accordion !== clickedAccordion) {\n\n          accordion.classList.add(\"active\");\n\n          var panel = accordion.nextElementSibling;\n\n          if (panel \u0026\u0026 panel.classList.contains(\"panel\")) {\n            panel.style.display = \"block\";\n          }\n\n        }\n\n      });\n\n    }\n\n    var topAfter = clickedAccordion.getBoundingClientRect().top;\n\n    window.scrollBy(0, topAfter - topBefore);\n\n  });\n\n}, 1000);\n\n\u003c\/script\u003e\n\u003cstyle\u003e      \n    \n  .table-container {      \n    \n    border: 0.5px solid black;      \n    \n    border-collapse: collapse;      \n    \n    width: 100%;      \n    \n    margin: 0 auto;      \n    \n    background-color: transparent;      \n    \n  }      \n    \n      \n    \n  .accordion {      \n    \n    background-color: transparent;      \n    \n    color: black;      \n    \n    cursor: pointer;      \n    \n    padding: 15px;      \n    \n    width: 100%;      \n    \n    border: 0.5px solid black;      \n    \n    text-align: left;      \n    \n    outline: none;      \n    \n    font-size: 16px;      \n    \n    font-weight: bold;      \n    \n    display: flex;      \n    \n    justify-content: space-between;      \n    \n    align-items: center;      \n    \n    box-sizing: border-box;      \n    \n  }      \n    \n      \n    \n  .accordion:after {      \n    \n    content: '\\276F';      \n    \n    font-size: 16px;      \n    \n    color: black;      \n    \n    font-weight: 100;      \n    \n    transform: rotate(90deg);      \n    \n    transition: transform 0.3s;      \n    \n  }      \n    \n      \n    \n  .accordion.active:after {      \n    \n    transform: rotate(-90deg);      \n    \n  }      \n    \n      \n    \n  .panel {      \n    \n    padding: 15px;      \n    \n    display: none;      \n    \n    background-color: transparent;      \n    \n    border: 0.5px solid black;      \n    \n    border-top: none;      \n    \n    box-sizing: border-box;      \n    \n  }      \n    \n      \n    \n  .panel p.left-text {      \n    \n    text-align: left;      \n    \n    margin-top: 15px;      \n    \n  }      \n    \n      \n    \n  .panel table {      \n    \n    margin: 20px auto;      \n    \n    border-collapse: collapse;      \n    \n    width: 100%;      \n    \n    text-align: center;      \n    \n  }      \n    \n      \n    \n  .panel th, .panel td {      \n    \n    border: 0.5px solid black;      \n    \n    padding: 8px;      \n    \n  }      \n    \n      \n    \n  .panel th:first-child,      \n    \n  .panel td:first-child {      \n    \n    text-align: left;      \n    \n  }      \n    \n      \n    \n  .panel ul {      \n    \n    margin-top: 10px;      \n    \n    padding-left: 20px;      \n    \n  }      \n    \n\u003c\/style\u003e      \n\n\u003cdiv class=\"table-container\"\u003e        \n\n  \u003cbutton type=\"button\" class=\"accordion\"\u003eFrequently Asked Questions\u003c\/button\u003e  \n\n  \u003cdiv class=\"panel\"\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eHow long does it take to get my order?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eAll orders are produced on-demand. Expect your delivery within 5–12 days from the moment you complete your purchase. (1–3 days production + 4 – 9 days shipping).\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eHow much is shipping?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eShipping costs are calculated at checkout based on the size of your order.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eCan I track my order?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eOf course! Once your order ships, we'll send you a tracking link so you can follow its journey.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eHow do I contact the team?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eReach out anytime at support@lpje.com. You'll get a response as soon as possible.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eDo you have a satisfaction guarantee?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eAbsolutely! Every order comes with our 90-Day Guarantee!\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003eIf you are not satisfied with the quality of the products you receive, just reach out at support@lpje.com within 90 days of receiving your order. We'll take care of it and do everything possible to ensure you're happy with your experience.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eHow do you handle replacements?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eIf the product arrives damaged, we'll send a free replacement to guarantee your satisfaction and a great experience with us.\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003eIf you prefer not to wait for a replacement to be shipped or if a replacement is not feasible, you may request a refund instead. The amount will be credited back to your original payment method within 5 to 7 business days.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eDo you accept returns?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eWe currently do not accept physical returns of items. If there is an issue with your order, we are committed to resolving it through replacements or refunds as described above.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n    \u003cbutton type=\"button\" class=\"accordion\"\u003e\u003cstrong\u003eHow do I submit a claim?\u003c\/strong\u003e\u003c\/button\u003e  \n\n    \u003cdiv class=\"panel\"\u003e  \n\n      \u003cp class=\"left-text\"\u003eTo submit a claim, please contact us at support@lpje.com with the following details:\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003eYour order number\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003eA short description of the problem\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003ePhotos or evidence of the issue (if applicable)\u003c\/p\u003e  \n\n      \u003cp class=\"left-text\"\u003eYou will receive a response as soon as possible.\u003c\/p\u003e  \n\n    \u003c\/div\u003e  \n\n  \u003c\/div\u003e  \n\n  \u003cbutton type=\"button\" class=\"accordion\"\u003eCare Instructions\u003c\/button\u003e  \n\n  \u003cdiv class=\"panel\"\u003e  \n\n    \u003cp class=\"left-text\"\u003eTo keep the print in good condition: wash in cold water, dry on low heat, and avoid ironing the printed area.\u003c\/p\u003e  \n\n  \u003c\/div\u003e  \n\n\u003c\/div\u003e\n\n\n\u003cscript\u003e\n\nsetTimeout(function() {\n\n  if (window.lpjeAccordionReady === true) {\n    return;\n  }\n\n  window.lpjeAccordionReady = true;\n\n  document.addEventListener(\"click\", function(event) {\n\n    var clickedAccordion = event.target.closest(\".accordion\");\n\n    if (!clickedAccordion) {\n      return;\n    }\n\n    var clickedPanel = clickedAccordion.nextElementSibling;\n\n    if (!clickedPanel || !clickedPanel.classList.contains(\"panel\")) {\n      return;\n    }\n\n    var topBefore = clickedAccordion.getBoundingClientRect().top;\n\n    var wasOpen = clickedPanel.style.display === \"block\";\n\n    var keepAccordions = [clickedAccordion];\n\n    var parentPanel = clickedAccordion.parentElement.closest(\".panel\");\n\n    while (parentPanel) {\n\n      var parentAccordion = parentPanel.previousElementSibling;\n\n      if (parentAccordion \u0026\u0026 parentAccordion.classList.contains(\"accordion\")) {\n        keepAccordions.push(parentAccordion);\n      }\n\n      parentPanel = parentPanel.parentElement.closest(\".panel\");\n\n    }\n\n    var allAccordions = document.querySelectorAll(\".accordion\");\n\n    allAccordions.forEach(function(accordion) {\n\n      if (keepAccordions.indexOf(accordion) === -1) {\n\n        accordion.classList.remove(\"active\");\n\n        var panel = accordion.nextElementSibling;\n\n        if (panel \u0026\u0026 panel.classList.contains(\"panel\")) {\n          panel.style.display = \"none\";\n        }\n\n      }\n\n    });\n\n    if (wasOpen) {\n\n      clickedAccordion.classList.remove(\"active\");\n\n      clickedPanel.style.display = \"none\";\n\n    } else {\n\n      clickedAccordion.classList.add(\"active\");\n\n      clickedPanel.style.display = \"block\";\n\n      keepAccordions.forEach(function(accordion) {\n\n        if (accordion !== clickedAccordion) {\n\n          accordion.classList.add(\"active\");\n\n          var panel = accordion.nextElementSibling;\n\n          if (panel \u0026\u0026 panel.classList.contains(\"panel\")) {\n            panel.style.display = \"block\";\n          }\n\n        }\n\n      });\n\n    }\n\n    var topAfter = clickedAccordion.getBoundingClientRect().top;\n\n    window.scrollBy(0, topAfter - topBefore);\n\n  });\n\n}, 1000);\n\n\u003c\/script\u003e","brand":"My Store 3","offers":[{"title":"Default Title","offer_id":48893374234779,"sku":null,"price":0.0,"currency_code":"USD","in_stock":false}],"url":"https:\/\/letsproclaimjesuseverywhere.com\/products\/cooll","provider":"Let's Proclaim Jesus Everywhere","version":"1.0","type":"link"}