{"title":"Hot Tubs","description":"\u003cscript\u003e\n  (function() {\n    const initTabs = () =\u003e {\n      const tabs = document.querySelectorAll('.js-tab-trigger');\n      const panels = document.querySelectorAll('.ol-panel');\n      \n      if (tabs.length === 0) return; \/\/ Failsafe in case elements haven't loaded\n\n      tabs.forEach(tab =\u003e {\n        tab.addEventListener('click', function(e) {\n          e.preventDefault(); \/\/ Stops the button from doing anything weird\n          \n          \/\/ 1. Remove active states\n          tabs.forEach(t =\u003e {\n            t.classList.remove('is-active');\n            t.setAttribute('aria-selected', 'false');\n          });\n          panels.forEach(p =\u003e p.classList.remove('is-active'));\n          \n          \/\/ 2. Add active state to the clicked tab\n          this.classList.add('is-active');\n          this.setAttribute('aria-selected', 'true');\n          \n          \/\/ 3. Show the corresponding panel\n          const targetId = this.getAttribute('data-target');\n          const targetPanel = document.getElementById(targetId);\n          \n          if (targetPanel) {\n            targetPanel.classList.add('is-active');\n          }\n        });\n      });\n    };\n\n    const initPromoBanner = () =\u003e {\n      const promoBanner = document.getElementById('js-sanctuary-promo');\n      if (promoBanner) {\n        \/\/ Set expiry for midnight immediately following April 30, 2026\n        const expiryDate = new Date('2026-05-01T00:00:00'); \n        const currentDate = new Date();\n        \n        \/\/ If current date is past the expiry date, remove the banner completely\n        if (currentDate \u003e= expiryDate) {\n          promoBanner.remove(); \/\/ Leaves no trace in the DOM\n          \n          \/\/ Restore the original bottom padding to the main container so it doesn't look broken\n          const mainWrapper = document.getElementById('ol-navigator');\n          if (mainWrapper) {\n            mainWrapper.style.paddingBottom = '45px';\n          }\n        }\n      }\n    };\n\n    \/\/ Run the code regardless of how the theme loads the page\n    if (document.readyState === 'loading') {\n      document.addEventListener('DOMContentLoaded', () =\u003e {\n        initTabs();\n        initPromoBanner();\n      });\n    } else {\n      initTabs();\n      initPromoBanner();\n    }\n  })();\n\u003c\/script\u003e\n\n\u003cstyle\u003e\n  \/* CSS Variables sourced from OL_Colour_Hex_Guide.pdf \u0026 User Brand Pref *\/\n  .ol-navigator-wrapper {\n    --ol-brand: #40b7ab;\n    --ol-brand-dark: #359c91;\n    --ol-accent-secondary: #8C7998;\n    --ol-tint-bg: #E1F2EF;\n    --ol-text-main: #2A2322;\n    --ol-text-muted: #555555;\n    --ol-white: #ffffff;\n    --ol-radius: 8px;\n    --ol-container-radius: 16px;\n    --ol-shadow-soft: 0 15px 35px rgba(64, 183, 171, 0.08);\n    --ol-shadow-hover: 0 20px 40px rgba(42, 35, 34, 0.12);\n    --ol-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);\n    \n    max-width: 1200px;\n    margin: 0 auto 30px auto;\n    \/* Reduced top padding from 35px to 22px to save vertical height *\/\n    padding: 22px 30px 0 30px; \n    background-color: var(--ol-tint-bg);\n    border-radius: var(--ol-container-radius);\n    box-shadow: var(--ol-shadow-soft);\n    border: 1px solid rgba(255,255,255,0.7);\n    box-sizing: border-box;\n    scroll-margin-top: 100px; \n  }\n\n  .ol-navigator-wrapper *, \n  .ol-navigator-wrapper *::before, \n  .ol-navigator-wrapper *::after {\n    box-sizing: inherit;\n  }\n\n  \/* Updated Header to sit inline: Logo left, Tabs right *\/\n  .ol-navigator-header {\n    display: flex;\n    flex-direction: row;\n    align-items: center;\n    justify-content: space-between;\n    gap: 20px;\n    margin-bottom: 22px; \/* Replaces dual margins to save vertical space *\/\n    width: 100%;\n  }\n\n  .ol-main-logo {\n    max-width: 120px; \/* Slightly slimmed down to sit perfectly inline *\/\n    width: 100%;\n    height: auto;\n    display: block;\n    flex-shrink: 0;\n  }\n\n  .ol-nav-tabs-container {\n    display: flex;\n    justify-content: flex-end;\n    width: auto;\n  }\n\n  .ol-nav-tabs {\n    display: inline-flex;\n    gap: 4px;\n    position: relative;\n    background: var(--ol-white);\n    padding: 4px;\n    border-radius: 60px;\n    border: 1px solid rgba(255,255,255,0.8);\n    box-shadow: 0 6px 20px rgba(64, 183, 171, 0.06);\n  }\n\n  .ol-nav-tab {\n    background: none;\n    border: none;\n    \/* Reduced padding from 9px 24px to 7px 18px for a slimmer profile *\/\n    padding: 7px 18px; \n    font-size: 0.92rem;\n    font-weight: 400;\n    color: var(--ol-text-muted);\n    cursor: pointer;\n    transition: var(--ol-transition);\n    border-radius: 40px;\n    white-space: nowrap;\n    -webkit-tap-highlight-color: transparent;\n  }\n\n  .ol-nav-tab:hover {\n    color: var(--ol-brand);\n    background-color: #f4fcfb;\n  }\n\n  .ol-nav-tab.is-active {\n    color: var(--ol-white);\n    background-color: var(--ol-brand);\n    font-weight: 500;\n    box-shadow: 0 4px 12px rgba(64, 183, 171, 0.25);\n  }\n\n  .ol-panel {\n    display: none; \n    animation: olFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);\n  }\n\n  .ol-panel.is-active {\n    display: block !important; \n  }\n\n  .ol-card-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n    gap: 18px; \/* Slightly tightened grid gap *\/\n  }\n\n  .ol-card {\n    display: flex;\n    flex-direction: column;\n    background: var(--ol-white);\n    border-radius: var(--ol-radius);\n    overflow: hidden;\n    text-decoration: none;\n    border: 1px solid transparent;\n    transition: var(--ol-transition), transform 0.1s ease-out;\n    height: 100%;\n    position: relative;\n    box-shadow: 0 4px 10px rgba(0,0,0,0.03);\n    will-change: transform, box-shadow; \n  }\n\n  .ol-card:hover {\n    transform: translateY(-6px);\n    box-shadow: var(--ol-shadow-hover);\n    border-color: var(--ol-brand);\n  }\n\n  .ol-card-image-wrapper {\n    position: relative;\n    width: 100%;\n    padding-top: 60%; \n    background-color: #f4f4f4;\n    overflow: hidden;\n  }\n\n  .ol-card-image {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    transition: transform 0.8s ease;\n  }\n\n  .ol-card-badge {\n    position: absolute;\n    top: 12px;\n    left: 12px;\n    background-color: rgba(255, 255, 255, 0.95);\n    color: var(--ol-brand);\n    font-size: 0.75rem;\n    font-weight: 500;\n    padding: 6px 12px;\n    border-radius: 4px;\n    text-transform: uppercase;\n    letter-spacing: 0.5px;\n    z-index: 2;\n  }\n\n  .ol-card-content {\n    padding: 20px; \/* Reduced from 25px to save internal vertical space *\/\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n  }\n\n  .ol-card-title {\n    font-size: 1.25rem;\n    font-weight: 500;\n    color: var(--ol-text-main);\n    margin: 0 0 8px 0;\n    line-height: 1.2;\n  }\n\n  .ol-card-desc {\n    font-size: 0.92rem;\n    color: var(--ol-text-muted);\n    margin: 0 0 15px 0;\n    line-height: 1.4;\n  }\n\n  .ol-card-link {\n    font-size: 0.85rem;\n    font-weight: 500;\n    color: var(--ol-brand);\n    text-transform: uppercase;\n    letter-spacing: 1px;\n    margin-top: auto;\n    display: inline-flex;\n    align-items: center;\n    gap: 6px;\n  }\n\n  \/* Helper to forcefully kill underlines in Shopify themes *\/\n  #js-sanctuary-promo a,\n  #js-sanctuary-promo a:hover,\n  #js-sanctuary-promo span {\n    text-decoration: none !important;\n  }\n\n  \/* Stacks inline header cleanly on tablet\/mobile viewports *\/\n  @media (max-width: 870px) {\n    .ol-navigator-header { flex-direction: column; justify-content: center; gap: 15px; }\n    .ol-nav-tabs-container { justify-content: center; width: 100%; overflow-x: auto; }\n  }\n\n  @media (max-width: 768px) {\n    .ol-card-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }\n    .ol-card { min-width: 280px; }\n  }\n\n  @keyframes olFadeUp {\n    from { opacity: 0; transform: translateY(10px); }\n    to { opacity: 1; transform: translateY(0); }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"ol-navigator-wrapper\" id=\"ol-navigator\"\u003e\n  \n  \u003cdiv class=\"ol-navigator-header\"\u003e\n    \u003cimg src=\"https:\/\/www.outdoorlivinghottubs.co.uk\/cdn\/shop\/files\/logo-22_600x.png?v=1671519355\" alt=\"Outdoor Living Hot Tubs\" class=\"ol-main-logo\" width=\"120\" loading=\"eager\"\u003e\n    \n    \u003cdiv class=\"ol-nav-tabs-container\"\u003e\n      \u003cdiv class=\"ol-nav-tabs\" role=\"tablist\"\u003e\n        \u003cbutton class=\"ol-nav-tab is-active js-tab-trigger\" role=\"tab\" aria-selected=\"true\" data-target=\"panel-brand\"\u003eShop Hot Tubs by Brand\u003c\/button\u003e \n        \u003cbutton class=\"ol-nav-tab js-tab-trigger\" role=\"tab\" aria-selected=\"false\" data-target=\"panel-use\"\u003eShop by Use\u003c\/button\u003e \n        \u003cbutton class=\"ol-nav-tab js-tab-trigger\" role=\"tab\" aria-selected=\"false\" data-target=\"panel-size\"\u003eShop by Size\u003c\/button\u003e \n        \u003cbutton class=\"ol-nav-tab js-tab-trigger\" role=\"tab\" aria-selected=\"false\" data-target=\"panel-price\"\u003eShop by Price\u003c\/button\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n  \n  \u003cdiv class=\"ol-panels-container\"\u003e\n    \u003cdiv class=\"ol-panel is-active\" id=\"panel-brand\" role=\"tabpanel\"\u003e\n      \u003cdiv class=\"ol-card-grid\"\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.p.vendor=Outdoor+Living#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20251118-WA0003.jpg?v=1763747197\" class=\"ol-card-image\" loading=\"lazy\"\u003e \n            \u003cspan class=\"ol-card-badge\"\u003eExclusive\u003c\/span\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003cimg src=\"https:\/\/www.outdoorlivinghottubs.co.uk\/cdn\/shop\/files\/logo-22_600x.png?v=1671519355\" style=\"height: 30px; margin-bottom: 10px; object-fit: contain; object-position: left;\"\u003e\n            \u003cp class=\"ol-card-desc\"\u003eExclusive designs combining premium hydrotherapy specs with unbeatable value for money.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eView Collection\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/jacuzzi-hot-tubs#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/jacuzzi-hot-tub-home.jpg?v=1763749016\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" style=\"height: 24px; margin-bottom: 10px; object-fit: contain; object-position: left;\"\u003e\n            \u003cp class=\"ol-card-desc\"\u003eThe global icon of hot tubs. Experience unrivalled heritage and patented jet technology.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eView Collection\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/collections\/aquasolus-hot-tubs\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/eden-quarter-view-ai-gen-new-sides-rgb-copy-scaled.jpg?v=1773411148\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/AquaSolus-06.png?v=1773414983\" style=\"height: 30px; margin-bottom: 10px; object-fit: contain; object-position: left;\"\u003e\n            \u003cp class=\"ol-card-desc\"\u003eInnovative designs offering premium hydrotherapy and relaxation.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eView Collection\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/hot-tubs#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20250620-WA0003.jpg?v=1763810802\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eView All Hot Tubs\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eBrowse our complete inventory including Viking Spas, Sundance, and more.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eView All\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"ol-panel\" id=\"panel-use\" role=\"tabpanel\"\u003e\n      \u003cdiv class=\"ol-card-grid\"\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.p.m.custom.hot_tub_deisgned_for=Home+Use#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20251016-WA0010.webp?v=1763811295\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eHome \u0026amp; Garden\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eCreate your private oasis. Feature-rich spas built for daily relaxation.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Residential\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/commercial-hot-tubs#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/DSC8890.webp?v=1763811103\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eBusiness \u0026amp; Commercial\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eRobust designs compliant with HSG282 regulations. Perfect for holiday lets.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Commercial\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"ol-panel\" id=\"panel-size\" role=\"tabpanel\"\u003e\n      \u003cdiv class=\"ol-card-grid\"\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.p.m.custom.number_of_persons=2\u0026amp;filter.p.m.custom.number_of_persons=3#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20251106-WA0017_1.jpg?v=1763811571\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eCompact (2-3)\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003ePerfect for couples or urban gardens where space is at a premium.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Compact\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.p.m.custom.number_of_persons=4\u0026amp;filter.p.m.custom.number_of_persons=5#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20251016-WA0013_067598b5-4863-4cae-91bc-9b8e4bde73e6.jpg?v=1763811763\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eFamily (4-5)\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eOur most popular size, balancing bathing space with footprint.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Family\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.p.m.custom.number_of_persons=6\u0026amp;filter.p.m.custom.number_of_persons=7\u0026amp;filter.p.m.custom.number_of_persons=8\u0026amp;filter.p.m.custom.number_of_persons=9#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Hot_Tub_Customer_27.webp?v=1763811676\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eLarge (6+)\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eMaximum seating capacity for entertaining friends and larger families.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Large\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"ol-panel\" id=\"panel-price\" role=\"tabpanel\"\u003e\n      \u003cdiv class=\"ol-card-grid\"\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.v.price.gte=2999\u0026amp;sort_by=price-ascending#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/IMG-20251001-WA0005.jpg?v=1763811915\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eFrom £2,999\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eExcellent features and build quality without the high price tag.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Entry Level\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n        \u003ca href=\"\/collections\/hot-tubs?filter.v.price.gte=8999\u0026amp;sort_by=price-ascending#product-grid\" class=\"ol-card\"\u003e\n          \u003cdiv class=\"ol-card-image-wrapper\"\u003e\n            \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Hot_Tub_Customer_19_1.jpg?v=1763812181\" class=\"ol-card-image\" loading=\"lazy\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"ol-card-content\"\u003e\n            \u003ch3 class=\"ol-card-title\"\u003eFrom £8,999\u003c\/h3\u003e\n            \u003cp class=\"ol-card-desc\"\u003eThe pinnacle of performance and smart technology for the ultimate soak.\u003c\/p\u003e\n            \u003cspan class=\"ol-card-link\"\u003eShop Luxury\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-mt-6 jbf-flex jbf-flex-col md:jbf-flex-row jbf-rounded-xl jbf-overflow-hidden jbf-shadow-md jbf-transition-shadow hover:jbf-shadow-lg\"\u003e\n    \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/collections\/commercial-hot-tubs\/hot-tub\" class=\"jbf-flex-1 jbf-bg-[#27577A] jbf-text-white jbf-no-underline jbf-transition-colors jbf-duration-300 hover:jbf-bg-[#1F4562] group jbf-relative\" style=\"text-decoration: none !important;\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col xl:jbf-flex-row jbf-items-center jbf-justify-between jbf-p-5 xl:jbf-px-6 xl:jbf-py-4 jbf-h-full jbf-gap-4\"\u003e\n        \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row jbf-items-center jbf-gap-3 jbf-w-full xl:jbf-w-auto jbf-justify-center xl:jbf-justify-start\"\u003e\n          \u003cdiv class=\"jbf-w-10 jbf-h-10 jbf-bg-white\/10 jbf-rounded-full jbf-flex jbf-items-center jbf-justify-center jbf-shrink-0\"\u003e\n            \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewbox=\"0 0 24 24\" stroke-width=\"1.5\" stroke=\"currentColor\" class=\"jbf-w-5 jbf-h-5 jbf-text-white\"\u003e\n              \u003cpath stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"jbf-text-center sm:jbf-text-left\"\u003e\n            \u003cspan class=\"jbf-block jbf-text-[0.95rem] jbf-font-medium jbf-leading-tight\" style=\"text-decoration: none !important;\"\u003eHoliday Let or Business?\u003c\/span\u003e \n            \u003cspan class=\"jbf-block jbf-text-[0.75rem] jbf-text-white\/80 jbf-font-normal jbf-mt-0.5\" style=\"text-decoration: none !important;\"\u003eHSG282 compliant models.\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"jbf-flex jbf-items-center jbf-bg-white\/10 jbf-px-4 jbf-py-2 jbf-rounded-full group-hover:jbf-bg-white group-hover:jbf-text-[#27577A] jbf-transition-colors jbf-whitespace-nowrap\"\u003e\n          \u003cspan class=\"jbf-text-[0.75rem] jbf-font-medium jbf-uppercase jbf-tracking-widest\" style=\"text-decoration: none !important;\"\u003eExplore\u003c\/span\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n    \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/collections\/hot-tubs?filter.p.m.custom.graded_status=Refurbished\u0026amp;sort_by=price-ascending#collection-main\" class=\"jbf-flex-1 jbf-text-white jbf-no-underline jbf-transition-all jbf-duration-300 hover:jbf-brightness-105 group jbf-relative\" style=\"background-color: #40b7ab; text-decoration: none !important;\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col xl:jbf-flex-row jbf-items-center jbf-justify-between jbf-p-5 xl:jbf-px-6 xl:jbf-py-4 jbf-h-full jbf-gap-4\"\u003e\n        \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row jbf-items-center jbf-gap-3 jbf-w-full xl:jbf-w-auto jbf-justify-center xl:jbf-justify-start\"\u003e\n          \u003cdiv class=\"jbf-w-10 jbf-h-10 jbf-bg-white\/20 jbf-rounded-full jbf-flex jbf-items-center jbf-justify-center jbf-shrink-0\"\u003e\n            \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewbox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" class=\"jbf-w-5 jbf-h-5 jbf-text-white\"\u003e\n              \u003cpath stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"jbf-text-center sm:jbf-text-left\"\u003e\n            \u003cspan class=\"jbf-block jbf-text-[0.95rem] jbf-font-medium jbf-leading-tight\" style=\"text-decoration: none !important;\"\u003eQuality Refurbished\u003c\/span\u003e \n            \u003cspan class=\"jbf-block jbf-text-[0.75rem] jbf-text-white\/90 jbf-font-normal jbf-mt-0.5\" style=\"text-decoration: none !important;\"\u003eFully tested and warrantied.\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"jbf-flex jbf-items-center jbf-bg-white\/20 jbf-px-4 jbf-py-2 jbf-rounded-full group-hover:jbf-bg-white group-hover:jbf-text-[#40B7AB] jbf-transition-colors jbf-whitespace-nowrap\"\u003e\n          \u003cspan class=\"jbf-text-[0.75rem] jbf-font-medium jbf-uppercase jbf-tracking-widest\" style=\"text-decoration: none !important;\"\u003eBrowse\u003c\/span\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv id=\"js-sanctuary-promo\" class=\"jbf-mt-5 jbf-mb-6\"\u003e\n    \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/products\/7-person-hot-tub-outdoor-living-sanctuary\" class=\"jbf-group jbf-flex jbf-flex-col sm:jbf-flex-row jbf-items-center jbf-justify-between jbf-w-full jbf-bg-white jbf-border-2 jbf-border-[#40b7ab] jbf-py-4 jbf-px-5 md:jbf-px-6 jbf-rounded-xl jbf-shadow-[0_8px_20px_rgba(64,183,171,0.12)] jbf-transition-all jbf-duration-300 hover:jbf-shadow-[0_12px_30px_rgba(64,183,171,0.25)] hover:jbf--translate-y-1\"\u003e\n      \n      \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row jbf-items-center jbf-text-center sm:jbf-text-left jbf-gap-3 md:jbf-gap-4\"\u003e\n        \u003cspan class=\"jbf-bg-[#40b7ab] jbf-text-white jbf-px-4 jbf-py-1.5 jbf-rounded-md jbf-text-[11px] md:jbf-text-[12px] jbf-font-medium jbf-uppercase jbf-tracking-widest jbf-shadow-sm\"\u003e\n          Limited Offer\n        \u003c\/span\u003e\n        \u003cspan class=\"jbf-text-[#2A2322] jbf-text-[14px] md:jbf-text-[16px] jbf-font-normal jbf-tracking-wide\"\u003e\n          \u003cstrong class=\"jbf-font-medium jbf-text-[#40b7ab]\"\u003e0% Finance\u003c\/strong\u003e now available on the exclusive Sanctuary Hot Tub\n        \u003c\/span\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-mt-4 sm:jbf-mt-0 jbf-flex jbf-items-center jbf-bg-[#27577A] jbf-text-white jbf-px-6 jbf-py-2.5 jbf-rounded-full jbf-text-[12px] jbf-font-medium jbf-uppercase jbf-tracking-widest jbf-transition-colors group-hover:jbf-bg-[#1F4562] jbf-shadow-sm\"\u003e\n        \u003cspan\u003eShop Now\u003c\/span\u003e\n        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"jbf-w-4 jbf-h-4 jbf-ml-2 jbf-transform group-hover:jbf-translate-x-1 jbf-transition-transform\" fill=\"none\" viewbox=\"0 0 24 24\" stroke=\"currentColor\"\u003e\n          \u003cpath stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5l7 7m0 0l-7 7m7-7H3\"\u003e\u003c\/path\u003e\n        \u003c\/svg\u003e\n      \u003c\/div\u003e\n\n    \u003c\/a\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","products":[{"product_id":"jacuzzi-hot-tub-lodge","title":"Jacuzzi® Lodge™M Hot Tub","description":"\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eThe Lodge™ is a new design of hospitality hot tub which has been designed especially for holiday parks, glamping sites, campsites, B\u0026amp;B's, hotels and holiday villages. Give your commercial business the power to boost profit with increased bookings and occupancy thanks to a global brand you can trust. Capture demand for 'holidays with a hot tub' and increase the value of your premises, with a premium Jacuzzi® hot tub. Enjoy peace of mind with excellent aftercare and a customer service team you can trust. \u003c\/p\u003e\n\u003cp\u003eThe minimalist design is a perfect complement to any garden, terrace or relaxation area. The Lodge™ is flexible and can be used as both a free standing or built in hot tub. The easy installation can be done within one day. The controls are simple and user friendly whilst still providing advanced features to your guests, for a hydromassage experience that only Jacuzzi® can deliver.\u003c\/p\u003e\n\u003ch2\u003eReady to go\u003c\/h2\u003e\n\u003cp\u003eWith QuickDrain™ and Complete Drain™, Lodge drains in less than 20 minutes and is ready to be cleaned and prepared straight away, thus requiring less time and attention. A complete cleaning cycle can be completed and ready to use in less than 6 hours. Between departures and arrivals, Lodge has been designed to be ready to welcome your customers, without any worries about hygiene or comfort as the water temperature will be heated in time for the arrival of new guests.\u003c\/p\u003e\n\u003cp\u003eAll the features of the Lodge™ have been designed for efficiency and immediate use while still ensuring the utmost hygiene and guaranteeing the easiest maintenance possible. The Lodge™ hot tub leaves you with an experience which becomes an asset to your business.\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003eAccessible and easy to use\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003eThe Lodge is provided with a wide deck that makes it easy to get in and out of and is wide enough to sit on. Further features include a split keypad. An easy to use control panel for your guests to control the lights and jets. Then a secondary keypad hidden away for you to control the filtration settings and temperature. The hot tub features an LED light to create the perfect lighting to heighten your guest's hot tub experience, and ClearRay™ water purification utilises UV technology to remove 99.9% of water borne pathogens in turn reducing the amount of water maintenance.\u003c\/p\u003e\n\u003ch2\u003eElevate your holiday lodge with a spa for all seasons\u003cbr\u003e\n\u003c\/h2\u003e\n\u003cp\u003eThanks to the Lodge’s heating system, it can be used outdoors all year round regardless of the weather, for high season no matter the temperature. The spa is fitted with a 2kW energy-efficient electric heater to reduce running costs.\u003c\/p\u003e\n\u003cp\u003eLodge M is also suitable for both freestanding and built in installation and creates the perfect complement to any garden, terrace or relaxation area whilst delivering constant efficiency, utmost hygiene and minimal maintenance. With seating for 4 to 5 people, Lodge M is an ideal addition to any medium sized holiday home and features ergonomic seating provides a comfortable place for your guests to sit, relax and enjoy their hot tub experience, whilst intuitive controls allows quick and easy operation.\u003c\/p\u003e\n\u003cp\u003eLodge M is available in three different versions: blower, hydro and hydro blower with each model offering a unique configurations of jets and blowers to deliver a unique hydromassage to each version.\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eLet your guests enjoy pampering without the fuss!\u003c\/span\u003e\u003c\/p\u003e\n\u003cul class=\"techspec-list\"\u003e\u003c\/ul\u003e","brand":"Jacuzzi","offers":[{"title":"Default Title","offer_id":9943409156,"sku":"JLM","price":6499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__JacuzziLodgeM-Hydro.jpg?v=1742401149"},{"product_id":"jacuzzi-hot-tub-j-495ip","title":"Jacuzzi® J495IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Flagship: Largest \u0026amp; Most Powerful\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-495™ is the pinnacle of the Jacuzzi® range. With room for 8-9 people, it features the largest open layout, the highest jet count (71), and the most advanced therapy options, including the revolutionary Infrared FX-IR seat.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eGrand 9-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eUnrivalled space. The largest hot tub in our collection features an expansive barrier-free design with varied seating heights and a unique side-by-side bench, perfect for large gatherings.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e71-Jet PowerPro® Dominance\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eThe ultimate massage experience. With 71 premium jets—the most in any Jacuzzi® model—every seat offers a specialised therapy, from the captain’s chairs to the superior calf massage seats.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eDistinctive High-Back Profile\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA private sanctuary. The J-400™ exclusive high-back shell creates a wind barrier and acoustic buffer, allowing you to soak deeper and warmer while adding a striking visual element to your garden.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eMaster Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eReflexology for everyone. The J-495™ features our largest central foot dome, ensuring that multiple bathers can enjoy a powerful foot massage simultaneously without competing for space.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTrue Water™ Technology\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eInspired by nature. The J-495™ is available with the optional True Water™ system, which keeps water beautifully clean and 99.9% chlorine-free without relying on harsh chemicals.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Despite its massive size and power, premium insulation keeps the J-495™ surprisingly efficient, averaging ~6 kWh usage per day across 88 monitored units.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWide Sheet Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA cascade of calm. A broad, backlit sheet of warm water flows over your shoulders from the high-back shell, creating a stunning visual effect and a soothing auditory backdrop.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260803576129,"sku":"J495PBG","price":21499.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260803608897,"sku":"J495PSE","price":21499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J495_Lifestyle-2000x1212-81873dde-114d-4a44-89ad-682c84bd4d61.jpg?v=1763034527"},{"product_id":"jacuzzi-hot-tub-j-385ip","title":"Jacuzzi® J385IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe J-300™ Flagship: Largest \u0026amp; Deepest\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-385™ is the definitive open-seating spa. As the largest and deepest model in the collection, it accommodates up to seven people and features 49 PowerPro® jets—the highest count in the range—alongside the revolutionary new Infrared technology.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eGrand 7-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSpace without compromise. Designed for taller bathers and large families, the barrier-free seating offers extra depth and legroom, making it the ultimate centrepiece for entertaining.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e49-Jet PowerPro® Performance\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eThe most powerful massage in the series. 49 premium jets deliver a customised experience, including dedicated wrist jets and deep-tissue calf kneading for total body recovery.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTherapeutic Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eRelief from the ground up. The central foot dome provides a powerful reflexology massage accessible from every seat, revitalising tired feet while you socialise.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Despite being the largest model in the range, premium insulation keeps running costs low, averaging just ~5 kWh usage per day in real-world conditions.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExclusive to the J-300™ collection. A gentle, non-splashing water cascade flows over your neck and shoulders, soothing tight muscles and reducing stress without wetting your hair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePristine water, guaranteed. The 6-stage filtration system works in harmony with ClearRay® UV technology to trap fine debris and neutralise pathogens for a safer, cleaner soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal command. Use the new intuitive touchscreen or the SmartTub® app to monitor energy, adjust temperature, and receive maintenance alerts remotely from your smartphone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260788699457,"sku":"J385PBG","price":15999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260788732225,"sku":"J385PSE","price":15999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260788830529,"sku":"J385MSE","price":15999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J385_Lifestyle_SmokedEbony_V2-3000x2143-5c19a79b-9d44-4082-96e4-afc0f7193529.jpg?v=1763034528"},{"product_id":"jacuzzi-hot-tub-j-375ip","title":"Jacuzzi® J375IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Lounger for Taller Bathers\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-375™ is the largest lounge model in the J-300™ collection. Designed with taller individuals in mind, it offers a deeper soak, extra legroom, and the revolutionary new Infrared and Red Light therapy system.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat fuses deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eExtended ProAir™ Lounge\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eBuilt for comfort. This extra-long lounger accommodates taller bathers with ease, utilising bubbling BX jets and rotating FX jets to massage muscles from the shoulders down to the feet.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eComprehensive PowerPro® Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA full-body experience. Featuring renowned FX and MX therapy seats, the J-375™ uses adjustable high-flow jets to pinpoint problem areas and relieve tension across the entire back.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eReflexology Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eRelief from the ground up. The foot jet dome wall at the base of the spa provides a dedicated reflexology massage, ensuring your feet receive the same attention as your back.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Despite its large size and depth, premium insulation keeps running costs low, with the J-375™ averaging ~6 kWh usage per day over a 2-year tracking period.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExclusive to the J-300™ collection. A gentle, non-splashing water cascade flows over your neck and shoulders, soothing tight muscles and reducing stress without wetting your hair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePristine water, simplified. The 6-stage filtration system works in harmony with ClearRay® UV technology to trap fine debris and neutralise pathogens for a safer, cleaner soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal control. Manage your spa via the new intuitive touchscreen or use the SmartTub® app to monitor energy, adjust temperature, and receive alerts remotely from your smartphone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260785520961,"sku":"ZM12ZULEWM4TNS","price":15999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260785553729,"sku":"J375PSE","price":15999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260785652033,"sku":"ZM62RYMEWMTNS","price":15999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/UK_J375-3000x2000-929fc3d9-4891-4256-b526-d7040f6941d9.jpg?v=1763034527"},{"product_id":"jacuzzi-hot-tub-j-365ip","title":"Jacuzzi® J365IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n  \n  \u003cdiv class=\"jacuzzi-premium-header\"\u003e\n    \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n    \u003ch2 class=\"jacuzzi-premium-title\"\u003eGrand Open Seating with Next-Gen Therapy\u003c\/h2\u003e\n    \u003cp class=\"jacuzzi-premium-intro\"\u003e\n      The J-365™ is a grand entertainer. With a spacious open layout for 6-7 people and 46 powerful jets, \n      it offers the ultimate social spa experience, now enhanced with revolutionary Infrared and Red Light technology.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n    \n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        New for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate skin.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious 7-Seat Open Plan\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        The ultimate social hub. The barrier-free open seating maximises space, allowing guests to move freely and converse easily without the restriction of a lounger.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003e46-Jet PowerPro® Performance\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        A powerhouse of relaxation. Featuring 46 PowerPro® jets and dedicated FX and MX therapy seats, the J-365™ delivers a comprehensive, high-flow massage to every major muscle group.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eTherapeutic Foot Dome\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Relief from the ground up. The central jetted foot dome creates a reflexology experience for everyone in the spa, revitalising tired feet while you socialise.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Verified by UK user data. Despite its large size, premium insulation and SmartTub® monitoring keep the J-365™ efficient, averaging just ~5 kWh usage per day in real-world conditions.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Exclusive to the J-300™ collection. A gentle, non-splashing water cascade flows over your neck and shoulders, melting away stress and tension without wetting your hair.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Pristine water with less effort. The 6-stage filtration system works in harmony with ClearRay® UV technology to neutralise pathogens and trap debris for a safer, cleaner soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Total command. Use the new intuitive touchscreen or the SmartTub® app to monitor energy, adjust temperature, and receive maintenance alerts remotely from your smartphone.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260783161665,"sku":"J365PBG","price":14499.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260783194433,"sku":"J365PSE","price":14499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260783292737,"sku":"J365MSE","price":14499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J365_Lifestyle_SmokedEbony-2000x1414-8c81ab68-faec-442d-8ae4-80987675d845.jpg?v=1763034527"},{"product_id":"jacuzzi-hot-tub-j-355ip","title":"Jacuzzi® J355IP™","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n  \n  \u003cdiv class=\"jacuzzi-premium-header\"\u003e\n    \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n    \u003ch2 class=\"jacuzzi-premium-title\"\u003eMid-Size Luxury with Next-Gen Therapy\u003c\/h2\u003e\n    \u003cp class=\"jacuzzi-premium-intro\"\u003e\n      The J-355™ is the perfect all-rounder. Designed for 5-6 people, it balances social open seating with a therapeutic lounger and features the revolutionary new Infrared and Red Light technology for 2025.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n    \n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        New for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat for lower back pain relief, while Red Light therapy stimulates collagen to rejuvenate skin.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eProAir™ Therapy Lounge\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        A full-body experience. The deeper ProAir™ lounger features bubbling BX jets for a soft-tissue massage and rotational FX jets to knead muscles from your shoulders down to your legs.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003e42-Jet PowerPro® Massage\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Engineered for relief. 42 premium PowerPro® jets deliver a high-flow, low-pressure massage. The mix of spiralling and directional jets provides comprehensive neck-to-foot therapy.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eReflexology Foot Dome\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Treat your feet. The integrated foot dome wall targets the soles of your feet with a powerful reflexology massage, revitalising you after a long day of standing or walking.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Verified by UK user data. With high-density insulation and SmartTub® monitoring, the J-355™ is exceptionally efficient, averaging just ~5 kWh usage per day over a 2-year tracking period.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Exclusive to the J-300™ collection. A gentle, splash-free water cascade flows over your neck and shoulders, soothing tight muscles and reducing stress without wetting your hair.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Pristine water with less effort. The 6-stage filtration system works alongside ClearRay® UV technology to trap fine debris and neutralise pathogens for a safer, cleaner soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Command your spa effortlessly. Use the new intuitive touchscreen or the SmartTub® app to monitor energy usage, adjust temperature, and receive alerts directly on your smartphone.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260782145857,"sku":"J355PBG","price":14499.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260782178625,"sku":"J355PSE","price":14499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260782276929,"sku":"J355MSE","price":14499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J355_Lifestyle_SmokedEbony-2000x1429-f99b7350-6ef6-4ab0-b150-78d3b498d9db.jpg?v=1763034201"},{"product_id":"jacuzzi-hot-tub-j-345ip","title":"Jacuzzi® J345IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Social Spa with Infrared Therapy\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-345™ is a spacious sanctuary for 6-7 people. Combining a social open-seating layout with the revolutionary new FX-IR Seat, it blends advanced PowerPro® hydromassage with the healing power of Infrared and Red Light therapy.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared technology to alleviate lower back pain, while Red Light therapy stimulates collagen and rejuvenates skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious 7-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eThe perfect centrepiece for your garden. The barrier-free design accommodates up to seven people comfortably, encouraging conversation and connection without the restriction of a lounger.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e41-Jet PowerPro® Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA comprehensive massage experience. 41 expertly positioned PowerPro® jets, including the FX and MX therapy seats, deliver a high-flow, low-pressure massage that targets deep muscle tissue.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTherapeutic Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eRelief from the ground up. The central jetted foot dome ensures everyone enjoys a reflexology-inspired foot massage, revitalising tired feet while you socialise.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Thanks to premium multi-layered insulation, the large J-345™ is remarkably efficient, averaging just ~5 kWh usage per day over a 2-year tracking period.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA moment of pure calm. The patented HydroSoothe® pillow delivers a gentle, splash-free water cascade over your neck and shoulders, melting away stress without wetting your hair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePristine water, guaranteed. The 6-stage filtration system works in tandem with ClearRay® technology to trap fine debris and neutralise bacteria, ensuring a safe and clean soak every time.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eControl effortlessly. Use the new intuitive touchscreen or the SmartTub® app to monitor your spa, adjust temperature, and track energy usage remotely from your smartphone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260476977473,"sku":"ZJ12RUMEWMTNS","price":12999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260477010241,"sku":"J345PSE","price":12999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260477108545,"sku":"J345MSE","price":12999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/J345lifestyle2020.jpg?v=1763034187"},{"product_id":"jacuzzi-hot-tub-j-335ip","title":"Jacuzzi® J335IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n  \n  \u003cdiv class=\"jacuzzi-premium-header\"\u003e\n    \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n    \u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Multi-Award Winning Compact Retreat\u003c\/h2\u003e\n    \u003cp class=\"jacuzzi-premium-intro\"\u003e\n      Voted 'Best Buy' by WhatSpa? for four consecutive years and GQ's 'Best Hard-Shell Hot Tub'. \n      The J-335™ combines a compact footprint with a therapy lounger and the revolutionary new Infrared technology.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n    \n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        New for 2025. The FX-IR seat fuses deep-tissue hydromassage with targeted Infrared technology to relieve lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eCompact ProAir™ Lounge\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Big therapy, smart space. This innovative compact lounger targets your back, wrists, and legs with bubbling BX jets, delivering a full-body massage without sacrificing seating for guests.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003e42-Jet PowerPro® Performance\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Experience the power of 42 premium jets. Featuring spiralling FX jets for the mid-back and adjustable PowerPro® jets, this system delivers a high-flow, low-pressure massage that is never itchy.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Verified by UK user data. Thanks to superior insulation and SmartTub® monitoring, the J-335™ is incredibly efficient, averaging just ~4 kWh usage per day over a 2-year tracking period.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eAward-Winning Design\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Choose with confidence. Recognised by both industry experts and lifestyle editors, the J-335™ is celebrated for its perfect balance of size, ergonomics, and hydrotherapy performance.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Exclusive to the J-300™ collection. A gentle, non-splashing water cascade flows over your neck and shoulders, melting away stress and tension without wetting your hair or face.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Crystal clear water made simple. The 6-stage filtration system works in harmony with ClearRay® UV technology to neutralise pathogens and trap debris more effectively than standard filters.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Total control at your fingertips. Manage your settings via the new intuitive touchscreen or use the SmartTub® app to monitor energy and temperature remotely from your smartphone.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260357439809,"sku":"J335PBG","price":12999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260357472577,"sku":"ZP12RYMEWMTNS","price":12999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260357570881,"sku":"J335MSE","price":12999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/j335ip_install.jpg?v=1763035361"},{"product_id":"jacuzzi-hot-tub-j-325","title":"Jacuzzi® J325IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eCompact Luxury with Open Seating\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-325™ is a masterpiece of spatial design. Perfect for smaller gardens, this 4-person open-seating retreat delivers the advanced PowerPro® hydrotherapy of the J-300™ series in a footprint that invites connection and conversation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious 4-Seat Open Plan\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eDesigned for socialising. The barrier-free open seating allows for effortless movement and easy conversation, making this compact spa feel surprisingly spacious for four to five people.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003ePowerPro® Elite Hydromassage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExperience a superior massage. 23 PowerPro® jets utilise a high-flow, low-pressure Aqualibrium® mix to deliver a deep-tissue massage that targets muscle knots without causing skin irritation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTherapeutic Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eRelief from the ground up. The dedicated foot massage wall dome targets tired soles and arches, providing a reflexology-inspired experience that revitalises your entire body.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExclusive to the J-300™ collection. A splash-free water cascade flows over your neck and shoulders, soothing tight muscles and reducing stress without splashing your face or hair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. With premium insulation and SmartTub® monitoring, the J-325™ is exceptionally efficient, averaging just ~4 kWh usage per day over a 2-year tracking period.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eCrystal clear water, simplified. The advanced filtration system works in harmony with ClearRay® UV technology to trap debris and neutralise pathogens far more effectively than standard filters.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® \u0026amp; Touch Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eModern control at your fingertips. Manage your spa via the new intuitive touchscreen or use the SmartTub® app on your phone to monitor energy, temperature, and alerts from anywhere.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWaterColour™ Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngage your senses. The illuminated WaterColour™ waterfall creates a mesmerising single sheet of water, backlit by chromotherapy lighting to set a calm, sophisticated mood.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260405018945,"sku":"J325PBG","price":10999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260405051713,"sku":"J325PSE","price":10999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260405150017,"sku":"J325MSE","price":10999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J325_Lifestyle-3000x1999-25fceedd-6e7a-44bd-825d-caf9a7b5849d.jpg?v=1763034031"},{"product_id":"jacuzzi-hot-tub-j-315","title":"Jacuzzi® J315IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eBig Performance in an Intimate Space\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-315™ proves you don't need a large footprint to experience world-class luxury. Perfect for patios and smaller gardens, this 3-person retreat fits anywhere while delivering the superior PowerPro® hydromassage found in our largest models.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eIntimate Compact Design\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eIdeal for couples or small families. The J-315™ accommodates 2-3 people with a clever mix of a semi-lounge and upright seating, ensuring optimal comfort without dominating your outdoor space.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003ePowerPro® Elite Hydromassage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExperience the difference of high-flow, low-pressure jetting. 23 PowerPro® jets deliver a deeper, more adjustable massage that targets muscle knots without the \"itchy\" feeling of standard jets.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProAir™ Therapy Lounge\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExclusive to the J-300™ series, this lounger features bubbling BX jets designed to ease tension from shoulders to feet with a soft-tissue massage that feels like a thousand tiny fingers.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eHydroSoothe® Neck Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eLet the stress of the day dissolve. The patented HydroSoothe® pillow delivers a non-splashing water cascade over your neck and shoulders for instant relief without getting your face wet.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by real-world data. Thanks to premium insulation and SmartTub® monitoring, the J-315™ is incredibly efficient, with UK users averaging just ~3 kWh usage per day over a 2-year period.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eAdvanced 6-Stage Filtration\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSuperior water clarity with less work. The high-performance 6-stage filtration system works in harmony with ClearRay® technology to trap debris and neutralize impurities faster than standard systems.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eIntuitive Smart Touch Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSimplicity meets sophistication. The new illuminated touchscreen control panel makes it effortless to adjust jets, lighting, and temperature, even while your hands are wet.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWaterColour™ Cascading Fall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngage your senses. The WaterColour™ waterfall features a single sheet of water that flows from the main pillow, illuminated by chromotherapy lighting to create a peaceful, spa-like aura.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260375003457,"sku":"J315PBG","price":9499.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260375036225,"sku":"J315PSE","price":9499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260375167297,"sku":"J315MSE","price":9499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/J315-lifestyle-image2020.jpg?v=1763034031"},{"product_id":"jacuzzi-hot-tub-lodge-s","title":"Jacuzzi® Lodge™S Hot Tub","description":"\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eThe Lodge™ is a new design of hospitality hot tub which has been designed especially for holiday parks, glamping sites, campsites, B\u0026amp;B's, hotels and holiday villages. Give your commercial business the power to boost profit with increased bookings and occupancy thanks to a global brand you can trust. Capture demand for 'holidays with a hot tub' and increase the value of your premises, with a premium Jacuzzi® hot tub. Enjoy peace of mind with excellent aftercare and a customer service team you can trust. \u003c\/p\u003e\n\u003cp\u003eThe minimalist design is a perfect complement to any garden, terrace or relaxation area. The Lodge™ is flexible and can be used as both a free standing or built in hot tub. The easy installation can be done within one day. The controls are simple and user friendly whilst still providing advanced features to your guests, for a hydromassage experience that only Jacuzzi® can deliver.\u003c\/p\u003e\n\u003ch2\u003eReady to go\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003eWith QuickDrain™ and Complete Drain™, Lodge drains in less than 20 minutes and is ready to be cleaned and prepared straight away, thus requiring less time and attention. A complete cleaning cycle can be completed and ready to use in less than 6 hours. Between departures and arrivals, Lodge has been designed to be ready to welcome your customers, without any worries about hygiene or comfort as the water temperature will be heated in time for the arrival of new guests.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eAll the features of the Lodge™ have been designed for efficiency and immediate use while still ensuring the utmost hygiene and guaranteeing the easiest maintenance possible. The Lodge™ hot tub leaves you with an experience which becomes an asset to your business.\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003eAccessible and easy to use\u003c\/h2\u003e\n\u003cp\u003eThe Lodge is provided with a wide deck that makes it easy to get in and out of and is wide enough to sit on. For ease of use, Lodge S features an intuitive, easy to use control panel ensuring your guests can jump in and enjoy their hot tub experience sooner. The Lodge S features built-in LED lighting which provides a premium look and feels to any surroundings whilst a regenerating effect in the water. ClearRay™ water purification utilises UV technology to remove 99.9% of water borne pathogens in turn reducing the amount of water maintenance.\u003c\/p\u003e\n\u003ch2\u003eElevate your holiday lodge with a spa for all seasons\u003c\/h2\u003e\n\u003cp\u003eThanks to the Lodge’s heating system, it can be used outdoors all year round regardless of the weather, for high season no matter the temperature. The spa is fitted with a 2kW energy-efficient electric heater to reduce running costs. Designed to provide constant efficiency the Winter Pro Kit further insulates the hot tub to help reduce operating costs.\u003c\/p\u003e\n\u003cp\u003eIdeal for smaller holiday homes, Lodge S provides seating for 2 to 3 adults. 2 Ergonomic seats allow your guests to sit in comfort whilst a third lounge seat provides a place for another guest to fully immerse their body into the water. Lodge S is suitable for both freestanding and built-in installations and is available in three different versions, each of which delivers a unique hydrotherapy experience to your guests.\u003c\/p\u003e\n\u003cp\u003eLet your guests enjoy pampering without the fuss!\u003c\/p\u003e\n","brand":"Jacuzzi","offers":[{"title":"2kW Heater","offer_id":28992163601,"sku":"JLS","price":5749.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__JACUZZILodgeS-Hydro.jpg?v=1742401126"},{"product_id":"jacuzzi-hot-tub-lodge-l","title":"Jacuzzi® Lodge™L Hot Tub","description":"\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eThe Lodge™ is a new design of hospitality hot tub which has been designed especially for holiday parks, glamping sites, campsites, B\u0026amp;B's, hotels and holiday villages. Give your commercial business the power to boost profit with increased bookings and occupancy thanks to a global brand you can trust. Capture demand for 'holidays with a hot tub' and increase the value of your premises, with a premium Jacuzzi® hot tub. Enjoy peace of mind with excellent aftercare and a customer service team you can trust. \u003c\/p\u003e\n\u003cp\u003eThe minimalist design is a perfect complement to any garden, terrace or relaxation area. The Lodge™ is flexible and can be used as both a free standing or built in hot tub. The easy installation can be done within one day. The controls are simple and user friendly whilst still providing advanced features to your guests, for a hydromassage experience that only Jacuzzi® can deliver. \u003c\/p\u003e\n\u003ch2\u003eReady to go\u003c\/h2\u003e\n\u003cp\u003eWith QuickDrain™ and Complete Drain™, Lodge™ drains in less than 20 minutes and is ready to be cleaned and prepared straight away, thus requiring less time and attention. A complete cleaning cycle can be completed and ready to use in less than 6 hours. Between departures and arrivals, Lodge™ has been designed to be ready to welcome your customers, without any worries about hygiene or comfort as the water temperature will be heated in time for the arrival of new guests. \u003c\/p\u003e\n\u003cp\u003eAll the features of the Lodge™ have been designed for efficiency and immediate use while still ensuring the utmost hygiene and guaranteeing the easiest maintenance possible. The Lodge™ hot tub leaves you with an experience which becomes an asset to your business.\u003c\/p\u003e\n\u003ch2\u003eAccessible and easy to use\u003c\/h2\u003e\n\u003cp\u003eThe Lodge™ is provided with a wide deck that makes it easy to get in and out of and is wide enough to sit on. Further features include a split keypad. An easy to use control panel for your guests to control the lights and jets. Then a secondary keypad hidden away for you to control the filtration settings and temperature. The hot tub features an LED light to create the perfect lighting to heighten your guest's hot tub experience, and ClearRay™ water purification utilises UV technology to remove 99.9% of water borne pathogens in turn reducing the amount of water maintenance.\u003c\/p\u003e\n\u003ch2\u003eElevate your holiday lodge with a spa for all seasons\u003c\/h2\u003e\n\u003cp\u003eThanks to the Lodge’s heating system, it can be used outdoors all year round regardless of the weather, for high season no matter the temperature. The spa is fitted with a 2kW energy-efficient electric heater to reduce running costs.\u003c\/p\u003e\n\u003cp\u003eLodge L fits easily into any environment and with the simplistic design creates the perfect complement to any surroundings. 5 ergonomic seats provide a comfortable place for your guests to sit and relax whilst an additional lounge seat allows another guest to fully immerse themselves in the water, Lodge L provides hydrotherapy for between 5 and 6 people, making it ideal for larger holiday homes.\u003c\/p\u003e\n\u003cp\u003eLet your guests enjoy pampering without the fuss!\u003c\/p\u003e\n","brand":"Jacuzzi","offers":[{"title":"3kW Heater","offer_id":26644524360,"sku":"JLL","price":7499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__JacuzziLodgeL-Hydro.jpg?v=1742401099"},{"product_id":"outdoor-santorini-hot-tub","title":"Platinum Spas Santorini Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eEnjoy an invigorating soak in this impressive Outdoor Santorini hot tub. There’re five seating positions to relax in, plus a lay-down lounger for family, friends or to enjoy a solo soak. You’ll be the envy of your neighbourhood, as it’ll look good in your garden all year round.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eUnique hydrotherapy experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eEach contoured seat offers an exceptional massage experience. The 52 powerful jets have been placed in a specific formation for various muscle groups to focus on key areas to suit your needs. Your body is left feeling revitalised and relaxed. There’s even a selection of diverters placed around your hot tub to give you complete control of which jets the water comes out and your massaging pressure using the control panel.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBeautiful design\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eHaving a luxuriously designed hot tub is just as important as the experience. This hot tub is eye-catching, from its smooth wood effect cabinet to its glossy faux marble shell, which glistens silver and opal. Its features and technology make it stand out; multi-coloured LED lighting effects inside, a built-in Bluetooth music system to get your hot tub party going and a water purification system with a 2-stage skimmer filtration that removes minor impurities.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBalboa control panel\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThese innovative control panels are known for their reliability, ease of use and technology. Allowing you to adjust the features on your hot tub with no difficulties whatsoever. From jet operation, filtration requirements and heat settings to your music needs and lighting ambience. There's even an economy and sleep mode, so you needn't worry about wasting electricity.\u003c\/p\u003e\n","brand":"Platinum Spas","offers":[{"title":"Sterling Silver","offer_id":4672392232992,"sku":"PLATSANTOR","price":5999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Opal","offer_id":44255376605505,"sku":"PLATSANTOR-2","price":5999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Canyon","offer_id":44255376638273,"sku":"PLATSANTOR-3","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional_OutdoorSantorini.jpg?v=1742478833"},{"product_id":"outdoor-tahiti-hot-tub","title":"Platinum Spas Tahiti Hot Tub","description":"\u003ch6\u003eFeatures we love\u003c\/h6\u003e\n\u003cul\u003e\n\u003cli\u003eHigh-quality 3-seater hot tub with integrated lounger\u003c\/li\u003e\n\u003cli\u003e19 stainless-steel jets for the ultimate hydromassage experience\u003c\/li\u003e\n\u003cli\u003eMulti-coloured lighting for ambience and convenience at night time\u003c\/li\u003e\n\u003cli\u003eIncludes a built-in Bluetooth music system\u003c\/li\u003e\n\u003cli\u003eEasy-to-use Balboa control panel\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch6\u003eTech spec\u003c\/h6\u003e\n\u003cul class=\"techspec-list\"\u003e\n\u003cli class=\"ht-icon-seats\"\u003eSeats 3 people including 1 lounger\u003c\/li\u003e\n\u003cli class=\"ht-icon-size\"\u003e213cm x 165cm x 78cm\u003c\/li\u003e\n\u003cli class=\"ht-icon-jets\"\u003e19 Stainless Steel Jets\u003c\/li\u003e\n\u003cli class=\"ht-icon-seats\"\u003eIndividual Massage Controls\u003c\/li\u003e\n\u003cli class=\"ht-icon-temp\"\u003e15⁰C - 40⁰C\u003c\/li\u003e\n\u003cli class=\"ht-icon-pumps\"\u003e1 Pump System (2-speeds)\u003c\/li\u003e\n\u003cli class=\"ht-icon-ampage\"\u003e13 Amp Power Supply\u003c\/li\u003e\n\u003cli class=\"ht-icon-led\"\u003eMulti-coloured Internal Lighting - 10 colour and random\u003c\/li\u003e\n\u003cli class=\"ht-icon-music\"\u003ePlatinum Melody Bluetooth Music system\u003c\/li\u003e\n\u003cli class=\"ht-icon-capacity\"\u003eWater Capacity 874L \u003c\/li\u003e\n\u003cli class=\"ht-icon-weight\"\u003eWeight 251KG \u003c\/li\u003e\n\u003cli class=\"ht-icon-clearray\"\u003eOzone Water Purification System\u003c\/li\u003e\n\u003cli class=\"ht-icon-controls\"\u003eBalboa control panel\u003c\/li\u003e\n\u003cli class=\"ht-icon-controls\"\u003eEconomy and Sleep Modes to save energy\u003c\/li\u003e\n\u003cli class=\"ht-icon-insulation\"\u003ePremium Multi-Layer Insulation\u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003ePlatinum Premium Shield Spa Cover\u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Outdoor_Living_Hot_Tub_Range_Warranty_2019.pdf?14417342608552932096\" title=\"Outdoor Living Warranty\"\u003eOutdoor Living Warranty\u003c\/a\u003e\u003c\/li\u003e\n\u003cli class=\"ht-icon-pumps\"\u003eHalf your running costs with a \u003ca rel=\"noopener\" href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/products\/outdoor-living-7kw-heat-pump-for-hot-tub-swim-spa-pool\" target=\"_blank\"\u003e7kW\u003c\/a\u003e or \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/products\/outdoor-living-12kw-heat-pump-for-hot-tub-swim-spa-pool\" rel=\"noopener\" target=\"_blank\"\u003e12kW \u003c\/a\u003eAir Source Heat Pump\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eWithout taking up too much space, this Outdoor Tahiti hot tub is ideal for those looking for a more intimate setting. With just three seating positions, one of which is a lay-down lounger, it's perfect for smaller families, you, and your other half or even a couple of friends. Why not enjoy a solo soak. It's the ultimate hydro experience that we're sure your neighbours will be in awe of.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eHydromassage experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eEach contoured seat offers a unique massage experience. Your body feels fully revitalised thanks to the 19 powerful hydrotherapy jets placed in specific formations for various muscle groups. There's even a selection of diverters placed around your hot tub to give you complete control of which jets the water comes out and your massaging pressure using the control panel.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eCompact design\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eNot only is this tub beautifully designed, but it also only takes up a little outdoor space. It has some well-thought-out features and technology like multi-coloured lighting effects, a built-in Bluetooth music system, low profile easy entry and a choice of seating to sit back and relax. Plus, the ozone purification system keeps your water clean and clear, so you can enjoy it for longer.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eInnovative technology\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eKnown for its reliability and ease of use, the Balboa control panel allows you to adjust your hot tub's features without difficulty. From the jet operation and filtration requirements to heat settings and lighting ambience. There's an economy and sleep mode, so you can save electricity. Paired with a built-in Bluetooth system, you can sit back and relax whilst listening to your favourite music through the two mounted speakers.\u003c\/p\u003e\n\u003ch6\u003eFinish\u003c\/h6\u003e\n\u003ch3\u003eShell\u003c\/h3\u003e\n\u003cp\u003eSterling Silver - white marble effect (Platinum)\u003c\/p\u003e\n\u003cp\u003eMidnight\u003c\/p\u003e\n\u003ch3\u003eCabinet\u003c\/h3\u003e\n\u003cp\u003eGrey - panelled wood effect\u003c\/p\u003e\n\u003ch3\u003eMaterial\u003c\/h3\u003e\n\u003cp\u003eDurable composites and hi-grade acrylic\u003c\/p\u003e\n\u003ch6\u003e\u003cbr\u003e\u003c\/h6\u003e\n\u003cdiv\u003e\n\u003ch6\u003eHow do I order?\u003c\/h6\u003e\n\u003col\u003e\n\u003cli\u003eClick ‘buy now’ above or complete a \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/pages\/hot-tub-finance\"\u003efinance form\u003c\/a\u003e if required \u003c\/li\u003e\n\u003cli\u003eWe’ll call you back to arrange a site survey, which are usually by phone or video call\u003c\/li\u003e\n\u003cli\u003eWe’ll organise a delivery and installation date\u003c\/li\u003e\n\u003cli\u003eOn your delivery date, we’ll install your spa and get it ready to use, which usually takes around two hours\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003cp\u003e\u003cspan\u003eOr, if you visit one of our \u003c\/span\u003e\u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/pages\/showrooms\"\u003eshowrooms\u003c\/a\u003e\u003cspan\u003e, we’ll organise everything there and then. \u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e.product-single__add-btn {display:none}\u003c\/style\u003e","brand":"Platinum Spas","offers":[{"title":"Default Title","offer_id":48885900017985,"sku":"OutdoorTahitiSS","price":2999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/tahiti.png?v=1768470084"},{"product_id":"jacuzzi-hot-tub-j435ip","title":"Jacuzzi® J435IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eCompact High-Back Luxury\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-435™ brings the privacy and protection of the high-back design to a convenient 7’x7’ footprint. Featuring a forward-facing lounger, a unique cool-down seat, and the revolutionary new Infrared therapy, it offers a personalised massage for every family member.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExperience the future of wellness. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eForward-Facing Therapy Lounge\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal body immersion. This luxurious lounger features exclusive RX therapy jets that knead muscles from your neck to your feet, providing profound stress relief and improved circulation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eDistinctive High-Back Profile\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSanctuary from the elements. The J-400™ exclusive high-back shell provides a wind barrier and added privacy, while allowing for a deeper, warmer soak even on colder evenings.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eJetted Cool-Down Seat\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVersatility for families. This elevated seat allows for partial immersion—perfect for cooling off without leaving the water, or for younger children to enjoy the spa safely.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e47-Jet Elite Hydromassage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eUnparalleled variety. With 47 specialised PowerPro® jets, including rotating FX and soothing RX jets, the J-435™ delivers the broadest range of massage types in a compact spa.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWide Sheet Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngage your senses. A broad, backlit sheet of warm water cascades over your shoulders, creating a visual centrepiece and a soothing auditory backdrop for your relaxation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Premium multi-layered insulation ensures this high-performance spa is incredibly efficient, averaging just ~5 kWh usage per day across 325 monitored hot tubs.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProTouch™ Control \u0026amp; SmartTub®\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEffortless management. Adjust settings via the full-colour ProTouch™ screen or use the SmartTub® app to control temperature and monitor energy usage remotely from your smartphone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260793876801,"sku":"YV12RUMEWMTNS","price":17999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260793909569,"sku":"J435PSE","price":17999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Modern Hardwood","offer_id":44260793844033,"sku":"J435MHW","price":17999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Brushed Grey","offer_id":47146889085249,"sku":"J435MBG","price":17999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":47146889118017,"sku":"YV62RYMEWMTNS","price":17999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Modern Hardwood","offer_id":47146889052481,"sku":"J435MMH","price":17999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/UK_J435-3000x2001-4eaef884-8193-495b-ae2a-30973f8480c3.jpg?v=1763034030"},{"product_id":"jacuzzi-hot-tub-j475ip","title":"Jacuzzi® J475IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Best-Selling Fusion of Lounger \u0026amp; Foot Dome\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-475™ is unique in the Jacuzzi® collection. As the only model to combine a full-body lounger with a powerful jetted foot dome, it offers the ultimate \"best of both worlds\" therapy experience for 5-6 people.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat fuses deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eExclusive Double Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eUncompromised relaxation. The J-475™ is the only hot tub that features both a therapeutic lounger for full-body immersion and a central foot dome for powerful reflexology—covering every need.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eDistinctive High-Back Profile\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSanctuary from the elements. The exclusive high-back shell provides a wind barrier and added privacy, creating a cosy, enclosed atmosphere that encourages a deeper, warmer soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWidest Jet Variety\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA massage for every muscle. This model features the widest variety of PowerPro® jet types in the entire range, offering everything from rotational kneading to targeted high-impact therapy.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTrue Water™ Technology\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eInspired by nature. The J-475™ is available with the optional True Water™ system, which keeps water beautifully clean and 99.9% chlorine-free without relying on harsh chemicals.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWide Sheet Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngage your senses. A broad, backlit sheet of warm water cascades over your shoulders from the high-back, creating a visual centrepiece and a soothing auditory backdrop.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. With premium insulation and SmartTub® monitoring, the large J-475™ is incredibly efficient, averaging just ~5 kWh usage per day across 377 monitored units.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProTouch™ Control \u0026amp; SmartTub®\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eUltimate convenience. Adjust your spa via the full-colour ProTouch™ control panel or manage temperature, energy, and alerts remotely using the SmartTub® app on your phone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Default Title","offer_id":47146876698945,"sku":null,"price":13999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/Jacuzzi_J475IP_-5-6PersonHotTub-square_10.jpg?v=1763034031"},{"product_id":"jacuzzi-hot-tub-j485ip","title":"Jacuzzi® J485IP™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Open-Seating Sanctuary\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-485™ redefines luxury entertaining. Designed for 6-7 people, it combines a spacious barrier-free layout with the exclusive J-400™ high-back design, offering unmatched privacy, warmth, and the revolutionary FX-IR therapy seat.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for 2025. The FX-IR seat combines deep-tissue hydromassage with targeted Infrared heat to alleviate lower back pain, whilst Red Light therapy stimulates collagen to rejuvenate your skin.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eGrand 7-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSociable luxury. The spacious open seating allows for effortless conversation and movement. With varying seat heights and cup holders at every spot, it accommodates every guest in absolute comfort.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eDistinctive High-Back Profile\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA private oasis. The high-back shell provides a wind barrier and acoustic buffer, creating a warm, enclosed atmosphere that allows you to soak deeper and longer, even in cooler weather.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eLow-Profile Foot Dome\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eReflexology for all. The centrally located, low-profile foot dome creates a holistic massage experience, treating tired feet without obstructing legroom in the spacious footwell.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eBest-in-Class Hydromassage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eCustomised relief. The J-485™ features Jacuzzi®'s widest variety of PowerPro® jets. From the neck to the toes, each ergonomic seat offers a distinct therapy sensation to melt away stress.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eWide Sheet Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA visual masterpiece. Relax as a broad, backlit sheet of warm water cascades over your shoulders from the high-back shell, adding a touch of elegance and auditory calm to your soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProven Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eVerified by UK user data. Thanks to superior insulation and the heat-retaining high-back design, the J-485™ is highly efficient, averaging just ~5 kWh usage per day in real-world conditions.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProTouch™ Control \u0026amp; SmartTub®\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSeamless management. Control your spa via the premium ProTouch™ colour screen or use the SmartTub® app to monitor energy, temperature, and maintenance alerts from your phone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum \/ Brushed Grey","offer_id":44260796924225,"sku":"J485PBG","price":19999.0,"currency_code":"GBP","in_stock":true},{"title":"Platinum \/ Smoked Ebony","offer_id":44260796956993,"sku":"J485PSE","price":19999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Brushed Grey","offer_id":44260797022529,"sku":"","price":19999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight \/ Smoked Ebony","offer_id":44260797055297,"sku":"J485MSE","price":19999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/products\/JHT_J485_Lifestyle_SmokedEbony-2000x1414-00fe93c9-43b1-4843-b387-ed6b837b8cda.jpg?v=1763034030"},{"product_id":"vacation-lounge-6-person-hot-tub","title":"Platinum Spas Vacation Lounge Hot Tub","description":"\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003ch2\u003ePampering without the fuss\u003c\/h2\u003e\n\u003cp\u003eStep into the world of hassle-free comfort with a Vacation hot tub tailor-made for commercial spaces. Whether you're managing a holiday cottage, a cosy AirBnB, or a bustling hotel, this \u003cspan\u003estraightforward \u003c\/span\u003e\u003cspan\u003ehot tub is \u003c\/span\u003edesigned for luxury without the maintenance. With a robust and simplified build, it's suitable for heavy use with minimal stress. \u003c\/p\u003e\n\u003cp\u003eThis tub's finish will blend into to your terrace, garden or outdoor space. A 2 inch drain valve allows for quick and easy water changes between guests, saving you time. Plus, you can opt for our Wi-Fi module to access settings directly from your phone.\u003c\/p\u003e\n\u003ch2\u003eDesigned for you, built for everyone\u003c\/h2\u003e\n\u003cp\u003eGet ready for the ultimate relaxation experience that's a breeze to manage. Tamper-proof controls keep things simple, with a user-friendly Gecko control panel. Guests can only access the jets and lights button on the topside, saving you time and money.\u003c\/p\u003e\n\u003cp\u003eThe Vacation Lounge hot tub has no removable parts, or fragile components - such as headrests, diverters and waterfalls. Seating up to 6 people, this hot tub is perfect for larger groups, there's plenty of space for families and groups of friends. \u003cspan\u003eYou could also opt for the \u003c\/span\u003e\u003ca title=\"Vacation Social Hot Tub\" href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/products\/vacation-social-7-person-hot-tub\"\u003eVacation\u003cspan\u003e \u003c\/span\u003eSocial\u003c\/a\u003e\u003cspan\u003e \u003c\/span\u003e\u003cspan\u003ein the range that boasts \u003c\/span\u003e\u003cspan\u003e7 seats for larger parties. \u003c\/span\u003eLet your guests soak, unwind, and let their worries float away.\u003c\/p\u003e\n\u003ch2\u003eElevate your holiday let with affordable luxury\u003c\/h2\u003e\n\u003cp\u003eTake your holiday park or glamping site to the next level without breaking the bank. This hot tub boasts 40 jets for hydrotherapy and that \"ahh\" factor, and throws in a lounger for extra comfort and some soft LED lighting – all the ingredients for happy guests! \u003cspan\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003ePremium insulation keeps your running costs to a minimum. It's not just about luxury; it's about value for money - hot tubs can increase your revenue by up to 60%. Your guests will love it, and so will your bottom line.\u003c\/p\u003e\n","brand":"Platinum Spas","offers":[{"title":"Default Title","offer_id":39896941789286,"sku":"OVL","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__VacationLounge_TopView.jpg?v=1742400442"},{"product_id":"vacation-social-7-person-hot-tub","title":"Platinum Spas Vacation Social Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003ch2\u003ePampering without the fuss\u003c\/h2\u003e\n\u003cp\u003eStep into the world of hassle-free comfort with a Vacation hot tub tailor-made for commercial spaces. Whether you're managing a holiday cottage, a cosy AirBnB, or a bustling hotel, this \u003cspan\u003estraightforward \u003c\/span\u003ehot tub is designed for luxury without the maintenance. With a robust and simplified build, \u003cspan\u003eit's suitable for heavy use with minimal\u003c\/span\u003e\u003cspan\u003e stress. \u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eThis tub's finish will blend into to your terrace, garden or outdoor space. A 2 inch drain valve allows for quick and easy water changes between guests, saving you time. Plus, you can opt for our Wi-Fi module to access settings directly from your phone.\u003c\/p\u003e\n\u003ch2\u003eDesigned for you, built for everyone\u003c\/h2\u003e\n\u003cp\u003eGet ready for the ultimate relaxation experience that's a breeze to manage. Tamper-proof controls keep things simple, with a user-friendly Gecko control panel. Guests can only access the jets and lights button on the topside, saving you time and money.\u003c\/p\u003e\n\u003cp\u003eThe Vacation Social hot tub has no removable parts, or fragile components - such as headrests, diverters and waterfalls. Seating up to 7 people, this hot tub is perfect for larger groups, there's plenty of space for families and groups of friends. Let your guests soak, unwind, and let their worries float away.\u003c\/p\u003e\n\u003ch2\u003eElevate your holiday let with affordable luxury\u003c\/h2\u003e\n\u003cp\u003eTake your holiday park or glamping site to the next level without breaking the bank. This hot tub boasts 40 jets for hydrotherapy and that \"ahh\" factor, and throws in some soft LED lighting – all the ingredients for happy guests! \u003cspan\u003eYou could also opt for the \u003ca title=\"Vacation Lounge Hot Tub\" href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/products\/vacation-lounge-6-person-hot-tub\"\u003eVacation Lounge\u003c\/a\u003e in the range that boasts a lounge seat for extra comfort. \u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003ePremium insulation keeps your running costs to a minimum. It's not just about luxury; it's about value for money - hot tubs can increase your revenue by up to 60%. Your guests will love it, and so will your bottom line.\u003c\/p\u003e","brand":"Platinum Spas","offers":[{"title":"Default Title","offer_id":39897003556966,"sku":"OVS","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__VacationSocial_TopView.jpg?v=1742400343"},{"product_id":"elite-wood-fire-4-to-6-person-hot-tub","title":"Outdoor Living Elite Hot Tub","description":"\u003ch6\u003eFeatures we love\u003c\/h6\u003e\n\u003cul\u003e\n\u003cli\u003eScandi inspired with spruce trim \u0026amp; fibreglass top cover\u003c\/li\u003e\n\u003cli\u003eIncludes matching tiered wooden steps for easy entry\u003c\/li\u003e\n\u003cli\u003eNo electricity needed – there’s a wood burning heater\u003c\/li\u003e\n\u003cli\u003ePolyurethane foam insulation keeps water warmer for longer\u003c\/li\u003e\n\u003cli\u003eTwo stainless steel straps around the tub maintains it shape\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch6\u003eTech spec\u003c\/h6\u003e\n\u003cul class=\"techspec-list\"\u003e\n\u003cli class=\"ht-icon-seats\"\u003eSeats 4-6 people (bench seating)\u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003eHandmade round hot tub perfect for patios, terraces and smaller gardens\u003c\/li\u003e\n\u003cli class=\"ht-icon-size\"\u003e200cm x 200cm x 94cm\u003c\/li\u003e\n\u003cli class=\"ht-icon-jets\"\u003e12 air nozzles\u003c\/li\u003e\n\u003cli class=\"ht-icon-jets\"\u003e8 optional Jacuzzi jets for hydromassage\u003c\/li\u003e\n\u003cli class=\"ht-icon-led\"\u003eOptional LED lights\u003c\/li\u003e\n\u003cli class=\"ht-icon-cup-holders\"\u003eBottle and glass holder \u003c\/li\u003e\n\u003cli class=\"ht-icon-heat\"\u003eWood burning heater - powered by nature with no electricity bills\u003c\/li\u003e\n\u003cli class=\"ht-icon-heat\"\u003eStainless steel internal furnace\u003c\/li\u003e\n\u003cli class=\"ht-icon-heat\"\u003eBurns both dried softwood and hardwood\u003c\/li\u003e\n\u003cli class=\"ht-icon-heat\"\u003eChimney heat guard for safety while you soak\u003c\/li\u003e\n\u003cli class=\"ht-icon-temp\"\u003eHeats water in just 1.5 to 2.5 hours depending on the weather \u003c\/li\u003e\n\u003cli class=\"ht-icon-capacity\"\u003eWater capacity: 1200L \u003c\/li\u003e\n\u003cli class=\"ht-icon-capacity\"\u003eWeight (empty): 250kg \u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eFibreglass structure with spruce trim\u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eScandi inspired design blends into your outdoor space \u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eChoose from multiple wood finishes\u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eWood treatment keeps it lasting for longer\u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003e2 stainless steel straps around the tub maintains it shape\u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eMatching 2 tier wooden steps\u003c\/li\u003e\n\u003cli class=\"ht-icon-insulation\"\u003ePolyurethane foam insulation keeps water warmer for longer\u003c\/li\u003e\n\u003cli class=\"ht-icon-insulation\"\u003eFibreglass thermal cover retains heat \u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003ePlease note: if your area is affected by clean air rules you will need to use a smokeless fuel\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eBuilt for pure relaxation, this stunning wood-fired hot tub is the perfect addition to any garden or smaller areas like patios that lack space. There are up to six seating positions with plenty of room for family and friends to enjoy. It's aesthetically pleasing, too, as thanks to the wooden exterior, it'll blend beautifully into your natural surroundings, so it'll look good all year round.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eMassage and wellbeing\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eGet the most out of your soak wherever you sit. It includes 12 air nozzles and optional Jacuzzi jets placed in a specific formation to give you a soothing massage experience. Your body is left feeling revitalised and relaxed. It's perfect for light entertainment, too, as there's a bottle and glass holder, so you or your party needn't vacate, re-enter, and get comfortable again. This wood-fired hot tub really is a happy place.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003ePowered by nature\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThere's no need to worry about this hot tub adding to the ever-increasing electric bills as it burns softwood and hardwood. It takes as little as 1.5 to 2.5 hours to heat the water depending on weather conditions, plus the insulated fibreglass cover helps heat the water faster. The fuel heater is integrated, too, so there’s no need to purchase a separate one.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBeautiful design\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThis elegant wood fire hot tub is a premium build, from its sleek white inner shell to the spruce wood trim and matching bespoke two-tiered steps. The wood has been pre-treated, too, to prevent rotting and to increase its lifespan. Two LED lights illuminate your bathing space so you can take your soak into the evening or simply guide yourself in. Plus, you can be sure of your safety with the chimney heat guard.\u003c\/p\u003e\n\u003ch6\u003eFAQs\u003c\/h6\u003e\n\u003cul class=\"list-accordion-faq\" itemscope=\"\" itemtype=\"http:\/\/schema.org\/FAQPage\"\u003e\n\u003cli class=\"accordion-item\" itemprop=\"mainEntity\" itemscope=\"\" itemtype=\"http:\/\/schema.org\/Question\"\u003e\n\u003cspan class=\"toggle-accordion-faq font-semibold font-size-1\" itemprop=\"name\"\u003eHow long do wood fired hot tubs take to heat?\u003c\/span\u003e\n\u003cul class=\"accordion-inner padding-x-15\" itemtype=\"http:\/\/schema.org\/Answer\" itemscope=\"\" itemprop=\"acceptedAnswer\"\u003e\n\u003cp class=\"font-size-1 line-height-12\" itemprop=\"text\"\u003eOur wood fired hot tub takes only 1.5 to 2.5 hours to heat up, depending on weather conditions. You’ll be taking a dip in no time!\u003c\/p\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli class=\"accordion-item\" itemprop=\"mainEntity\" itemscope=\"\" itemtype=\"http:\/\/schema.org\/Question\"\u003e\n\u003cspan class=\"toggle-accordion-faq font-semibold font-size-1\" itemprop=\"name\"\u003eDo wood fired hot tubs bubble?\u003c\/span\u003e\n\u003cul class=\"accordion-inner padding-x-15\" itemtype=\"http:\/\/schema.org\/Answer\" itemscope=\"\" itemprop=\"acceptedAnswer\"\u003e\n\u003cp class=\"font-size-1 line-height-12\" itemprop=\"text\"\u003eIf you choose a wood fired hot tub with jets then yes it’ll bubble! We offer the option of jets in our wood burning hot tub\u003c\/p\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli class=\"accordion-item\" itemprop=\"mainEntity\" itemscope=\"\" itemtype=\"http:\/\/schema.org\/Question\"\u003e\n\u003cspan class=\"toggle-accordion-faq font-semibold font-size-1\" itemprop=\"name\"\u003eWhy choose a wood burning hot tub?\u003c\/span\u003e\n\u003cul class=\"accordion-inner padding-x-15\" itemtype=\"http:\/\/schema.org\/Answer\" itemscope=\"\" itemprop=\"acceptedAnswer\"\u003e\n\u003cp class=\"font-size-1 line-height-12\" itemprop=\"text\"\u003eWood fired tubs have very low running costs. As well as saving on electricity, when not in use you can drain the water until you next need it. Not only that, they are perfect for recreating a traditional spa experience, all in the comfort of your own garden.\u003c\/p\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli class=\"accordion-item\" itemtype=\"http:\/\/schema.org\/Question\" itemscope=\"\" itemprop=\"mainEntity\"\u003e\n\u003cspan class=\"toggle-accordion-faq font-semibold font-size-1\" itemprop=\"name\"\u003eHow do I sanitise my wood fired hot tub?\u003c\/span\u003e\n\u003cul class=\"accordion-inner padding-x-15\" itemtype=\"http:\/\/schema.org\/Answer\" itemscope=\"\" itemprop=\"acceptedAnswer\"\u003e\n\u003cp class=\"font-size-1 line-height-12\" itemprop=\"text\"\u003eIf you use your wood burning hot tub regularly we recommend using a gentle sanitiser. Avoid chlorine in particular to prevent damaging the wood, instead opt for an oxygen sanitiser in your spa’s water.\u003c\/p\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli class=\"accordion-item\" itemprop=\"mainEntity\" itemscope=\"\" itemtype=\"http:\/\/schema.org\/Question\"\u003e\n\u003cspan class=\"toggle-accordion-faq font-semibold font-size-1\" itemprop=\"name\"\u003eWhat fuel can I use in a wood burning hot tub?\u003c\/span\u003e\n\u003cul class=\"accordion-inner padding-x-15\" itemtype=\"http:\/\/schema.org\/Answer\" itemscope=\"\" itemprop=\"acceptedAnswer\"\u003e\n\u003cp class=\"font-size-1 line-height-12\" itemprop=\"text\"\u003eYou can use both dried softwood and hardwood with our wood burning hot tubs.\u003c\/p\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch6\u003eHow do I order?\u003c\/h6\u003e\n\u003col\u003e\n\u003cli\u003eClick ‘buy now’ above or complete a \u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/pages\/hot-tub-finance\"\u003efinance form\u003c\/a\u003e if required \u003c\/li\u003e\n\u003cli\u003eWe’ll call you back to arrange a site survey, which are usually by phone or video call\u003c\/li\u003e\n\u003cli\u003eWe’ll organise a delivery and installation date\u003c\/li\u003e\n\u003cli\u003eOn your delivery date, we’ll install your spa and get it ready to use, which usually takes around two hours\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003cp\u003e\u003cspan\u003eOr, if you visit one of our \u003c\/span\u003e\u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/pages\/showrooms\"\u003eshowrooms\u003c\/a\u003e\u003cspan\u003e, we’ll organise everything there and then. \u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cdiv\u003e\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"No Jets \/ With LED Lights","offer_id":48709810815297,"sku":"OEWFLED","price":5499.0,"currency_code":"GBP","in_stock":false},{"title":"Jets \/ No LED Lights","offer_id":48709810848065,"sku":"OEWFJET","price":5499.0,"currency_code":"GBP","in_stock":false},{"title":"Jets \/ With LED Lights","offer_id":48709810880833,"sku":"OEWFJETLED","price":5499.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/WoodFireHotTub_18.jpg?v=1745489119"},{"product_id":"outdoor-montana-hot-tub","title":"Sundance Edison Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003ch3\u003e\u003cstrong\u003eLuxury Hydrotherapy Experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eImmerse yourself in total relaxation with the Sundance Edison. This spacious hot tub comfortably fits 7 adults and combines luxury features with reassuring American quality. Relax in the soothing ambience created by the variable flow waterfall and multicolour LED lighting, accentuated by designer stainless steel jets.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eElegance and Functionality\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eWith luxury features as standard - The Edison spa is also equipped with seven different jet types which give you a variety of different therapeutic massage techniques to enjoy. Clearray™ UV-C water purification makes water care a breeze and ensures your hot tub water remains fresh, crystal clear and inviting.\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Sundance Spas","offers":[{"title":"Default Title","offer_id":48709828608321,"sku":"ED12ZGHE8T-NS","price":5999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional__Outdoor-Living-Montana-Hot-Tub.jpg?v=1742400303"},{"product_id":"7-person-commercial-hot-tub-with-lounger-hsg282-compliant-outdoor-living-hideaway","title":"Outdoor Living Hideaway Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eMaximise Revenue. Minimise Fuss.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Hideaway Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your commercial holiday let, Airbnb, or glamping site with a robust hot tub designed specifically for the rental market. Built to withstand heavy use while keeping maintenance strictly to a minimum, this spa delivers the luxury your guests demand. Increase your bookings and boost your revenue by up to 60% without the operational headaches.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSimple Tamper-Proof Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Protect your investment with a streamlined, user-friendly control panel designed for the rental market. Guests can only access the jets and lighting, keeping crucial settings securely hidden to prevent costly maintenance call-outs.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRapid Two-Inch Drainage\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Streamline your changeover days with a highly efficient two-inch drain valve built for quick water turnarounds. You can even opt for a fixed quick drain to make getting ready for your next guests entirely stress-free.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRugged Commercial Construction\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Eliminate the risk of breakages with a streamlined design that deliberately removes fragile components like headrests, diverters, and waterfalls. This heavy-duty build ensures maximum uptime and reliability for your holiday park or lodge.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSpacious Seven-Seat Layout\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Maximise your property's appeal to larger groups and families with comfortable seating for up to four adults and three children. It provides the perfect communal relaxation space to help secure those lucrative group bookings.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003ePremium Hydrotherapy Experience\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Secure five-star reviews by treating your guests to the ultimate relaxation experience with nineteen strategically placed hydrotherapy jets. Combined with soft LED lighting, it delivers the premium wow factor that keeps visitors returning.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eCost-Effective Thermal Insulation\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Protect your profit margins with premium thermal insulation engineered to keep your ongoing electricity and heating costs to a minimum. It is a smart, high-ROI investment that benefits both your guests and your bottom line.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2000 x 2000 x 820 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4 Adults and 3 Children\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e19\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 MAIN LED\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDry \/ Filled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e247 kg \/ 1451 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e6kW (220V-50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":47944782446913,"sku":"OLCMST","price":4499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional__OLCMST.jpg?v=1742400142"},{"product_id":"6-person-commercial-hot-tub-with-lounger-hsg282-compliant-outdoor-living-escape","title":"Outdoor Living Escape Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eMaximise Revenue. Premium Lounger.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Escape Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your commercial holiday let, Airbnb, or glamping site with a robust hot tub designed specifically for the rental market. Featuring a dedicated lounger seat for the ultimate full-body relaxation experience, this spa is built to withstand heavy use while keeping maintenance strictly to a minimum. Increase your bookings and boost your revenue by up to 60% without the operational headaches.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSimple Tamper-Proof Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Protect your investment with a streamlined, user-friendly control panel tailored for the rental market. Guests can only access the jets and lighting, keeping crucial settings securely hidden to prevent costly maintenance call-outs.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRapid Two-Inch Drainage\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Streamline your changeover days with a highly efficient two-inch drain valve built for quick water turnarounds. You can even opt for a fixed quick drain to make getting ready for your next guests entirely stress-free.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRugged Commercial Construction\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Eliminate the risk of breakages with a streamlined design that deliberately removes fragile components like headrests, diverters, and waterfalls. This heavy-duty build ensures maximum uptime and reliability for your business.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003ePremium Lounger Layout\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Stand out from the competition with a highly sought-after lounger seat. It provides your guests with a full-body hydrotherapy massage, adding that extra touch of luxury that secures exceptional five-star reviews.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Hydrotherapy Jets\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Treat your guests to the ultimate relaxation experience with nineteen strategically placed hydrotherapy jets. Combined with soft LED lighting, it delivers the premium wow factor that keeps visitors returning year after year.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eCost-Effective Thermal Insulation\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Protect your profit margins with premium thermal insulation engineered to keep your ongoing electricity and heating costs to a minimum. It is a smart, high-return investment that benefits both your guests and your bottom line.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2000 x 2000 x 820 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eUp to 6 People (Including 1 Lounger)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e19\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 MAIN LED\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDry \/ Filled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e247 kg \/ 1451 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e6kW (220V-50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":49215472042305,"sku":"OLCMLG","price":3999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__OLCMLG.jpg?v=1753354221"},{"product_id":"6-person-hot-tub-with-lounger-outdoor-living-lagoon","title":"Outdoor Living Lagoon Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eFamily Relaxation. Ultimate Hydromassage.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Lagoon Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Transform your garden into a private oasis with the Outdoor Living Lagoon Hot Tub, perfectly sized to accommodate up to six bathers. Featuring an integrated lounger and a stunning fountain feature, it delivers a luxurious hydromassage experience tailored to your ultimate comfort. Immerse yourself in the warm waters, play your favourite tunes through the wireless music system, and let the soothing LED lights melt your stress away.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSpacious Family Seating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Designed to comfortably accommodate up to six bathers, with dedicated seating for three adults alongside additional spaces perfectly suited for children. It serves as the ideal centrepiece for hosting friends or enjoying quality family time.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Lounger\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Experience the ultimate solo soak with a built-in lounger designed to contour to your body. Complete with plush pillows, it offers unparalleled comfort and support while you unwind in the warm water.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Hydrotherapy\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Feel fully revitalised with 19 powerful hydrotherapy jets strategically placed to target various muscle groups. Customise your massage pressure using the adjustable water diverters and air controls.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eWireless Audio System\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enhance your hydromassage with your favourite playlists using the integrated Bluetooth music system. Simply connect your smartphone or tablet to stream high-quality audio directly to your spa.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAmbient LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the perfect mood for any occasion with multi-coloured underwater LED lighting. The elegant fountain feature adds a touch of visual and auditory luxury to elevate your outdoor aesthetic.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003ePremium Balboa Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Easily manage your temperature, jets, and lighting with the reliable and user-friendly Balboa control panel. The built-in ozone generator works to keep the water crystal clear with minimal effort.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2000 x 2000 x 820 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e6 Seats (3 Adults, 3 Children)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e19 Adjustable Hydrotherapy Jets\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Dry \/ Filled)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e261 kg \/ 1451 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003ePower Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2.35kW (230V-50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 Main LED light \u0026amp; small interior lights\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":49243261206849,"sku":"OLDMLG","price":3999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Opal","offer_id":49243261239617,"sku":"OLDMLGMO","price":3999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern_-_OLDMLGMO.jpg?v=1747132470"},{"product_id":"large-7-person-hot-tub-outdoor-living-cove","title":"Outdoor Living Cove Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eFamily Size. Practical Design.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Cove Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        The Outdoor Living Cove Hot Tub is a spacious sanctuary designed to bring the whole family together. Combining ergonomic seating for up to seven people with an intuitive Balboa control system, it delivers effortless, everyday relaxation right to your garden. Enjoy year-round comfort in this highly efficient, feature-packed spa.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAdjustable Hydrotherapy\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Experience 19 strategically placed hydrotherapy jets designed to relieve tension and soothe tired muscles. Easily adjust the massage pressure using intuitive water diverters and air regulators for a truly personalised soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003e2.35kW Heating System\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enjoy consistent, reliable warmth in any season with the robust 2.35kW heating system. It efficiently maintains your ideal water temperature up to 40°C, ensuring your spa is always ready for a relaxing dip.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eBalboa Controls \u0026amp; Ozone\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Effortlessly manage your spa's settings with the industry-leading Balboa control panel. The built-in ozone generator works quietly in the background to neutralise bacteria, keeping your water crystal clear with fewer chemicals.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Water Fountains\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your relaxation with the soothing sights and sounds of built-in water fountains. Fully adjustable water flow controls let you easily turn the features on or off to set the perfect ambient mood for your evening soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eLED Lighting \u0026amp; Insulation\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the scene with a vibrant underwater LED main light and complementary accent lighting. The premium high-gloss acrylic shell is backed by closed-cell foam insulation to trap heat and minimise running costs.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Bluetooth Audio\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Stream your favourite playlists or podcasts wirelessly from your smartphone using the built-in Joyonway Bluetooth audio system. Connect easily and immerse yourself in premium sound while you unwind in the water.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2000 x 2000 x 820 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4 Adults and 3 Children\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDry \/ Filled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e261 kg \/ 1,451 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2.35kW (230V - 50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e19\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":49243161362753,"sku":"OLDMST","price":3999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Opal","offer_id":49243161395521,"sku":"OLDMSTMO","price":3999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional__OLDMST.jpg?v=1764239627"},{"product_id":"4-person-hot-tub-outdoor-living-reef","title":"Outdoor Living Reef Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eIntimate Relaxation. Compact Design.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Reef Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        The Outdoor Living Reef is designed to bring the premium spa experience to smaller spaces without compromising on performance. Built to accommodate four bathers, this unit combines powerful hydrotherapy, industry-leading Balboa controls, and efficient heating to create the perfect retreat in your own garden.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRevitalising Hydrotherapy\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Experience a targeted massage with 20 adjustable hydrotherapy jets. Strategically placed within ergonomic seating, they allow you to customise pressure to soothe tired muscles and promote deep relaxation.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAll-Season Heating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enjoy your hot tub year-round with the robust 2.1KW heater system. Capable of maintaining a steady, soothing temperature up to 40°C, ensuring your water is always ready for a warm embrace.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eOzone Water Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Keep your water pristine with the built-in ozone generator that automatically neutralises bacteria. This advanced system reduces the need for harsh chemicals, ensuring a cleaner soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eBalboa Control Interface\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Manage your spa experience effortlessly with the industry-leading Balboa control panel. The user-friendly digital display gives you precise control over temperature, filtration, and jets.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eThermal Efficiency\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Designed to retain heat and reduce running costs, featuring a high-gloss acrylic shell backed by closed-cell foam insulation. This barrier locks in warmth and protects the internal components.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the mood with the integrated underwater LED lighting system. Switch between vibrant colours to create the perfect ambience for your evening soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2100 x 1500 x 740 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4 Persons\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVolume\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e645L\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Dry \/ Filled)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e216 kg \/ 861 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2.1KW (230V-50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e20\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 Main light LED\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":55136028721535,"sku":"OLDMXSMO","price":3249.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/modern_OLDMXSMO.jpg?v=1764081528"},{"product_id":"5-person-hot-tub-with-lounger-outdoor-living-haven","title":"Outdoor Living Haven Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003ePremium Relaxation. Seamless Design.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Haven Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        The Outdoor Haven is a spacious five-person hot tub designed to bring luxurious comfort and style directly to your garden. Featuring a dedicated lounger for full-body relaxation and sleek cabinet LED lighting, this spa provides the perfect, sophisticated escape from everyday stress. Combining premium hydrotherapy with an elegant aesthetic, it is the ultimate investment for year-round wellbeing.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Hydrotherapy Jets\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Experience ultimate relief with powerful hydrotherapy jets strategically placed to target muscle tension. With 50 individual jets providing a soothing massage, it effortlessly eases tension and promotes deep relaxation.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Wireless Audio\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your soak with the built-in wireless music system. Connect your mobile device seamlessly to enjoy your favourite playlists, creating the perfect ambient soundtrack for unwinding or entertaining guests.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAmbient LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the mood with sophisticated illumination, featuring a main underwater light, small LED lights, and dedicated cabinet LED lighting. This customisable setup creates a stunning visual centrepiece in your garden for evening relaxation.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAdvanced Water Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Spend less time on maintenance and more time enjoying your spa thanks to the automatic ozone purification system. It efficiently injects ozone into the water to neutralise bacteria, ensuring your spa remains crystal clear and hygienic.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003ePremium Balboa Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Take complete command of your spa experience with the industry-leading Balboa control panel. Intuitive and reliable, it allows you to easily adjust temperatures, filter cycles, and jet settings with just a touch.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eRelaxing Water Fountain\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enhance your tranquil oasis with the integrated water fountain feature, easily managed via the dedicated water flow control. The gentle sound of flowing water adds an extra layer of calm to your premium spa sanctuary.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2160 x 2160 x 920 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e5 Persons (Includes Lounger)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWater Volume\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1428 Litres\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDry Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e348.2 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eFilled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1776.2 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e50\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4.75 KW\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVoltage \/ Frequency\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e220V - 50Hz\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":55077367218559,"sku":"OLDMSL","price":5999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Canyon","offer_id":55077367251327,"sku":"OLDMSLES","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__OLDMSL-Haven.jpg?v=1742399283"},{"product_id":"7-person-hot-tub-outdoor-living-sanctuary","title":"Outdoor Living Sanctuary Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003ePremium Hydrotherapy. Complete Relaxation.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Sanctuary Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Transform your garden into a luxurious personal retreat designed to provide exceptional hydrotherapy and deep relaxation. Featuring spacious seating, intuitive touch controls, and premium integrated audio, this hot tub offers the ultimate sanctuary for entertaining or unwinding after a long day.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Hydrotherapy Relief\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enjoy targeted relief with specially designed ergonomic seats that deliver distinct massage types to ease muscle tension. Boost your recovery and soothe aches exactly where you need it most.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eCustomisable Jet Pressure\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Create your perfect massage by easily adjusting the water pressure through simple air controls and diverters. Turn the jets to dial in robust power or opt for gentler, soothing therapy.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eYear-Round Warmth\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Relax any day of the year with a powerful built-in heater that maintains your ideal water temperature. Enjoy a comforting soak regardless of the outside weather, even during freezing winter months.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eEffortless Water Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Spend more time enjoying your spa and less time maintaining it. The automatic filtration system and advanced ozone generator work seamlessly to keep your water crystal clear and bacteria-free.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Transform your bathing experience with vibrant underwater LED lights. Choose from multiple colours and settings to perfectly match your mood and create a stunning visual atmosphere.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Bluetooth Audio\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Connect your smartphone wirelessly to the built-in speaker system to stream your favourite playlists, podcasts, or audiobooks. Unwind to your preferred soundtrack without leaving the water.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2300 x 2300 x 920 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e7\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e53\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWater Volume\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1608 L\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Dry)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e380.5 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Filled)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1988.5 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLights\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e3 lights (1 Main light, small LED lights, Cabinet LED light)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4.75 KW\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVoltage \/ Frequency\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e230V-50Hz\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":55085950501247,"sku":"OLDMXL","price":6499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Canyon","offer_id":55085950534015,"sku":"OLDMXLES","price":6499.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional_OLDMXL.jpg?v=1774613983"},{"product_id":"5-person-hot-tub-with-loungers-outdoor-living-serenity","title":"Outdoor Living Serenity Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eUnwind In Pure Serenity\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Serenity Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Transform your garden into a luxurious personal sanctuary with the Outdoor Living Serenity Hot Tub. Designed to melt away the day's stress, this inviting spa provides the perfect blend of comfort and sophisticated style for you and your loved ones. Experience year-round relaxation and elevate your outdoor space with a hydrotherapy retreat right outside your door.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Deep Hydrotherapy\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Melt away muscle tension and soothe aching joints with 54 perfectly placed, powerful jets. The ergonomic seating ensures every massage targets your body's stress points, delivering a truly revitalising spa experience.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSpacious Five-Person Seating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Share the ultimate relaxation experience with friends and family in this comfortable, cleverly designed hot tub. It perfectly accommodates up to five people and features two full-length loungers, guaranteeing everyone finds their ideal spot to unwind.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAmbient LED Illumination\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the perfect mood for evening soaks with sleek, multi-coloured LED lighting illuminating the cabinet. Combined with a calming built-in fountain, it creates a deeply sophisticated and spa-like atmosphere in your garden.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntegrated Wireless Audio\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Immerse yourself in your favourite playlists, podcasts, or soothing sounds while you soak. The premium wireless music system connects effortlessly to your devices, adding an auditory layer of luxury to your daily retreat.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntuitive Balboa Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Take complete command of your spa experience with the industry-leading Balboa control panel. Easily adjust the water temperature and fine-tune jet intensity with just the touch of a button for seamless, personalised comfort.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAdvanced Ozone Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Spend more time relaxing and less time maintaining your hot tub's water chemistry. The built-in ozone purification system naturally sanitises the water, ensuring a crystal-clear, hygienic, and hassle-free soak every single time.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2160 x 2160 x 920 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e5 People (Includes 2 Loungers)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e54\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWater Volume\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1,356 Litres\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDry Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e353.9 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eFilled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1,709.9 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4.75 kW (230V - 50Hz)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e3 Lights (Main light, small LED lights, Cabinet LED light)\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":55096735105407,"sku":"OLDMDL","price":5999.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Canyon","offer_id":55096735138175,"sku":"OLDMDLES","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern__OLDMDL-Midnight_aac28f33-89bd-4beb-9538-e9c990c2238f.jpg?v=1747132219"},{"product_id":"outdoor-living-retreat-hot-tub","title":"Outdoor Living Retreat Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eEffortless Year-Round Luxury.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Retreat Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your commercial property or holiday let with the ultimate premium guest experience. The Outdoor Living Retreat Hot Tub combines ergonomic design with powerful hydrotherapy to provide unforgettable relaxation. Designed with both commercial luxury and low maintenance in mind, it ensures a pristine soak for your guests while keeping changeovers effortless for you.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eErgonomic Hydrotherapy Seating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Specially designed seats provide a premium, full-body massage experience your guests will love. This targeted comfort ensures optimal relaxation and encourages outstanding reviews.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eCustomisable Massage Jets\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Guests can easily adjust the water pressure and massage intensity to suit their exact preferences. This personalised hydrotherapy perfectly targets specific tension areas.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAll-Season Temperature Control\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        A built-in, intelligent heater maintains the perfect water temperature all year round. This ensures your hot tub remains a highly desirable feature, even throughout the colder winter months.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAutomated Water Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        An integrated filtration and ozone generator system works continuously to keep the water crystal clear. This minimises your maintenance effort and ensures hygienic conditions between bookings.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSecure Dual Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Keep your primary settings safe in a locked compartment while offering guests an easy-to-use, limited panel. This prevents accidental temperature or system changes during their stay.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Built-in underwater lights with customisable colour options create the perfect evening ambience. It sets a luxurious mood, encouraging guests to unwind and truly enjoy their soak.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2160 x 1650 x 820 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4 Adults\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Dry)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e236 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Filled)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1123 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e17\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLights\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 Main LED\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e3.35 kW\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVoltage \/ Frequency\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e230V - 50Hz\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":55119506866559,"sku":"OLCMXS","price":3999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional_Retreat.jpg?v=1742472273"},{"product_id":"8-person-commercial-hot-tub-with-lounger-hsg282-compliant-outdoor-living-holiday","title":"Outdoor Living Holiday Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eDurable. Luxurious. Commercial-Grade.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Holiday Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Elevate your guests' experience and maximise your bookings with a hot tub engineered specifically for the demanding environments of holiday parks, lodges, and glamping sites. Built for robust commercial durability and exceptional ease of use, it delivers a premium, spacious soak for guests whilst keeping your operational and maintenance demands to an absolute minimum.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eHigh-Speed Turnaround\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Equipped with a 2-inch drain valve and an optional fixed quick-drain system, water changes are exceptionally fast. Streamline your changeovers between guest bookings to save valuable staff time.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTamper-Proof Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Keep operations safe and simple. Guests can easily operate essential features like the hydrotherapy jets and LED lighting, whilst advanced settings remain locked to prevent unnecessary maintenance callouts.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eDurable \u0026amp; Breakage-Free\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Purpose-built for heavy use, this model completely removes fragile, removable parts like headrests, diverters, and waterfalls. Enjoy total peace of mind with significantly fewer components at risk of accidental damage.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eSpacious 8-Seater\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        With highly generous dimensions (2300 x 2300 mm), this hot tub comfortably accommodates up to eight guests simultaneously. It delivers the perfect high-end luxury experience for larger families or groups.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eMaximise Your Revenue\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Hot tubs remain one of the most in-demand amenities for UK holiday lets. Adding this premium feature to your property has the potential to increase booking rates and boost your overall revenue by up to 60%.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eEnergy-Efficient Design\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Engineered with premium closed-cell foam insulation beneath the shell to retain heat efficiently. This keeps daily running costs exceptionally low, ensuring a consistently strong return on your investment.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2300 x 2300 x 920 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e8 Seater\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Massage Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e48 Jets\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4.75 kW\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 Main LED Light\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVoltage \/ Frequency\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e220V - 50Hz\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":55169488159103,"sku":"OLCMXL","price":4999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional__OLCMXL.jpg?v=1742398851"},{"product_id":"jacuzzi-j225-5-person-hot-tub","title":"Jacuzzi® J225™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eElegant Open Seating in a Compact Footprint\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-225™ offers a barrier-free, open seating layout perfect for socialising. Compact yet spacious, it delivers powerful hydrotherapy and premium features designed for shared relaxation and rejuvenation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSocial Open-Plan Seating\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eDesigned for connection. The barrier-free layout comfortably seats 4-5 people, allowing for effortless movement and conversation without the restrictions of a lounger.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e26-Jet Precision Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eImmerse yourself in the power of 26 proprietary jets. Using the Aqualibrium® formula, they provide targeted relief to the spine, shoulders, and back for a restorative experience.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® Remote Monitoring\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eControl your spa from anywhere. Adjust temperature, track energy usage, and receive maintenance alerts directly on your smartphone for a worry-free ownership experience.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSuperior Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eKeep running costs low with high-density, multi-layered insulation. The J-225™ exceeds strict California Energy Commission standards by 22%, locking heat in to save you money.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eClearRay® Water Purity\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSpend less time maintaining and more time soaking. The patented 4-stage filtration and UV technology work actively to keep your water crystal clear and safe.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious Anti-Slip Footwell\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eDespite its compact size, the J-225™ features a generous footwell with anti-slip tread, ensuring safe entry and providing ample legroom for every bather.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003ePremium Ambient Lighting\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSet the mood for your soak. Integrated LED lighting and luxurious backlit headrests create a calming, multisensory atmosphere perfect for evening relaxation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProLast™ All-Weather Protection\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eBuilt to last. Includes a UV and stain-resistant ProLast™ cover and a durable polymer base to protect your spa from the elements year-round.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* UPDATED TO 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Default Title","offer_id":55185269752191,"sku":"J225PC","price":7499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/JHT_J-225_Smoke_SilverPearl_Lifestyle-2100x1575-3c88e14c-0d7e-4345-8c46-03fed2f4341d_1.webp?v=1763545118"},{"product_id":"jacuzzi-j235-6-person-hot-tub-with-1-lounger","title":"Jacuzzi® J235™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Family Retreat\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-235™ combines versatility with luxury. Seating up to six people, it blends social open seating with a full-body lounger and powerful hydrotherapy, making it the perfect centrepiece for family connection and daily renewal.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eVersatile 6-Person Seating\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eDesigned for togetherness. This spacious layout features a restorative lounge seat, two deep therapy seats, and a cool-down spot, ensuring every family member finds their perfect fit.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e34-Jet Powerful Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eExperience a deeper massage. Powered by two robust jet pumps, 34 expertly positioned jets deliver vigorous, targeted relief to your calves, shoulders, and back for total body recovery.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® Cellular Control\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSimplified ownership at your fingertips. Monitor energy usage, adjust settings remotely, and receive automatic updates via the SmartTub® app, giving you complete peace of mind.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eEco-Efficient Insulation\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngineered to retain heat and lower bills. High-density, multi-layered insulation ensures the J-235™ runs efficiently in any climate, exceeding strict energy standards by an average of 22%.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eClearRay® Active Purification\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEnjoy cleaner water with less effort. The patented 4-stage filtration system and UV technology work automatically to neutralize waterborne pathogens, reducing the need for harsh chemicals.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eErgonomic Therapy Seats\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEvery seat is engineered for the human body. From the full-body immersion of the lounger to the upright therapy seats, the J-235™ offers varied depths to support different heights and needs.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eMultisensory Ambiance\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eCreate your sanctuary. Adjustable multi-coloured LED lighting and backlit pillows allow you to set the perfect mood for a vibrant party or a soothing, quiet evening soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProLast™ Weather Shield\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eProtect your spa with confidence. The custom-fit ProLast™ cover is resistant to UV rays, water, and stains, ensuring your hot tub remains energy-efficient and pristine for years.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Set to 500 as requested *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum","offer_id":55185906925951,"sku":"ZI12ZPMEMTNS","price":8499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight","offer_id":55185906958719,"sku":"ZI62ZPLETNS","price":8499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/4_d0ba5ca9-7b18-4a30-9c3b-45e94ed2d05d.png?v=1762960880"},{"product_id":"jacuzzi-j245-7-person-hot-tub","title":"Jacuzzi® J245™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Ultimate Social Spa for Seven\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eRedefine your outdoor living with the J-245™. Featuring a spacious open-seating layout for seven adults and a central foot dome, it offers the perfect blend of social connection and powerful, full-body hydrotherapy.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious 7-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eBuilt for entertaining. The barrier-free design comfortably accommodates up to seven adults, offering four dedicated therapy seats and varied heights so everyone finds their perfect spot.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eCentral Foot Jet System\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA treat for tired feet. Unique to this layout, the central foot dome delivers a powerful reflexology massage, targeting the soles of your feet to relieve fatigue after a long day.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e35-Jet Deep Tissue Massage\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePowered by two robust jet pumps, 35 proprietary jets provide vigorous relief. Clusters target key shoulder muscles and the lower back to alleviate tension and improve circulation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® Remote Monitoring\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal control in your pocket. Manage temperature, monitor energy efficiency, and receive status updates via the SmartTub® app, ensuring your spa is always ready when you are.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eIndustry-Leading Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eDesigned to save you money. High-density, multi-layered insulation locks heat inside, allowing the J-245™ to exceed strict California Energy Commission standards by an average of 22%.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eClearRay® Active Purification\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eCrystal clear water made easy. The patented 4-stage filtration and UV technology work automatically to neutralise waterborne pathogens, significantly reducing chemical usage.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eImmersive Mood Lighting\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSet the scene for your gathering. Vibrant LED lighting and backlit headrests create a sophisticated atmosphere, perfect for lively parties or quiet, restorative evenings.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProLast™ Weather Shield\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eEngineered for longevity. The UV, water, and stain-resistant ProLast™ cover protects your investment from the elements, maintaining the spa's aesthetic and efficiency for years.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Kept at 500 as requested *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Platinum","offer_id":55217755816319,"sku":"ZV12ZPMEMTNS","price":8499.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight","offer_id":55217755849087,"sku":"ZV62ZPMEMTNS","price":8499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/1_973e82b6-a347-475d-b238-2517080881c9.jpg?v=1762960960"},{"product_id":"j-275-large-6-person-hot-tub-with-lounger","title":"Jacuzzi® J275™ Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n  \n  \u003cdiv class=\"jacuzzi-premium-header\"\u003e\n    \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\" alt=\"Jacuzzi Official Logo\" class=\"jacuzzi-premium-logo\" width=\"140\" height=\"35\" loading=\"lazy\"\u003e\n    \u003ch2 class=\"jacuzzi-premium-title\"\u003eMaximum Power in a Spacious 6-Seat Design\u003c\/h2\u003e\n    \u003cp class=\"jacuzzi-premium-intro\"\u003e\n      The J-275™ is the most powerful model in the J-200™ collection. Featuring 45 proprietary jets and seating for six, \n      it combines the social benefits of a large spa with the intense, full-body hydrotherapy of a luxury lounger.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n    \n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSpacious 6-Person Seating\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Room to breathe. Designed for families and friends, the J-275™ offers generous seating for six, including a therapeutic lounger, a cool-down seat, and open seating for easy conversation.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003e45-Jet High-Performance Massage\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Experience superior power. Driven by two robust pumps, 45 strategically positioned jets deliver deep-tissue relief to the neck, back, calves, and feet—the most comprehensive massage in this range.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eFull-Body Hydrotherapy Lounge\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Total immersion. The ergonomic lounge seat is contoured to your body, utilizing targeted jets to stimulate circulation and ease muscle strain from your shoulders down to your toes.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eSmartTub® Cellular Control\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Peace of mind in your pocket. Monitor your spa’s status, adjust temperature settings remotely, and track energy usage via the SmartTub® app, simplifying your ownership experience.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eEco-Efficient Insulation\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Designed to keep costs down. High-density, multi-layered insulation locks heat in, allowing the J-275™ to exceed strict California Energy Commission efficiency standards by an average of 22%.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eClearRay® Water Management\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Crystal clear water with less effort. The patented 4-stage filtration system and ClearRay® UV technology work automatically to neutralise impurities, reducing the need for chemicals.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eMood-Enhancing Illumination\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Transform your evening. Vibrant LED lighting and backlit headrests create a sophisticated atmosphere, turning your backyard into a private sanctuary after dark.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jacuzzi-feature-card\"\u003e\n      \u003ch3 class=\"jacuzzi-feature-title\"\u003eProLast™ Weather Shield\u003c\/h3\u003e\n      \u003cp class=\"jacuzzi-feature-desc\"\u003e\n        Built to withstand the elements. The UV, water, and stain-resistant ProLast™ cover protects your spa year-round, ensuring it stays energy-efficient and looks pristine for years.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Default Title","offer_id":55218916327807,"sku":"ZH12ZPLETNS","price":9749.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/2_f91f859d-50a1-495b-a97e-9e0669902770.jpg?v=1763033219"},{"product_id":"outdoor-living-comfort","title":"Outdoor Living Comfort Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eIntimate Relaxation. Space-Saving Design.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Comfort Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        Transform your outdoor space into a personal oasis with the Outdoor Living Comfort Hot Tub. Designed to deliver premium hydrotherapy in a compact footprint, this four-person spa perfectly balances powerful massage jets with soothing all-season warmth. Experience everyday luxury and revitalising relaxation without compromising on your garden's aesthetic.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eErgonomic Hydrotherapy Seating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enjoy a fully customisable massage with 20 adjustable jets strategically placed across ergonomically designed seats. Tailor the water pressure using the air regulators to target tired muscles, providing deep, revitalising relaxation for up to four bathers.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntelligent All-Season Heating\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Relish in a warm, welcoming soak at any time of year with the built-in, energy-efficient heating system. Capable of maintaining a soothing temperature of up to 40°C, your hot tub is always ready to embrace you, whatever the British weather brings.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAdvanced Ozone Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Spend less time on maintenance and more time relaxing thanks to the automatic ozone generator. By neutralising bacteria and impurities during filtration cycles, this system ensures crystal-clear water while minimising the need for harsh chemicals.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eIntuitive Digital Controls\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Take complete command of your spa experience with the user-friendly topside touch panel. Easily adjust the water temperature, filter cycles, and massage jet operation at the touch of a button, ensuring your perfect soak is always ready.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003ePremium Thermal Insulation\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Engineered for the UK climate, the robust closed-cell insulation foam beneath the high-gloss acrylic shell actively locks in warmth. This superior heat retention protects internal components from the elements and helps to significantly reduce running costs.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the perfect mood for your evening soak with the integrated multi-coloured underwater LED lighting system. Cycle through vibrant colours to create a soothing, personalised ambience that perfectly complements your state of mind.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eModel\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eOLDMXSV2\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions (L x W x H)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2100 x 1550 x 740 mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Dry)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e216 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eWeight (Filled)\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e861 kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVolume\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e645 L\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e4 Persons\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eMax Power Consumption\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2.15 kW\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e20\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e1 Main LED Light (RGB Colour Cycling)\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eVoltage \/ Frequency\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e230V \/ 50Hz\u003c\/td\u003e\n        \u003c\/tr\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eIP Rating\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eIPX5\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":55443991331199,"sku":"OLDMXSV2","price":2999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Outdoor_Living_Comfort_Hot_Tub_Top_Down_Lifestyle.jpg?v=1764239627"},{"product_id":"outdoor-living-harmony","title":"Outdoor Living Harmony Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-gradient-to-br jbf-from-[#F4F9F9] jbf-to-[#E1F0EE] jbf-rounded-xl jbf-border jbf-border-[#CFE8E4] jbf-p-6 md:jbf-p-10 jbf-mt-10 jbf-box-border jbf-font-sans\"\u003e\n  \n  \u003cdiv class=\"jbf-flex jbf-flex-col md:jbf-flex-row jbf-items-start jbf-gap-8 jbf-mb-12\"\u003e\n    \u003cdiv class=\"jbf-w-full md:jbf-w-[160px] jbf-flex jbf-justify-center md:jbf-justify-start\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/OL_Secondary_Logo_Aqua.svg?v=1764323202\" alt=\"Outdoor Living\" class=\"jbf-max-w-[160px] jbf-h-auto\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"jbf-flex-1 jbf-text-center md:jbf-text-left\"\u003e\n      \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-xs md:jbf-text-sm jbf-font-normal jbf-uppercase jbf-tracking-widest jbf-mb-2\"\u003eIntimate Relaxation. Space-Saving Design.\u003c\/h2\u003e\n      \u003ch1 class=\"jbf-text-[#2A2322] jbf-text-3xl md:jbf-text-4xl jbf-font-normal jbf-leading-tight jbf-mb-6\"\u003e\n        Outdoor Living Harmony Hot Tub\n      \u003c\/h1\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-base md:jbf-text-lg jbf-font-light jbf-leading-relaxed\"\u003e\n        The Harmony brings premium hydrotherapy to smaller spaces. Built for two bathers, this unit combines ergonomic seating, industry-leading Balboa controls, and efficient heating for the perfect intimate retreat in your own garden.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-grid jbf-grid-cols-1 md:jbf-grid-cols-2 lg:jbf-grid-cols-3 jbf-gap-6 jbf-mb-12\"\u003e\n    \n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eTargeted Hydrotherapy\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Experience a deep, revitalising massage with 33 total jets. Customize pressure using the water diverter and air regulators, soothing tired muscles for up to two people.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAll-Season Heating (40°C)\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Enjoy your hot tub year-round with the efficient 2.1KW heater system. Maintains a steady temperature up to 40°C, ready for a warm embrace in any weather.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eOzone Water Purification\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Keep your water pristine with the built-in ozone generator. Releases ozone ions to neutralise bacteria, reducing the need for harsh chemicals.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eBalboa Control Interface\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Manage your spa experience with the industry-leading Balboa control panel. Gives precise control over water temperature, filtration, and lighting.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eThermal Efficiency\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        High-gloss acrylic shell backed by closed-cell foam insulation. This barrier effectively locks in warmth, improving energy efficiency.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-feature-card jbf-bg-white jbf-rounded-lg jbf-p-8 jbf-relative jbf-border-b-4 jbf-border-transparent jbf-transition-all jbf-duration-300 hover:jbf-border-[#35B6A9] hover:jbf--translate-y-0.5 hover:jbf-shadow-[0_4px_15px_rgba(53,182,169,0.15)]\"\u003e\n      \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9]\/30 jbf-rounded-b-sm\"\u003e\u003c\/div\u003e\n      \u003ch3 class=\"jbf-text-[#35B6A9] jbf-text-xl jbf-font-normal jbf-mt-2 jbf-mb-3 jbf-leading-snug\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e\n      \u003cp class=\"jbf-text-[#2A2322]\/80 jbf-text-sm jbf-font-light jbf-leading-relaxed\"\u003e\n        Set the mood with the integrated underwater LED lighting system. A slender footprint fits easily into narrow garden spaces.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"jbf-bg-white jbf-rounded-xl jbf-shadow-[0_2px_10px_rgba(0,0,0,0.03)] jbf-border jbf-border-[#CFE8E4] jbf-overflow-hidden\"\u003e\n    \u003ch2 class=\"jbf-text-[#35B6A9] jbf-text-2xl jbf-font-normal jbf-text-center jbf-p-8 jbf-pb-4\"\u003eWhat you need to know...\u003c\/h2\u003e\n    \n    \u003ctable class=\"jbf-w-full jbf-border-collapse jbf-table-fixed\"\u003e\n      \u003ctbody\u003e\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-w-1\/2 md:jbf-w-2\/5 jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eSeating Capacity\u003c\/th\u003e\n          \u003ctd class=\"jbf-w-1\/2 md:jbf-w-3\/5 jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2 Person\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eDimensions\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2250mm x 1000mm\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eEmpty Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e172kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eFilled Weight\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e652kg\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eTotal Jets\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e33 Hydrotherapy Jets\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eHeating System\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003e2.1KW Heater (Up to 40°C)\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003ePurification\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eBuilt-in Ozone Generator\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eControl System\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eBalboa Digital Interface\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003eLighting\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eIntegrated underwater LED system\u003c\/td\u003e\n        \u003c\/tr\u003e\n\n        \u003ctr class=\"jbf-border-t jbf-border-[#CFE8E4]\"\u003e\n          \u003cth class=\"jbf-p-5 jbf-bg-[#F4F9F9] jbf-text-[#35B6A9] jbf-font-normal jbf-text-sm md:jbf-text-base jbf-text-left jbf-align-top jbf-border-r jbf-border-[#CFE8E4]\"\u003ePlacement\u003c\/th\u003e\n          \u003ctd class=\"jbf-p-5 jbf-text-[#2A2322]\/80 jbf-font-light jbf-text-sm md:jbf-text-base jbf-align-top\"\u003eMust be placed on a level surface capable of bearing the filled weight.\u003c\/td\u003e\n        \u003c\/tr\u003e\n      \u003c\/tbody\u003e\n    \u003c\/table\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Silver Marble","offer_id":57580646072703,"sku":"OLDM2P","price":2749.0,"currency_code":"GBP","in_stock":true},{"title":"Midnight Opal","offer_id":57580646105471,"sku":"OLDM2PMO","price":2749.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/2_person_hot_tub_in_a_traditional_setting.jpg?v=1778149587"},{"product_id":"outdoor-living-arcticblaze","title":"Outdoor Living ArcticBlaze Ice Bath\/Plunge Pool\/Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-10 jbf-px-4 md:jbf-px-6\"\u003e\n\u003cdiv class=\"jbf-bg-[#E1F2EF] jbf-text-[#2A2322] jbf-p-6 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#ACD9D3] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e\n\u003cdiv class=\"jbf-text-center jbf-mb-10 jbf-max-w-2xl jbf-mx-auto\"\u003e\n\u003cimg src=\"https:\/\/www.outdoorlivinghottubs.co.uk\/cdn\/shop\/files\/logo-22_600x.png?v=1671519355\" alt=\"Outdoor Living Logo\" class=\"jbf-inline-block jbf-mb-5 jbf-h-auto\" width=\"160\" height=\"45\" loading=\"lazy\"\u003e\n\u003ch2 class=\"jbf-text-[clamp(1.75rem,4vw,2.2rem)] jbf-font-normal jbf-text-[#2A2322] jbf-mb-3 jbf-leading-tight\"\u003eUltimate Contrast. Dual Recovery.\u003c\/h2\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eThe Outdoor Living ArcticBlaze is the ultimate recovery station. Combining a dedicated hot tub and a precision ice bath in one unit, it allows for immediate contrast therapy without leaving your garden. Experience the power of fire and ice in a single, cohesive design.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-5\"\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab] jbf-group\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eTwo Worlds. One Unit.\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eExperience the best of both worlds. The ArcticBlaze features two completely separate bodies of water in one chassis. One side offers a therapeutic hot soak, while the other delivers icy cold immersion, allowing for seamless contrast therapy sessions.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003ePrecision Cooling (5°C)\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eTake control of your recovery. The dedicated ice bath chamber features a powerful chiller capable of maintaining temperatures as low as 5°C. This targeted cold exposure helps reduce inflammation and accelerates muscle recovery after intense workouts.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eHydrotherapy Massage (40°C)\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eRelax and unwind in the spacious hot tub section. Powered by a robust heater and equipped with 12 targeted massage jets, it warms up to a soothing 40°C, perfect for relaxing stiff muscles or enjoying a social soak with a partner.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eDual Digital Controls\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eComplete command at your fingertips. The ArcticBlaze features distinct control panels for each zone—including a premium Balboa interface for the hot tub—allowing you to independently manage temperatures and filtration cycles with ease.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eAdvanced Hygiene System\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eSoak with confidence. The unit is equipped with automatic filtration and ozone disinfection systems. The ozone generator effectively oxidizes bacteria and contaminants, ensuring your water remains crystal clear and safe for every use.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e\n\u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eBuilt for the Outdoors\u003c\/h3\u003e\n\u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eEngineered for durability. With a high-gloss acrylic shell and closed-cell insulation foam, this unit is designed to retain temperature efficiently in outdoor environments, protecting the internal components from the elements.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":55496143372671,"sku":"OL700DUAL","price":4999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/image_15.png?v=1765454229"},{"product_id":"jacuzzi-j335","title":"Jacuzzi® J335 Hot Tub","description":"\u003ch6\u003eTech spec\u003c\/h6\u003e\n\u003cul class=\"techspec-list\"\u003e\n\u003cli class=\"ht-icon-seats\"\u003eSeats 6 people with 1 lounger\u003c\/li\u003e\n\u003cli class=\"ht-icon-pillow\"\u003e4 pillows\u003c\/li\u003e\n\u003cli class=\"ht-icon-size\"\u003e213.5cm x 213.5cm x 92cm\u003c\/li\u003e\n\u003cli class=\"ht-icon-jets\"\u003e42 PowerPro™ jets\u003c\/li\u003e\n\u003cli class=\"ht-icon-waterfall\"\u003eRainbow waterfall\u003c\/li\u003e\n\u003cli class=\"ht-icon-pumps\"\u003e3 pumps\u003c\/li\u003e\n\u003cli class=\"ht-icon-temp\"\u003e23⁰C - 40⁰C\u003c\/li\u003e\n\u003cli class=\"ht-icon-ampage\"\u003e32 Amp power supply\u003c\/li\u003e\n\u003cli class=\"ht-icon-led\"\u003eInternal and external ProLite™ LED lighting\u003c\/li\u003e\n\u003cli class=\"ht-icon-cup-holders\"\u003eIlluminated cupholders\u003c\/li\u003e\n\u003cli class=\"ht-icon-music\"\u003eBluetooth® stereo system\u003c\/li\u003e\n\u003cli class=\"ht-icon-clearray\"\u003eClearRay™ water purification system\u003c\/li\u003e\n\u003cli class=\"ht-icon-clearray\"\u003eProClarity® 4 stage filtration system\u003c\/li\u003e\n\u003cli class=\"ht-icon-clearray\"\u003e2 x ProClarity® 60 sq. ft. filter\u003c\/li\u003e\n\u003cli class=\"ht-icon-capacity\"\u003eCapacity: 1325 litres\u003c\/li\u003e\n\u003cli class=\"ht-icon-weight\"\u003eWeight (full\/empty): 2125\/347 kg\u003c\/li\u003e\n\u003cli class=\"ht-icon-cabinetry\"\u003eProFinish® cabinetry\u003c\/li\u003e\n\u003cli class=\"ht-icon-insulation\"\u003eSmartSeal™ insulation\u003c\/li\u003e\n\u003cli class=\"ht-icon-controls\"\u003eClassic control panel\u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003eSmartTub™ system (optional upgrade)\u003c\/li\u003e\n\u003cli class=\"ht-icon-warranty\"\u003eSmart access door – easy access for servicing\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eThe Jacuzzi® J300 range puts comfort at the forefront, bringing a new dimension of functionality and design. The J335IP™ features a variety of deep and shallow seats and an open-plan foot well, so it’s especially suitable for families with younger children.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eLuxurious hydromassage experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003e42 specialist PowerPro™ jets provide targeted massage for your feet, calves, back and shoulders which is perfect for relieving any aches and pains after a long day. A Hydrosoothe™ massage pillow delivers a soothing head and neck massage with a cascade of water over the neck and shoulders without splashing or spraying. Adjust your massage and temperature preferences with the easy-to-use control panel.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBeautiful design\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThe luxurious ProFinish™ cabinetry design features corner lighting inspired by architecture for a striking, modern finish. The classic rainbow waterfall and premium adjustable LED lighting offer a unique chromotherapy experience, allowing you to set the ambience for any occasion.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eAdvanced \u0026amp; energy saving technology\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThe J335IP™ is compatible with the SmartTub™ system, the perfect way to control your hot tub remotely through an app. Innovative SmartSeal® insulation is an environmentally friendly solution to reduce energy use by 20% while protecting the tub from moisture, perfect for cold climates and saving you money. The ClearRay® and 4-stage filtration system creates superior water purity, reducing the need for you to buy water santisiers.\u003c\/p\u003e\n\u003cp\u003eThe J335IP™ is one of Outdoor Living's most popular hot tubs. Check out our \u003ca title=\"Jacuzzi J335IP Review\" href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/blogs\/hot-tub-installation-reviews\/tagged\/jacuzzi-j335ip\"\u003ereviews page\u003c\/a\u003e for photos of J335IP™ installations and comments from our happy customers.\u003c\/p\u003e\n\u003ch6\u003eFinish\u003c\/h6\u003e\n\u003ch3\u003eShell\u003c\/h3\u003e\n\u003cul class=\"colours-list\"\u003e\n\u003cli class=\"colour-platinum\"\u003ePlatinum\u003cbr\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003eCabinet\u003c\/h3\u003e\n\u003cul class=\"colours-list\"\u003e\n\u003cli class=\"colour-brushed-grey\"\u003eBrushed Grey\u003cbr\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch6\u003eVideos\u003c\/h6\u003e\n\u003cdiv\u003e\n\u003ciframe width=\"200\" src=\"https:\/\/www.youtube.com\/embed\/061jpBWMjjM\" loading=\"lazy\"\u003e\u003c\/iframe\u003e \u003ciframe width=\"200\" src=\"https:\/\/www.youtube.com\/embed\/dp4oWtV1fIE\" loading=\"lazy\"\u003e\u003c\/iframe\u003e\n\u003c\/div\u003e\n\u003cp\u003e\u003ciframe width=\"200\" src=\"https:\/\/www.youtube.com\/embed\/zw34UqRq7_I\" loading=\"lazy\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\u003cdiv\u003e\n\u003ch6\u003eHow do I order?\u003c\/h6\u003e\n\u003col\u003e\n\u003cli\u003eProceed to checkout and complete your order\u003c\/li\u003e\n\u003cli\u003eWe'll call you within 48-hours to schedule your delivery\u003c\/li\u003e\n\u003cli\u003eIf you need installation, we'll discuss options and pricing over the phone\u003c\/li\u003e\n\u003cli\u003eYour item(s) will be delivered hassle-free on your chosen date\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003cp\u003e\u003cspan\u003eOr, if you visit one of our \u003c\/span\u003e\u003ca href=\"https:\/\/www.outdoorlivinghottubs.co.uk\/pages\/showrooms\"\u003eshowrooms\u003c\/a\u003e\u003cspan\u003e, we’ll organise everything there and then. \u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e","brand":"Jacuzzi","offers":[{"title":"Default Title","offer_id":56163790389631,"sku":"A1 J335 PBG 622","price":6999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/JHT_J335_Lifestyle_1.jpg?v=1763035906"},{"product_id":"outdoor-living-santorini-hot-tub","title":"Platinum Spas Santorini Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eEnjoy an invigorating soak in this impressive Outdoor Santorini hot tub. There’re five seating positions to relax in, plus a lay-down lounger for family, friends or to enjoy a solo soak. You’ll be the envy of your neighbourhood, as it’ll look good in your garden all year round.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eUnique hydrotherapy experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eEach contoured seat offers an exceptional massage experience. The 52 powerful jets have been placed in a specific formation for various muscle groups to focus on key areas to suit your needs. Your body is left feeling revitalised and relaxed. There’s even a selection of diverters placed around your hot tub to give you complete control of which jets the water comes out and your massaging pressure using the control panel.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBeautiful design\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eHaving a luxuriously designed hot tub is just as important as the experience. This hot tub is eye-catching, from its smooth wood effect cabinet to its glossy faux marble shell, which glistens silver and opal. Its features and technology make it stand out; multi-coloured LED lighting effects inside, a built-in Bluetooth music system to get your hot tub party going and a water purification system with a 2-stage skimmer filtration that removes minor impurities.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eBalboa control panel\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThese innovative control panels are known for their reliability, ease of use and technology. Allowing you to adjust the features on your hot tub with no difficulties whatsoever. From jet operation, filtration requirements and heat settings to your music needs and lighting ambience. There's even an economy and sleep mode, so you needn't worry about wasting electricity.\u003c\/p\u003e\n","brand":"Platinum Spas","offers":[{"title":"Default Title","offer_id":56228507025791,"sku":"OLSANG1","price":4499.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional_ROOMSET_171025_joe.jpg?v=1760701173"},{"product_id":"sundance-edison-hot-tub","title":"Sundance Edison Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003ch3\u003e\u003cstrong\u003eLuxury Hydrotherapy Experience\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eImmerse yourself in total relaxation with the Sundance Edison. This spacious hot tub comfortably fits 7 adults and combines luxury features with reassuring American quality. Relax in the soothing ambience created by the variable flow waterfall and multicolour LED lighting, accentuated by designer stainless steel jets.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eElegance and Functionality\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eWith luxury features as standard - The Edison spa is also equipped with seven different jet types which give you a variety of different therapeutic massage techniques to enjoy. Clearray™ UV-C water purification makes water care a breeze and ensures your hot tub water remains fresh, crystal clear and inviting.\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Sundance Spas","offers":[{"title":"Default Title","offer_id":56228755505535,"sku":"OLEDG1","price":4999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional__Outdoor-Living-Montana-Hot-Tub.jpg?v=1742400303"},{"product_id":"viking-spa-royale-hot-tub","title":"Viking Spa Royale Hot Tub","description":"\u003cp\u003e\u003cstrong\u003eRoyale Series White Satin\/Grey\u003c\/strong\u003e\u003cbr\u003eLooking for the best value in a hot tub? Look no further. Viking Spas’ REDESIGNED Consumers Digest Best Buy Royale has it all featuring a Zero G lounger and two captain seats providing the therapeutic massage you have been looking for. Plug-n-play (13 amp), 1 Pump, LED Lighting, Stainless Steel Jets.\u003cbr\u003e\u003cstrong\u003e\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eFeatures\u003cspan\u003e\u003cbr\u003e\u003c\/span\u003e\u003c\/strong\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003eDimensions: 198 cm square\u003c\/li\u003e\n\u003cli\u003eDepth: 86 cm\u003c\/li\u003e\n\u003cli\u003eCapacity: 1022 liters\u003c\/li\u003e\n\u003cli\u003eWeight: 225 kg\u003c\/li\u003e\n\u003cli\u003ePlug \u0026amp; Play (13 amp)\u003c\/li\u003e\n\u003cli\u003eTotal Jets 31\u003c\/li\u003e\n\u003cli\u003eCluster Spectrum Jets 15\u003c\/li\u003e\n\u003cli\u003eMini Spectrum Jets 9\u003c\/li\u003e\n\u003cli\u003eNeck Jets 2\u003c\/li\u003e\n\u003cli\u003eOzone Jet 1\u003c\/li\u003e\n\u003cli\u003ePoly Spectrum Jets 4\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"Viking Spa","offers":[{"title":"Default Title","offer_id":56378789167487,"sku":null,"price":1999.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Traditional_111125.jpg?v=1762866755"},{"product_id":"jacuzzi-j-lx-hot-tub","title":"Jacuzzi J-LX Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eThe Most Energy Efficient Jacuzzi® Hot Tub\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-LX® sets a new benchmark for modern luxury. Combining clean, architectural lines with advanced Infrared therapy, it is officially the most energy-efficient model in the Jacuzzi® collection.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for the FX-IR seat. This system fuses deep-tissue hydromassage with targeted Infrared heat and Red Light therapy to relieve lower back pain, stimulate collagen, and accelerate cellular repair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eUnrivalled Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eThe most efficient spa we make. Featuring advanced multi-layered insulation and a patented top-deck design, the J-LX® traps heat better than any other model, keeping running costs to an absolute minimum.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eModern 7-Seat Open Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eSocial by design. The J-LX® features 7 ergonomically crafted upright seats at varying heights, offering a spacious, barrier-free environment perfect for conversation and shared relaxation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eContemporary Architectural Design\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eClean, simple lines. Designed to complement modern homes, the J-LX® features a sleek flat-rail profile, dramatic exterior corner lighting, and a minimalist aesthetic that redefines hot tub luxury.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e41-Jet Advanced Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePrecision engineering. Includes exclusive PX jets for wrists and hands, and FX-D jets for hips. The 41 PowerPro® jets deliver a targeted high-performance massage to small and large muscle groups alike.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfinity Edge Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA touch of elegance. The luxurious Infinity Edge waterfall creates a seamless sheet of water that disappears into the spa, providing a soothing visual and auditory backdrop to your soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eClean Water Management\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePurity simplified. The patented Clean Water Management System combines 6-stage filtration with ClearRay® technology to ensure your water remains crystal clear with minimal effort.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProTouch™ Control \u0026amp; SmartTub®\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal command. Monitor your efficiency in real-time via the ProTouch™ screen or use the SmartTub® app to track energy usage (approx. 5 kWh\/day) and adjust settings from your phone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Brushed Grey","offer_id":56438802481535,"sku":null,"price":16499.0,"currency_code":"GBP","in_stock":true},{"title":"Smoked Ebony","offer_id":56438802514303,"sku":null,"price":16499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/J-LX_Lifestyle.avif?v=1763556350"},{"product_id":"jacuzzi-j-lxl-hot-tub","title":"Jacuzzi J-LXL Hot Tub","description":"\u003cdiv class=\"jacuzzi-premium-container\"\u003e\n\u003cdiv class=\"jacuzzi-premium-header\"\u003e\n\u003cimg loading=\"lazy\" height=\"35\" width=\"140\" class=\"jacuzzi-premium-logo\" alt=\"Jacuzzi Official Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Jacuzzi_Logo_Black.avif?v=1762941397\"\u003e\n\u003ch2 class=\"jacuzzi-premium-title\"\u003eModern Architectural Design with a Lounger\u003c\/h2\u003e\n\u003cp class=\"jacuzzi-premium-intro\"\u003eThe J-LXL® combines the collection's industry-leading energy efficiency with a therapeutic full-body lounger. Featuring sleek, flat-rail styling and Infrared technology, it is the ultimate expression of modern wellness.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-premium-grid\"\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfrared \u0026amp; Red Light Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eNew for the FX-IR seat. This system fuses deep-tissue hydromassage with targeted Infrared heat and Red Light therapy to relieve lower back pain, stimulate collagen, and accelerate cellular repair.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eUnrivalled Energy Efficiency\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eOfficially the most efficient. Using advanced multi-layered insulation and a unique top-deck design, the J-LXL® traps heat superiorly, keeping running costs to a minimum (~5 kWh\/day).\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eModern Lounger Layout\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eRelax in style. This 5-6 person layout features a dedicated full-body lounger equipped with back, leg, and foot jets, plus ergonomic upright seats for a complete hydrotherapy circuit.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eContemporary Architectural Design\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eClean, simple lines. The J-LXL® features a minimalist flat-rail profile, invisible cabinetry hardware, and dramatic exterior corner lighting to complement the most modern garden aesthetics.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003e39-Jet Advanced Therapy\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003ePrecision engineering. 39 PowerPro® jets, including exclusive PX jets for wrists and hands and RX jets for high-performance massage, deliver targeted relief to every muscle group.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eTrue Water™ Technology\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eInspired by nature. The J-LXL® is available with the optional True Water™ system, which keeps water beautifully clean and 99.9% chlorine-free without relying on harsh chemicals.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eInfinity Edge Waterfall\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eA touch of elegance. The luxurious Infinity Edge waterfall creates a seamless sheet of water that disappears into the spa, providing a soothing visual and auditory backdrop to your soak.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"jacuzzi-feature-card\"\u003e\n\u003ch3 class=\"jacuzzi-feature-title\"\u003eProTouch™ Control \u0026amp; SmartTub®\u003c\/h3\u003e\n\u003cp class=\"jacuzzi-feature-desc\"\u003eTotal command. Monitor your efficiency in real-time via the ProTouch™ screen or use the SmartTub® app to track energy usage and adjust settings remotely from your smartphone.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n  :root {\n    \/* Jacuzzi Premium Palette *\/\n    --jac-bg-light: #e9e9e9;\n    --jac-card-bg: #ffffff;\n    --jac-text-dark: #2A2322;\n    --jac-text-muted: #555555;\n    --jac-border: #D1D3D4;\n    --jac-accent: black; \n  }\n\n  .jacuzzi-premium-container {\n    background-color: var(--jac-bg-light);\n    color: var(--jac-text-dark);\n    padding: 3rem 2rem;\n    border-radius: 8px;\n    max-width: 1200px;\n    margin: 2rem auto;\n    border: 1px solid var(--jac-border);\n    font-family: inherit;\n    \/* Raised premium shadow *\/\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.07);\n  }\n\n  .jacuzzi-premium-header {\n    text-align: center;\n    margin-bottom: 3rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .jacuzzi-premium-logo {\n    max-width: 160px;\n    height: auto;\n    margin-bottom: 1.5rem;\n    display: inline-block;\n  }\n\n  .jacuzzi-premium-title {\n    font-size: clamp(1.75rem, 4vw, 2.2rem);\n    font-weight: 500;\n    color: var(--jac-text-dark);\n    margin-bottom: 1rem;\n    line-height: 1.2;\n  }\n\n  .jacuzzi-premium-intro {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout *\/\n  .jacuzzi-premium-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 1.5rem;\n  }\n\n  \/* Individual Feature Cards *\/\n  .jacuzzi-feature-card {\n    background-color: var(--jac-card-bg);\n    padding: 2rem;\n    border-radius: 8px;\n    border: 1px solid transparent; \n    transition: all 0.3s ease;\n    position: relative;\n  }\n\n  .jacuzzi-feature-card:hover {\n    transform: translateY(-3px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.08);\n    border-color: var(--jac-border);\n  }\n\n  \/* Subtle accent line *\/\n  .jacuzzi-feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 2rem;\n    right: 2rem;\n    height: 3px;\n    background-color: var(--jac-text-dark);\n    opacity: 0.1;\n    border-radius: 0 0 4px 4px;\n  }\n\n  .jacuzzi-feature-title {\n    font-size: 1.25rem; \/* 20px *\/\n    font-weight: 500; \/* Maintained at 500 *\/\n    color: var(--jac-text-dark);\n    margin-bottom: 0.75rem;\n    margin-top: 0.5rem;\n  }\n\n  .jacuzzi-feature-desc {\n    font-size: 1.125rem; \/* 18px *\/\n    line-height: 1.6;\n    color: var(--jac-text-muted);\n    margin: 0;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .jacuzzi-premium-container {\n      padding: 1.5rem;\n    }\n    \n    .jacuzzi-feature-card {\n      padding: 1.5rem;\n    }\n  }\n\u003c\/style\u003e","brand":"Jacuzzi","offers":[{"title":"Brushed Grey","offer_id":56439325589887,"sku":null,"price":16499.0,"currency_code":"GBP","in_stock":true},{"title":"Smoked Ebony","offer_id":56439325622655,"sku":null,"price":16499.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/JHT_J-LX_Vignette_Opt1.jpg?v=1763630055"},{"product_id":"outdoor-living-reef-hot-tub","title":"Outdoor Living Reef Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-10 jbf-px-4 md:jbf-px-6\"\u003e \u003cdiv class=\"jbf-bg-[#E1F2EF] jbf-text-[#2A2322] jbf-p-6 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#ACD9D3] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e \u003cdiv class=\"jbf-text-center jbf-mb-10 jbf-max-w-2xl jbf-mx-auto\"\u003e \u003cimg loading=\"lazy\" height=\"45\" width=\"160\" class=\"jbf-inline-block jbf-mb-5 jbf-h-auto\" alt=\"Outdoor Living Logo\" src=\"https:\/\/www.outdoorlivinghottubs.co.uk\/cdn\/shop\/files\/logo-22_600x.png?v=1671519355\"\u003e \u003ch2 class=\"jbf-text-[clamp(1.75rem,4vw,2.2rem)] jbf-font-normal jbf-text-[#2A2322] jbf-mb-3 jbf-leading-tight\"\u003eEveryday Luxury. Compact Design.\u003c\/h2\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eThe Outdoor Living Reef is designed to bring the premium spa experience to smaller spaces without compromising on performance. Built to accommodate four bathers, this unit combines powerful hydrotherapy, industry-leading Balboa controls, and efficient heating to create the perfect retreat in your own garden.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-5\"\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab] jbf-group\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eRevitalising Hydrotherapy\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eExperience a targeted massage with 20 hydrotherapy jets. Strategically placed within the ergonomic seating, these jets allow you to customise pressure using the water diverter and air regulators, soothing tired muscles and promoting deep relaxation for up to four people.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eAll-Season Heating (40°C)\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eEnjoy your hot tub year-round with the robust 2.1KW heater system. Capable of maintaining a steady, soothing temperature up to 40°C, the Reef ensures your water is always ready for a warm embrace, regardless of the weather outside.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eOzone Water Purification\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eKeep your water pristine with minimal effort. The built-in ozone generator automatically releases ozone ions to neutralise bacteria and impurities. This advanced system reduces the need for harsh chemicals, ensuring a cleaner, softer soak.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eBalboa Control Interface\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eManage your spa experience with the industry-leading Balboa control panel. The user-friendly digital display gives you precise control over water temperature, filtration cycles, and jet operation, ensuring your settings are always perfect.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eThermal Efficiency\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eDesigned to retain heat and reduce running costs, the unit features a high-gloss acrylic shell backed by closed-cell foam insulation. This barrier effectively locks in warmth, protecting the internal components from the elements.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"jbf-bg-white jbf-p-6 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#40b7ab]\"\u003e \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-8 jbf-right-8 jbf-h-[3px] jbf-bg-[#40b7ab] jbf-opacity-30 jbf-rounded-b\"\u003e\n\n\n\u003c\/div\u003e \u003ch3 class=\"jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eAtmospheric LED Lighting\u003c\/h3\u003e \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003eSet the mood with the integrated underwater LED lighting system. Switch between vibrant colours to create the perfect ambience for your evening soak. The compact 2100mm x 1500mm footprint fits easily into most garden spaces.\u003c\/p\u003e \u003c\/div\u003e \u003c\/div\u003e \u003c\/div\u003e \u003c\/div\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":57078291759487,"sku":null,"price":2499.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/modern_OLDMXSMO.jpg?v=1764081528"},{"product_id":"outdoor-living-haven-hot-tub","title":"Outdoor Living Haven Hot Tub","description":"\u003ch6\u003eAll about me\u003c\/h6\u003e\n\u003cp\u003eThe Outdoor Haven is a spacious 5-person hot tub, designed to bring comfort and style to your outdoor space. Featuring a built-in lounger for full-body relaxation, this spa offers the perfect escape from everyday stress. With sleek LED lighting along the cabinet, it creates a sophisticated atmosphere for evening soaks.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eCompact and Comfortable\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eWith seating for up to five people, including a lounger for ultimate comfort, the Outdoor Haven is ideal for couples, families, or small gatherings. Its ergonomic seating and 46 powerful hydrotherapy jets provide a soothing massage experience, helping to ease muscle tension and promote relaxation.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003eEnhanced Features\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eThe Outdoor Haven comes equipped with high-end features, including multi-coloured LED lighting for a stylish, ambient glow and a wireless music system so you can enjoy your favourite tunes while you unwind. A built-in fountain feature enhances the spa-like atmosphere, while the Balboa control panel allows for easy temperature and jet adjustments. The ozone purification system ensures clean, clear water for a hassle-free experience.\u003c\/p\u003e\n\u003ch3\u003e\u003cstrong\u003ePerfect fit for your garden\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003eWhether you're looking to create a cosy retreat or enhance a larger outdoor space, the Outdoor Haven is designed to blend seamlessly into any setting. Combining practicality with premium performance, it’s the perfect investment in year-round relaxation.\u003c\/p\u003e","brand":"Outdoor Living","offers":[{"title":"Default Title","offer_id":57078338912639,"sku":null,"price":4499.0,"currency_code":"GBP","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Modern_-_OLDMSLES.jpg?v=1747132594"},{"product_id":"aquasolus-the-brook-hot-tub","title":"Aquasolus The Brook Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-8 md:jbf-py-10 jbf-px-3 md:jbf-px-6\"\u003e\n  \u003cdiv class=\"jbf-bg-[#DEDEDA] jbf-text-[#2A2322] jbf-p-5 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#C5C5C5] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e\n    \u003cdiv class=\"jbf-mb-8 md:jbf-mb-10 jbf-max-w-3xl jbf-mx-auto\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row sm:jbf-items-center jbf-gap-3 sm:jbf-gap-5 jbf-mb-4 md:jbf-mb-5\"\u003e\n        \u003cimg loading=\"lazy\" height=\"60\" width=\"200\" class=\"jbf-w-[140px] md:jbf-w-[200px] jbf-h-auto jbf-object-contain jbf-shrink-0\" alt=\"Aquasolus Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Aquasolus_Logo_2_1.png?v=1773240699\"\u003e\n        \u003ch2 class=\"jbf-text-[clamp(1.25rem,2.5vw,1.75rem)] jbf-font-normal jbf-text-[#2A2322] jbf-leading-tight jbf-text-left sm:jbf-border-l sm:jbf-border-[#C5C5C5] sm:jbf-pl-5\"\u003e\n          Serene Escapes. Designed for Relaxation.\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light jbf-text-left\"\u003e\n        Inspired by the gentle flow of a small stream, The Brook is crafted to provide a peaceful escape within your own home. Seating four people comfortably, it combines targeted hydrotherapy, plug-and-play convenience, and immersive audio to help you unwind after a busy day.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-4 md:jbf-gap-5\"\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eTargeted Hydrotherapy\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Experience immediate relief with 23 strategically placed hydrotherapy jets. The ergonomic seating and tactile diverter control allow you to personalise the water flow, ensuring optimum pressure exactly where your muscles need it most.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003ePlug \u0026amp; Play Convenience\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Avoid costly electrical hardwiring. Operating on a standard 13-amp power supply, The Brook is designed for effortless installation. Combined with a robust 2kW Gecko heater, it ensures your water reaches and maintains the perfect temperature with minimal fuss.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eInfinity Waterfall \u0026amp; Illumination\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Immerse yourself in a multi-sensory environment. The Infinity Waterfall provides a continuous, soothing acoustic backdrop, while the integrated LED lighting transforms evening dips into a visual delight, allowing you to match the ambience to your mood.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003ePremium Audio Experience\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Set the perfect tone without leaving the water. The built-in Bluetooth audio system delivers rich, clear sound directly through the spa, allowing you to seamlessly stream your favourite playlists or nature-inspired acoustics as you soak.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eUncompromising Build Quality\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Crafted from world-leading Aristech acrylic in a striking Sterling Silver finish, the shell is both highly durable and visually stunning. Managed via the intuitive Gecko K330 control panel, this hot tub is engineered to deliver unmatched reliability and value for years to come.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003eSculpted Comfort\u003c\/h3\u003e\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Every detail is designed with relaxation in mind. The beautifully sculpted headrests gently cradle your head and neck, ensuring maximum support so you can fully let go and allow the water to melt away any lingering tension.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Aquasolus","offers":[{"title":"Sterling Silver","offer_id":57111234412927,"sku":"BK-SSLG-V1","price":5999.0,"currency_code":"GBP","in_stock":true},{"title":"Odyssey","offer_id":57111234445695,"sku":"BK-OYLG-V1","price":5999.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Candor-9-Mock-Up-AI-Gen-RGB-Copy-900x900.jpg?v=1773241319"},{"product_id":"aquasolus-the-cypress-hot-tub","title":"Aquasolus The Cypress Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-8 md:jbf-py-10 jbf-px-3 md:jbf-px-6\"\u003e\n  \u003cdiv class=\"jbf-bg-[#DEDEDA] jbf-text-[#2A2322] jbf-p-5 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#C5C5C5] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e\n    \n    \u003cdiv class=\"jbf-mb-8 md:jbf-mb-10 jbf-max-w-3xl jbf-mx-auto\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row sm:jbf-items-center jbf-gap-3 sm:jbf-gap-5 jbf-mb-4 md:jbf-mb-5\"\u003e\n        \u003cimg loading=\"lazy\" height=\"60\" width=\"200\" class=\"jbf-w-[140px] md:jbf-w-[200px] jbf-h-auto jbf-object-contain jbf-shrink-0\" alt=\"Aquasolus Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Aquasolus_Logo_2_1.png?v=1773240699\"\u003e\n        \n        \u003ch2 class=\"jbf-text-[clamp(1.25rem,2.5vw,1.75rem)] jbf-font-normal jbf-text-[#2A2322] jbf-leading-tight jbf-text-left sm:jbf-border-l sm:jbf-border-[#C5C5C5] sm:jbf-pl-5\"\u003e\n          Inspired by Nature. Designed for Serenity.\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light jbf-text-left\"\u003e\n        Inspired by the calming presence of the cypress tree, the Cypress offers a tranquil retreat designed for wellness and relaxation. With space for six people, a luxurious lounger, and thoughtfully placed hydrotherapy jets, it creates the perfect environment to unwind, reconnect, and restore both body and mind.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-4 md:jbf-gap-5\"\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Spacious Six-Person Design\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Designed to comfortably accommodate up to six people, the Cypress features five sculpted seats and a luxurious lounger. Its spacious layout creates the ideal setting for relaxing solo, unwinding with family, or enjoying a soothing soak with friends.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Advanced Hydrotherapy System\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Experience soothing relief from 26 hydrotherapy jets carefully positioned to deliver targeted massage across key muscle groups. With diverter control allowing you to direct the water flow to specific seats, each soak can be tailored to your preferred intensity and comfort.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Plug \u0026amp; Play Simplicity\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Powered by a convenient 13-amp supply, the Cypress is designed for effortless installation without complicated electrical work. Paired with a reliable Gecko control system and efficient 2 kW heater, it ensures consistent performance and perfectly heated water every time.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Immersive Ambience\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Create a multi-sensory spa experience with the elegant Infinity Waterfall Fountain and customisable LED lighting. The gentle cascade of water combined with atmospheric illumination transforms every soak into a peaceful, calming escape.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Audio Experience\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          The integrated Bluetooth sound system lets you stream your favourite music directly into your spa environment. Whether it’s relaxing ambient sounds or your favourite playlist, every session becomes a personalised escape.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Materials \u0026amp; Craftsmanship\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Constructed using world-leading Aristech acrylic in a refined Sterling Silver finish, the Cypress is built for durability and lasting beauty. Combined with AquaSolus engineering and ergonomic headrests, it delivers both luxurious comfort and dependable performance.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Aquasolus","offers":[{"title":"Sterling Silver","offer_id":57114412253567,"sku":"CY-SSLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true},{"title":"Odyssey","offer_id":57114412286335,"sku":"CY-OYLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Vernus-Overhead-View-AI-Gen-RGB-Copy-1-900x900.jpg?v=1773309701"},{"product_id":"aquasolus-the-zephyr-hot-tub","title":"Aquasolus The Zephyr Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-8 md:jbf-py-10 jbf-px-3 md:jbf-px-6\"\u003e\n  \u003cdiv class=\"jbf-bg-[#DEDEDA] jbf-text-[#2A2322] jbf-p-5 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#C5C5C5] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e\n\n    \u003cdiv class=\"jbf-mb-8 md:jbf-mb-10 jbf-max-w-3xl jbf-mx-auto\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row sm:jbf-items-center jbf-gap-3 sm:jbf-gap-5 jbf-mb-4 md:jbf-mb-5\"\u003e\n        \u003cimg loading=\"lazy\" height=\"60\" width=\"200\" class=\"jbf-w-[140px] md:jbf-w-[200px] jbf-h-auto jbf-object-contain jbf-shrink-0\" alt=\"Aquasolus Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Aquasolus_Logo_2_1.png?v=1773240699\"\u003e\n\n        \u003ch2 class=\"jbf-text-[clamp(1.25rem,2.5vw,1.75rem)] jbf-font-normal jbf-text-[#2A2322] jbf-leading-tight jbf-text-left sm:jbf-border-l sm:jbf-border-[#C5C5C5] sm:jbf-pl-5\"\u003e\n          Light, Refreshing Relaxation.\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light jbf-text-left\"\u003e\n        Inspired by the gentle touch of a refreshing breeze, the Zephyr creates a calming sanctuary designed for relaxation and renewal. With seating for five people, two luxurious loungers, and invigorating hydrotherapy jets, it offers the perfect environment to unwind, recharge, and experience complete tranquillity.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-4 md:jbf-gap-5\"\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Spacious Five-Person Layout\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Designed for comfort and versatility, the Zephyr accommodates up to five people with three supportive seats and two relaxing loungers. Its spacious layout allows everyone to enjoy their own dedicated hydrotherapy position for a truly relaxing soak.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Invigorating Hydrotherapy Jets\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Equipped with 26 powerful hydrotherapy jets, the Zephyr delivers a revitalising massage designed to ease muscle tension and promote relaxation. The diverter control allows you to adjust the water flow, ensuring every seat delivers your preferred level of intensity.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Plug \u0026amp; Play Convenience\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Powered by a standard 13-amp supply, the Zephyr is designed for straightforward installation without the need for complex electrical work. Paired with a dependable Gecko K330 control panel and efficient 2 kW heater, it ensures reliable performance and consistent water temperature.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Waterfall \u0026amp; Ambient Lighting\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Enhance the atmosphere with the elegant Infinity Waterfall Fountain and customisable LED lighting. The gentle cascade of water combined with soft illumination creates a peaceful ambience that transforms evening soaks into a truly relaxing experience.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Audio Experience\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          The integrated Bluetooth audio system allows you to stream your favourite music directly into your spa environment. Whether you prefer calming melodies or uplifting playlists, every soak becomes a personalised moment of relaxation.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Materials \u0026amp; Craftsmanship\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Built with world-leading Aristech acrylic in a sleek Sterling Silver finish, the Zephyr combines durability with refined design. Ergonomic headrests provide superior comfort, ensuring every soak delivers both luxury and long-lasting performance.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Aquasolus","offers":[{"title":"Sterling Silver","offer_id":57116013396351,"sku":"ZP-SSLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true},{"title":"Odyssey","offer_id":57116013429119,"sku":"ZP-OYLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Natura-Overhead-View-Mock-Up-AI-Gen-RGB-Copy-900x900.jpg?v=1773320374"},{"product_id":"aquasolus-the-cove-hot-tub","title":"Aquasolus The Cove Hot Tub","description":"\u003cdiv class=\"jbf-w-full jbf-bg-white jbf-py-8 md:jbf-py-10 jbf-px-3 md:jbf-px-6\"\u003e\n  \u003cdiv class=\"jbf-bg-[#DEDEDA] jbf-text-[#2A2322] jbf-p-5 md:jbf-p-10 jbf-rounded-[5px] jbf-max-w-[1000px] jbf-mx-auto jbf-border jbf-border-[#C5C5C5] jbf-shadow-[0_2px_5px_rgba(0,0,0,0.05),0_10px_25px_rgba(0,0,0,0.07)]\"\u003e\n\n    \u003cdiv class=\"jbf-mb-8 md:jbf-mb-10 jbf-max-w-3xl jbf-mx-auto\"\u003e\n      \u003cdiv class=\"jbf-flex jbf-flex-col sm:jbf-flex-row sm:jbf-items-center jbf-gap-3 sm:jbf-gap-5 jbf-mb-4 md:jbf-mb-5\"\u003e\n        \u003cimg loading=\"lazy\" height=\"60\" width=\"200\" class=\"jbf-w-[140px] md:jbf-w-[200px] jbf-h-auto jbf-object-contain jbf-shrink-0\" alt=\"Aquasolus Logo\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Aquasolus_Logo_2_1.png?v=1773240699\"\u003e\n\n        \u003ch2 class=\"jbf-text-[clamp(1.25rem,2.5vw,1.75rem)] jbf-font-normal jbf-text-[#2A2322] jbf-leading-tight jbf-text-left sm:jbf-border-l sm:jbf-border-[#C5C5C5] sm:jbf-pl-5\"\u003e\n          Your Personal Oasis of Calm.\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light jbf-text-left\"\u003e\n        Inspired by the shelter and tranquility of a secluded cove, the Cove offers a peaceful retreat where you can relax and recharge. With spacious seating for seven people and soothing hydrotherapy jets, it creates a welcoming environment perfect for shared moments or quiet personal relaxation.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"jbf-grid jbf-grid-cols-1 jbf-gap-4 md:jbf-gap-5\"\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Spacious Seven-Person Seating\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Designed with seven ergonomic seats, the Cove provides generous space for family and friends to relax together. Its open layout encourages social soaking while ensuring every seat offers a comfortable hydrotherapy experience.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Powerful Hydrotherapy Jets\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Featuring 27 hydrotherapy jets, the Cove delivers a soothing and restorative massage that helps ease tension and promote relaxation. With the diverter control, you can easily customise the water flow to achieve the perfect balance of comfort and intensity.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Plug \u0026amp; Play Simplicity\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Operating on a standard 13-amp power supply, the Cove offers convenient installation without complex electrical work. Combined with the dependable Gecko K330 control system and efficient 2 kW heater, it delivers reliable performance and effortless temperature control.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Waterfall \u0026amp; Ambient Lighting\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          The Infinity Waterfall Fountain introduces the soothing sound of flowing water, while integrated LED lighting enhances the spa’s atmosphere. Together they create a relaxing, multi-sensory environment that transforms each soak into a calming escape.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Audio Experience\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Stream your favourite music effortlessly with the integrated Bluetooth audio system. Crisp, clear sound enhances your spa experience, allowing you to unwind to calming melodies or energising playlists while you soak.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"jbf-bg-white jbf-p-5 md:jbf-p-8 jbf-rounded-[5px] jbf-relative jbf-transition-all jbf-duration-300 hover:jbf-translate-y-[-3px] hover:jbf-shadow-[0_8px_20px_rgba(0,0,0,0.08)] hover:jbf-border-b hover:jbf-border-[#35B6A9] jbf-group\"\u003e\n        \u003cdiv class=\"jbf-absolute jbf-top-0 jbf-left-6 md:jbf-left-8 jbf-right-6 md:jbf-right-8 jbf-h-[3px] jbf-bg-[#35B6A9] jbf-opacity-30 jbf-rounded-b\"\u003e\u003c\/div\u003e\n\n        \u003ch3 class=\"jbf-text-[1.2rem] md:jbf-text-[1.25rem] jbf-font-normal jbf-text-[#2A2322] jbf-mb-2 jbf-mt-1\"\u003e\n          Premium Materials \u0026amp; Craftsmanship\n        \u003c\/h3\u003e\n\n        \u003cp class=\"jbf-text-[1rem] md:jbf-text-[1.125rem] jbf-leading-relaxed jbf-text-[#555555] jbf-font-light\"\u003e\n          Built from world-leading Aristech acrylic in a striking Sterling Silver finish, the Cove combines durability with elegant design. Ergonomic headrests and AquaSolus engineering ensure long-lasting quality and a consistently comfortable spa experience.\n        \u003c\/p\u003e\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e","brand":"Aquasolus","offers":[{"title":"Sterling Silver","offer_id":57116362768767,"sku":"CV-SSLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true},{"title":"Odyssey","offer_id":57116362801535,"sku":"CV-OYLG-V1","price":6299.0,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0147\/1062\/files\/Puritas-Overhead-View-Ai-Gen-RGB-Copy-900x900.jpg?v=1773322151"}],"url":"https:\/\/www.outdoorlivinghottubs.co.uk\/collections\/hot-tubs\/south-sea-spas.oembed","provider":"Outdoor Living","version":"1.0","type":"link"}