{"title":"Shop All Essentials","description":"\u003cstyle\u003e\n    .kavro-collection-header {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 600px;\n        margin: 0 auto 30px auto;\n        text-align: center;\n        padding: 20px;\n        background: linear-gradient(180deg, #F4F8FF 0%, #ffffff 100%);\n        border-radius: 20px;\n    }\n\n    .kavro-collection-header h1 {\n        color: var(--navy);\n        font-weight: 800;\n        font-size: 24px;\n        margin-bottom: 12px;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    .kavro-collection-header p {\n        color: #444;\n        font-size: 15px;\n        line-height: 1.5;\n        margin: 0 auto 20px auto;\n    }\n\n    .kavro-mini-benefits {\n        display: flex;\n        justify-content: center;\n        gap: 15px;\n        flex-wrap: wrap;\n    }\n\n    .kavro-benefit-tag {\n        background: white;\n        padding: 6px 12px;\n        border-radius: 50px;\n        font-size: 12px;\n        font-weight: 700;\n        color: var(--navy);\n        box-shadow: 0 4px 10px rgba(0,0,0,0.05);\n        border: 1px solid #eee;\n        display: flex;\n        align-items: center;\n        gap: 5px;\n    }\n\n    .kavro-benefit-tag span {\n        color: var(--accent);\n    }\n\u003c\/style\u003e\n\n\u003cdiv class=\"kavro-collection-header\"\u003e\n    \u003ch1\u003eThe Kavro Standard\u003c\/h1\u003e\n    \u003cp\u003eExplore engineered solutions for your home. From powerful cleaning tools to smart upgrades, discover everything designed to elevate your everyday living.\u003c\/p\u003e\n    \n    \u003cdiv class=\"kavro-mini-benefits\"\u003e\n        \u003cdiv class=\"kavro-benefit-tag\"\u003e\n\u003cspan\u003e✓\u003c\/span\u003e Proven Results\u003c\/div\u003e\n        \u003cdiv class=\"kavro-benefit-tag\"\u003e\n\u003cspan\u003e✓\u003c\/span\u003e Built to Last\u003c\/div\u003e\n        \u003cdiv class=\"kavro-benefit-tag\"\u003e\n\u003cspan\u003e✓\u003c\/span\u003e Smart Innovation\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e","products":[{"product_id":"powerscrub-5-in-1-electric-scrubber","title":"Kavro PowerScrub™ Elite","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .brush-name { \n        font-weight: 400; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .brush-desc {\n        display: block;\n        color: #ffffff;\n        font-size: 13px;\n        font-weight: 400;\n    }\n\n    .elite-container .speed-row {\n        display: flex;\n        align-items: center;\n        gap: 15px;\n        margin-top: 12px;\n    }\n    \n    .elite-container .rpm-box {\n        text-align: center;\n        line-height: 1.1;\n        min-width: 50px; \n        font-size: 13px;\n    }\n\n    .elite-container .speed-text-wrap {\n        display: flex;\n        flex-direction: column;\n        line-height: 1.2;\n    }\n\n    .elite-container .dot { \n        height: 10px; \n        width: 10px; \n        border-radius: 50%; \n        display: inline-block; \n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n    .elite-container .dark-blue { background: #5046e5; box-shadow: 0 0 8px #5046e5; }\n    .elite-container .light-blue { background: #00D2FF; box-shadow: 0 0 8px #00D2FF; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    \n    .elite-container .trust-text { \n        font-size: 12px; \n        font-weight: 700; \n        display: flex; \n        align-items: center; \n        justify-content: center; \n        gap: 8px; \n        margin-bottom: 8px;\n        animation: color-shift 3s infinite alternate;\n    } \n\n    @keyframes color-shift {\n        0% { color: var(--navy); }\n        50% { color: var(--accent); }\n        100% { color: #5046e5; }\n    }\n\n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eBEST SELLER 2026\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro PowerScrub™ Elite\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🧼 5 Interchangeable Heads\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cspan class=\"brush-name\"\u003eOne Clean Cloth:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and pans\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Stainless steel wire ball:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor range hoods and stoves\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Soft brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor bathtubs or faucets\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Lamb fleece cover:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor car glass, window glass\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Sponge brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and sinks\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚙️ 3 Adjustable Speeds\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eMaster your cleaning with precision RPM control:\n\u003cdiv class=\"speed-row\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e\n\u003cdiv class=\"rpm-box\"\u003e\n\u003cb\u003eRPM:\u003c\/b\u003e\u003cbr\u003e1600\u003c\/div\u003e\n\u003cdiv class=\"speed-text-wrap\"\u003e\n\u003cb\u003eDelicate\u003c\/b\u003e\u003cspan\u003e(Windows\/Glass)\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"speed-row\"\u003e\n\u003cspan class=\"dot dark-blue\"\u003e\u003c\/span\u003e\n\u003cdiv class=\"rpm-box\"\u003e\n\u003cb\u003eRPM:\u003c\/b\u003e\u003cbr\u003e2000\u003c\/div\u003e\n\u003cdiv class=\"speed-text-wrap\"\u003e\n\u003cb\u003eDaily\u003c\/b\u003e\u003cspan\u003e(Kitchen\/Sinks)\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"speed-row\"\u003e\n\u003cspan class=\"dot light-blue\"\u003e\u003c\/span\u003e\n\u003cdiv class=\"rpm-box\"\u003e\n\u003cb\u003eRPM:\u003c\/b\u003e\u003cbr\u003e2400\u003c\/div\u003e\n\u003cdiv class=\"speed-text-wrap\"\u003e\n\u003cb\u003eTurbo\u003c\/b\u003e\u003cspan\u003e(Tough Grime)\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔋 USB-C \u0026amp; Cordless\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eHigh-torque power without the restriction of a cord. Fast-charge via USB-C for 90 minutes of use.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🚿 100% Water Resistant\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eIPX7 Rated. Fully submersible and built for the wettest environments.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Default Title","offer_id":46194099781803,"sku":"3","price":399.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_5f155663-0dad-4fee-8e84-b1c0175dccb6.png?v=1775917264"},{"product_id":"electric-powerscrub-pro","title":"Kavro PowerScrub™ Pro","description":"\u003cstyle\u003e\n    \/* Fixed: Now targeting only elements INSIDE .elite-container *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: 20px auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .brush-name { \n        font-weight: 400; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .brush-desc {\n        display: block;\n        color: #ffffff;\n        font-size: 13px;\n        font-weight: 400;\n    }\n\n    .elite-container .trust-container {\n        margin-top: 20px;\n        text-align: center;\n        padding: 10px;\n    }\n\n    .elite-container .trust-text {\n        font-size: 12px;\n        font-weight: 700;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        gap: 8px;\n        margin-bottom: 8px;\n        animation: color-pulse 3s infinite alternate;\n    }\n\n    @keyframes color-pulse {\n        0% { color: var(--navy); }\n        50% { color: var(--accent); }\n        100% { color: #5046e5; }\n    }\n\n    .elite-container .trust-icons {\n        display: flex;\n        justify-content: center;\n        gap: 15px;\n        font-size: 10px;\n        font-weight: 600;\n        color: #777;\n    }\n\n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n\n    .green-lock-svg { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eTRENDING NOW\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003ePowerScrub™ Pro\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🧼 5 Interchangeable Heads\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cspan class=\"brush-name\"\u003eOne Clean Cloth:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and pans\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Stainless steel wire ball:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor range hoods and stoves\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Soft brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor bathtubs or faucets\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Lamb fleece cover:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor car glass, window glass\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Sponge brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and sinks\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚡ Powerful Rotating Action\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eHigh-torque rotation designed for deep, effective cleaning. Let the PowerScrub™ Pro do the hard work for you while you clean faster and smarter.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔋 Cordless \u0026amp; USB Rechargeable\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eIncludes a USB charging cable for easy power-ups. Features \u003cb\u003e2 hours fast charging\u003c\/b\u003e and \u003cb\u003e2-3 hours runtime\u003c\/b\u003e for total freedom.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🚿 Water-Resistant \u0026amp; Durable\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eDesigned for tough environments. Ideal for wet areas like tiles, sinks, and showers. Built to be a durable, long-lasting addition to your home.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock-svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Default Title","offer_id":46094340128939,"sku":null,"price":369.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_b3f5ad10-5d76-4ccf-aa89-1ff8cc961ffe.png?v=1771754534"},{"product_id":"replaceable-brush-heads-for-electric-powerscrub-pro","title":"Kavro PowerScrub Pro™ Replaceable Heads","description":"\u003cstyle\u003e \n    \/* SCOPED CSS - Only affects the Elite Container *\/ \n    .elite-container { \n        --navy: #0B0A40; \n        --accent: #3A8DFF; \n        --bg-light: #F4F8FF; \n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif; \n        max-width: 450px; \n        margin: 20px auto; \n        background: var(--bg-light); \n        padding: 25px 15px; \n        border-radius: 24px; \n        color: var(--navy); \n    } \n\n    .elite-container .elite-badge { \n        display: table; \n        margin: 0 auto 15px; \n        padding: 6px 16px; \n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy)); \n        background-size: 200% auto; \n        animation: elite-shine 1.2s linear infinite; \n        color: white; \n        border-radius: 50px; \n        font-size: 11px; \n        font-weight: 800; \n        text-transform: uppercase; \n    } \n\n    @keyframes elite-shine { to { background-position: 200% center; } } \n\n    .elite-container details { \n        background: white; \n        margin-bottom: 12px; \n        border-radius: 16px; \n        padding: 0; \n        overflow: hidden; \n        transition: 0.3s; \n        box-shadow: 0 4px 10px rgba(0,0,0,0.04); \n        border: none; \n    } \n\n    .elite-container summary { \n        padding: 18px 20px; \n        list-style: none; \n        cursor: pointer; \n        font-weight: 700; \n        display: flex; \n        justify-content: space-between; \n        align-items: center; \n        outline: none; \n    } \n\n    .elite-container summary::-webkit-details-marker { display: none; } \n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    } \n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); } \n    .elite-container details[open] summary { color: white; } \n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    } \n\n    .elite-container .details-content { \n        padding: 0 20px 20px; \n        color: #f0f0f0; \n        font-size: 14px; \n        line-height: 1.6; \n        text-align: left; \n    } \n\n    .elite-container .brush-name {  \n        font-weight: 400;  \n        color: var(--accent);  \n        display: block;  \n        margin-top: 12px;  \n        text-transform: uppercase;  \n        font-size: 12px;  \n    } \n\n    .elite-container .brush-desc {\n        display: block;\n        color: #ffffff;\n        font-size: 13px;\n        font-weight: 400;\n    }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n\n    .elite-container .trust-text { \n        font-size: 12px; \n        font-weight: 700; \n        display: flex; \n        align-items: center; \n        justify-content: center; \n        gap: 8px; \n        margin-bottom: 8px; \n        animation: color-pulse 3s infinite alternate;\n    } \n\n    @keyframes color-pulse {\n        0% { color: var(--navy); }\n        50% { color: var(--accent); }\n        100% { color: #5046e5; }\n    }\n\n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; } \n    \n    .green-lock-svg { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eNEVER RUN OUT\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eReplaceable Brush Heads\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e📦 Full 5-Piece Refill Kit\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eKeep your cleaning at peak performance. This kit includes all original attachments: \u003cspan class=\"brush-name\"\u003eOne Clean Cloth:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and pans\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Stainless steel wire ball:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor range hoods and stoves\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Soft brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor bathtubs or faucets\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Lamb fleece cover:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor car glass, window glass\u003c\/span\u003e \u003cspan class=\"brush-name\"\u003eone Sponge brush:\u003c\/span\u003e \u003cspan class=\"brush-desc\"\u003efor dishes and sinks\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔄 Easy To Attach\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eSpecifically engineered for the Electric PowerScrub Pro. Simply snap the head onto the base for a secure fit.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e💎 Durable \u0026amp; Long Lasting\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eCrafted from high-grade materials to withstand intense rotation. Regular replacement ensures maximum hygiene.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock-svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"5pcs","offer_id":46095269494955,"sku":"5","price":199.99,"currency_code":"ZAR","in_stock":true},{"title":"10pcs","offer_id":46095269527723,"sku":"5","price":359.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/unnamed_27.jpg?v=1771754534"},{"product_id":"kavrocore™-portable-fabric-reviver","title":"Kavro FabricPro™","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\n\u003cdiv class=\"elite-container\"\u003e\n    \u003cdiv class=\"elite-badge\"\u003ePOPULAR CHOICE\u003c\/div\u003e\n    \u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro FabricPro™\u003c\/h2\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e✨ Professional Fabric Restoration\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Effortlessly removes lint and restores clothes, bedding, and upholstery to a smooth, like-new finish in seconds. \n            \u003cspan class=\"feature-label\"\u003eVersatile Care:\u003c\/span\u003e Perfect for everyday fabrics – sweaters, premium knitwear, blankets, sofas, and more.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🔋 Smart LED \u0026amp; Battery\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n                \u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eRuntime: 60+ Minutes\u003c\/b\u003e\n            \u003c\/div\u003e\n            Enjoy long-lasting performance while the integrated digital display shows precise battery percentage at all times.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e⚡ USB-C Fast Charging\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Fully recharges in approximately \u003cb style=\"color: var(--accent);\"\u003e90 minutes\u003c\/b\u003e with modern USB-C technology for seamless convenience. Works with any standard USB-C cable.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🛡️ Precision 6-Blade System\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Engineered for powerful yet gentle fabric care, delivering smooth results without damaging delicate materials thanks to the Protective Honeycomb Guard.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdiv class=\"trust-container\"\u003e\n        \u003cdiv class=\"trust-text\"\u003e\n            \u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\n        \u003c\/div\u003e\n        \u003cdiv class=\"trust-icons\"\u003e\n            \u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"White","offer_id":46216239481003,"sku":null,"price":329.99,"currency_code":"ZAR","in_stock":true},{"title":"Black","offer_id":46216239513771,"sku":null,"price":329.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_45abb8c3-9973-432a-8225-b96f2d0ebc5d.png?v=1771521377"},{"product_id":"kavro-mistpro™","title":"Kavro MistPro™","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eNEW ARRIVAL\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro MistPro™\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e💨 Fine Mist Spray\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eAchieve professional-grade even coverage with every press. Designed for precision with no dripping or messy leaks. \u003cspan class=\"feature-label\"\u003eVersatile Kitchen Use:\u003c\/span\u003e Perfect for Any Kitchen – Cooking, frying, grilling, salads \u0026amp; BBQs.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔄 2-in-1 Design\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eDual Functionality\u003c\/b\u003e\n\u003c\/div\u003e\nThe ultimate hybrid kitchen tool. Easily switch between a high-pressure spray or a smooth pour with one single bottle.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🥗 Ultimate Oil Control\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003ePromote healthier cooking by managing your intake. Our precision nozzle helps you use significantly less oil while maintaining full flavor.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🌿 Food-Grade \u0026amp; Refillable\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eSafe, durable, and eco-friendly. Crafted from high-quality food-grade materials that are easy to clean and built for daily refillable use.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Plastic","offer_id":46216196489387,"sku":null,"price":279.99,"currency_code":"ZAR","in_stock":true},{"title":"Glass","offer_id":46216196522155,"sku":null,"price":339.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_3b33c16a-81df-424b-a435-1009831253b0.png?v=1771521544"},{"product_id":"kavro-chopmaster™-16-in-1","title":"Kavro ChopMaster™ 16-in-1","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eKITCHEN ESSENTIAL\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro ChopMaster™\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔪 16-in-1 Versatility\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eThe ultimate kitchen multi-tool. Effortlessly slice, dice, grate, shred, and peel with one compact set. \u003cspan class=\"feature-label\"\u003eIncludes:\u003c\/span\u003e Draining basket, peeler, and multiple blade attachments for onions, carrots, garlic, and more.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚡ Sharp Stainless-Steel\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eFast, Clean Cuts\u003c\/b\u003e\n\u003c\/div\u003e\nHigh-grade stainless-steel blades ensure clean results every time, reducing effort and ensuring uniform slicing.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⏱️ Time-Saving Prep\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eChop in seconds, not minutes. Drastically cut down your meal preparation time so you can spend less time in the kitchen and more time enjoying your food.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🧺 Mess-Free Container\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eKeep your counters spotless. The integrated container design captures all your veggies directly as you chop, with a built-in draining basket for easy rinsing.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🛡️ Durable \u0026amp; Food-Grade\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eBuilt to last. Made from high-quality, BPA-free food-grade materials that are safe, durable, and dishwasher friendly for easy cleanup.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Gray \u0026 Green","offer_id":46208812744875,"sku":null,"price":559.99,"currency_code":"ZAR","in_stock":true},{"title":"White \u0026 Black","offer_id":46208812777643,"sku":null,"price":599.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_82434d3f-eb6e-4db8-988c-bd4539ff695d.png?v=1771600729"},{"product_id":"kavro-sleek™","title":"Kavro SleekBrush™","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eSELF-CARE ESSENTIAL\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro SleekBrush™\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e💁♀️ Precision Straightening\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eAchieve salon-quality results anywhere. Constant temperature control prevents burns while delivering smooth, frizz-free hair in minutes. \u003cspan class=\"feature-label\"\u003eAdjustable Heat:\u003c\/span\u003e 180°C (Thin), 180°C (Ordinary), and 200°C (Thick) settings for all hair types.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔋 Smart LED Display\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eCordless Freedom\u003c\/b\u003e\n\u003c\/div\u003e\nTrack your battery life and heat settings in real-time with the integrated LED display screen. Perfect for home and travel use.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚡ Quick-Heating Tech\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eNo more waiting around. Advanced quick-heating technology ensures the brush is ready to use in under 60 seconds, making your morning routine effortless.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e👜 Lightweight \u0026amp; Portable\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eCompact and sleek design at just 20cm. Slip it into your handbag or suitcase for professional styling on the go—perfect for travel.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Black","offer_id":46222879752363,"sku":null,"price":449.99,"currency_code":"ZAR","in_stock":true},{"title":"White","offer_id":46222879785131,"sku":null,"price":449.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_d9010ea9-5d0d-4c48-a5ae-1676d81127a5.png?v=1771525807"},{"product_id":"kavro-steamgo-pro™","title":"Kavro SteamGo™ Pro","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow and changes color when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\n\u003cdiv class=\"elite-container\"\u003e\n    \u003cdiv class=\"elite-badge\"\u003eTRAVEL ESSENTIAL\u003c\/div\u003e\n    \u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro SteamGo™ Pro\u003c\/h2\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🔄 180° Rotatable Fold\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Effortlessly switch between handheld and traditional styles with the 180° rotatable soleplate. The pointed front end is specially designed to cover more areas and handle details like collars and buttons.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e⚡ Fast \u0026amp; Powerful Steam\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n                \u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eDry \u0026amp; Wet Ironing\u003c\/b\u003e\n            \u003c\/div\u003e\n            Smooths stubborn wrinkles effortlessly. Experience water spray for wet ironing or use the large titanium panel for quick dry ironing. Ready in seconds for any occasion.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🧳 Lightweight \u0026amp; Compact\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            \"Big energy in a small body\". This ultra-portable design fits easily into your suitcase or luggage, making it the perfect companion for travel or quick home touch-ups with the Kavro SteamGo™ Pro.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e👗 Safe for Multiple Fabrics\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Engineered for versatility. Safely and effectively smooths shirts, dresses, trousers, and delicate garments without damage, providing a professional finish every time.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdiv class=\"trust-container\"\u003e\n        \u003cdiv class=\"trust-text\"\u003e\n            \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\n        \u003c\/div\u003e\n        \u003cdiv class=\"trust-icons\"\u003e\n            \u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Default Title","offer_id":46205674684587,"sku":null,"price":429.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_aadd47ce-251e-4f98-9760-b3c7bcd65c0e.png?v=1771521893"},{"product_id":"clogshield™-drain-protector-set","title":"Kavro ClogShield™","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 15px 18px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        font-size: 14px; \n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 12px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 11px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003ePROBLEM SOLVER\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro ClogShield™\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🛡️ Prevent Blockages\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eStop clogged drains before they start. The Kavro ClogShield™ is designed to catch hair, food scraps, and soap buildup without slowing down water flow. \u003cspan class=\"feature-label\"\u003eThe Result:\u003c\/span\u003e Clean pipes and no more expensive plumber call-outs.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e✨ Instant Setup\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eReady in Seconds\u003c\/b\u003e\n\u003c\/div\u003e\nNo tools. No installation. No stress. Simply place the ClogShield™ over your drain and it goes to work immediately. Perfect for kitchens, bathrooms, and laundry rooms.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e💧 Rapid Drain\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eUnlike cheap mesh strainers, our unique hole pattern ensures water drains rapidly while effectively trapping even the smallest debris. Keep your home running smoothly with zero standing water.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🧼 Durable Quality\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eMade from high-quality, mold-resistant materials. When it's full, simply wipe it clean and it's ready to go again. A long-lasting, eco-friendly solution for every home.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"3 Pack","offer_id":46208329121963,"sku":null,"price":99.0,"currency_code":"ZAR","in_stock":true},{"title":"5 Pack","offer_id":46208329154731,"sku":null,"price":149.0,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_dbe611cf-ef09-4382-af38-8486cd9ae283.png?v=1771580094"},{"product_id":"heelrenew™-pro","title":"Kavro SilkStep™ Pro","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips chevron when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eSELF-CARE ESSENTIAL\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro SilkStep™ Pro\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e✨ Salon-Smooth Heels at Home\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eStop feeling self-conscious in sandals. Restore baby-soft skin in minutes with a professional-grade solution that eliminates dry, cracked skin effortlessly. \u003cspan class=\"feature-label\"\u003eThe Result:\u003c\/span\u003e Beautiful, smooth heels without the expensive salon appointments.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔄 360° Rotating Technology\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e \u003cb\u003eFast \u0026amp; Effective\u003c\/b\u003e\n\u003c\/div\u003e\nThe high-speed rotating head gently buffs away rough patches while protecting the healthy skin underneath. No blades, no pain, and no mess.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e💖 Why You’ll Love It\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eDesigned specifically for real results on sensitive feet.\n\u003cul style=\"margin-top: 10px; padding-left: 15px; color: white;\"\u003e\n\u003cli\u003eSafe \u0026amp; gentle on sensitive areas\u003c\/li\u003e\n\u003cli\u003eMultiple grinding heads for different needs\u003c\/li\u003e\n\u003cli\u003ePowerful motor for deep skin restoration\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔋 Rechargeable \u0026amp; Cordless\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eEnjoy total freedom with a long-lasting rechargeable battery. The cordless, lightweight design makes it perfect for home use or taking with you on holiday.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"White \/ Standard","offer_id":46208803897515,"sku":null,"price":389.99,"currency_code":"ZAR","in_stock":true},{"title":"White \/ Pro Care Set (+3 Heads)","offer_id":46215839776939,"sku":null,"price":449.99,"currency_code":"ZAR","in_stock":true},{"title":"Black \/ Standard","offer_id":46208803930283,"sku":null,"price":389.99,"currency_code":"ZAR","in_stock":true},{"title":"Black \/ Pro Care Set (+3 Heads)","offer_id":46215839809707,"sku":null,"price":449.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_a38d9d2a-0d9d-491c-8e94-f6d1e98f97db.png?v=1771525586"},{"product_id":"kavro-cleanglide-pro™","title":"Kavro CleanGlide™ Pro","description":"\u003cstyle\u003e\n    \/* Scoped to protect your header and search button *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Chevron Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s ease;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips chevron when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 700; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .dot { \n        height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px;\n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    .elite-container .trust-text { font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; animation: color-shift 3s infinite alternate; } \n    @keyframes color-shift { 0% { color: var(--navy); } 50% { color: var(--accent); } 100% { color: #5046e5; } }\n    \n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\n\u003cdiv class=\"elite-container\"\u003e\n    \u003cdiv class=\"elite-badge\"\u003eHOME ESSENTIAL\u003c\/div\u003e\n    \u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro CleanGlide™ Pro\u003c\/h2\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e✨ Effortless Fabric Care\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Instantly remove lint, hair, dust, and fuzz from clothing and furniture. No refills, no sticky tape, and no waste—just smooth, satisfying cleaning in seconds. \n            \u003cspan class=\"feature-label\"\u003eDesign:\u003c\/span\u003e Double-sided surface area for faster cleaning with every swipe.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e👔 Refresh Clothes Instantly\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px;\"\u003e\u003cb\u003eWardrobe Ready\u003c\/b\u003e\u003c\/div\u003e\n            Keep your outfits looking brand new. Perfect for refreshing black clothes, jackets, school uniforms, and professional workwear.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🛋️ Furniture \u0026amp; Home Care\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Keep your home looking pristine. Easily removes stubborn pet hair and fuzz from couches, cushions, and carpets without damaging the fabric.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdetails\u003e\n        \u003csummary\u003e🌱 Reusable \u0026amp; Eco-Friendly\u003c\/summary\u003e\n        \u003cdiv class=\"details-content\"\u003e\n            Built to last. This sustainable fabric brush requires no replacement sheets, making it the perfect long-term solution for modern, eco-conscious homes.\n        \u003c\/div\u003e\n    \u003c\/details\u003e\n\n    \u003cdiv class=\"trust-container\"\u003e\n        \u003cdiv class=\"trust-text\"\u003e\n            \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" class=\"green-lock\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\n        \u003c\/div\u003e\n        \u003cdiv class=\"trust-icons\"\u003e\n            \u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast SA Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n            \u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"Default Title","offer_id":46213213683883,"sku":null,"price":179.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_c7336c45-a984-4cf8-bd2c-c1aa53499ccd.png?v=1771524823"},{"product_id":"kavro-measurepro™","title":"Kavro MeasurePro™","description":"\u003cstyle\u003e\n    \/* Elite Layout Framework - Scoped for Shopify Product Descriptions *\/\n    .elite-container {\n        --navy: #0B0A40;\n        --accent: #3A8DFF;\n        --bg-light: #F4F8FF;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        max-width: 450px;\n        margin: auto;\n        background: var(--bg-light);\n        padding: 25px 15px;\n        border-radius: 24px;\n        color: var(--navy);\n    }\n\n    .elite-container .elite-badge {\n        display: table;\n        margin: 0 auto 15px;\n        padding: 6px 16px;\n        background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));\n        background-size: 200% auto;\n        animation: elite-shine 1.2s linear infinite;\n        color: white;\n        border-radius: 50px;\n        font-size: 11px;\n        font-weight: 800;\n        text-transform: uppercase;\n    }\n\n    @keyframes elite-shine { to { background-position: 200% center; } }\n\n    .elite-container details {\n        background: white;\n        margin-bottom: 12px;\n        border-radius: 16px;\n        overflow: hidden;\n        transition: 0.3s;\n        box-shadow: 0 4px 10px rgba(0,0,0,0.04);\n        border: none;\n    }\n\n    .elite-container summary {\n        padding: 18px 20px;\n        list-style: none;\n        cursor: pointer;\n        font-weight: 700;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        outline: none;\n    }\n\n    .elite-container summary::-webkit-details-marker { display: none; }\n    \n    \/* Arrow Logic *\/\n    .elite-container summary::after { \n        content: '〉'; \n        font-size: 14px; \n        color: var(--accent); \n        transform: rotate(90deg); \n        transition: 0.3s;\n        font-weight: 900;\n    }\n\n    .elite-container details[open] { background: var(--navy); transform: scale(1.02); }\n    .elite-container details[open] summary { color: white; }\n    \n    \/* Flips arrow upside down when open *\/\n    .elite-container details[open] summary::after { \n        content: '〉'; \n        color: white; \n        transform: rotate(-90deg); \n    }\n\n    .elite-container .details-content {\n        padding: 0 20px 20px;\n        color: #f0f0f0;\n        font-size: 14px;\n        line-height: 1.6;\n        text-align: left;\n    }\n\n    .elite-container .feature-label { \n        font-weight: 400; \n        color: var(--accent); \n        display: block; \n        margin-top: 12px; \n        text-transform: uppercase; \n        font-size: 12px; \n    }\n\n    .elite-container .feature-desc {\n        display: block;\n        color: #ffffff;\n        font-size: 13px;\n        font-weight: 400;\n    }\n\n    \/* Precision Row Logic *\/\n    .elite-container .precision-row {\n        display: flex;\n        align-items: center;\n        gap: 15px;\n        margin-top: 12px;\n    }\n    \n    .elite-container .unit-box {\n        text-align: center;\n        line-height: 1.1;\n        min-width: 50px; \n        font-size: 13px;\n    }\n\n    .elite-container .unit-text-wrap {\n        display: flex;\n        flex-direction: column;\n        line-height: 1.2;\n    }\n\n    \/* Pulse Animation for Dots *\/\n    .elite-container .dot { \n        height: 10px; \n        width: 10px; \n        border-radius: 50%; \n        display: inline-block; \n        animation: dot-pulse 2s infinite ease-in-out;\n    }\n\n    @keyframes dot-pulse {\n        0% { transform: scale(1); opacity: 1; }\n        50% { transform: scale(1.3); opacity: 0.7; }\n        100% { transform: scale(1); opacity: 1; }\n    }\n\n    .elite-container .green { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }\n    .elite-container .dark-blue { background: #5046e5; box-shadow: 0 0 8px #5046e5; }\n    .elite-container .light-blue { background: #00D2FF; box-shadow: 0 0 8px #00D2FF; }\n\n    \/* Trust Section *\/\n    .elite-container .trust-container { margin-top: 20px; text-align: center; padding: 10px; } \n    \n    .elite-container .trust-text { \n        font-size: 12px; \n        font-weight: 700; \n        display: flex; \n        align-items: center; \n        justify-content: center; \n        gap: 8px; \n        margin-bottom: 8px;\n        animation: color-shift 3s infinite alternate;\n    } \n\n    @keyframes color-shift {\n        0% { color: var(--navy); }\n        50% { color: var(--accent); }\n        100% { color: #5046e5; }\n    }\n\n    .elite-container .trust-icons { display: flex; justify-content: center; gap: 15px; font-size: 10px; font-weight: 600; color: #777; } \n    .elite-container .trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }\n    \n    .green-lock { width: 14px; height: 14px; fill: #2ecc71; }\n\u003c\/style\u003e\n\u003cdiv class=\"elite-container\"\u003e\n\u003cdiv class=\"elite-badge\"\u003eNEW ARRIVAL 2026\u003c\/div\u003e\n\u003ch2 style=\"text-align: center; margin-top: 5px; color: var(--navy); font-weight: 800;\"\u003eKavro MeasurePro™\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚖️ Ultra-Precise Measuring\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eStop guessing. Measure with 0.1g precision for absolute consistency.\n\u003cdiv class=\"precision-row\"\u003e\n\u003cspan class=\"dot green\"\u003e\u003c\/span\u003e\n\u003cdiv class=\"unit-box\"\u003e\n\u003cb\u003e0.1g\u003c\/b\u003e\u003cbr\u003eSENSORS\u003c\/div\u003e\n\u003cdiv class=\"unit-text-wrap\"\u003e\n\u003cb\u003eBaking \u0026amp; Spices\u003c\/b\u003e\u003cspan\u003eExact ratios every time\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"precision-row\"\u003e\n\u003cspan class=\"dot dark-blue\"\u003e\u003c\/span\u003e\n\u003cdiv class=\"unit-box\"\u003e\n\u003cb\u003eLCD\u003c\/b\u003e\u003cbr\u003eSCREEN\u003c\/div\u003e\n\u003cdiv class=\"unit-text-wrap\"\u003e\n\u003cb\u003eClear Display\u003c\/b\u003e\u003cspan\u003eInstant, readable results\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔄 4 Conversion Units\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eSwitch effortlessly between measurement standards: \u003cspan class=\"feature-label\"\u003eGrams (g):\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003ePerfect for kitchen and diet prep\u003c\/span\u003e \u003cspan class=\"feature-label\"\u003eOunces (oz):\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eStandard liquid\/solid weights\u003c\/span\u003e \u003cspan class=\"feature-label\"\u003eCarats (ct):\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eFor high-precision needs\u003c\/span\u003e \u003cspan class=\"feature-label\"\u003eGrains (gn):\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eFine powder measurements\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e✨ Smart Design Features\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cspan class=\"feature-label\"\u003eTare Function:\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eReset to zero instantly for layered ingredients.\u003c\/span\u003e \u003cspan class=\"feature-label\"\u003eDetachable Head:\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eRemovable spoon for quick, easy cleaning.\u003c\/span\u003e \u003cspan class=\"feature-label\"\u003eCompact Storage:\u003c\/span\u003e \u003cspan class=\"feature-desc\"\u003eSleek profile fits perfectly in any drawer.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🥗 Perfect For...\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003eMeal Prepping, Supplement Dosing, Coffee Blending, Herbs, Spices, and Professional Baking.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdiv class=\"trust-container\"\u003e\n\u003cdiv class=\"trust-text\"\u003e\n\u003csvg class=\"green-lock\" viewbox=\"0 0 24 24\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\u003e\n                \u003cpath d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e 100% Secure SSL Encrypted Checkout\u003c\/div\u003e\n\u003cdiv class=\"trust-icons\"\u003e\n\u003cdiv class=\"trust-item\"\u003e🚚 \u003cspan\u003eFast Shipping\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e⭐ \u003cspan\u003ePremium Quality\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"trust-item\"\u003e🔄 \u003cspan\u003eEasy Returns\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"KavroCore","offers":[{"title":"White","offer_id":46216228896939,"sku":null,"price":249.99,"currency_code":"ZAR","in_stock":true},{"title":"Black","offer_id":46216228929707,"sku":null,"price":249.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/files\/rn-image_picker_lib_temp_55cf44e0-af42-4ba0-9a5b-369165db9db7.png?v=1771575967"}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0732\/4962\/0139\/collections\/rn-image_picker_lib_temp_1328d82b-33ba-4ba1-92a3-718bb0cffd47.png?v=1771833959","url":"https:\/\/www.kavrocore.co.za\/collections\/shop-all-essentials.oembed","provider":"KavroCore","version":"1.0","type":"link"}