{"product_id":"spacetouch-capsule","title":"SpaceTouch Capsule","description":"\u003cdiv class=\"short-description\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"description\"\u003e\n\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;\n            color: #2c2d2e;\n            background: #ffffff;\n            line-height: 1.6;\n        }\n\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n\n        \/* HERO SECTION *\/\n        .hero-section {\n            text-align: center;\n            padding: 60px 20px;\n            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);\n        }\n\n        .hero-section h1 {\n            font-size: 48px;\n            margin-bottom: 20px;\n            color: #1a1c1d;\n        }\n\n        .animated-marker {\n            position: relative;\n            display: inline-block;\n            --marker-color: #9fa3a7;\n        }\n\n        .animated-marker svg {\n            position: absolute;\n            bottom: -8px;\n            left: 0;\n            width: 100%;\n            height: 14px;\n            animation: underlineWave 2s ease-in-out infinite;\n        }\n\n        @keyframes underlineWave {\n            0%, 100% { transform: translateY(0); }\n            50% { transform: translateY(-3px); }\n        }\n\n        \/* GALLERY SECTION *\/\n        .gallery-section {\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .gallery-section h2 {\n            text-align: center;\n            font-size: 32px;\n            margin-bottom: 40px;\n            color: #1a1c1d;\n        }\n\n        .gallery-container {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 20px;\n            margin-bottom: 40px;\n        }\n\n        .gallery-item {\n            position: relative;\n            overflow: hidden;\n            border-radius: 8px;\n            background: #f5f5f5;\n            aspect-ratio: 1;\n            cursor: pointer;\n            transition: transform 0.3s ease;\n        }\n\n        .gallery-item:hover {\n            transform: scale(1.05);\n        }\n\n        .gallery-item img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            display: block;\n        }\n\n        \/* VIDEO SECTION *\/\n        .video-section {\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .video-container {\n            position: relative;\n            width: 100%;\n            padding-bottom: 56.25%;\n            height: 0;\n            overflow: hidden;\n            border-radius: 8px;\n            background: #000;\n        }\n\n        .video-container video {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n        }\n\n        \/* HEADLINE *\/\n        .headline-section {\n            text-align: center;\n            padding: 60px 20px;\n            background: #f5f7fa;\n            margin: 60px 0;\n        }\n\n        .headline-section h2 {\n            font-size: 36px;\n            color: #1a1c1d;\n            margin-bottom: 10px;\n        }\n\n        \/* TOGGLE BOXES \/ PROGRAMS *\/\n        .programs-section {\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .programs-section h2 {\n            text-align: center;\n            font-size: 36px;\n            margin-bottom: 50px;\n            color: #1a1c1d;\n        }\n\n        .programs-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px;\n        }\n\n        .program-card {\n            background: #ffffff;\n            border: 1px solid #e0e0e0;\n            border-radius: 8px;\n            overflow: hidden;\n            transition: all 0.3s ease;\n            cursor: pointer;\n        }\n\n        .program-card:hover {\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n            transform: translateY(-5px);\n        }\n\n        .program-card img {\n            width: 100%;\n            height: 250px;\n            object-fit: cover;\n            display: block;\n        }\n\n        .program-card-content {\n            padding: 20px;\n        }\n\n        .program-card-title {\n            font-size: 18px;\n            font-weight: 600;\n            margin-bottom: 12px;\n            color: #1a1c1d;\n        }\n\n        .program-card-description {\n            font-size: 14px;\n            color: #2c2d2e;\n            margin-bottom: 15px;\n            line-height: 1.5;\n        }\n\n        .program-toggle-btn {\n            background: #3f72e5;\n            color: white;\n            border: none;\n            padding: 10px 15px;\n            border-radius: 4px;\n            cursor: pointer;\n            font-size: 14px;\n            transition: background 0.3s ease;\n        }\n\n        .program-toggle-btn:hover {\n            background: #2d5aa8;\n        }\n\n        \/* COLLAPSIBLE CONTENT *\/\n        .collapsible-section {\n            margin: 60px 0;\n            padding: 40px;\n            background: #ffffff;\n            border: 1px solid #e0e0e0;\n            border-radius: 8px;\n        }\n\n        .collapsible-section h2 {\n            font-size: 32px;\n            color: #1a1c1d;\n            margin-bottom: 15px;\n        }\n\n        .section-description {\n            font-size: 16px;\n            color: #2c2d2e;\n            margin-bottom: 30px;\n            line-height: 1.6;\n        }\n\n        .accordion {\n            display: flex;\n            flex-direction: column;\n            gap: 15px;\n        }\n\n        .accordion-item {\n            border: 1px solid #e0e0e0;\n            border-radius: 6px;\n            overflow: hidden;\n        }\n\n        .accordion-header {\n            background: #f9f9f9;\n            padding: 20px;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            font-weight: 600;\n            color: #1a1c1d;\n            transition: background 0.3s ease;\n        }\n\n        .accordion-header:hover {\n            background: #f0f0f0;\n        }\n\n        .accordion-header.active {\n            background: #3f72e5;\n            color: white;\n        }\n\n        .accordion-icon {\n            font-size: 20px;\n            transition: transform 0.3s ease;\n        }\n\n        .accordion-header.active .accordion-icon {\n            transform: rotate(180deg);\n        }\n\n        .accordion-content {\n            display: none;\n            padding: 20px;\n            background: #ffffff;\n            border-top: 1px solid #e0e0e0;\n        }\n\n        .accordion-content.active {\n            display: block;\n        }\n\n        .accordion-content h4 {\n            font-size: 16px;\n            margin: 20px 0 10px 0;\n            color: #1a1c1d;\n        }\n\n        .accordion-content ul {\n            margin-left: 20px;\n            margin-bottom: 15px;\n        }\n\n        .accordion-content li {\n            margin-bottom: 8px;\n            color: #2c2d2e;\n        }\n\n        \/* IMAGE WITH TEXT *\/\n        .image-with-text {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 40px;\n            align-items: center;\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .image-with-text.reverse {\n            direction: rtl;\n        }\n\n        .image-with-text.reverse \u003e * {\n            direction: ltr;\n        }\n\n        .image-with-text img {\n            width: 100%;\n            height: auto;\n            border-radius: 8px;\n            display: block;\n        }\n\n        .image-with-text-content h3 {\n            font-size: 32px;\n            color: #1a1c1d;\n            margin-bottom: 20px;\n        }\n\n        .image-with-text-content p {\n            font-size: 16px;\n            color: #2c2d2e;\n            line-height: 1.8;\n            margin-bottom: 15px;\n        }\n\n        @media (max-width: 768px) {\n            .image-with-text {\n                grid-template-columns: 1fr;\n                gap: 30px;\n            }\n            \n            .image-with-text.reverse {\n                direction: ltr;\n            }\n        }\n\n        \/* SCROLLING CONTENT *\/\n        .scrolling-content {\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .scrolling-content h2 {\n            text-align: center;\n            font-size: 32px;\n            margin-bottom: 40px;\n            color: #1a1c1d;\n        }\n\n        .scroll-item {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 40px;\n            align-items: center;\n            margin-bottom: 60px;\n            padding: 40px;\n            background: #f9f9f9;\n            border-radius: 8px;\n        }\n\n        .scroll-item:nth-child(even) {\n            direction: rtl;\n        }\n\n        .scroll-item:nth-child(even) \u003e * {\n            direction: ltr;\n        }\n\n        .scroll-item img {\n            width: 100%;\n            height: auto;\n            border-radius: 8px;\n            display: block;\n        }\n\n        .scroll-item-content h3 {\n            font-size: 28px;\n            color: #1a1c1d;\n            margin-bottom: 15px;\n        }\n\n        .inline-badge {\n            display: inline-block;\n            background: #9fa3a7;\n            color: white;\n            padding: 6px 12px;\n            border-radius: 20px;\n            font-size: 12px;\n            font-weight: 600;\n            margin-bottom: 15px;\n        }\n\n        .scroll-item-content p {\n            font-size: 16px;\n            color: #2c2d2e;\n            line-height: 1.8;\n        }\n\n        @media (max-width: 768px) {\n            .scroll-item {\n                grid-template-columns: 1fr;\n                gap: 20px;\n            }\n\n            .scroll-item:nth-child(even) {\n                direction: ltr;\n            }\n        }\n\n        \/* MULTICOLUMN *\/\n        .multicolumn-section {\n            margin: 60px 0;\n            padding: 40px 0;\n        }\n\n        .multicolumn-section h2 {\n            text-align: center;\n            font-size: 32px;\n            margin-bottom: 50px;\n            color: #1a1c1d;\n        }\n\n        .multicolumn-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 40px;\n        }\n\n        .multicolumn-item {\n            background: #ffffff;\n            border: 1px solid #e0e0e0;\n            border-radius: 8px;\n            overflow: hidden;\n            transition: all 0.3s ease;\n        }\n\n        .multicolumn-item:hover {\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n        }\n\n        .multicolumn-item img {\n            width: 100%;\n            height: 300px;\n            object-fit: cover;\n            display: block;\n        }\n\n        .multicolumn-item-content {\n            padding: 30px;\n        }\n\n        .multicolumn-item-content h4 {\n            font-size: 20px;\n            color: #1a1c1d;\n            margin-bottom: 15px;\n        }\n\n        .multicolumn-item-content p {\n            font-size: 14px;\n            color: #2c2d2e;\n            line-height: 1.6;\n        }\n\n        \/* PROGRESS BARS *\/\n        .progress-bars-section {\n            margin: 60px 0;\n            padding: 40px;\n            background: #fcfcfc;\n            border-radius: 8px;\n        }\n\n        .progress-bars-section h2 {\n            text-align: center;\n            font-size: 32px;\n            margin-bottom: 40px;\n            color: #1a1c1d;\n        }\n\n        .progress-bars-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 30px;\n        }\n\n        .progress-bar-item {\n            background: white;\n            padding: 20px;\n            border-radius: 6px;\n            border: 1px solid #e0e0e0;\n        }\n\n        .progress-bar-label {\n            font-weight: 600;\n            color: #1a1c1d;\n            margin-bottom: 12px;\n            font-size: 14px;\n        }\n\n        .progress-bar-container {\n            background: #e0e0e0;\n            height: 8px;\n            border-radius: 4px;\n            overflow: hidden;\n            margin-bottom: 8px;\n        }\n\n        .progress-bar-fill {\n            height: 100%;\n            background: linear-gradient(90deg, #5778ff, #9715d6);\n            border-radius: 4px;\n            animation: fillBar 1.5s ease-out forwards;\n        }\n\n        @keyframes fillBar {\n            from {\n                width: 0;\n            }\n            to {\n                width: var(--width);\n            }\n        }\n\n        .progress-bar-percent {\n            text-align: right;\n            font-weight: 700;\n            color: #3f72e5;\n            font-size: 14px;\n        }\n\n        \/* RICH TEXT \/ CTA *\/\n        .rich-text-section {\n            text-align: center;\n            padding: 60px 20px;\n            margin: 60px 0;\n            background: #ffffff;\n        }\n\n        .rich-text-section h2 {\n            font-size: 36px;\n            color: #1a1c1d;\n            margin-bottom: 20px;\n        }\n\n        .rich-text-section p {\n            font-size: 18px;\n            color: #2c2d2e;\n            margin-bottom: 30px;\n        }\n\n        .button-primary {\n            display: inline-block;\n            background: #2c2d2e;\n            color: white;\n            padding: 14px 40px;\n            border-radius: 6px;\n            text-decoration: none;\n            font-weight: 600;\n            transition: background 0.3s ease;\n            border: none;\n            cursor: pointer;\n            font-size: 16px;\n        }\n\n        .button-primary:hover {\n            background: #1b1b1c;\n        }\n\n        \/* TECH SPECS *\/\n        .tech-specs-section {\n            margin: 60px 0;\n            padding: 40px;\n            background: #f5f5f5;\n            border-radius: 8px;\n        }\n\n        .specs-table {\n            width: 100%;\n            border-collapse: collapse;\n            margin-top: 20px;\n        }\n\n        .specs-table th {\n            background: #1a1c1d;\n            color: white;\n            padding: 15px;\n            text-align: left;\n            font-weight: 600;\n        }\n\n        .specs-table td {\n            padding: 15px;\n            border-bottom: 1px solid #ddd;\n            background: white;\n        }\n\n        .specs-table tr:nth-child(even) td {\n            background: #f9f9f9;\n        }\n\n        \/* WARRANTY SECTION *\/\n        .warranty-section {\n            background: linear-gradient(135deg, #2c2d2e 0%, #1a1c1d 100%);\n            color: white;\n            padding: 60px 40px;\n            border-radius: 8px;\n            margin: 60px 0;\n        }\n\n        .warranty-section h2 {\n            font-size: 32px;\n            margin-bottom: 20px;\n        }\n\n        .warranty-section p {\n            font-size: 16px;\n            line-height: 1.8;\n            margin-bottom: 15px;\n        }\n\n        \/* FAQ SECTION *\/\n        .faq-section {\n            background: #2c2d2e;\n            color: white;\n            padding: 60px 40px;\n            border-radius: 8px;\n            margin: 60px 0;\n        }\n\n        .faq-section h2 {\n            font-size: 32px;\n            margin-bottom: 15px;\n        }\n\n        .faq-section-description {\n            font-size: 16px;\n            margin-bottom: 40px;\n            opacity: 0.9;\n        }\n\n        .faq-accordion {\n            display: flex;\n            flex-direction: column;\n            gap: 15px;\n        }\n\n        .faq-item {\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            border-radius: 6px;\n            overflow: hidden;\n        }\n\n        .faq-header {\n            background: rgba(255, 255, 255, 0.05);\n            padding: 20px;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            font-weight: 600;\n            transition: background 0.3s ease;\n        }\n\n        .faq-header:hover {\n            background: rgba(255, 255, 255, 0.1);\n        }\n\n        .faq-header.active {\n            background: #3f72e5;\n        }\n\n        .faq-icon {\n            font-size: 20px;\n            transition: transform 0.3s ease;\n        }\n\n        .faq-header.active .faq-icon {\n            transform: rotate(180deg);\n        }\n\n        .faq-content {\n            display: none;\n            padding: 20px;\n            background: rgba(0, 0, 0, 0.2);\n            border-top: 1px solid rgba(255, 255, 255, 0.2);\n            font-size: 15px;\n            line-height: 1.6;\n        }\n\n        .faq-content.active {\n            display: block;\n        }\n\n        \/* RESPONSIVE *\/\n        @media (max-width: 768px) {\n            .hero-section h1 {\n                font-size: 32px;\n            }\n\n            .gallery-container {\n                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));\n            }\n\n            .programs-grid {\n                grid-template-columns: 1fr;\n            }\n\n            .multicolumn-grid {\n                grid-template-columns: 1fr;\n            }\n\n            .progress-bars-grid {\n                grid-template-columns: 1fr;\n            }\n\n            .specs-table {\n                font-size: 14px;\n            }\n\n            .specs-table th, .specs-table td {\n                padding: 10px;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"description\"\u003e\n\u003cdiv class=\"container\"\u003e\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero-section\"\u003e\n\u003ch1\u003eSpacetouch Transforms Skin for Over \u003cspan class=\"animated-marker\"\u003e800,000 \u003csvg width=\"201\" height=\"14\" viewbox=\"0 0 201 14\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveaspectratio=\"none\"\u003e\n                \u003cpath d=\"M3 10.5732C55.565 6.61382 168.107 -0.117058 197.753 4.63415\" stroke=\"var(--marker-color)\" stroke-width=\"6\" stroke-linecap=\"round\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e \u003c\/span\u003e Users\u003c\/h1\u003e\n\u003c\/section\u003e\n\u003c!-- PROGRAMS HEADLINE --\u003e\n\u003csection class=\"headline-section\"\u003e\n\u003ch2\u003eA Device that \u003cspan class=\"animated-marker\"\u003eTargets \u003csvg width=\"201\" height=\"14\" viewbox=\"0 0 201 14\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveaspectratio=\"none\"\u003e\n                \u003cpath d=\"M3 10.5732C55.565 6.61382 168.107 -0.117058 197.753 4.63415\" stroke=\"var(--marker-color)\" stroke-width=\"6\" stroke-linecap=\"round\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e \u003c\/span\u003e All Your Concerns\u003c\/h2\u003e\n\u003c\/section\u003e\n\u003c!-- CAPSULE DETAILS - COLLAPSIBLE --\u003e\n\u003csection class=\"collapsible-section\"\u003e\n\u003ch2\u003eCapsule Details\u003c\/h2\u003e\n\u003cp class=\"section-description\"\u003eCrafted by leading dermatologists, this device is equipped with 11,616 medical-grade LEDs, offering 11 meticulously designed treatments for comprehensive skincare solutions. It employs a spectrum of light from Infrared to Yellow, spanning 450nm to 850nm, targeting various skin concerns from anti-aging to acne management with precision.\u003c\/p\u003e\n\u003cdiv class=\"accordion\"\u003e\n\u003c!-- Item 1 --\u003e\n\u003cdiv class=\"accordion-item\"\u003e\n\u003cdiv class=\"accordion-header\"\u003eTechnologies \u0026amp; Modes \u003cspan class=\"accordion-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"accordion-content\"\u003e\n\u003ch4\u003eRed Light (633nm)\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003eLED Count:\u003c\/strong\u003e 4,488 LEDs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eDepth of Penetration:\u003c\/strong\u003e Up to 10mm\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eKey Benefits:\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003eAnti-aging: Boosts collagen production to enhance skin elasticity\u003c\/li\u003e\n\u003cli\u003eImproved Blood Circulation: Enhances blood flow to the skin\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWhen to Use:\u003c\/strong\u003e For addressing signs of aging, improving skin elasticity, and promoting healthy blood circulation\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4\u003eInfrared Light (850nm)\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003eLED Count:\u003c\/strong\u003e 2,376 LEDs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eDepth of Penetration:\u003c\/strong\u003e Up to 30mm (Deepest penetration)\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eKey Benefits:\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003eCellulite Treatment: Reduces inflammation to treat underlying fat structures\u003c\/li\u003e\n\u003cli\u003eWound Healing: Accelerates the healing process\u003c\/li\u003e\n\u003cli\u003eRejuvenation: Promotes cellular renewal and health\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWhen to Use:\u003c\/strong\u003e For cellulite treatment, promoting faster wound recovery and cellular rejuvenation\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4\u003eBlue Light (450nm)\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003eLED Count:\u003c\/strong\u003e 2,376 LEDs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eDepth of Penetration:\u003c\/strong\u003e Surface level, up to 2mm\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eKey Benefits:\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003eAcne Management: Targets and eliminates acne-causing bacteria\u003c\/li\u003e\n\u003cli\u003eOil Control: Helps regulate sebum production\u003c\/li\u003e\n\u003cli\u003eSoothing Effect: Calms sensitive and irritated skin\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWhen to Use:\u003c\/strong\u003e For managing acne, controlling excessive skin oil, and calming skin sensitivity\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4\u003eYellow Light (590nm)\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003eLED Count:\u003c\/strong\u003e 2,376 LEDs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eDepth of Penetration:\u003c\/strong\u003e Up to 5mm\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eKey Benefits:\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003eSkin Correction: Reduces skin redness and evens out tone\u003c\/li\u003e\n\u003cli\u003eDetoxifying Effect: Improves lymphatic flow to detoxify the skin\u003c\/li\u003e\n\u003cli\u003eRadiance Boost: Amplifies skin's natural glow and luminosity\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWhen to Use:\u003c\/strong\u003e For correcting skin discoloration, detoxifying the skin, and boosting overall skin radiance\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Item 2 --\u003e\n\u003cdiv class=\"accordion-item\"\u003e\n\u003cdiv class=\"accordion-header\"\u003ePre-Programmed Treatments \u003cspan class=\"accordion-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"accordion-content\"\u003e\n\u003cp\u003eThe Capsule is equipped with a responsive touchscreen interface on its exterior and offers the following pre-programmed treatments:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003eBody Pain Relief\u003c\/li\u003e\n\u003cli\u003eAnti-Aging \u0026amp; Firming\u003c\/li\u003e\n\u003cli\u003eDetox \u0026amp; Glow\u003c\/li\u003e\n\u003cli\u003eSkin Discoloration\u003c\/li\u003e\n\u003cli\u003eCellulite \u0026amp; Stretch Marks\u003c\/li\u003e\n\u003cli\u003eMuscle Recovery\u003c\/li\u003e\n\u003cli\u003eStress Relief\u003c\/li\u003e\n\u003cli\u003eDry Skin\u003c\/li\u003e\n\u003cli\u003eAcne \u0026amp; Oil Control\u003c\/li\u003e\n\u003cli\u003eRejuvenation \u0026amp; Repair\u003c\/li\u003e\n\u003cli\u003eBody Slimming \u0026amp; Contouring\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Item 3 --\u003e\n\u003cdiv class=\"accordion-item\"\u003e\n\u003cdiv class=\"accordion-header\"\u003eSpecifications \u003cspan class=\"accordion-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"accordion-content\"\u003e\n\u003cp\u003e\u003cstrong\u003eMachine Color:\u003c\/strong\u003e Mixed Black and White\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eDimensions (L*W*H):\u003c\/strong\u003e 1930*855*1066 mm\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eTotal LEDs:\u003c\/strong\u003e 11,616 LEDs\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003ePower:\u003c\/strong\u003e 1,200 Watt\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eVoltage:\u003c\/strong\u003e 110 Volt\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003ePlug Type:\u003c\/strong\u003e US Plug\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eControl Screen Size:\u003c\/strong\u003e 7 inches (L*W: 180*120 mm)\u003c\/p\u003e\n\u003ch4\u003eLED Lights \u0026amp; Wavelengths\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e(1) Red light: 633nm - 4,488 LEDs\u003c\/li\u003e\n\u003cli\u003e(2) Infrared light: 850nm - 2,376 LEDs\u003c\/li\u003e\n\u003cli\u003e(3) Blue light: 450nm - 2,376 LEDs\u003c\/li\u003e\n\u003cli\u003e(4) Yellow light: 590nm - 2,376 LEDs\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e\u003cstrong\u003eTotal: 11,616 LEDs\u003c\/strong\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Item 4 --\u003e\n\u003cdiv class=\"accordion-item\"\u003e\n\u003cdiv class=\"accordion-header\"\u003eWarranty \u003cspan class=\"accordion-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"accordion-content\"\u003e\n\u003cp\u003eAll Spacetouch devices are backed by a \u003cstrong\u003eLifetime Manufacturer's Warranty\u003c\/strong\u003e ensuring coverage for all manufacturing defects, including battery issues. To activate this warranty, please register your device within 7 days of first use.\u003c\/p\u003e\n\u003cp\u003eAdditionally, Spacetouch offers an \u003cstrong\u003eExtended Warranty\u003c\/strong\u003e that provides extra protection, including coverage for accidental damage, theft, loss, and other benefits.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- IMAGE WITH TEXT - SECTION 1 --\u003e \u003c!-- PROGRESS BARS \/ RESULTS --\u003e\n\u003csection class=\"progress-bars-section\"\u003e\n\u003ch2\u003eReal Clinical Results\u003c\/h2\u003e\n\u003cdiv class=\"progress-bars-grid\"\u003e\n\u003cdiv class=\"progress-bar-item\"\u003e\n\u003cdiv class=\"progress-bar-label\"\u003eImproves the Appearance of Cellulite\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-container\"\u003e\n\u003cdiv class=\"progress-bar-fill\" style=\"--width: 92%;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-percent\"\u003e92%\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-item\"\u003e\n\u003cdiv class=\"progress-bar-label\"\u003eTightens Fine Lines \u0026amp; Wrinkles\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-container\"\u003e\n\u003cdiv class=\"progress-bar-fill\" style=\"--width: 90%;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-percent\"\u003e90%\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-item\"\u003e\n\u003cdiv class=\"progress-bar-label\"\u003eHydrates Rough \u0026amp; Dry Skin\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-container\"\u003e\n\u003cdiv class=\"progress-bar-fill\" style=\"--width: 97%;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-percent\"\u003e97%\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-item\"\u003e\n\u003cdiv class=\"progress-bar-label\"\u003eTreats Acne \u0026amp; Acne Scarring\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-container\"\u003e\n\u003cdiv class=\"progress-bar-fill\" style=\"--width: 95%;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"progress-bar-percent\"\u003e95%\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- FAQ SECTION --\u003e\n\u003csection class=\"faq-section\"\u003e\n\u003ch2\u003eFrequently Asked Questions\u003c\/h2\u003e\n\u003cp class=\"faq-section-description\"\u003eGet quick answers to common questions about the Capsule. For more detailed information and additional queries, please contact our support team.\u003c\/p\u003e\n\u003cdiv class=\"faq-accordion\"\u003e\n\u003c!-- FAQ 1 --\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-header\"\u003eWhat are the uses of Capsule? \u003cspan class=\"faq-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003eIt can be used to treat scars, stretch marks and spider veins, cellulitis, rosacea, eczema, psoriasis, wrinkles, acne, pigmentation, sunspots, erythema (redness), burned skin and sagging skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ 2 --\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-header\"\u003eHow many minutes should I use Capsule? \u003cspan class=\"faq-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003eAdjust the session duration as per your requirements. Sessions lasting between 15 to 30 minutes is recommended. Do not use the device for more than 60 minutes in a single session.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ 3 --\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-header\"\u003eIs there an automatic color cycle? \u003cspan class=\"faq-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003eYes, press once: The buzzer will sound, and the device will begin cycling through red, blue, green, and yellow colors.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ 4 --\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-header\"\u003eHow can I file a warranty claim? \u003cspan class=\"faq-icon\"\u003e▼\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003eVisit our warranty claim page or contact our customer support team. Kindly have your device registration information ready.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c\/div\u003e\n\u003c!-- SCRIPTS --\u003e \u003cscript\u003e\n    \/\/ Accordion toggle\n    function toggleAccordion(header) {\n        const content = header.nextElementSibling;\n        const isActive = header.classList.contains('active');\n        \n        \/\/ Close all other accordions\n        document.querySelectorAll('.accordion-header').forEach(h =\u003e {\n            if (h !== header) {\n                h.classList.remove('active');\n                h.nextElementSibling.classList.remove('active');\n            }\n        });\n        \n        \/\/ Toggle current\n        header.classList.toggle('active');\n        content.classList.toggle('active');\n    }\n\n    \/\/ FAQ toggle\n    function toggleFaq(header) {\n        const content = header.nextElementSibling;\n        const isActive = header.classList.contains('active');\n        \n        \/\/ Close all other FAQs\n        document.querySelectorAll('.faq-header').forEach(h =\u003e {\n            if (h !== header) {\n                h.classList.remove('active');\n                h.nextElementSibling.classList.remove('active');\n            }\n        });\n        \n        \/\/ Toggle current\n        header.classList.toggle('active');\n        content.classList.toggle('active');\n    }\n\n    \/\/ Gallery hover effect\n    document.querySelectorAll('.gallery-item').forEach(item =\u003e {\n        item.addEventListener('mouseover', function() {\n            this.style.opacity = '0.8';\n        });\n        item.addEventListener('mouseout', function() {\n            this.style.opacity = '1';\n        });\n    });\n\n    \/\/ Program card hover effects\n    document.querySelectorAll('.program-card').forEach(card =\u003e {\n        card.addEventListener('mouseover', function() {\n            this.style.transform = 'translateY(-8px)';\n        });\n        card.addEventListener('mouseout', function() {\n            this.style.transform = 'translateY(0)';\n        });\n    });\n\n    \/\/ Smooth scroll for buttons\n    document.querySelectorAll('.button-primary').forEach(btn =\u003e {\n        btn.addEventListener('click', function(e) {\n            if (this.href.startsWith('#')) {\n                e.preventDefault();\n                const target = document.querySelector(this.getAttribute('href'));\n                if (target) {\n                    target.scrollIntoView({ behavior: 'smooth' });\n                }\n            }\n        });\n    });\n\u003c\/script\u003e\n\u003c\/div\u003e","brand":"Teletron","offers":[{"title":"Default Title","offer_id":44257147093034,"sku":"SpaceTouch Capsule","price":250000.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0715\/4073\/6042\/files\/spacetouch_capsule_1.jpg?v=1776216603","url":"https:\/\/teletronusa.com\/products\/spacetouch-capsule","provider":"Teletron","version":"1.0","type":"link"}