{"product_id":"lcarnitine-2","title":"lcarnitine 2","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eEl Spray #1 en Estados Unidos\u003c\/title\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            background: transparent;\n            min-height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            padding: 20px;\n        }\n\n        .container {\n            max-width: 380px;\n            width: 100%;\n        }\n\n        .card {\n            background: white;\n            border-radius: 30px;\n            padding: 40px 30px 35px;\n            text-align: center;\n            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);\n        }\n\n        h1 {\n            font-size: 22px;\n            font-weight: 800;\n            color: #1a1a1a;\n            line-height: 1.35;\n            margin-bottom: 20px;\n            letter-spacing: -0.3px;\n        }\n\n        .benefits {\n            font-size: 14px;\n            color: #333;\n            font-weight: 600;\n            margin-bottom: 8px;\n            line-height: 1.5;\n        }\n\n        .benefit-emoji {\n            font-size: 16px;\n            margin-right: 4px;\n        }\n\n        .subtext {\n            font-size: 13px;\n            color: #666;\n            font-weight: 500;\n            margin-bottom: 25px;\n        }\n\n        .cta-button {\n            background: linear-gradient(135deg, #00c878 0%, #00a854 100%);\n            color: white;\n            border: none;\n            padding: 16px 30px;\n            border-radius: 50px;\n            font-size: 15px;\n            font-weight: 700;\n            cursor: pointer;\n            text-transform: uppercase;\n            letter-spacing: 0.3px;\n            box-shadow: 0 10px 28px rgba(0, 200, 120, 0.35);\n            transition: all 0.3s ease;\n            width: 100%;\n            margin-bottom: 18px;\n        }\n\n        .cta-button:hover {\n            transform: translateY(-3px);\n            box-shadow: 0 14px 35px rgba(0, 200, 120, 0.45);\n        }\n\n        .cta-button:active {\n            transform: translateY(-1px);\n        }\n\n        .timer-text {\n            font-size: 12px;\n            color: #d32f2f;\n            font-weight: 700;\n            letter-spacing: 0.2px;\n        }\n\n        .hourglass {\n            margin-right: 4px;\n        }\n\n        @media (max-width: 480px) {\n            .card {\n                padding: 35px 25px 30px;\n                border-radius: 25px;\n            }\n\n            h1 {\n                font-size: 20px;\n            }\n\n            .cta-button {\n                padding: 15px 25px;\n                font-size: 14px;\n            }\n        }\n\n        @keyframes slideUp {\n            from {\n                opacity: 0;\n                transform: translateY(40px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .card {\n            animation: slideUp 0.5s ease-out;\n        }\n\n        @keyframes bounce {\n            0%, 100% {\n                transform: translateY(0);\n                box-shadow: 0 10px 28px rgba(0, 200, 120, 0.35);\n            }\n            50% {\n                transform: translateY(-12px);\n                box-shadow: 0 20px 40px rgba(0, 200, 120, 0.5);\n            }\n        }\n\n        .cta-button {\n            animation: bounce 2s infinite ease-in-out;\n        }\n    \u003c\/style\u003e\n\n\n    \u003cdiv class=\"container\"\u003e\n        \u003cdiv class=\"card\"\u003e\n            \u003ch1\u003e¡El Suplemento #1 en estados unidos que todos están usando!\u003c\/h1\u003e\n            \n            \u003cdiv class=\"benefits\"\u003e\n                \u003cspan class=\"benefit-emoji\"\u003e🚀\u003c\/span\u003eEnvío GRATIS y Pago Contra Entrega.\n            \u003c\/div\u003e\n            \u003cdiv class=\"subtext\"\u003e¡Empieza HOY!\u003c\/div\u003e\n\n            \u003cbutton class=\"cta-button\" onclick=\"window.location.href='https:\/\/importadosco.myshopify.com\/products\/l-carnitine'\"\u003e¡Sí, QUIERO MÁS INFORMACIÓN YA!\u003c\/button\u003e\n\n            \u003cdiv class=\"timer-text\"\u003e\n                \u003cspan class=\"hourglass\"\u003e⏳\u003c\/span\u003eOferta expira en: \u003cspan id=\"timer\"\u003e04:59\u003c\/span\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cscript\u003e\n        function startCountdown() {\n            let minutes = 4;\n            let seconds = 59;\n\n            function updateTimer() {\n                const timerElement = document.getElementById('timer');\n                timerElement.textContent = \n                    String(minutes).padStart(2, '0') + ':' + \n                    String(seconds).padStart(2, '0');\n\n                if (seconds === 0) {\n                    if (minutes === 0) {\n                        minutes = 4;\n                        seconds = 59;\n                    } else {\n                        minutes--;\n                        seconds = 59;\n                    }\n                } else {\n                    seconds--;\n                }\n            }\n\n            updateTimer();\n            setInterval(updateTimer, 1000);\n        }\n\n        function handleCTA() {\n            \/\/ Reemplaza con tu WhatsApp, formulario, etc.\n            console.log('CTA clickeado');\n            \/\/ window.location.href = 'https:\/\/wa.me\/1234567890?text=Quiero%20más%20información%20del%20spray';\n        }\n\n        window.addEventListener('load', startCountdown);\n    \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Mi tienda","offers":[{"title":"Default Title","offer_id":50984088535287,"sku":null,"price":0.0,"currency_code":"COP","in_stock":true}],"url":"https:\/\/importadosco.co\/products\/lcarnitine-2","provider":"Mi tienda","version":"1.0","type":"link"}