{"product_id":"v1","title":"Vous avez du mal à lisser certaines zones, à raffermir votre peau ou à remodeler votre silhouette ?","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\u003eBodySculpt - Révolutionnez votre silhouette\u003c\/title\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@300;400;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \u003cstyle\u003e\n        \/* --- CSS GENERAL --- *\/\n        :root {\n            --primary-color: #d63384; \/* Rose tonique *\/\n            --secondary-color: #ffeef5; \/* Rose très pâle *\/\n            --text-dark: #333;\n            --text-light: #666;\n            --white: #ffffff;\n            --success: #28a745;\n        }\n\n        body {\n            font-family: 'Poppins', sans-serif;\n            margin: 0;\n            padding: 0;\n            color: var(--text-dark);\n            line-height: 1.6;\n            background-color: #f9f9f9;\n        }\n\n        .container {\n            max-width: 1000px;\n            margin: 0 auto;\n            padding: 20px;\n            background: var(--white);\n            box-shadow: 0 0 20px rgba(0,0,0,0.05);\n        }\n\n        img {\n            max-width: 100%;\n            height: auto;\n            border-radius: 10px;\n        }\n\n        h1, h2, h3 {\n            color: #222;\n            margin-bottom: 15px;\n        }\n\n        .highlight {\n            color: var(--primary-color);\n            font-weight: 700;\n        }\n\n        \/* --- BOUTONS --- *\/\n        .btn-cta {\n            display: inline-block;\n            background-color: var(--primary-color);\n            color: var(--white);\n            padding: 15px 30px;\n            font-size: 1.1rem;\n            font-weight: 600;\n            text-decoration: none;\n            border-radius: 50px;\n            box-shadow: 0 4px 15px rgba(214, 51, 132, 0.4);\n            transition: transform 0.2s, box-shadow 0.2s;\n            text-align: center;\n            border: none;\n            cursor: pointer;\n            width: 100%;\n            max-width: 350px;\n        }\n\n        .btn-cta:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(214, 51, 132, 0.6);\n        }\n\n        \/* --- HERO SECTION (NOUVEAU) --- *\/\n        .hero-section {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 30px;\n            align-items: center;\n            margin-bottom: 50px;\n            padding-bottom: 30px;\n            border-bottom: 1px solid #eee;\n        }\n\n        .hero-text {\n            flex: 1;\n            min-width: 300px;\n        }\n\n        .hero-image {\n            flex: 1;\n            min-width: 300px;\n        }\n\n        .price-box {\n            font-size: 1.5rem;\n            margin: 20px 0;\n        }\n\n        .old-price {\n            text-decoration: line-through;\n            color: #999;\n            font-size: 1rem;\n            margin-right: 10px;\n        }\n\n        .new-price {\n            color: var(--primary-color);\n            font-weight: 700;\n            font-size: 1.8rem;\n        }\n\n        .rating {\n            color: #ffc107;\n            font-size: 0.9rem;\n            margin-bottom: 10px;\n        }\n\n        \/* --- FEATURES GRID --- *\/\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 20px;\n            margin: 40px 0;\n            text-align: center;\n        }\n\n        .feature-item {\n            background: var(--secondary-color);\n            padding: 20px;\n            border-radius: 12px;\n        }\n\n        .feature-icon {\n            font-size: 2rem;\n            margin-bottom: 10px;\n        }\n\n        \/* --- CONTENT BLOCKS --- *\/\n        .content-block {\n            margin-bottom: 50px;\n        }\n\n        .check-list {\n            list-style: none;\n            padding: 0;\n        }\n\n        .check-list li {\n            margin-bottom: 10px;\n            padding-left: 30px;\n            position: relative;\n        }\n\n        .check-list li::before {\n            content: '✅';\n            position: absolute;\n            left: 0;\n            top: 2px;\n        }\n\n        \/* --- HOW IT WORKS --- *\/\n        .steps-container {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: space-between;\n            gap: 20px;\n            margin-top: 30px;\n        }\n\n        .step-card {\n            flex: 1;\n            min-width: 200px;\n            background: #fff;\n            border: 1px solid #eee;\n            padding: 20px;\n            border-radius: 8px;\n            text-align: center;\n        }\n\n        .step-number {\n            background: var(--primary-color);\n            color: white;\n            width: 30px;\n            height: 30px;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            margin: 0 auto 15px auto;\n            font-weight: bold;\n        }\n\n        \/* --- TRUST BADGES --- *\/\n        .trust-badges {\n            display: flex;\n            justify-content: center;\n            gap: 20px;\n            flex-wrap: wrap;\n            margin-top: 20px;\n            padding: 20px;\n            background: #f4f4f4;\n            border-radius: 8px;\n        }\n        \n        .badge {\n            display: flex;\n            align-items: center;\n            gap: 5px;\n            font-size: 0.9rem;\n            font-weight: 600;\n        }\n\n        \/* --- FAQ SECTION --- *\/\n        .faq-section {\n            margin-top: 50px;\n        }\n        \n        details {\n            background: #f9f9f9;\n            margin-bottom: 10px;\n            border-radius: 5px;\n            overflow: hidden;\n        }\n        \n        summary {\n            padding: 15px;\n            cursor: pointer;\n            font-weight: 600;\n            background: #eee;\n        }\n        \n        .faq-content {\n            padding: 15px;\n            background: #fff;\n        }\n\n        \/* --- STICKY CART (MOBILE) --- *\/\n        .sticky-cart {\n            position: fixed;\n            bottom: 0;\n            left: 0;\n            width: 100%;\n            background: white;\n            padding: 15px;\n            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);\n            display: none; \/* Hidden by default, shown via JS or media query *\/\n            justify-content: center;\n            z-index: 1000;\n        }\n\n        @media (max-width: 768px) {\n            .hero-section {\n                flex-direction: column-reverse; \/* Image au dessus sur mobile *\/\n            }\n            \n            .sticky-cart {\n                display: flex;\n            }\n            \n            body {\n                padding-bottom: 80px; \/* Espace pour le sticky cart *\/\n            }\n        }\n    \u003c\/style\u003e\n\n\n\n\u003cdiv class=\"container\"\u003e\n\n    \u003cdiv class=\"hero-section\"\u003e\n        \u003cdiv class=\"hero-text\"\u003e\n            \u003cdiv class=\"rating\"\u003e⭐⭐⭐⭐⭐ 4.9\/5 (120+ avis)\u003c\/div\u003e\n            \u003ch1\u003eDécouvrez \u003cspan class=\"highlight\"\u003eBodySculpt™\u003c\/span\u003e\n\u003c\/h1\u003e\n            \u003cp\u003eAméliorez visiblement votre apparence sans douleur, sans effort et sans rendez-vous coûteux. La solution à domicile pour une peau plus lisse.\u003c\/p\u003e\n            \n            \u003cdiv class=\"price-box\"\u003e\n                \u003cspan class=\"old-price\"\u003e79.90€\u003c\/span\u003e\n                \u003cspan class=\"new-price\"\u003e39.90€\u003c\/span\u003e\n            \u003c\/div\u003e\n\n            \u003cbutton class=\"btn-cta\" onclick=\"addToCart()\"\u003eAJOUTER AU PANIER -50%\u003c\/button\u003e\n            \n            \u003cdiv class=\"trust-badges\" style=\"background:none; padding-left:0; margin-top:10px; justify-content: flex-start;\"\u003e\n                \u003cdiv class=\"badge\"\u003e🚚 Expédition 24\/48h\u003c\/div\u003e\n                \u003cdiv class=\"badge\"\u003e🔒 Paiement Sécurisé\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"hero-image\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/4dd7ec75-ec7f-43e7-8e21-a554934e7768.Bodysculpt_Image_2_23fd8c1e-987c-4ec5-b830-9efee1302833.avif?v=1765288833\" alt=\"BodySculpt Appareil\"\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-item\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e🍊\u003c\/div\u003e\n            \u003ch3\u003eAnti-Cellulite\u003c\/h3\u003e\n            \u003cp\u003eAide à réduire l'effet peau d'orange visiblement.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-item\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e💪\u003c\/div\u003e\n            \u003ch3\u003eRaffermissant\u003c\/h3\u003e\n            \u003cp\u003eTonifie la peau sur les zones clés (bras, cuisses).\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-item\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e🤫\u003c\/div\u003e\n            \u003ch3\u003eSilencieux\u003c\/h3\u003e\n            \u003cp\u003eUtilisez-le devant la télé sans déranger personne.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"content-block\"\u003e\n        \u003ch2 style=\"text-align: center;\"\u003e🌟 Sculptez visiblement dès les premières utilisations\u003c\/h2\u003e\n        \u003cp\u003eBodySculpt cible les zones comme le ventre, les cuisses, les hanches ou les bras pour \u003cstrong\u003elisser la peau\u003c\/strong\u003e et \u003cstrong\u003eraffermir les contours\u003c\/strong\u003e.\u003c\/p\u003e\n        \n        \u003cp\u003eLes \u003cstrong\u003evibrations 3D\u003c\/strong\u003e stimulent la microcirculation, aident à réduire les irrégularités et donnent à la peau un aspect plus tonique. \u003cbr\u003e\u003cem\u003ePlus besoin de soins coûteux en institut ou de régimes extrêmes.\u003c\/em\u003e\u003c\/p\u003e\n        \n        \u003cdiv style=\"text-align: center; margin: 30px 0;\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/2aee.avif?v=1765288833\" alt=\"BodySculpt Utilisation\"\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003chr style=\"border: 0; border-top: 1px solid #eee; margin: 40px 0;\"\u003e\n\n    \u003cdiv class=\"content-block\"\u003e\n        \u003ch2\u003eUn soin complet, à portée de main\u003c\/h2\u003e\n        \u003cp\u003eImaginez rentrer du travail et en seulement \u003cstrong\u003e15 minutes\u003c\/strong\u003e :\u003c\/p\u003e\n        \u003cul class=\"check-list\"\u003e\n            \u003cli\u003eLisser votre ventre sans effort\u003c\/li\u003e\n            \u003cli\u003eStimuler la fermeté des cuisses ou des bras\u003c\/li\u003e\n            \u003cli\u003eApaiser vos complexes avec une routine bien-être relaxante\u003c\/li\u003e\n        \u003c\/ul\u003e\n        \u003cp\u003eAvec BodySculpt, vous travaillez \u003cspan class=\"highlight\"\u003eles zones qui vous gênent\u003c\/span\u003e à votre rythme — sans pression, sans contrainte.\u003c\/p\u003e\n        \n        \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/ac6470e4-ccc1-4198-b0e5-simage_4.avif?v=1765288833\" alt=\"Femme utilisant BodySculpt\" style=\"margin-top:20px;\"\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"content-block\" style=\"background: #f0f8ff; padding: 30px; border-radius: 10px;\"\u003e\n        \u003ch3\u003eBien plus qu’un simple appareil de massage\u003c\/h3\u003e\n        \u003cul class=\"check-list\"\u003e\n            \u003cli\u003e\n\u003cstrong\u003eVibrations VIBRO-WAVE™ :\u003c\/strong\u003e Technologie puissante pour une action en profondeur.\u003c\/li\u003e\n            \u003cli\u003e\n\u003cstrong\u003ePads Multifonctions :\u003c\/strong\u003e Adaptés pour sculpter, raffermir ou lisser.\u003c\/li\u003e\n            \u003cli\u003e\n\u003cstrong\u003eCompact \u0026amp; Voyage :\u003c\/strong\u003e Facile à glisser dans un sac ou une valise.\u003c\/li\u003e\n        \u003c\/ul\u003e\n        \u003cdiv style=\"text-align: center; margin-top: 20px;\"\u003e\n             \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/7c39b96a-9872-4b8b-a78b-c772c8036a6a.BodySculpt-Achraf-circulation-4-5-H3-ezgif.com-optimize.gif?v=1765288835\" alt=\"Animation BodySculpt\" style=\"max-width: 300px;\"\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"content-block\"\u003e\n        \u003ch2 style=\"text-align: center;\"\u003eComment ça fonctionne ?\u003c\/h2\u003e\n        \u003cdiv class=\"steps-container\"\u003e\n            \u003cdiv class=\"step-card\"\u003e\n                \u003cdiv class=\"step-number\"\u003e1\u003c\/div\u003e\n                \u003cstrong\u003eChoisissez le pad\u003c\/strong\u003e\n                \u003cp\u003eSélectionnez l'embout adapté à votre objectif (lisser ou raffermir).\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"step-card\"\u003e\n                \u003cdiv class=\"step-number\"\u003e2\u003c\/div\u003e\n                \u003cstrong\u003eCiblez la zone\u003c\/strong\u003e\n                \u003cp\u003eAppliquez sur le ventre, les bras, les cuisses ou les hanches.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"step-card\"\u003e\n                \u003cdiv class=\"step-number\"\u003e3\u003c\/div\u003e\n                \u003cstrong\u003eActivez 15 min\u003c\/strong\u003e\n                \u003cp\u003eLaissez les vibrations 3D faire le travail pendant que vous vous détendez.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"content-block\"\u003e\n        \u003ch3\u003ePourquoi tout le monde en parle ?\u003c\/h3\u003e\n        \u003cp\u003eDes milliers de femmes l’ont adopté pour atténuer l’effet peau d’orange et raffermir la peau relâchée après une grossesse ou une perte de poids.\u003c\/p\u003e\n        \u003cp\u003e\u003cstrong\u003eRésultat :\u003c\/strong\u003e une silhouette redessinée, une peau plus lisse, et une confiance retrouvée.\u003c\/p\u003e\n        \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/106609b2-e693-45e3-bcb9-18c9ad9ebffe.Bodysculpt_Imadge_3.avif?v=1765288832\" alt=\"Résultats BodySculpt\"\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"faq-section\"\u003e\n        \u003ch3\u003eQuestions Fréquentes\u003c\/h3\u003e\n        \u003cdetails\u003e\n            \u003csummary\u003eEst-ce que ça fait mal ?\u003c\/summary\u003e\n            \u003cdiv class=\"faq-content\"\u003ePas du tout ! BodySculpt est conçu pour être indolore. Vous sentirez un massage vibrant agréable et relaxant.\u003c\/div\u003e\n        \u003c\/details\u003e\n        \u003cdetails\u003e\n            \u003csummary\u003eCombien de temps avant de voir des résultats ?\u003c\/summary\u003e\n            \u003cdiv class=\"faq-content\"\u003eLa plupart de nos utilisatrices constatent une amélioration de la texture de la peau après 2 semaines d'utilisation quotidienne (15 min).\u003c\/div\u003e\n        \u003c\/details\u003e\n        \u003cdetails\u003e\n            \u003csummary\u003ePuis-je l'utiliser avec une crème ?\u003c\/summary\u003e\n            \u003cdiv class=\"faq-content\"\u003eOui, absolument ! L'utilisation d'une huile ou d'une crème minceur facilite la glisse de l'appareil et améliore les résultats.\u003c\/div\u003e\n        \u003c\/details\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"trust-badges\"\u003e\n        \u003cdiv class=\"badge\"\u003e🏆 Garantie 30 Jours\u003c\/div\u003e\n        \u003cdiv class=\"badge\"\u003e📞 Service Client 7j\/7\u003c\/div\u003e\n        \u003cdiv class=\"badge\"\u003e💳 Paiement 100% Sécurisé\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv style=\"text-align: center; margin-top: 40px; margin-bottom: 80px;\"\u003e\n        \u003cbutton class=\"btn-cta\" onclick=\"addToCart()\"\u003eCOMMANDER MAINTENANT\u003c\/button\u003e\n        \u003cp style=\"font-size: 0.8rem; color: #888; margin-top: 10px;\"\u003eStock limité - Forte demande\u003c\/p\u003e\n    \u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"sticky-cart\"\u003e\n    \u003cbutton class=\"btn-cta\" style=\"width: 100%; padding: 12px;\" onclick=\"addToCart()\"\u003eAJOUTER AU PANIER - 39.90€\u003c\/button\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n    function addToCart() {\n        \/\/ C'est ici que vous intégreriez la logique de votre panier Shopify\/WooCommerce\n        \/\/ Exemple simple d'animation pour montrer que ça marche :\n        const btn = event.target;\n        const originalText = btn.innerText;\n        \n        btn.innerText = \"AJOUTÉ ! ✅\";\n        btn.style.backgroundColor = \"#28a745\"; \/\/ Vert\n        \n        \/\/ Simuler un ajout au panier (Redirection vers le checkout ou ouverture du drawer)\n        console.log(\"Produit ajouté au panier !\");\n        \n        setTimeout(() =\u003e {\n            btn.innerText = originalText;\n            btn.style.backgroundColor = \"#d63384\"; \/\/ Retour au rose\n            \/\/ window.location.href = \"\/cart\"; \/\/ Décommenter pour rediriger vers le panier\n        }, 2000);\n    }\n\u003c\/script\u003e\n\n\n\u003c\/body\u003e","brand":"Monproduit","offers":[{"title":"Default Title","offer_id":50679708909874,"sku":null,"price":115.0,"currency_code":"MAD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0790\/6885\/6626\/files\/4ccd3e94-d8ea-4e22-ae71-e9cfab0e6db9.BodysculptMainImage.png?v=1765289274","url":"https:\/\/monproduitmaroc.com\/products\/v1","provider":"Monproduit","version":"1.0","type":"link"}