{"title":"Smart paints \u0026 Specialty Coatings","description":null,"products":[{"product_id":"star-mosquito-shield","title":"Star Mosquito Shield","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n      .Calculator {\n        margin-top: 3rem;\n        display: flex;\n        justify-content: center;\n        font-family: \"Noto Sans\", sans-serif;\n      }\n      .Content form {\n        display: flex;\n        flex-direction: column;\n        gap: 1.5rem;\n        width: 80%;\n      }\n\n      .Content input {\n        height: 4rem !important;\n        font-size: 1.2rem;\n        width: 100% !important;\n        border-radius: 10px;\n        padding: 0.5rem;\n      }\n\n      .Content button {\n        height: 2.5rem;\n        cursor: pointer;\n      }\n\n      #submit {\n        border: none;\n        width: 25%;\n        padding: 0.5rem 0;\n        color: white;\n        background-color: #4caf50;\n        cursor: pointer;\n      }\n\n      .Calculator .Content {\n        position: fixed;\n        top: 20%;\n        left: 25%;\n        width: 50%;\n        padding: 0.2rem 3rem;\n        box-shadow: 2px 2px 10px black;\n        background-color: #fefefe;\n      }\n\n      .modal {\n        display: none;\n        \/* Hidden by default *\/\n        position: fixed;\n        \/* Stay in place *\/\n        z-index: 1;\n        \/* Sit on top *\/\n        top: 0;\n        \/* Full height *\/\n        width: 100%;\n        background-color: rgb(0, 0, 0);\n        \/* Fallback color *\/\n        background-color: rgba(0, 0, 0, 0.4);\n        \/* Black w\/ opacity *\/\n      }\n\n      .Content .hidden {\n        display: none;\n      }\n\n      .btns {\n        width: 100%;\n        display: flex;\n        margin-bottom: 1rem;\n      }\n\n      .btns button {\n        border: none;\n        width: 6.5rem;\n        padding: 0 1rem;\n      }\n\n      @media screen and (max-width: 750px) {\n        .Calculator .Content {\n          padding: 0.2rem 2rem;\n          position: fixed;\n          top: 0;\n          left: 5%;\n          width: 90%;\n          margin-top: 20%;\n        }\n        .btns button {\n          width: 40%;\n        }\n        .Content input {\n          width: 60%;\n        }\n        #submit {\n          width: 60%;\n        }\n      }\n\n      @media screen and (max-width: 450px) {\n        .Calculator .Content {\n          padding: 0.2rem 1rem;\n          position: fixed;\n          top: 2%;\n          left: 5%;\n          width: 90%;\n        }\n        .btns button {\n          width: 60%;\n        }\n        .Content input {\n          width: 80%;\n        }\n        #submit {\n          width: 100%;\n        }\n      }\n\n      .Content span {\n        margin-left: 0.5rem;\n      }\n\n      .Content label {\n        color: #991100;\n      }\n\n      .btnStyle {\n        background-color: #4caf50;\n        color: white;\n      }\n\n      .close {\n        color: #aaa;\n        float: right;\n        font-size: 28px;\n        font-weight: bold;\n      }\n\n      .close:hover,\n      .close:focus {\n        color: black;\n        text-decoration: none;\n        cursor: pointer;\n      }\n\n      #myBtn {\n        background-color: #4caf50;\n        color: white;\n        padding: 1rem;\n        border: none;\n        cursor: pointer;\n        font-size: 1.2rem;\n        margin-bottom: 5rem;\n      }\n\n      .Calculator .hidden {\n        display: none;\n      }\n      \n    \u003c\/style\u003e\n\u003cdiv class=\"Calculator\"\u003e\n\u003cbutton id=\"myBtn\"\u003ePaint Calculator\u003c\/button\u003e\n\u003cdiv class=\"Content modal\" id=\"myModal\"\u003e\n\u003cspan class=\"close\"\u003e×\u003c\/span\u003e \u003c!-- {\/* Area Input *\/} --\u003e\n\u003cp\u003eArea in:\u003c\/p\u003e\n\u003cdiv class=\"btns\"\u003e\n\u003cbutton id=\"feetsBtn\" class=\"btnStyle\"\u003eFeets\u003c\/button\u003e \u003cbutton id=\"metersBtn\"\u003eMeters\u003c\/button\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"input\"\u003e\n\u003cform id=\"form\"\u003e\n\u003clabel htmlfor=\"area\"\u003eEnter Area in Sq. \u003cspan id=\"unit\"\u003eFeet\u003c\/span\u003e \u003c\/label\u003e \u003cinput type=\"number\" id=\"area\" value=\"\" placeholder=\"Enter Surface Area\"\u003e \u003cbutton type=\"submit\"\u003eCalculate\u003c\/button\u003e\n\u003c\/form\u003e\n\u003cdiv class=\"result\"\u003e\n\u003ch3\u003eResults:\u003c\/h3\u003e\n\u003cp\u003ePaint Needed: \u003cspan id=\"paint\"\u003e\u003c\/span\u003e liters\u003c\/p\u003e\n\u003cp\u003eApproximate Cost: \u003cspan id=\"cost1\"\u003e\u003c\/span\u003e to\u003cspan id=\"cost2\"\u003e\u003c\/span\u003e INR approx\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cscript\u003e\n      const metersBtn = document.getElementById(\"metersBtn\");\n      const feetsBtn = document.getElementById(\"feetsBtn\");\n      const areaUnit = document.getElementById(\"unit\");\n      let unit = \"feet\";\n      metersBtn.addEventListener(\"click\", () =\u003e {\n        metersBtn.classList.add(\"btnStyle\");\n        feetsBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Meter\";\n        areaUnit.innerText = unit;\n      });\n      feetsBtn.addEventListener(\"click\", () =\u003e {\n        feetsBtn.classList.add(\"btnStyle\");\n        metersBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Feet\";\n        areaUnit.innerText = unit;\n      });\n\n      function CalculateFactors(area) {\n        \/\/ Object for our all factors\n        let factors = {\n          paint: 0,\n          cost: [],\n        };\n\n        \/\/ 1 sq. meter = 10.74 sq feet\n        \/\/When Unit is METER\n        if (unit === \"Meter\") {\n          factors.paint = Math.ceil(\n            (Math.ceil(area \/ 1.5) + Math.ceil(area \/ 2.5)) \/ 2\n          );\n        }\n        \/\/ When unit is FEET\n        else {\n          let areaInSqMeter = area \/ 10.7639;\n          factors.paint = Math.ceil(\n            (Math.ceil(areaInSqMeter \/ 1.5) + Math.ceil(areaInSqMeter \/ 2.5)) \/\n              2\n          );\n        }\n\/\/****Please Change These Factors If Price or Size Changes*****\n        let SizeOfBigestBucket = 18.2;\n        let CostOfBigestBucket = 8490;\n        \n        let costPerL = CostOfBigestBucket \/ SizeOfBigestBucket;\n       let netCost = factors.paint * costPerL;\n   if(netCost\u003c1000)\n        {\n            factors.cost[0] = Math.ceil(costPerL);\n        }\n        else{\n          factors.cost[0] = Math.floor(netCost \/ 1000) * 1000;\n        }\n    factors.cost[1] = Math.ceil(netCost \/ 1000) * 1000;\n    return factors;\n\n        return factors;\n      }\n\n      \/\/Calling Function\n      const handleSubmit = (e) =\u003e {\n        e.preventDefault();\n        const area = document.getElementById(\"area\").value;\n        if (area \u003e 0) {\n          let factors = CalculateFactors(area);\n          const paint = document.getElementById(\"paint\");\n          \/\/Display Result in HTML\n          const cost1 = document.getElementById(\"cost1\");\n      const cost2 = document.getElementById(\"cost2\");\n      \/\/Display Result in HTML\n      cost1.innerText = factors.cost[0];\n      cost2.innerText = factors.cost[1];\n          paint.innerText = factors.paint;\n        }\n      };\n\n      const form = document.getElementById(\"form\");\n\n      form.addEventListener(\"submit\", handleSubmit);\n\n      \/\/PopUp Logic\n      const btn = document.getElementById(\"myBtn\");\n      const span = document.getElementsByClassName(\"close\")[0];\n      const modal = document.getElementById(\"myModal\");\n      btn.onclick = function () {\n        btn.classList.add(\"hidden\");\n        modal.style.display = \"block\";\n      };\n\n      \/\/ When the user clicks on \u003cspan\u003e (x), close the modal\n      span.onclick = function () {\n        btn.classList.remove(\"hidden\");\n        modal.style.display = \"none\";\n      };\n\n      \/\/ When the user clicks anywhere outside of the modal, close it\n      window.onclick = function (event) {\n        if (event.target == modal) {\n          btn.classList.remove(\"hidden\");\n          modal.style.display = \"none\";\n        }\n      };\n    \u003c\/script\u003e\n\u003c!-- ----------------End Of Calculator-----------------------  --\u003e\n\u003cdiv class=\"zpelement zpelem-heading\" data-element-type=\"heading\" data-element-id=\"elm_9U-2ms0JYdB4yHQQI6eHgQ\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"zpelement zpelem-text\" data-element-type=\"text\" data-element-id=\"elm_cPZT7tSbo6zM_sgwaRvtXQ\"\u003e\n\u003cdiv data-editor=\"true\" class=\"zptext zptext-align-left\"\u003e\n\u003cp\u003e\u003cspan\u003eStar Mosquito Shield is a paint that keeps mosquitoes at bay and provides many advantages.\u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"StarShield- Smart Paints \u0026 Coatings","offers":[{"title":"1 LTR","offer_id":44371890438372,"sku":"","price":690.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR","offer_id":44417929183460,"sku":"","price":2190.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR","offer_id":44417929248996,"sku":"","price":5390.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR","offer_id":44417929314532,"sku":"","price":8490.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20ltrbucketSTARmosquitoshield_04d3dbd8-b553-4f85-aaa4-f6cefd5e62e5-optimized-1722079402.jpg?v=1722079405"},{"product_id":"star-glow-paint","title":"Star Glow Paint","description":"\u003cbody\u003e\n\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\n  \u003cstyle\u003e\n      .Calculator {\n        margin-top: 3rem;\n        display: flex;\n        justify-content: center;\n        font-family: \"Noto Sans\", sans-serif;\n      }\n\n      .Content form {\n        display: flex;\n        flex-direction: column;\n        gap: 1.5rem;\n        width: 80%;\n      }\n\n      .Content input {\n        height: 4rem !important;\n        font-size: 1.2rem;\n        width: 100% !important;\n        border-radius: 10px;\n        padding: 0.5rem;\n      }\n\n      .Content button {\n        height: 2.5rem;\n        cursor: pointer;\n      }\n\n      #submit {\n        border: none;\n        width: 25%;\n        padding: 0.5rem 0;\n        color: white;\n        background-color: #4caf50;\n        cursor: pointer;\n      }\n\n      .Calculator .Content {\n        position: fixed;\n        top: 20%;\n        left: 25%;\n        width: 50%;\n        padding: 0.2rem 3rem;\n        box-shadow: 2px 2px 10px black;\n        background-color: #fefefe;\n      }\n\n      .modal {\n        display: none;\n        \/* Hidden by default *\/\n        position: fixed;\n        \/* Stay in place *\/\n        z-index: 1;\n        \/* Sit on top *\/\n        top: 0;\n        \/* Full height *\/\n        width: 100%;\n        background-color: rgb(0, 0, 0);\n        \/* Fallback color *\/\n        background-color: rgba(0, 0, 0, 0.4);\n        \/* Black w\/ opacity *\/\n      }\n\n      .Content .hidden {\n        display: none;\n      }\n\n      .btns {\n        width: 100%;\n        display: flex;\n        margin-bottom: 1rem;\n      }\n\n      .btns button {\n        border: none;\n        width: 6.5rem;\n        padding: 0 1rem;\n      }\n\n      @media screen and (max-width: 750px) {\n        .Calculator .Content {\n          padding: 0.2rem 2rem;\n          position: fixed;\n          top: 0;\n          left: 5%;\n          width: 90%;\n          margin-top: 20%;\n        }\n        .btns button {\n          width: 40%;\n        }\n        .Content input {\n          width: 60%;\n        }\n        #submit {\n          width: 60%;\n        }\n      }\n\n      @media screen and (max-width: 450px) {\n        .Calculator .Content {\n          padding: 0.2rem 1rem;\n          position: fixed;\n          top: 2%;\n          left: 5%;\n          width: 90%;\n        }\n        .btns button {\n          width: 60%;\n        }\n        .Content input {\n          width: 80%;\n        }\n        #submit {\n          width: 100%;\n        }\n      }\n\n      .Content span {\n        margin-left: 0.5rem;\n      }\n\n      .Content label {\n        color: #991100;\n      }\n\n      .btnStyle {\n        background-color: #4caf50;\n        color: white;\n      }\n\n      .close {\n        color: #aaa;\n        float: right;\n        font-size: 28px;\n        font-weight: bold;\n      }\n\n      .close:hover,\n      .close:focus {\n        color: black;\n        text-decoration: none;\n        cursor: pointer;\n      }\n\n      #myBtn {\n        background-color: #4caf50;\n        color: white;\n        padding: 1rem;\n        border: none;\n        cursor: pointer;\n        font-size: 1.2rem;\n        margin-bottom: 5rem;\n      }\n\n      .Calculator .hidden {\n        display: none;\n      }\n      \n    \u003c\/style\u003e\n  \n\n  \n    \u003cdiv class=\"Calculator\"\u003e\n      \u003cbutton id=\"myBtn\"\u003ePaint Calculator\u003c\/button\u003e\n      \u003cdiv class=\"Content modal\" id=\"myModal\"\u003e\n        \u003cspan class=\"close\"\u003e×\u003c\/span\u003e\n\n        \u003c!-- {\/* Area Input *\/} --\u003e\n        \u003cp\u003eArea in:\u003c\/p\u003e\n        \u003cdiv class=\"btns\"\u003e\n          \u003cbutton id=\"feetsBtn\" class=\"btnStyle\"\u003eFeets\u003c\/button\u003e\n          \u003cbutton id=\"metersBtn\"\u003eMeters\u003c\/button\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"input\"\u003e\n          \u003cform id=\"form\"\u003e\n            \u003clabel htmlfor=\"area\"\u003eEnter Area in Sq. \u003cspan id=\"unit\"\u003eFeet\u003c\/span\u003e\n            \u003c\/label\u003e\n            \u003cinput type=\"number\" id=\"area\" value=\"\" placeholder=\"Enter Surface Area\"\u003e\n            \u003cbutton type=\"submit\" id=\"submit\"\u003eCalculate\u003c\/button\u003e\n          \u003c\/form\u003e\n          \u003cdiv class=\"result\"\u003e\n            \u003ch3\u003eResults:\u003c\/h3\u003e\n\n            \u003cp\u003ePaint Needed: \u003cspan id=\"paint\"\u003e\u003c\/span\u003e liters\u003c\/p\u003e\n            \u003cp\u003eApproximate Cost: \u003cspan id=\"cost1\"\u003e\u003c\/span\u003e to\u003cspan id=\"cost2\"\u003e\u003c\/span\u003e\n          INR approx\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cscript\u003e\n      const metersBtn = document.getElementById(\"metersBtn\");\n      const feetsBtn = document.getElementById(\"feetsBtn\");\n      const areaUnit = document.getElementById(\"unit\");\n      let unit = \"feet\";\n      metersBtn.addEventListener(\"click\", () =\u003e {\n        metersBtn.classList.add(\"btnStyle\");\n        feetsBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Meter\";\n        areaUnit.innerText = unit;\n      });\n      feetsBtn.addEventListener(\"click\", () =\u003e {\n        feetsBtn.classList.add(\"btnStyle\");\n        metersBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Feet\";\n        areaUnit.innerText = unit;\n      });\n\n      function CalculateFactors(area) {\n        \/\/ Object for our all factors\n        let factors = {\n          paint: 0,\n          cost: [],\n        };\n\n        \/\/ 1 sq. meter = 10.74 sq feet\n        \/\/When Unit is METER\n        if (unit === \"Meter\") {\n          let areaInSqFeet = area * 10.7639;\n          factors.paint = Math.ceil(\n            (Math.ceil(areaInSqFeet \/ 50) + Math.ceil(areaInSqFeet \/ 200)) \/ 2\n          );\n        }\n        \/\/ When unit is FEET\n        else {\n          factors.paint = Math.ceil(\n            (Math.ceil(area \/ 50) + Math.ceil(area \/ 200)) \/ 2\n          );\n        }\n\/\/****Please Change These Factors If Price or Size Changes*****\n        let SizeOfBigestBucket = 5;\n        let CostOfBigestBucket = 23990;\n        \n        let costPerL = CostOfBigestBucket \/ SizeOfBigestBucket;\n       let netCost = factors.paint * costPerL;\n  if(netCost\u003c1000)\n        {\n            factors.cost[0] = Math.ceil(costPerL);\n        }\n        else{\n          factors.cost[0] = Math.floor(netCost \/ 1000) * 1000;\n        }\n    factors.cost[1] = Math.ceil(netCost \/ 1000) * 1000;\n    return factors;\n        return factors;\n      }\n\n      \/\/Calling Function\n      const handleSubmit = (e) =\u003e {\n        e.preventDefault();\n        const area = document.getElementById(\"area\").value;\n        if (area \u003e 0) {\n          let factors = CalculateFactors(area);\n          const paint = document.getElementById(\"paint\");\n          \/\/Display Result in HTML\n          const cost1 = document.getElementById(\"cost1\");\n      const cost2 = document.getElementById(\"cost2\");\n      \/\/Display Result in HTML\n      cost1.innerText = factors.cost[0];\n      cost2.innerText = factors.cost[1];\n          paint.innerText = factors.paint;\n        }\n      };\n\n      const form = document.getElementById(\"form\");\n\n      form.addEventListener(\"submit\", handleSubmit);\n\n      \/\/PopUp Logic\n      const btn = document.getElementById(\"myBtn\");\n      const span = document.getElementsByClassName(\"close\")[0];\n      const modal = document.getElementById(\"myModal\");\n      btn.onclick = function () {\n        btn.classList.add(\"hidden\");\n        modal.style.display = \"block\";\n      };\n\n      \/\/ When the user clicks on \u003cspan\u003e (x), close the modal\n      span.onclick = function () {\n        btn.classList.remove(\"hidden\");\n        modal.style.display = \"none\";\n      };\n\n      \/\/ When the user clicks anywhere outside of the modal, close it\n      window.onclick = function (event) {\n        if (event.target == modal) {\n          btn.classList.remove(\"hidden\");\n          modal.style.display = \"none\";\n        }\n      };\n    \u003c\/script\u003e\n\u003c!-- ----------------End Of Calculator-----------------------  --\u003e\n\nStar Glow Paint is a highly advanced product that utilizes light absorption to give it a mesmerizing glow in the dark.\n\u003cdiv class=\"zpelement zpelem-heading\" data-element-type=\"heading\" data-element-id=\"elm_9U-2ms0JYdB4yHQQI6eHgQ\"\u003e\u003c\/div\u003e\n\u003c\/body\u003e","brand":"StarShield- Smart Paints \u0026 Coatings","offers":[{"title":"1 LTR","offer_id":44371939360996,"sku":"STARGLOWPAINT1LTR","price":4990.0,"currency_code":"INR","in_stock":true},{"title":"5 LTR","offer_id":44371939393764,"sku":"","price":23990.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/1LTRSTARGLOWPAINTfrontcopy-optimized-1722079345.jpg?v=1722079348"},{"product_id":"star-premium-emulsion","title":"Star Premium Emulsion Exterior","description":"","brand":"StarShield- Smart Paints \u0026 Coatings","offers":[{"title":"1 Ltr \/ White Base Exterior","offer_id":45343631802596,"sku":"","price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Deep Base","offer_id":47474312052964,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Pastal Base","offer_id":47474312085732,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Neutral Base","offer_id":47474312118500,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ White Base Exterior","offer_id":45343631835364,"sku":"","price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Deep Base","offer_id":47474312151268,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Pastal Base","offer_id":47474312184036,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Neutral Base","offer_id":47474312216804,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ White Base Exterior","offer_id":45343631868132,"sku":"","price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Deep Base","offer_id":47474312249572,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Pastal Base","offer_id":47474312282340,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Neutral Base","offer_id":47474312315108,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ White Base Exterior","offer_id":45343631900900,"sku":"","price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Deep Base","offer_id":47474312347876,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Pastal Base","offer_id":47474312380644,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Neutral Base","offer_id":47474312413412,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20_ltr_bucket_star_Premium_Emulsion_Dirt_Repellent_Paint.png?v=1718540463"},{"product_id":"star-premium-emulsion-interior","title":"Star Premium Emulsion interior","description":"","brand":"StarShield- Smart Paints \u0026 Coatings ","offers":[{"title":"1 Ltr \/ White Base Interior","offer_id":46342122832100,"sku":"","price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Deep Base","offer_id":47474308186340,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Pastal Base","offer_id":47474308219108,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"1 Ltr \/ Neutral Base","offer_id":47474308251876,"sku":null,"price":390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ White Base Interior","offer_id":46342122864868,"sku":"","price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Deep Base","offer_id":47474308284644,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Pastal Base","offer_id":47474308317412,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"3.6 Ltr \/ Neutral Base","offer_id":47474308350180,"sku":null,"price":1390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ White Base Interior","offer_id":46342122897636,"sku":"","price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Deep Base","offer_id":47474308382948,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Pastal Base","offer_id":47474308415716,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"9.1 Ltr \/ Neutral Base","offer_id":47474308448484,"sku":null,"price":3390.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ White Base Interior","offer_id":46342122930404,"sku":"","price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Deep Base","offer_id":47474308481252,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Pastal Base","offer_id":47474308514020,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false},{"title":"18.2 Ltr \/ Neutral Base","offer_id":47474308546788,"sku":null,"price":6490.0,"currency_code":"INR","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20ltrbucketStarpremiumemusion_1.png?v=1747824241"},{"product_id":"star-elegant-shield-interior","title":"Star Elegant Shield interior","description":"","brand":"StarShield- Smart Paints \u0026 Coatings ","offers":[{"title":"1 LTR \/ White Base Interior","offer_id":46587819196644,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Deep Base","offer_id":47474303271140,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Pastal Base","offer_id":47474303303908,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Neutral Base","offer_id":47474303336676,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ White Base Interior","offer_id":46587819229412,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Deep Base","offer_id":47474303369444,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Pastal Base","offer_id":47474303402212,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Neutral Base","offer_id":47474303434980,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ White Base Interior","offer_id":46587819262180,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Deep Base","offer_id":47474303467748,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Pastal Base","offer_id":47474303500516,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Neutral Base","offer_id":47474303533284,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ White Base Interior","offer_id":46587819294948,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Deep Base","offer_id":47474303566052,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Pastal Base","offer_id":47474303598820,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Neutral Base","offer_id":47474303631588,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/Star_Interior_Emulsion_star_elegant_shield_indiamart.jpg?v=1730174675"},{"product_id":"star-elegant-shield-exterior","title":"Star Elegant Shield exterior","description":"","brand":"StarShield- Smart Paints \u0026 Coatings ","offers":[{"title":"1 LTR \/ White Base Exterior","offer_id":46587823227108,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Deep Base","offer_id":47474299961572,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Pastal Base","offer_id":47474299994340,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"1 LTR \/ Neutral Base","offer_id":47474300027108,"sku":null,"price":190.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ White Base Exterior","offer_id":46587823259876,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Deep Base","offer_id":47474300059876,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Pastal Base","offer_id":47474300092644,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR \/ Neutral Base","offer_id":47474300125412,"sku":null,"price":590.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ White Base Exterior","offer_id":46587823292644,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Deep Base","offer_id":47474300158180,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Pastal Base","offer_id":47474300190948,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR \/ Neutral Base","offer_id":47474300223716,"sku":null,"price":1490.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ White Base Exterior","offer_id":46587823325412,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Deep Base","offer_id":47474300256484,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Pastal Base","offer_id":47474300289252,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR \/ Neutral Base","offer_id":47474300322020,"sku":null,"price":2890.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/Star_Elegant_shield_Exterior_Emulsion.png?v=1718715692"},{"product_id":"star-virus-shield-paint","title":"Star Virus Shield Paint","description":"\u003cstyle\u003e\n      .Calculator {\n        margin-top: 3rem;\n        display: flex;\n        justify-content: center;\n        font-family: \"Noto Sans\", sans-serif;\n      }\n\n     \n      .Content form {\n        display: flex;\n        flex-direction: column;\n        gap: 1.5rem;\n        width: 80%;\n      }\n\n      .Content input {\n        height: 4rem !important;\n        font-size: 1.2rem;\n        width: 100% !important;\n        border-radius: 10px;\n        padding: 0.5rem;\n      }\n\n      .Content button {\n        height: 2.5rem;\n        cursor: pointer;\n      }\n\n      #submit {\n        border: none;\n        width: 25%;\n        padding: 0.5rem 0;\n        color: white;\n        background-color: #4caf50;\n        cursor: pointer;\n      }\n\n      .Calculator .Content {\n        position: fixed;\n        top: 20%;\n        left: 25%;\n        width: 50%;\n        padding: 0.2rem 3rem;\n        box-shadow: 2px 2px 10px black;\n        background-color: #fefefe;\n      }\n\n      .modal {\n        display: none;\n        \/* Hidden by default *\/\n        position: fixed;\n        \/* Stay in place *\/\n        z-index: 1;\n        \/* Sit on top *\/\n        top: 0;\n        \/* Full height *\/\n        width: 100%;\n        \n        background-color: rgb(0, 0, 0);\n        \/* Fallback color *\/\n        background-color: rgba(0, 0, 0, 0.4);\n        \/* Black w\/ opacity *\/\n      }\n\n      .Content .hidden {\n        display: none;\n      }\n\n      .btns {\n        width: 100%;\n        display: flex;\n        margin-bottom: 1rem;\n      }\n\n      .btns button {\n        border: none;\n        width: 6.5rem;\n        padding: 0 1rem;\n      }\n\n      @media screen and (max-width: 750px) {\n        .Calculator .Content {\n          padding: 0.2rem 2rem;\n          position: fixed;\n          top: 0;\n          left: 5%;\n          width: 90%;\n          margin-top: 20%;\n        }\n        .btns button {\n          width: 40%;\n        }\n        .Content input {\n          width: 60%;\n        }\n        #submit {\n          width: 60%;\n        }\n      }\n\n      @media screen and (max-width: 450px) {\n        .Calculator .Content {\n          padding: 0.2rem 1rem;\n          position: fixed;\n          top: 2%;\n          left: 5%;\n          width: 90%;\n        }\n        .btns button {\n          width: 60%;\n        }\n        .Content input {\n          width: 80%;\n        }\n        #submit {\n          width: 100%;\n        }\n      }\n\n      .Content span {\n        margin-left: 0.5rem;\n      }\n\n      .Content label {\n        color: #991100;\n      }\n\n      .btnStyle {\n        background-color: #4caf50;\n        color: white;\n      }\n\n      .close {\n        color: #aaa;\n        float: right;\n        font-size: 28px;\n        font-weight: bold;\n      }\n\n      .close:hover,\n      .close:focus {\n        color: black;\n        text-decoration: none;\n        cursor: pointer;\n      }\n\n      #myBtn {\n        background-color: #4caf50;\n        color: white;\n        padding: 1rem;\n        border: none;\n        cursor: pointer;\n        font-size: 1.2rem;\n        margin-bottom: 5rem;\n      }\n\n      .Calculator .hidden {\n        display: none;\n      }\n     \n    \u003c\/style\u003e\n  \n\n  \n    \u003cdiv class=\"Calculator\"\u003e\n      \u003cbutton id=\"myBtn\"\u003ePaint Calculator\u003c\/button\u003e\n      \u003cdiv class=\"Content modal\" id=\"myModal\"\u003e\n        \u003cspan class=\"close\"\u003e×\u003c\/span\u003e\n\n        \u003c!-- {\/* Area Input *\/} --\u003e\n        \u003cp\u003eArea in:\u003c\/p\u003e\n        \u003cdiv class=\"btns\"\u003e\n          \u003cbutton id=\"feetsBtn\" class=\"btnStyle\"\u003eFeets\u003c\/button\u003e\n          \u003cbutton id=\"metersBtn\"\u003eMeters\u003c\/button\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"input\"\u003e\n          \u003cform id=\"form\"\u003e\n            \u003clabel htmlfor=\"area\"\u003eEnter Area in Sq. \u003cspan id=\"unit\"\u003eFeet\u003c\/span\u003e\n            \u003c\/label\u003e\n            \u003cinput type=\"number\" id=\"area\" value=\"\" placeholder=\"Enter Surface Area\"\u003e\n            \u003cbutton type=\"submit\" id=\"submit\"\u003eCalculate\u003c\/button\u003e\n          \u003c\/form\u003e\n          \u003cdiv class=\"result\"\u003e\n            \u003ch3\u003eResults:\u003c\/h3\u003e\n\n            \u003cp\u003ePaint Needed: \u003cspan id=\"paint\"\u003e\u003c\/span\u003e liters\u003c\/p\u003e\n            \u003cp\u003eApproximate Cost: \u003cspan id=\"cost1\"\u003e\u003c\/span\u003e to\u003cspan id=\"cost2\"\u003e\u003c\/span\u003e\n          INR approx\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cscript\u003e\n      const metersBtn = document.getElementById(\"metersBtn\");\n      const feetsBtn = document.getElementById(\"feetsBtn\");\n      const areaUnit = document.getElementById(\"unit\");\n      let unit = \"feet\";\n      metersBtn.addEventListener(\"click\", () =\u003e {\n        metersBtn.classList.add(\"btnStyle\");\n        feetsBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Meter\";\n        areaUnit.innerText = unit;\n      });\n      feetsBtn.addEventListener(\"click\", () =\u003e {\n        feetsBtn.classList.add(\"btnStyle\");\n        metersBtn.classList.remove(\"btnStyle\");\n        const units = document.getElementsByClassName(\"unit\");\n        unit = \"Feet\";\n        areaUnit.innerText = unit;\n      });\n\n      function CalculateFactors(area) {\n        \/\/ Object for our all factors\n        let factors = {\n          paint: 0,\n          cost: [],\n        };\n\n        \/\/ 1 sq. meter = 10.74 sq feet\n        \/\/When Unit is METER\n        if (unit === \"Meter\") {\n          let areaInSqFeet = area * 10.7639;\n          factors.paint = Math.ceil(\n            (Math.ceil(areaInSqFeet \/ 140) + Math.ceil(areaInSqFeet \/ 160)) \/ 2\n          );\n        }\n        \/\/ When unit is FEET\n        else {\n          factors.paint = Math.ceil(\n            (Math.ceil(area \/ 140) + Math.ceil(area \/ 160)) \/ 2\n          );\n        }\n\/\/****Please Change These Factors If Price or Size Changes*****\n        let SizeOfBigestBucket = 18.2;\n        let CostOfBigestBucket = 12990;\n        \n        let costPerL = CostOfBigestBucket \/ SizeOfBigestBucket;\n       let netCost = factors.paint * costPerL;\n    if(netCost\u003c1000)\n        {\n            factors.cost[0] = Math.ceil(costPerL);\n        }\n        else{\n          factors.cost[0] = Math.floor(netCost \/ 1000) * 1000;\n        }\n    factors.cost[1] = Math.ceil(netCost \/ 1000) * 1000;\n    return factors;\n\n        return factors;\n      }\n\n      \/\/Calling Function\n      const handleSubmit = (e) =\u003e {\n        e.preventDefault();\n        const area = document.getElementById(\"area\").value;\n        if (area \u003e 0) {\n          let factors = CalculateFactors(area);\n          const paint = document.getElementById(\"paint\");\n          \/\/Display Result in HTML\n          const cost1 = document.getElementById(\"cost1\");\n      const cost2 = document.getElementById(\"cost2\");\n      \/\/Display Result in HTML\n      cost1.innerText = factors.cost[0];\n      cost2.innerText = factors.cost[1];\n          paint.innerText = factors.paint;\n        }\n      };\n\n      const form = document.getElementById(\"form\");\n\n      form.addEventListener(\"submit\", handleSubmit);\n\n      \/\/PopUp Logic\n      const btn = document.getElementById(\"myBtn\");\n      const span = document.getElementsByClassName(\"close\")[0];\n      const modal = document.getElementById(\"myModal\");\n      btn.onclick = function () {\n        btn.classList.add(\"hidden\");\n        modal.style.display = \"block\";\n      };\n\n      \/\/ When the user clicks on \u003cspan\u003e (x), close the modal\n      span.onclick = function () {\n        btn.classList.remove(\"hidden\");\n        modal.style.display = \"none\";\n      };\n\n      \/\/ When the user clicks anywhere outside of the modal, close it\n      window.onclick = function (event) {\n        if (event.target == modal) {\n          btn.classList.remove(\"hidden\");\n          modal.style.display = \"none\";\n        }\n      };\n    \u003c\/script\u003e\n\n\n\n\u003cspan data-mce-fragment=\"1\"\u003eAnti Microbial Formaldehyde absorbing Wall Paint ? Globally Certified and tested Corona Virus killing paint to block the spread and keep your loved ones protected. # Formulated by Indo European Nano technology # Self sanitizing paint formulated with nano particles # Kills Corona virus within 30 seconds of exposure # Converts formaldehyde to non-toxic water vapours # Safe to skin and eco-friendly # Durable for 3+ years\u003c\/span\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20ltrbucketSTARVIRUSSHIELDWALLPAINT_b909d31c-21af-42b6-8110-ff1ce63e61cd_480x480.jpg?v=1703689400\" alt=\"\" data-mce-fragment=\"1\" data-mce-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20ltrbucketSTARVIRUSSHIELDWALLPAINT_b909d31c-21af-42b6-8110-ff1ce63e61cd_480x480.jpg?v=1703689400\"\u003e","brand":"StarShield- Smart Paints \u0026 Coatings","offers":[{"title":"1 LTR","offer_id":45833595224292,"sku":"STARVIRUSSHIELDPAINT1LTR","price":590.0,"currency_code":"INR","in_stock":true},{"title":"3.6 LTR","offer_id":45833595257060,"sku":"STARVIRUSSHIELDPAINT3.6LTR","price":2090.0,"currency_code":"INR","in_stock":true},{"title":"9.1 LTR","offer_id":45833595289828,"sku":"STARVIRUSSHIELDPAINT9.1LTR","price":5190.0,"currency_code":"INR","in_stock":true},{"title":"18.2 LTR","offer_id":45833595322596,"sku":"STARVIRUSSHIELDPAINT18.2LTR","price":9990.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/20ltrbucketSTARVIRUSSHIELDWALLPAINT_0c66e377-f2c8-4328-ae98-b32e9a727923-optimized-1722079402.jpg?v=1722079405"},{"product_id":"star-texture-paint","title":"Star Texture Paint","description":"","brand":"StarShield- Smart Paints \u0026 Coatings ","offers":[{"title":"5 Kgs","offer_id":47499417157860,"sku":"STARTEXTUREPAINT5KGS","price":690.0,"currency_code":"INR","in_stock":false},{"title":"25 Kgs","offer_id":47499417190628,"sku":"STARTEXTUREPAINT25KGS","price":3290.0,"currency_code":"INR","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0672\/5048\/7524\/files\/startexturepaint.jpg?v=1769170159"}],"url":"https:\/\/starshieldpaints.com\/collections\/smart-paints-specialty-coatings.oembed","provider":"StarShield- Smart Paints \u0026 Coatings ","version":"1.0","type":"link"}