{"product_id":"portable-ev-charger-3-5kw-ac-app-control-wallbox","title":"Portable EV Charger | 3.5KW AC | APP Control Wallbox","description":"\u003cstyle\u003e\n        \/* Base Styles \u0026 Global Reset *\/\n        #portable-ev-charger-product-page {\n            font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif;\n            color: #333;\n            line-height: 1.6;\n            padding: 20px;\n            background-color: #f8f9fa;\n        }\n\n        \/* Variables and Key Colors *\/\n        :root {\n            --primary-color: #007BFF; \/* Blue *\/\n            --secondary-color: #212529; \/* Black *\/\n            --light-bg: #fff;\n            --dark-bg: #f1f1f1;\n            --transition-speed: 0.3s;\n        }\n\n        \/* Headings *\/\n        #portable-ev-charger-product-page h2 {\n            font-size: 2em;\n            color: var(--primary-color);\n            margin-top: 40px;\n            margin-bottom: 15px;\n            border-bottom: 2px solid var(--primary-color);\n            padding-bottom: 10px;\n            font-weight: 700;\n            text-transform: uppercase;\n        }\n\n        #portable-ev-charger-product-page h3 {\n            font-size: 1.5em;\n            color: var(--secondary-color);\n            margin-top: 25px;\n            margin-bottom: 10px;\n            font-weight: 600;\n        }\n\n        \/* Product Intro \u0026 Subtitle *\/\n        #portable-ev-charger-product-page .product-intro {\n            text-align: center;\n            margin-bottom: 40px;\n        }\n        #portable-ev-charger-product-page .product-intro p {\n            font-size: 1.25em;\n            color: #6c757d;\n            font-weight: 300;\n            margin-top: 10px;\n        }\n        \n        \/* Placeholder Styling *\/\n        .placeholder-image, .placeholder-video {\n            background-color: #e9ecef;\n            color: #6c757d;\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            text-align: center;\n            font-weight: 500;\n            font-size: 1.1em;\n            margin-bottom: 20px;\n            border: 1px dashed #adb5bd;\n            border-radius: 8px; \/* Image Corner Radius *\/\n            overflow: hidden;\n        }\n\n        \/* 16:9 Aspect Ratio for Main Visuals *\/\n        .placeholder-video, .main-visual-placeholder {\n            aspect-ratio: 16 \/ 9;\n        }\n\n        \/* Core Advantage Section *\/\n        .core-advantage-item {\n            display: flex;\n            align-items: center;\n            gap: 20px;\n            padding: 30px;\n            margin-bottom: 30px;\n            background: var(--light-bg);\n            border-radius: 12px;\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);\n            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;\n        }\n\n        .core-advantage-item:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);\n        }\n\n        \/* Alternating Layout *\/\n        .core-advantage-item:nth-child(even) {\n            flex-direction: row-reverse; \/* Right Image, Left Text *\/\n            background: var(--dark-bg);\n        }\n        .core-advantage-item:nth-child(odd) {\n            flex-direction: row; \/* Left Image, Right Text (Default) *\/\n        }\n\n        \/* Image and Text Sizing (50\/50 Split) *\/\n        .core-advantage-image-container, .core-advantage-text-container {\n            flex: 1; \/* 50% width *\/\n            min-width: 0; \/* Ensures proper flex behavior *\/\n        }\n\n        \/* Image Placeholder for Features (1:1 Aspect Ratio, Rounded) *\/\n        .core-advantage-image-container .placeholder-image {\n            aspect-ratio: 1 \/ 1;\n            width: 100%;\n            height: auto;\n            margin: 0;\n            border-radius: 10px;\n        }\n        \n        \/* Feature Text Styling *\/\n        .feature-title {\n            font-size: 1.35em;\n            font-weight: 700;\n            color: var(--secondary-color);\n            margin-bottom: 8px;\n        }\n        .feature-separator {\n            width: 50px;\n            height: 2px;\n            background-color: var(--primary-color);\n            margin-bottom: 12px;\n        }\n        .feature-description {\n            font-size: 1em;\n            color: #555;\n            \/* Text overflow control (for single line or limited width) - using max-width for safer flow control *\/\n            max-width: 100%; \/* Adjust as needed for specific design *\/\n            overflow: hidden;\n            \/* text-overflow: ellipsis; *\/\n            \/* white-space: nowrap; *\/ \/* Avoided to allow multi-line text *\/\n        }\n\n        \/* Compatibility Section *\/\n        .compatibility-list {\n            list-style: none;\n            padding: 0;\n            display: flex;\n            flex-wrap: wrap;\n            gap: 20px;\n            margin-bottom: 30px;\n        }\n        .compatibility-item {\n            background-color: var(--light-bg);\n            border: 1px solid #ddd;\n            padding: 15px 20px;\n            border-radius: 8px;\n            flex: 1 1 300px;\n            transition: background-color var(--transition-speed);\n        }\n        .compatibility-item:hover {\n            background-color: #eaf5ff;\n        }\n        .compatibility-item strong {\n            color: var(--primary-color);\n            font-weight: 600;\n            margin-right: 10px;\n        }\n        .compatibility-icon {\n            color: var(--primary-color);\n            font-size: 1.2em;\n            margin-right: 5px;\n            vertical-align: middle;\n            display: inline-block;\n        }\n\n        \/* Package Contents \u0026 Installation *\/\n        .package-list, .installation-steps {\n            list-style: none;\n            padding: 0 0 0 20px;\n            margin-bottom: 30px;\n        }\n        .package-list li, .installation-steps li {\n            margin-bottom: 10px;\n            padding-left: 10px;\n            border-left: 3px solid #ccc;\n        }\n        .installation-steps li strong {\n            color: var(--primary-color);\n            display: block;\n            margin-bottom: 5px;\n        }\n        \n        \/* FAQ Section (Accordion) *\/\n        .faq-container {\n            margin-top: 30px;\n        }\n        .faq-item {\n            border: 1px solid #ddd;\n            border-radius: 8px;\n            margin-bottom: 10px;\n            background-color: var(--light-bg);\n            overflow: hidden;\n            transition: box-shadow var(--transition-speed);\n        }\n        .faq-item:hover {\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);\n        }\n        .faq-question {\n            background-color: #f1f1f1;\n            padding: 15px 20px;\n            margin: 0;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            transition: background-color var(--transition-speed);\n        }\n        .faq-question:hover {\n            background-color: #e9e9e9;\n        }\n        .faq-question::after {\n            content: '+';\n            font-size: 1.5em;\n            font-weight: 300;\n            color: var(--primary-color);\n            transition: transform var(--transition-speed);\n        }\n        .faq-item[data-open=\"true\"] .faq-question::after {\n            content: '-';\n            transform: rotate(180deg);\n        }\n        .faq-answer {\n            padding: 0 20px;\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height var(--transition-speed) ease-in-out, padding var(--transition-speed);\n        }\n        .faq-item[data-open=\"true\"] .faq-answer {\n            max-height: 500px; \/* Large enough to cover content *\/\n            padding: 15px 20px;\n            border-top: 1px solid #eee;\n        }\n\n        \/* Responsive Design *\/\n        @media (max-width: 767px) {\n            #portable-ev-charger-product-page {\n                padding: 10px;\n            }\n            #portable-ev-charger-product-page h2 {\n                font-size: 1.7em;\n            }\n            \/* Stacked Layout for Core Advantages *\/\n            .core-advantage-item,\n            .core-advantage-item:nth-child(even) {\n                flex-direction: column; \/* Stacks image on top of text *\/\n                text-align: center;\n                padding: 20px;\n            }\n            \/* Order: Image on Top, Text Below *\/\n            .core-advantage-image-container {\n                order: -1;\n                margin-bottom: 15px;\n            }\n            .core-advantage-text-container {\n                order: 1;\n            }\n            .feature-separator {\n                margin: 10px auto; \/* Center separator in mobile view *\/\n            }\n            .compatibility-list {\n                flex-direction: column;\n            }\n            .compatibility-item {\n                flex-basis: auto;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv id=\"portable-ev-charger-product-page\"\u003e\n\u003cdiv class=\"product-intro\"\u003e\n\u003ch2\u003ePortable EV AC Charger\u003c\/h2\u003e\n\u003cp\u003ePower. Portability. Perfect Cable Management.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"main-visual-placeholder placeholder-image\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/WPS_1_1_a4b580ba-53f4-4395-a99d-8d116eb4661f.png?v=1761707423\" alt=\"\"\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"placeholder-video\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch2\u003eCORE ADVANTAGES: Features That Deliver Value\u003c\/h2\u003e\n\u003cp\u003eWe've engineered complexity into simplicity, turning advanced technology into tangible benefits for the EV owner.\u003c\/p\u003e\n\u003cdiv class=\"core-advantage-container\"\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/4_f71ba015-a147-44fe-a551-1968f7977391.png?v=1761706709\" alt=\"\"\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003eInstant Cable Retraction\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Clutter-Free Convenience \u0026amp; Longevity.** The unique automatic retractable charging cable system ensures safe, neat storage every time, eliminating tangles, preventing tripping hazards, and protecting your cable from damage.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/7_7c62d57b-d3af-4bea-9899-29dfc7f9040b.png?v=1761706709\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003eSmart APP Control \u0026amp; Scheduling\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Charge Smarter, Not Harder.** Use the dedicated mobile application (Tuya App) to remotely monitor your charging status, view real-time energy data, and most importantly, schedule your charging sessions. Set timed or delayed charging up to 12 hours to take advantage of off-peak electricity rates.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\u003cspan style=\"font-size: 1.1em;\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/3_8ee89d04-1b7d-4e78-a18b-39a50c960785.png?v=1761706709\"\u003e:1)\u003c\/span\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003eBuilt for Portability \u0026amp; Durability\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Power Anywhere.** Designed for both permanent home installation and temporary charging sites, this unit is compact, movable, and incredibly durable. With an **IP65 protection grade**, it is completely corrosion and weatherproof, ensuring stable, reliable outdoor use from -30°C to +60°C.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/8_01ea7ec6-6aec-48c0-80ce-cfd41042c13c.png?v=1761706708\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003eFlexible 5-Speed Current Adjustment\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Optimized Charging for Any Circuit.** Easily adjust the working current in standby mode via a dedicated button, cycling through 5 levels: **6A, 8A, 10A, 13A, or 16A (max)**. This feature allows you to optimize charging speed based on the circuit capacity available at any location.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/5_ff825e8b-83ff-4375-aff6-08d01718e725.png?v=1761706709\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003eComprehensive 9-Point Safety System\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Absolute Peace of Mind.** Safety is non-negotiable. The charger is built to the IEC62752 safety standard and provides comprehensive protection against over\/under voltage, over\/under frequency, over temperature, over current, leakage current, ground fault, short circuit current, and output current limit.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-item\"\u003e\n\u003cdiv class=\"core-advantage-image-container\"\u003e\n\u003cdiv class=\"placeholder-image\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/2_fe362807-50ce-47fe-a63f-e6485716fde7.png?v=1761706709\" alt=\"\"\u003e\u003cspan style=\"font-size: 1.1em;\"\u003e\u003cbr\u003e\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"core-advantage-text-container\"\u003e\n\u003cdiv class=\"feature-title\"\u003ePlug-and-Play Simplicity\u003c\/div\u003e\n\u003cdiv class=\"feature-separator\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-description\"\u003e**Effortless Operation.** This is a true plug-and-play device that is easy to set up and operate without requiring additional tools. The simple LED screen provides essential real-time data at a glance, including voltage, current, power, and charged amount.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003ch2\u003ePACKAGE CONTENTS\u003c\/h2\u003e\n\u003cp\u003eEverything you need to begin charging is in the box:\u003c\/p\u003e\n\u003cul class=\"package-list\"\u003e\n\u003cli\u003e**Portable EV AC Charger Unit** (Integrated with automatic retractable charging cable)\u003c\/li\u003e\n\u003cli\u003e**Charging Gun** (Type 2, or US\/Tesla plug depending on model selection)\u003c\/li\u003e\n\u003cli\u003e**Instruction Manual \u0026amp; Technical Documentation**\u003c\/li\u003e\n\u003cli\u003e**Qualification Certificate**\u003c\/li\u003e\n\u003cli\u003e**Carrying Box** (for portable storage) and **Cardboard Box**\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003eCOMPATIBILITY \u0026amp; INSTALLATION\u003c\/h2\u003e\n\u003ch3\u003eCompatibility\u003c\/h3\u003e\n\u003cp\u003eThis charger offers **Wide Compatibility**, working with most EV models and standard connectors. Select the model corresponding to your vehicle's charging inlet:\u003c\/p\u003e\n\u003cdiv class=\"compatibility-list\"\u003e\n\u003cdiv class=\"compatibility-item\"\u003e\n\u003cspan class=\"compatibility-icon\"\u003e🔌\u003c\/span\u003e\u003cstrong\u003eEU Plug Model:\u003c\/strong\u003e (Typically Type 2 connector)\u003c\/div\u003e\n\u003cdiv class=\"compatibility-item\"\u003e\n\u003cspan class=\"compatibility-icon\"\u003e🔌\u003c\/span\u003e\u003cstrong\u003eUS Plug Model:\u003c\/strong\u003e (Standard J1772 connector)\u003c\/div\u003e\n\u003cdiv class=\"compatibility-item\"\u003e\n\u003cspan class=\"compatibility-icon\"\u003e🔌\u003c\/span\u003e\u003cstrong\u003eTesla Plug Model:\u003c\/strong\u003e (For Tesla vehicles)\u003c\/div\u003e\n\u003cdiv class=\"compatibility-item\"\u003e\n\u003cspan class=\"compatibility-icon\"\u003e⚡\u003c\/span\u003e\u003cstrong\u003eInput\/Output:\u003c\/strong\u003e Operates on single-phase AC power with standard input voltages of 120V, 230V, or 240V.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003ch3\u003eInstallation Instructions: Plug-and-Charge in Seconds\u003c\/h3\u003e\n\u003cp\u003eInstallation is simplified for immediate use.\u003c\/p\u003e\n\u003col class=\"installation-steps\"\u003e\n\u003cli\u003e\n\u003cstrong\u003ePlug In:\u003c\/strong\u003e Connect the charger's AC plug directly into a properly grounded power outlet.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eSystem Check:\u003c\/strong\u003e The unit will turn on and perform a quick self-test.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eConnect to Car:\u003c\/strong\u003e Plug the charging cable's gun into your electric vehicle's AC charging port. Charging will begin immediately.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e(Optional) Optimize:\u003c\/strong\u003e While in standby mode, short-press the current adjustment button or the schedule button to fine-tune your charging session.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Once charging is complete, unplug the cable from the car and allow the unit to retract the cable for storage. Finally, unplug the charger from the power outlet.\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003ch2\u003eFREQUENTLY ASKED QUESTIONS (FAQ)\u003c\/h2\u003e\n\u003cdiv class=\"faq-container\"\u003e\n\u003cdiv class=\"faq-item\" data-open=\"false\"\u003e\n\u003ch3 class=\"faq-question\" data-toggle=\"true\"\u003eQ: Can I use this charger outdoors?\u003c\/h3\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA: Yes. The charger has an **IP65 protection grade**, which means it is completely weatherproof and protected against dust and water jets. It is suitable for stable outdoor use and operates reliably in temperatures ranging from -30°C to +60°C.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\" data-open=\"false\"\u003e\n\u003ch3 class=\"faq-question\" data-toggle=\"true\"\u003eQ: How do I control and monitor the charging process?\u003c\/h3\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA: You can control and monitor the charger through two methods:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e**On-Unit Display:** The built-in LED screen provides real-time information on working current, charged amount, charging time, voltage, and power.\u003c\/li\u003e\n\u003cli\u003e**Mobile APP:** The unit supports **Tuya APP control** for remote monitoring, viewing real-time energy data, and accessing 5 advanced charging modes, including immediate, fixed charge, timed charging, and delayed charging.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\" data-open=\"false\"\u003e\n\u003ch3 class=\"faq-question\" data-toggle=\"true\"\u003eQ: What is the maximum current, and can I adjust it?\u003c\/h3\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA: The maximum charging current is **16A**. Yes, you can adjust the current in standby mode by short-pressing the current adjustment button. You can select from 5 levels: 6A, 8A, 10A, 13A, and 16A to match the capacity of the power outlet you are using.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\" data-open=\"false\"\u003e\n\u003ch3 class=\"faq-question\" data-toggle=\"true\"\u003eQ: How long is the charging cable?\u003c\/h3\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA: The gun cable length is **8 meters** (approximately 26.2 feet), providing extensive reach for flexible parking arrangements.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\" data-open=\"false\"\u003e\n\u003ch3 class=\"faq-question\" data-toggle=\"true\"\u003eQ: What types of safety features are included?\u003c\/h3\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA: The charger is equipped with multiple protection mechanisms, including over\/under voltage, over\/under frequency, over temperature, over current, and advanced leakage current protection. It is built to the **IEC62752 safety standard**.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cscript\u003e\n        document.addEventListener('DOMContentLoaded', function() {\n            const faqQuestions = document.querySelectorAll('.faq-question[data-toggle=\"true\"]');\n\n            faqQuestions.forEach(question =\u003e {\n                question.addEventListener('click', function() {\n                    const faqItem = this.closest('.faq-item');\n                    const isOpen = faqItem.getAttribute('data-open') === 'true';\n\n                    \/\/ Close all other open items\n                    document.querySelectorAll('.faq-item[data-open=\"true\"]').forEach(openItem =\u003e {\n                        if (openItem !== faqItem) {\n                            openItem.setAttribute('data-open', 'false');\n                        }\n                    });\n\n                    \/\/ Toggle the clicked item\n                    faqItem.setAttribute('data-open', isOpen ? 'false' : 'true');\n                });\n            });\n        });\n    \u003c\/script\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"Orange \/ Please select","offer_id":47713987756257,"sku":"sku-47768902893800","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Orange \/ J1772 + US Plug (North America)","offer_id":47713987789025,"sku":"TCH001-WH-US","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Orange \/ Type 2 + EU Plug (Europe)","offer_id":47713987821793,"sku":"TCH001-WH-EU","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Orange \/ NACS + US Plug  (North America Tesla)","offer_id":47713987854561,"sku":"TCH001-WH-TSL","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Black \/ Please select","offer_id":47713987887329,"sku":"sku-47768902762728","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Black \/ J1772 + US Plug (North America)","offer_id":47713987920097,"sku":"TCH001-BK-US","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Black \/ Type 2 + EU Plug (Europe)","offer_id":47713987952865,"sku":"TCH001-BK-EU","price":399.0,"currency_code":"USD","in_stock":false},{"title":"Black \/ NACS + US Plug  (North America Tesla)","offer_id":47713987985633,"sku":"TCH001-BK-TSL","price":399.0,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0753\/8422\/6017\/files\/portable-ev-charger-35kw-ac-app-control-wallbox-5661286.png?v=1766011718","url":"https:\/\/pacautoperformance.com\/products\/portable-ev-charger-3-5kw-ac-app-control-wallbox","provider":"Pacific Automotive Performance","version":"1.0","type":"link"}