{"product_id":"draaiende-flessenborstel","title":"Draaiende silicone fles- en glazenborstel","description":"\u003cstyle type=\"text\/css\"\u003e\/* =========================================\n           Scoped CSS - Isolated to .custom-product-wrapper\n           ========================================= *\/\n        \n        .custom-product-wrapper {\n            --theme-color: #0f766e; \/* Clean teal color for cleaning product *\/\n            --theme-light: #f0fdfa; \n            --theme-accent: #14b8a6; \n            --text-main: #1e293b;\n            --text-muted: #475569;\n            --border-color: #ccfbf1;\n            --bg-card: #ffffff;\n            \n            font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;\n            color: var(--text-main);\n            line-height: 1.6;\n            background-color: #ffffff;\n            padding: 20px 0;\n            margin: 0 auto;\n            max-width: 1000px;\n            box-sizing: border-box;\n        }\n\n        .custom-product-wrapper * {\n            box-sizing: border-box;\n        }\n\n        .custom-product-wrapper img {\n            max-width: 100%;\n            height: auto;\n            display: block;\n            border-radius: 12px;\n            box-shadow: 0 8px 24px rgba(15, 118, 110, 0.08);\n            margin: 0 auto;\n        }\n\n        \/* Title Area *\/\n        .custom-product-wrapper .main-title {\n            text-align: center;\n            font-size: 32px;\n            font-weight: 800;\n            color: var(--theme-color);\n            margin-bottom: 40px;\n            padding-bottom: 15px;\n            border-bottom: 3px solid var(--theme-light);\n            letter-spacing: 0.5px;\n        }\n\n        \/* Feature Sections *\/\n        .custom-product-wrapper .feature-section {\n            display: flex;\n            align-items: center;\n            gap: 40px;\n            margin-bottom: 60px;\n            background: var(--bg-card);\n            padding: 30px;\n            border-radius: 16px;\n            box-shadow: 0 4px 16px rgba(0,0,0,0.03);\n            border: 1px solid var(--theme-light);\n            transition: transform 0.3s ease;\n        }\n\n        .custom-product-wrapper .feature-section:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 8px 24px rgba(20, 184, 166, 0.08);\n        }\n\n        .custom-product-wrapper .feature-section:nth-child(even) {\n            flex-direction: row-reverse;\n        }\n\n        .custom-product-wrapper .feature-text {\n            flex: 1;\n        }\n\n        .custom-product-wrapper .feature-image {\n            flex: 1;\n        }\n\n        .custom-product-wrapper .feature-text h3 {\n            font-size: 22px;\n            font-weight: 700;\n            color: var(--text-main);\n            margin-top: 0;\n            margin-bottom: 15px;\n            position: relative;\n        }\n\n        .custom-product-wrapper .feature-text h3::before {\n            content: '';\n            display: inline-block;\n            width: 8px;\n            height: 8px;\n            background-color: var(--theme-accent);\n            border-radius: 50%;\n            margin-right: 10px;\n            transform: translateY(-2px);\n        }\n\n        .custom-product-wrapper .feature-text p {\n            font-size: 16px;\n            color: var(--text-muted);\n            margin: 0;\n        }\n\n        \/* Specifications Table *\/\n        .custom-product-wrapper .table-container {\n            margin-top: 60px;\n            margin-bottom: 50px;\n            background: var(--bg-card);\n            padding: 30px;\n            border-radius: 16px;\n            box-shadow: 0 4px 16px rgba(0,0,0,0.03);\n            border: 1px solid var(--theme-light);\n        }\n\n        .custom-product-wrapper .section-title {\n            font-size: 24px;\n            font-weight: 700;\n            text-align: center;\n            margin-bottom: 25px;\n            color: var(--theme-color);\n        }\n\n        .custom-product-wrapper table {\n            width: 100%;\n            border-collapse: collapse;\n            font-size: 15px;\n        }\n\n        .custom-product-wrapper table th,\n        .custom-product-wrapper table td {\n            padding: 14px 20px;\n            border: 1px solid var(--border-color);\n            text-align: left;\n        }\n\n        .custom-product-wrapper .specs-table td:first-child {\n            font-weight: 600;\n            background-color: var(--theme-light);\n            width: 35%;\n            color: var(--text-main);\n        }\n\n        .custom-product-wrapper .specs-table td:last-child {\n            color: var(--text-muted);\n        }\n\n        \/* FAQ Section *\/\n        .custom-product-wrapper .faq-container {\n            background: var(--bg-card);\n            padding: 30px;\n            border-radius: 16px;\n            box-shadow: 0 4px 16px rgba(0,0,0,0.03);\n            border: 1px solid var(--theme-light);\n        }\n\n        .custom-product-wrapper .faq-item {\n            margin-bottom: 20px;\n            padding-bottom: 20px;\n            border-bottom: 1px dashed var(--border-color);\n        }\n\n        .custom-product-wrapper .faq-item:last-child {\n            margin-bottom: 0;\n            padding-bottom: 0;\n            border-bottom: none;\n        }\n\n        .custom-product-wrapper .faq-q {\n            font-weight: 700;\n            font-size: 16px;\n            color: var(--text-main);\n            margin-bottom: 8px;\n        }\n\n        .custom-product-wrapper .faq-a {\n            font-size: 15px;\n            color: var(--text-muted);\n            margin: 0;\n        }\n\n        \/* Mobile Responsiveness *\/\n        @media (max-width: 768px) {\n            .custom-product-wrapper {\n                padding: 10px;\n            }\n            .custom-product-wrapper .main-title {\n                font-size: 26px;\n            }\n            .custom-product-wrapper .feature-section,\n            .custom-product-wrapper .feature-section:nth-child(even) {\n                flex-direction: column;\n                padding: 20px;\n                gap: 20px;\n            }\n            .custom-product-wrapper .feature-text h3 {\n                font-size: 20px;\n            }\n            .custom-product-wrapper .specs-table td:first-child {\n                width: 40%;\n            }\n            .custom-product-wrapper table th,\n            .custom-product-wrapper table td {\n                padding: 10px;\n                font-size: 14px;\n            }\n        }\n\u003c\/style\u003e\n\u003cdiv class=\"custom-product-wrapper\"\u003e\n\u003ch2\u003eDraaibare siliconen flessenborstel met drukmechanisme – 360°-reiniger voor grondige reiniging\u003c\/h2\u003e\n\u003c!-- Feature 1 --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003eBereik moeiteloos elke hoek\u003c\/h3\u003e\n\u003cp\u003eDeze krachtige reinigingsborstel is ontworpen om diep in de bodem van flessen te reiken en past in elke hoek, waardoor hij melkresten en hardnekkige aanslag moeiteloos verwijdert. De dichte en elastische siliconenborstelharen zorgen voor een grondige reiniging.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302160701\/129bb26c0ea91b79928c3b4b7ad83d44.jpg\" alt=\"Reach Every Corner with Ease\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 2 --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003eInnovatief ‘Press-to-Rotate’-mechanisme\u003c\/h3\u003e\n\u003cp\u003eDruk eenvoudig op de hendel om de soepele roterende reiniging te activeren. De flexibele kop past zich aan smalle flessenhalsen en krappe hoeken aan en zorgt voor een reinigingsbereik van 360° voor een grondige reiniging.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302160701\/7a96a325d72d11620bbf64e4f4a8734a.jpg\" alt=\"Innovative Press-to-Rotate Mechanism\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 3 --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003eBorstelharen van voedselveilige siliconen\u003c\/h3\u003e\n\u003cp\u003eDe borstelharen zijn gemaakt van veilige, voedselveilige siliconen en zijn stevig genoeg voor een grondige reiniging, maar toch zacht genoeg om kwetsbare glazen en flessenoppervlakken te beschermen. Geen krassen, geen beschadigingen.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0597\/6208\/1862\/files\/1_04527d51-4b25-4bb3-ac1a-d69bc88de4bf.jpg?v=1776335163\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 4 --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003eErgonomische en krachtbesparende handgreep\u003c\/h3\u003e\n\u003cp\u003eDe comfortabele, antislipgreep zorgt voor een stabiele grip, zelfs met natte handen. Ontworpen om tijd te besparen en vermoeidheid van de handen te verminderen bij dagelijks gebruik.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0597\/6208\/1862\/files\/2_541d8844-21c1-4066-9de7-140a1a1d11b0.jpg?v=1776335162\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 5 --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003eBreed toepasbaar\u003c\/h3\u003e\n\u003cp\u003eIdeaal voor babyflesjes, sportflessen, thermosflessen, wijnflessen, kelkglaasjes en glazen met een smalle hals. Eén veelzijdige borstel voor al uw schoonmaakbehoeften.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0597\/6208\/1862\/files\/3_32d3d96a-5f37-4370-8151-64815535b3c8.jpg?v=1776335163\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Specifications Table --\u003e\n\u003cdiv class=\"table-container\"\u003e\n\u003ch3\u003eSpecificaties\u003c\/h3\u003e\n\u003ctable class=\"specs-table\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003eMateriaal: \u003c\/td\u003e\n\u003ctd\u003e voedselveilige siliconen + PP-handgreep\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eReinigingsmethode: \u003c\/td\u003e\n\u003ctd\u003e indrukken en draaien\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eToepassing: \u003c\/td\u003e\n\u003ctd\u003e babyflesjes en containers met smalle hals\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eKenmerk: \u003c\/td\u003e\n\u003ctd\u003eflexibele 360°-reiniging\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eToepassingsgebied: \u003c\/td\u003e\n\u003ctd\u003e huishoudelijke en babyverzorging\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ Section --\u003e\n\u003cdiv class=\"faq-container\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-a\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Gadgetspeurder","offers":[{"title":"💧 Aqua Blauw","offer_id":44902940508230,"sku":"0312-13255366","price":10.99,"currency_code":"EUR","in_stock":true},{"title":"☁️  Wolkengrijs","offer_id":44902940540998,"sku":"0312-13255193","price":10.99,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0597\/6208\/1862\/files\/129bb26c0ea91b79928c3b4b7ad83d44.jpg?v=1776333056","url":"https:\/\/gadgetspeurder.nl\/products\/draaiende-flessenborstel","provider":"Gadgetspeurder","version":"1.0","type":"link"}