{"title":"Made to Match","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@300;400;500;600;700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n*{\n    margin:0;\n    padding:0;\n    box-sizing:border-box;\n    font-family:'Poppins',sans-serif;\n}\n\nbody{\n    background:#081c15;\n    overflow-x:hidden;\n}\n\n\/* Animated Background *\/\n\n.hero{\n    min-height:100vh;\n    position:relative;\n    display:flex;\n    align-items:center;\n    justify-content:center;\n    padding:80px 20px;\n    overflow:hidden;\n\n    background:\n    radial-gradient(circle at 20% 20%, rgba(52,211,153,.25), transparent 40%),\n    radial-gradient(circle at 80% 30%, rgba(16,185,129,.20), transparent 35%),\n    radial-gradient(circle at 50% 80%, rgba(34,197,94,.15), transparent 40%),\n    linear-gradient(135deg,#081c15,#0f2d21,#102a43);\n\n    animation:bgMove 15s ease-in-out infinite alternate;\n}\n\n@keyframes bgMove{\n    from{\n        background-position:0% 0%;\n    }\n    to{\n        background-position:100% 100%;\n    }\n}\n\n\/* Floating Circles *\/\n\n.hero::before,\n.hero::after{\n    content:'';\n    position:absolute;\n    border-radius:50%;\n    filter:blur(80px);\n    opacity:.4;\n}\n\n.hero::before{\n    width:300px;\n    height:300px;\n    background:#34d399;\n    top:-100px;\n    left:-80px;\n    animation:float 8s infinite ease-in-out;\n}\n\n.hero::after{\n    width:350px;\n    height:350px;\n    background:#22c55e;\n    bottom:-120px;\n    right:-100px;\n    animation:float 10s infinite ease-in-out reverse;\n}\n\n@keyframes float{\n    0%,100%{\n        transform:translateY(0px);\n    }\n    50%{\n        transform:translateY(-30px);\n    }\n}\n\n.container{\n    max-width:1200px;\n    width:100%;\n    display:grid;\n    grid-template-columns:1fr 1fr;\n    gap:60px;\n    align-items:center;\n    z-index:2;\n}\n\n\/* Content *\/\n\n.content{\n    animation:slideLeft 1.2s ease;\n}\n\n.badge{\n    display:inline-block;\n    padding:10px 20px;\n    border:1px solid rgba(255,255,255,.15);\n    background:rgba(255,255,255,.08);\n    backdrop-filter:blur(12px);\n    color:#b7f7d5;\n    border-radius:100px;\n    font-size:.85rem;\n    margin-bottom:25px;\n}\n\nh1{\n    color:white;\n    font-size:4rem;\n    line-height:1.1;\n    font-weight:800;\n    margin-bottom:20px;\n}\n\n.highlight{\n    background:linear-gradient(90deg,#6ee7b7,#34d399,#10b981);\n    -webkit-background-clip:text;\n    -webkit-text-fill-color:transparent;\n}\n\n.description{\n    color:rgba(255,255,255,.8);\n    font-size:1.1rem;\n    line-height:1.8;\n    margin-bottom:35px;\n}\n\n.cta{\n    display:inline-flex;\n    align-items:center;\n    gap:10px;\n    padding:16px 34px;\n    border-radius:50px;\n    text-decoration:none;\n    color:white;\n    background:linear-gradient(135deg,#10b981,#34d399);\n    font-weight:600;\n    transition:.4s;\n    box-shadow:0 15px 40px rgba(16,185,129,.35);\n}\n\n.cta:hover{\n    transform:translateY(-4px);\n    box-shadow:0 20px 50px rgba(16,185,129,.5);\n}\n\n\/* Product Showcase *\/\n\n.showcase{\n    position:relative;\n    display:flex;\n    justify-content:center;\n    align-items:center;\n    gap:30px;\n    animation:slideRight 1.2s ease;\n}\n\n.card{\n    width:280px;\n    background:rgba(255,255,255,.08);\n    backdrop-filter:blur(20px);\n    border:1px solid rgba(255,255,255,.15);\n    border-radius:32px;\n    padding:25px;\n    text-align:center;\n    position:relative;\n    transition:.5s;\n    overflow:hidden;\n}\n\n.card:hover{\n    transform:translateY(-12px);\n}\n\n.card::before{\n    content:'';\n    position:absolute;\n    inset:0;\n    background:linear-gradient(\n    135deg,\n    rgba(255,255,255,.18),\n    transparent\n    );\n    pointer-events:none;\n}\n\n.card img{\n    width:100%;\n    max-width:180px;\n    object-fit:contain;\n    animation:productFloat 4s ease-in-out infinite;\n}\n\n.card:nth-child(2) img{\n    animation-delay:1.5s;\n}\n\n@keyframes productFloat{\n    0%,100%{\n        transform:translateY(0px);\n    }\n    50%{\n        transform:translateY(-12px);\n    }\n}\n\n.card h3{\n    color:white;\n    margin-top:20px;\n    font-size:1.4rem;\n}\n\n.card p{\n    color:rgba(255,255,255,.7);\n    margin-top:10px;\n    font-size:.95rem;\n}\n\n.prestige{\n    transform:translateY(-25px);\n}\n\n.petite{\n    transform:translateY(25px);\n}\n\n\/* Animations *\/\n\n@keyframes slideLeft{\n    from{\n        opacity:0;\n        transform:translateX(-50px);\n    }\n    to{\n        opacity:1;\n        transform:translateX(0);\n    }\n}\n\n@keyframes slideRight{\n    from{\n        opacity:0;\n        transform:translateX(50px);\n    }\n    to{\n        opacity:1;\n        transform:translateX(0);\n    }\n}\n\n\/* Mobile *\/\n\n@media(max-width:900px){\n\n    .container{\n        grid-template-columns:1fr;\n        text-align:center;\n    }\n\n    h1{\n        font-size:2.8rem;\n    }\n\n    .showcase{\n        flex-direction:column;\n        gap:25px;\n    }\n\n    .prestige,\n    .petite{\n        transform:none;\n    }\n\n    .card{\n        width:100%;\n        max-width:320px;\n    }\n\n    .description{\n        font-size:1rem;\n    }\n}\n\n@media(max-width:500px){\n\n    h1{\n        font-size:2.2rem;\n    }\n\n    .hero{\n        padding:60px 15px;\n    }\n\n    .cta{\n        width:100%;\n        justify-content:center;\n    }\n}\n\u003c\/style\u003e\n\u003csection class=\"hero\"\u003e\n\u003cdiv class=\"container\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cspan class=\"badge\"\u003e🌿 Outdoor Collection\u003c\/span\u003e\n\u003ch1\u003eTwo Blenders, \u003cspan class=\"highlight\"\u003eOne Adventure\u003c\/span\u003e\n\u003c\/h1\u003e\n\u003cp class=\"description\"\u003eThe Prestige and Petite together in the great outdoors — the perfect pair for him and her. Designed for every journey, every sunrise, and every unforgettable moment shared in nature.\u003c\/p\u003e\n\u003ca class=\"cta\" href=\"#\"\u003e Explore Collection → \u003c\/a\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"showcase\"\u003e\n\u003cdiv class=\"card prestige\"\u003e\n\u003ch3\u003ePrestige\u003c\/h3\u003e\n\u003cp\u003ePower, performance, and adventure-ready blending.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"card petite\"\u003e\n\u003ch3\u003ePetite\u003c\/h3\u003e\n\u003cp\u003eCompact elegance for life on the move.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e","products":[{"product_id":"the-blend-bar™-prestige-500ml-signature-portable-blender","title":"The Blend Bar™ Prestige – 500ml Signature Portable Blender","description":"```html\n\u003csection class=\"blendbar-prestige\"\u003e\n  \u003cdiv class=\"prestige-container\"\u003e\n    \u003cdiv class=\"prestige-badge\"\u003eTHE BLEND BAR™ PRESTIGE\u003c\/div\u003e\n    \u003ch1\u003eThe Blend Bar™ Prestige – 500ml Signature Portable Blender\u003c\/h1\u003e\n    \u003cp class=\"prestige-tagline\"\u003eElevate Every Sip. Redefine Your Ritual.\u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp class=\"intro\"\u003eIntroducing \u003cstrong\u003eThe Blend Bar™ Prestige\u003c\/strong\u003e — the pinnacle of portable blending, crafted for those who refuse to compromise on quality, even on the go.\u003c\/p\u003e\n    \u003cp class=\"intro\"\u003eThis is not just a blender. It is a statement. A seamless fusion of cutting-edge performance and refined elegance, designed to transform the way you nourish your body — wherever life takes you.\u003c\/p\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003eEffortless Nutrition, Anywhere\u003c\/h3\u003e\n        \u003cp\u003eWhether you're heading to the gym, the boardroom, or a weekend escape, The Blend Bar™ Prestige delivers silky-smooth blends at the touch of a button. No mess. No compromise.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003eAbsolutely Leak-Proof\u003c\/h3\u003e\n        \u003cp\u003eEngineered with a precision-sealed, leak-proof lid, your blends stay exactly where they belong — inside the bottle. Toss it in your bag with complete confidence.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003e500ml of Pure Luxury\u003c\/h3\u003e\n        \u003cp\u003eThe perfect capacity for a full, satisfying blend. Not too little. Not too much. Just right.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003ePowerful Yet Whisper-Quiet\u003c\/h3\u003e\n        \u003cp\u003eA high-performance motor effortlessly crushes ice, blends fruits, and pulverises greens into a velvety, restaurant-quality smoothie in seconds.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003eDesigned to Be Seen\u003c\/h3\u003e\n        \u003cp\u003eWith its sleek, premium finish, The Blend Bar™ Prestige is as beautiful as it is functional. This is the blender people will ask you about.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card\"\u003e\n        \u003cspan class=\"icon\"\u003e✦\u003c\/span\u003e\n        \u003ch3\u003eYour Wellness, Elevated\u003c\/h3\u003e\n        \u003cp\u003eFrom morning green smoothies to post-workout protein shakes, The Blend Bar™ Prestige empowers you to fuel your best self — with the sophistication you deserve.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"quote-section\"\u003e\n      \u003cp class=\"quote\"\u003e\"Because you don't just blend. You Prestige.\"\u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"cta-box\"\u003e\n      \u003ch2\u003eThe Next Level of Portable Luxury\u003c\/h2\u003e\n      \u003cp\u003ePremium performance. Elegant design. Uncompromising convenience.\u003c\/p\u003e\n      \u003ca href=\"#product-form\" class=\"cta-button\"\u003eShop The Prestige\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cstyle\u003e\n.blendbar-prestige {\n  background: linear-gradient(180deg, #f4f0e7 0%, #ece4d5 100%);\n  padding: 60px 16px;\n  font-family: \"Georgia\", serif;\n  box-sizing: border-box;\n}\n\n.prestige-container {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.prestige-badge {\n  display: inline-block;\n  background: #5d4b3f;\n  color: #f6f2ea;\n  padding: 8px 16px;\n  border-radius: 50px;\n  letter-spacing: 2px;\n  font-size: 11px;\n  margin-bottom: 20px;\n}\n\n.blendbar-prestige h1 {\n  font-size: clamp(28px, 6vw, 72px);\n  line-height: 1.15;\n  color: #2f241d;\n  margin-bottom: 16px;\n  font-weight: 500;\n}\n\n.prestige-tagline {\n  font-size: clamp(16px, 4vw, 24px);\n  color: #8c715a;\n  font-style: italic;\n  margin-bottom: 30px;\n}\n\n.divider {\n  width: 80px;\n  height: 2px;\n  background: #b59b7c;\n  margin-bottom: 30px;\n}\n\n.intro {\n  font-size: clamp(16px, 4vw, 20px);\n  line-height: 1.8;\n  color: #4f4135;\n  max-width: 850px;\n  margin-bottom: 20px;\n}\n\n.features-grid {\n  display: grid;\n  grid-template-columns: 1fr;\n  gap: 16px;\n  margin-top: 50px;\n}\n\n@media (min-width: 600px) {\n  .features-grid {\n    grid-template-columns: repeat(2, 1fr);\n  }\n}\n\n@media (min-width: 900px) {\n  .features-grid {\n    grid-template-columns: repeat(3, 1fr);\n  }\n}\n\n.feature-card {\n  background: rgba(255, 255, 255, 0.55);\n  backdrop-filter: blur(10px);\n  border: 1px solid rgba(181, 155, 124, 0.25);\n  padding: 28px 22px;\n  border-radius: 20px;\n  transition: all 0.3s ease;\n  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);\n}\n\n.feature-card:hover {\n  transform: translateY(-6px);\n  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);\n}\n\n.icon {\n  color: #8b6f47;\n  font-size: 22px;\n}\n\n.feature-card h3 {\n  color: #2f241d;\n  margin: 12px 0;\n  font-size: clamp(17px, 4vw, 24px);\n  font-weight: 500;\n}\n\n.feature-card p {\n  color: #5b4b3d;\n  line-height: 1.8;\n  font-size: clamp(14px, 3.5vw, 16px);\n  margin: 0;\n}\n\n.quote-section {\n  text-align: center;\n  margin-top: 60px;\n  padding: 0 8px;\n}\n\n.quote {\n  font-size: clamp(20px, 5vw, 34px);\n  color: #5d4b3f;\n  font-style: italic;\n  max-width: 800px;\n  margin: auto;\n}\n\n.cta-box {\n  margin-top: 60px;\n  text-align: center;\n  background: #3b2e24;\n  color: white;\n  padding: 48px 24px;\n  border-radius: 24px;\n  box-sizing: border-box;\n}\n\n.cta-box h2 {\n  font-size: clamp(24px, 6vw, 42px);\n  margin-bottom: 12px;\n  font-weight: 500;\n}\n\n.cta-box p {\n  color: #d8c8b7;\n  margin-bottom: 28px;\n  font-size: clamp(14px, 4vw, 18px);\n}\n\n.cta-button {\n  display: inline-block;\n  background: #b69167;\n  color: white;\n  text-decoration: none;\n  padding: 16px 32px;\n  border-radius: 999px;\n  font-size: clamp(14px, 3.5vw, 16px);\n  font-weight: 600;\n  letter-spacing: 1px;\n  transition: 0.3s;\n}\n\n.cta-button:hover {\n  background: #c9a87d;\n  transform: translateY(-2px);\n}\n\n@media (min-width: 900px) {\n  .blendbar-prestige {\n    padding: 100px 20px;\n  }\n\n  .prestige-badge {\n    padding: 10px 22px;\n    letter-spacing: 3px;\n    font-size: 12px;\n    margin-bottom: 25px;\n  }\n\n  .divider {\n    width: 120px;\n    margin-bottom: 40px;\n  }\n\n  .features-grid {\n    gap: 25px;\n    margin-top: 70px;\n  }\n\n  .feature-card {\n    padding: 35px;\n    border-radius: 24px;\n  }\n\n  .quote-section {\n    margin-top: 90px;\n    padding: 0;\n  }\n\n  .cta-box {\n    margin-top: 80px;\n    padding: 70px 40px;\n    border-radius: 32px;\n  }\n}\n\u003c\/style\u003e\n```","brand":"The Blend Bar","offers":[{"title":"white","offer_id":43658211459131,"sku":null,"price":489.0,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0679\/8524\/4219\/files\/outdoors-early-morning-campfire_5937dbad-b88c-4b7d-ab6a-46fc60e9c833.png?v=1781193833"},{"product_id":"the-blend-bar™-petite-380ml-signature-portable-blender","title":"The Blend Bar™ Petite – 380ml Signature Portable Blender","description":"\u003cbody\u003e\n\n\n\u003cmeta charset=\"UTF-8\"\u003e\n\u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\u003ctitle\u003eThe Blend Bar™ Petite\u003c\/title\u003e\n\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Playfair+Display:wght@500;700\u0026amp;family=Inter:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n*{\n    margin:0;\n    padding:0;\n    box-sizing:border-box;\n}\n\nbody{\n    font-family:'Inter',sans-serif;\n    background:linear-gradient(180deg,#fff7fa 0%,#ffffff 50%,#fff1f6 100%);\n    color:#2b2b2b;\n    overflow-x:hidden;\n}\n\n.container{\n    width:100%;\n    max-width:1200px;\n    margin:auto;\n    padding:20px;\n}\n\n\/* Floating Background *\/\n.bg-blur{\n    position:fixed;\n    border-radius:50%;\n    filter:blur(100px);\n    z-index:-1;\n    animation:float 8s ease-in-out infinite;\n}\n\n.bg1{\n    width:250px;\n    height:250px;\n    background:#ffd6e7;\n    top:-80px;\n    left:-80px;\n}\n\n.bg2{\n    width:220px;\n    height:220px;\n    background:#ffeef5;\n    bottom:-80px;\n    right:-80px;\n    animation-delay:2s;\n}\n\n@keyframes float{\n    0%,100%{transform:translateY(0px);}\n    50%{transform:translateY(25px);}\n}\n\n\/* Hero Section *\/\n.hero{\n    min-height:100vh;\n    display:flex;\n    align-items:center;\n    justify-content:center;\n    text-align:center;\n    position:relative;\n}\n\n.hero-content{\n    max-width:700px;\n    animation:fadeUp 1.2s ease;\n}\n\n.badge{\n    display:inline-block;\n    padding:8px 18px;\n    border-radius:30px;\n    background:rgba(255,255,255,0.8);\n    backdrop-filter:blur(10px);\n    border:1px solid rgba(255,182,193,.4);\n    color:#d46a92;\n    font-size:12px;\n    letter-spacing:2px;\n    text-transform:uppercase;\n    margin-bottom:20px;\n}\n\nh1{\n    font-family:'Playfair Display',serif;\n    font-size:clamp(2.3rem,6vw,4.5rem);\n    line-height:1.05;\n    margin-bottom:20px;\n}\n\n.highlight{\n    background:linear-gradient(90deg,#d46a92,#ff9ac1);\n    -webkit-background-clip:text;\n    -webkit-text-fill-color:transparent;\n}\n\n.hero p{\n    font-size:1rem;\n    line-height:1.8;\n    color:#666;\n    margin-bottom:30px;\n}\n\n.cta{\n    display:inline-block;\n    padding:15px 34px;\n    background:linear-gradient(135deg,#ff8eb6,#d46a92);\n    color:white;\n    text-decoration:none;\n    border-radius:50px;\n    font-weight:600;\n    box-shadow:0 15px 40px rgba(212,106,146,.25);\n    transition:.4s;\n}\n\n.cta:hover{\n    transform:translateY(-4px);\n}\n\n.product-card{\n    margin-top:50px;\n    background:rgba(255,255,255,0.7);\n    backdrop-filter:blur(18px);\n    border:1px solid rgba(255,255,255,.8);\n    border-radius:30px;\n    padding:25px;\n    box-shadow:0 20px 60px rgba(0,0,0,.06);\n    animation:floatCard 5s ease-in-out infinite;\n}\n\n.product-size{\n    font-size:3rem;\n    font-weight:700;\n    color:#d46a92;\n}\n\n.product-label{\n    color:#777;\n    letter-spacing:2px;\n    text-transform:uppercase;\n    font-size:12px;\n}\n\n@keyframes floatCard{\n    0%,100%{transform:translateY(0);}\n    50%{transform:translateY(-10px);}\n}\n\n.section{\n    padding:80px 0;\n}\n\n.section-title{\n    text-align:center;\n    font-family:'Playfair Display',serif;\n    font-size:2.2rem;\n    margin-bottom:50px;\n}\n\n\/* Features *\/\n.features{\n    display:grid;\n    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));\n    gap:20px;\n}\n\n.feature{\n    background:white;\n    border-radius:24px;\n    padding:25px;\n    box-shadow:0 12px 35px rgba(0,0,0,.05);\n    transition:.4s;\n    opacity:0;\n    transform:translateY(30px);\n    animation:fadeUp .8s forwards;\n}\n\n.feature:nth-child(2){animation-delay:.15s;}\n.feature:nth-child(3){animation-delay:.3s;}\n.feature:nth-child(4){animation-delay:.45s;}\n.feature:nth-child(5){animation-delay:.6s;}\n\n.feature:hover{\n    transform:translateY(-8px);\n}\n\n.icon{\n    font-size:28px;\n    margin-bottom:15px;\n}\n\n.feature h3{\n    margin-bottom:12px;\n    color:#d46a92;\n}\n\n.feature p{\n    color:#666;\n    line-height:1.7;\n}\n\n\/* Luxury Section *\/\n.luxury{\n    background:linear-gradient(135deg,#fff7fa,#ffffff);\n    border-radius:35px;\n    padding:40px 25px;\n    text-align:center;\n    box-shadow:0 20px 60px rgba(0,0,0,.04);\n}\n\n.luxury h2{\n    font-family:'Playfair Display',serif;\n    font-size:2rem;\n    margin-bottom:20px;\n}\n\n.luxury p{\n    max-width:750px;\n    margin:auto;\n    line-height:1.9;\n    color:#666;\n}\n\n\/* Fade Animation *\/\n@keyframes fadeUp{\n    from{\n        opacity:0;\n        transform:translateY(40px);\n    }\n    to{\n        opacity:1;\n        transform:translateY(0);\n    }\n}\n\n\/* Mobile *\/\n@media(max-width:768px){\n\n    .hero{\n        min-height:auto;\n        padding:80px 0;\n    }\n\n    .product-size{\n        font-size:2.5rem;\n    }\n\n    .section{\n        padding:60px 0;\n    }\n\n    .feature{\n        padding:22px;\n    }\n}\n\u003c\/style\u003e\n\n\n\n\n\u003cdiv class=\"bg-blur bg1\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"bg-blur bg2\"\u003e\u003c\/div\u003e\n\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"container\"\u003e\n        \u003cdiv class=\"hero-content\"\u003e\n\n            \u003cdiv class=\"badge\"\u003eLuxury Portable Blender\u003c\/div\u003e\n\n            \u003ch1\u003e\n                Small in Size.\u003cbr\u003e\n                \u003cspan class=\"highlight\"\u003eLimitless in Luxury.\u003c\/span\u003e\n            \u003c\/h1\u003e\n\n            \u003cp\u003e\n                Introducing \u003cstrong\u003eThe Blend Bar™ Petite\u003c\/strong\u003e — the most refined compact blender ever crafted.\n                Perfectly sized at 380ml for modern lifestyles that value elegance, intention, and exceptional design.\n            \u003c\/p\u003e\n\n            \u003ca href=\"#\" class=\"cta\"\u003eShop The Petite\u003c\/a\u003e\n\n            \u003cdiv class=\"product-card\"\u003e\n                \u003cdiv class=\"product-size\"\u003e380ml\u003c\/div\u003e\n                \u003cdiv class=\"product-label\"\u003ePerfectly Proportioned\u003c\/div\u003e\n            \u003c\/div\u003e\n\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"container\"\u003e\n\n        \u003ch2 class=\"section-title\"\u003eWhy You'll Love It\u003c\/h2\u003e\n\n        \u003cdiv class=\"features\"\u003e\n\n            \u003cdiv class=\"feature\"\u003e\n                \u003cdiv class=\"icon\"\u003e✨\u003c\/div\u003e\n                \u003ch3\u003ePerfectly Proportioned\u003c\/h3\u003e\n                \u003cp\u003e\n                    Crafted for single-serve smoothies, protein shakes and wellness shots.\n                    No excess. Just perfection.\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n\n            \u003cdiv class=\"feature\"\u003e\n                \u003cdiv class=\"icon\"\u003e💎\u003c\/div\u003e\n                \u003ch3\u003eLeak-Proof Confidence\u003c\/h3\u003e\n                \u003cp\u003e\n                    Precision-engineered sealing technology keeps every blend secure,\n                    wherever life takes you.\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n\n            \u003cdiv class=\"feature\"\u003e\n                \u003cdiv class=\"icon\"\u003e⚡\u003c\/div\u003e\n                \u003ch3\u003eEffortless Power\u003c\/h3\u003e\n                \u003cp\u003e\n                    A high-performance motor transforms fruits, greens and ice into a silky,\n                    velvety blend within seconds.\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n\n            \u003cdiv class=\"feature\"\u003e\n                \u003cdiv class=\"icon\"\u003e🌸\u003c\/div\u003e\n                \u003ch3\u003eBeauty Worth Displaying\u003c\/h3\u003e\n                \u003cp\u003e\n                    Elegant, sophisticated and unmistakably premium. Designed to look beautiful\n                    wherever it lives.\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n\n            \u003cdiv class=\"feature\"\u003e\n                \u003cdiv class=\"icon\"\u003e👜\u003c\/div\u003e\n                \u003ch3\u003eWellness Anywhere\u003c\/h3\u003e\n                \u003cp\u003e\n                    Lightweight, portable and refined. Nourishment on your terms without\n                    compromising quality.\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n\n        \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"container\"\u003e\n\n        \u003cdiv class=\"luxury\"\u003e\n\n            \u003ch2\u003eThe Art of Less\u003c\/h2\u003e\n\n            \u003cp\u003e\n                In a world of excess, The Blend Bar™ Petite is a masterclass in refined simplicity.\n                Every curve, every seal and every blade has been thoughtfully engineered to deliver\n                an extraordinary blending experience in the most elegant package possible.\n                \u003cbr\u003e\u003cbr\u003e\n                \u003cstrong\u003eThe Blend Bar™ Petite.\u003c\/strong\u003e\u003cbr\u003e\n                Because the finest things come in the most beautiful forms.\n            \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\n\u003c\/body\u003e","brand":"The Blend Bar","offers":[{"title":"Pink","offer_id":43658200088635,"sku":null,"price":349.0,"currency_code":"ZAR","in_stock":true},{"title":"White","offer_id":43658200121403,"sku":null,"price":349.0,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0679\/8524\/4219\/files\/home-blueberries-strawberries.png?v=1781193333"}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0679\/8524\/4219\/collections\/his-and-hers-outdoor-setting.png?v=1781377617","url":"https:\/\/theblendbar.co.za\/collections\/made-to-match.oembed","provider":"The Blend Bar","version":"1.0","type":"link"}