It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://uk-pilatesreformers.co.uk

  1. <!doctype html>
  2. <html class="no-js" lang="en">
  3. <!--[if IE 8]><html class="no-js lt-ie9" lang="en"> <![endif]-->
  4. <!--[if IE 9 ]><html class="ie9 no-js"> <![endif]-->
  5. <!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
  6. <head>
  7.  <!-- Loft Version 2.3.7 -->
  8.  <!-- Basic page needs ================================================== -->
  9.  <meta charset="utf-8">
  10.  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11.  <meta name="viewport" content="width=device-width,initial-scale=1">
  12.  <meta name="theme-color" content="#292929">  
  13.  <link rel="canonical" href="https://uk-pilatesreformers.co.uk/">
  14.  
  15.  
  16.  <link rel="shortcut icon" href="//uk-pilatesreformers.co.uk/cdn/shop/files/UK_Pilats_Reformers-Favicon.png?crop=center&height=32&v=1709064534&width=32" type="image/png">
  17.  
  18.  
  19.  <!-- Title and description ================================================== -->
  20.  <title>
  21.    UK Pilates Reformers
  22.  </title>
  23.  
  24.  
  25.  <meta name="description" content="Transform your fitness routine with our premium UK Pilates reformers! Discover a wide selection of high-quality equipment designed to enhance strength, flexibility, and overall wellness. Shop now for expertly crafted reformers, accessories, and more, and embark on your journey to a healthier, happier you!">
  26.  
  27.  
  28.  <script>
  29.  /*! loadJS: load a JS file asynchronously. [c]2014 @scottjehl, Filament Group, Inc. (Based on http://goo.gl/REQGQ by Paul Irish). Licensed MIT */
  30.  (function( w ){
  31.    var loadJS = function( src, cb, ordered ){
  32.      "use strict";
  33.      var tmp;
  34.      var ref = w.document.getElementsByTagName( "script" )[ 0 ];
  35.      var script = w.document.createElement( "script" );
  36.  
  37.      if (typeof(cb) === 'boolean') {
  38.        tmp = ordered;
  39.        ordered = cb;
  40.        cb = tmp;
  41.      }
  42.  
  43.      script.src = src;
  44.      script.async = !ordered;
  45.      ref.parentNode.insertBefore( script, ref );
  46.  
  47.      if (cb && typeof(cb) === "function") {
  48.        script.onload = cb;
  49.      }
  50.      return script;
  51.    };
  52.    // commonjs
  53.    if( typeof module !== "undefined" ){
  54.      module.exports = loadJS;
  55.    }
  56.    else {
  57.      w.loadJS = loadJS;
  58.    }
  59.  }( typeof global !== "undefined" ? global : this ));
  60.  
  61.  /*! loadCSS. [c]2020 Filament Group, Inc. MIT License */
  62. (function(w){
  63. "use strict";
  64. /* exported loadCSS */
  65. var loadCSS = function( href, before, media, attributes ){
  66.  // Arguments explained:
  67.  // `href` [REQUIRED] is the URL for your CSS file.
  68.  // `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet <link> before
  69.  // By default, loadCSS attempts to inject the link after the last stylesheet or script in the DOM. However, you might desire a more specific location in your document.
  70.  // `media` [OPTIONAL] is the media type or query of the stylesheet. By default it will be 'all'
  71.  // `attributes` [OPTIONAL] is the Object of attribute name/attribute value pairs to set on the stylesheet's DOM Element.
  72.  var doc = w.document;
  73.  var ss = doc.createElement( "link" );
  74.  var ref;
  75.  if( before ){
  76.    ref = before;
  77.  }
  78.  else {
  79.    var refs = ( doc.body || doc.getElementsByTagName( "head" )[ 0 ] ).childNodes;
  80.    ref = refs[ refs.length - 1];
  81.  }
  82.  
  83.  var sheets = doc.styleSheets;
  84.  // Set any of the provided attributes to the stylesheet DOM Element.
  85.  if( attributes ){
  86.    for( var attributeName in attributes ){
  87.      if( attributes.hasOwnProperty( attributeName ) ){
  88.        ss.setAttribute( attributeName, attributes[attributeName] );
  89.      }
  90.    }
  91.  }
  92.  ss.rel = "stylesheet";
  93.  ss.href = href;
  94.  // temporarily set media to something inapplicable to ensure it'll fetch without blocking render
  95.  ss.media = "only x";
  96.  
  97.  // wait until body is defined before injecting link. This ensures a non-blocking load in IE11.
  98.  function ready( cb ){
  99.    if( doc.body ){
  100.      return cb();
  101.    }
  102.    setTimeout(function(){
  103.      ready( cb );
  104.    });
  105.  }
  106.  // Inject link
  107.    // Note: the ternary preserves the existing behavior of "before" argument, but we could choose to change the argument to "after" in a later release and standardize on ref.nextSibling for all refs
  108.    // Note: `insertBefore` is used instead of `appendChild`, for safety re: http://www.paulirish.com/2011/surefire-dom-element-insertion/
  109.  ready( function(){
  110.    ref.parentNode.insertBefore( ss, ( before ? ref : ref.nextSibling ) );
  111.  });
  112.  // A method (exposed on return object for external use) that mimics onload by polling document.styleSheets until it includes the new sheet.
  113.  var onloadcssdefined = function( cb ){
  114.    var resolvedHref = ss.href;
  115.    var i = sheets.length;
  116.    while( i-- ){
  117.      if( sheets[ i ].href === resolvedHref ){
  118.        return cb();
  119.      }
  120.    }
  121.    setTimeout(function() {
  122.      onloadcssdefined( cb );
  123.    });
  124.  };
  125.  
  126.  function loadCB(){
  127.    if( ss.addEventListener ){
  128.      ss.removeEventListener( "load", loadCB );
  129.    }
  130.    ss.media = media || "all";
  131.  }
  132.  
  133.  // once loaded, set link's media back to `all` so that the stylesheet applies once it loads
  134.  if( ss.addEventListener ){
  135.    ss.addEventListener( "load", loadCB);
  136.  }
  137.  ss.onloadcssdefined = onloadcssdefined;
  138.  onloadcssdefined( loadCB );
  139.  return ss;
  140. };
  141. // commonjs
  142. if( typeof exports !== "undefined" ){
  143.  exports.loadCSS = loadCSS;
  144. }
  145. else {
  146.  w.loadCSS = loadCSS;
  147. }
  148. }( typeof global !== "undefined" ? global : this ));
  149.  
  150.  window.theme = window.theme || {};
  151.  window.theme.scripts = {
  152.    slideshow: {
  153.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_slideshow.js?v=134172075328892515171732721637",
  154.      init: ''
  155.    },
  156.    featured_collection: {
  157.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_featured_collection.js?v=77195575728242050541732721637",
  158.      init: ''
  159.    },
  160.    gallery: {
  161.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_gallery.js?v=88572516005422783541732721637",
  162.      init: ''
  163.    },
  164.    banner: {
  165.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_banner.js?v=88326669242509724581732721637",
  166.      init: ''
  167.    },
  168.    logolist: {
  169.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_logolist.js?v=109539932184444943651732721637",
  170.      init: ''
  171.    },
  172.    blog: {
  173.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_blog.js?v=92213705879922169921732721637",
  174.      init: ''
  175.    },
  176.    recommendations: {
  177.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_recommendations.js?v=92321737222622728591732721637",
  178.      init: ''
  179.    },
  180.    // product_page: {
  181.    //   src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_section_product.js?805",
  182.    //   init: ''
  183.    // },
  184.    product_slider: {
  185.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_product_slider.js?v=24017511744982364671732721637",
  186.      init: ''
  187.    },
  188.    image_zoom: {
  189.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_image_zoom.js?v=178993938311533284321732721637",
  190.      init: ''
  191.    },
  192.    model_viewer: {
  193.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_model_viewer.js?v=154779106637219886801732721637",
  194.      init: ''
  195.    },
  196.    newsletter_popup: {
  197.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_newsletter_popup.js?v=184342474739091174981732721637",
  198.      init: ''
  199.    },
  200.    predictive_search: {
  201.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_predictive_search.js?v=323809369123337331732721637",
  202.      init: ''
  203.    },
  204.    quickview: {
  205.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_quickview.js?v=36542766039068989171732721637",
  206.      init: ''
  207.    },
  208.    mobile_menu: {
  209.      src: "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_feature_mobile_menu.js?v=74695280464741136651732721637",
  210.      init: ''
  211.    },
  212.    "scrolling-text":{
  213.      src:"",
  214.      init: ""
  215.    }
  216.  }
  217. </script>
  218.  
  219.  <style data-shopify>
  220. .wrapper {
  221.      max-width: var(--wrapper--full);
  222.      margin: 0 auto;
  223.      padding: 0 4vw;
  224.    }.wrapper::after, .wrapper__text-templates::after {
  225.    content: '';
  226.    display: table;
  227.    clear: both;
  228.  }
  229.  .wrapper__text-templates{
  230.    zoom: 1;
  231.    max-width: var(--wrapper--contained);
  232.    margin: 0 auto;
  233.    padding: 0 4vw;
  234.  }
  235.  #preloader {
  236.    position: fixed;
  237.    top:0;
  238.    left:0;
  239.    right:0;
  240.    bottom:0;
  241.    background-color:var(--color_body_bg);
  242.    z-index:99999;
  243.    display: flex;
  244.    justify-content: center;
  245.    align-items: center;
  246.  }
  247.  </style>
  248.  
  249.  
  250. <link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
  251.  
  252.  <!-- Helpers ================================================== -->
  253.  
  254. <style data-shopify>
  255. @font-face {
  256.  font-family: Poppins;
  257.  font-weight: 400;
  258.  font-style: normal;
  259.  font-display: swap;
  260.  src: url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n4.934accbf9f5987aa89334210e6c1e9151f37d3b6.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=c84c4e9a177f8200f136b52c0827428194ab19b9857e8ccb28e779458098a38f") format("woff2"),
  261.       url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n4.ee28d4489eaf5de9cf6e17e696991b5e9148c716.woff?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=c0a71f7314a6df14f24bd04e656c68af7259c9a074e49c25b243cb294dee099c") format("woff");
  262. }
  263.  
  264.  @font-face {
  265.  font-family: Poppins;
  266.  font-weight: 700;
  267.  font-style: normal;
  268.  font-display: swap;
  269.  src: url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n7.58aca33913fc6666cc9e8a53f6b16ec5c3c05a3f.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=89f9547c1557b0c39f8db4edfe9e3d5c2ec9adbcc0e84fdb81c5dcf402eeba11") format("woff2"),
  270.       url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n7.59016f931f3f39434d2e458fba083eb7db7a07d9.woff?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=12404f139100742fc379c85d260c0fc64a24ce5d01ba9b690fee2fce62e436b7") format("woff");
  271. }
  272.  
  273.  @font-face {
  274.  font-family: Poppins;
  275.  font-weight: 500;
  276.  font-style: normal;
  277.  font-display: swap;
  278.  src: url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n5.25334cd7ff48c81cfd51a6bc5a81d92a1b4d4501.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=ca22e5ce49bf7593af64a1aedcfad4906fa234b75ba3f99e3040d36098b6bf19") format("woff2"),
  279.       url("//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n5.fc8eae64d8f1b5d2b8c42b45ddc0749aff4750a6.woff?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=0546a01ee3f2568c5131f3910b46b379d000cdba1b8f815b46b0647b197e8c34") format("woff");
  280. }
  281.  :root {
  282.  /* Base units */
  283.    --padding-unit-xl: 80px;
  284.    --padding-unit-l: 60px;
  285.    --padding-unit-m: 45px;
  286.    --padding-unit-s: 30px;
  287.    --padding-unit-xs: 15px;
  288.  
  289.  /* Padding Combos */
  290.  --padding-standard: 45px 60px;
  291.  
  292.  /* Wrapper options */
  293.  --wrapper--contained: 1400px;
  294.  --wrapper--full: 1920px;
  295.  
  296.  
  297.  /*================ Typography ================*/
  298.      /* Fonts */
  299.      --headingFontStack: Poppins, sans-serif;
  300.      --headingFontWeight: 700;
  301.      --headingFontStyle: normal;
  302.      --headerLineHeight: 1.3em;
  303.        
  304.      --subheaderFontStack: Poppins, sans-serif;
  305.      --subheaderFontWeight: 500;
  306.      --subheaderFontStyle: normal;
  307.  
  308.      --bodyFontStack: Poppins, sans-serif;
  309.      --bodyFontWeight: 400;
  310.      --bodyFontStyle: normal;
  311.  
  312.      --bodyFontWeight--bold: 700;
  313.  
  314.      --ajax-loader-gif: url('//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/ajax-loader.gif?v=166394360676579700211732721636');
  315.  
  316.  
  317.      /* Font Size */
  318.      --baseSizeMain: 16px;
  319.      --nav-font-size: 1rem;    
  320.      --input_style: none;
  321.      --baseFontSize: 1rem;
  322.  
  323.      --header1: 2.441rem;
  324.      --header2: 1.953rem;
  325.      --header3: 1.25rem;
  326.      --header4: 1.25rem;
  327.      --header5: 1rem;
  328.      --header6: 0.8rem;
  329.      --smallDetail: 0.9rem;
  330.      --smallerDetail: 0.7rem;
  331.  
  332.      --baseLineHeight: 1.5em;
  333.  
  334.      --header2-mobile: 1.728rem;
  335.  
  336.      --font-heading-scale: 1;
  337.      --font-body-scale: 1;
  338.  
  339.      /* Collection */
  340.      --collection-product-overlay: 0.25;
  341.  
  342.      /* SVG */
  343.      --lifestyle1-svg: url(//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/lifestyle-1.svg?v=8338176680261399321732721636);
  344.  
  345.      /* Placeholder Images */
  346.      --mobile-hero-img: url(//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/mobile-hero.jpg?805);  
  347.      --placeholder-blog: url(//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/placeholder-blog.png?v=6514859711069742851732721636);  
  348.      
  349.      /* Logo */
  350.      --logo_max_width: 150;
  351.  
  352.      /*================ Colors ================*/
  353.  
  354.      --white: #fff;
  355.      --black: #000;
  356.      --color_primary: #292929;
  357.      --color_primary_subdued: rgba(41, 41, 41, 0.1);
  358.      --color_primary_background_active: rgba(41, 41, 41, 0.8);
  359.      --color_primary_placeholder: rgba(41, 41, 41, 0.08);
  360.      --color_accent: #a3a3a3;
  361.      --color_accent_subdued: rgba(163, 163, 163, 0.8);
  362.      --color_secondary_header: #ffffff;
  363.      --color_secondary_accent: #012169;
  364.      --color_secondary_accent_inverse: #ffffff;
  365.      --color_secondary_accent_subdued: rgba(1, 33, 105, 0.2);
  366.      --color_secondary_accent_80: rgba(1, 33, 105, 0.8);
  367.      --select_dropdown_color: rgba(0,0,0,0);
  368.      --color_article_social_link: #232323;
  369.  
  370.      --colorTextBody: #282828;
  371.      --color_body_text_rgb: #282828;
  372.      --color_body_text_subdued: rgba(40, 40, 40, 0.1);
  373.      --colorPrimary: #292929;
  374.      --color_primary_rgb: #292929;
  375.      --color-base-text: 40, 40, 40;
  376.      --colorLink: #a3a3a3;
  377.      --card_bg: #ffffff;
  378.      --card-bg-rgb: 255, 255, 255;
  379.      --card-bg-color-alpha-8: rgba(255, 255, 255, 0.84);
  380.      --card_shadow: rgba(41, 41, 41, 0.1);
  381.      /* --card_shadow_size: 0px 6px 15px 0px; */
  382.      --card_shadow_size: -1px 14px 50px -10px;
  383.  
  384.  
  385.      --dropdown_shadow: -6px 27px 19px -10px rgba(0,0,0,0.10);
  386.  
  387.      /* Accessible Colors */
  388.      --input_active_background: #ECECEC;
  389.      --input_active_text: #282828;
  390.      --input_active_placeholder: #f35454;
  391.  
  392.      /* Collection filter colors */
  393.      --filter_group_background_rgb: rgb(255, 255, 255);
  394.      --filter_group_background: #fff;
  395.      --filter_group_content: #282828;
  396.      --filter_group_content_rgb: rgba(40, 40, 40, 0.2);
  397.  
  398.      --test_filter_background: rgb(40, 40, 40);
  399.  
  400.      /* Header Colors */
  401.      --promo_text: #ffffff;
  402.      --promo_bg: #282828;
  403.      --promo_text_link: #ffffff;
  404.      --mega_dropdown_bg: #ffffff;
  405.      --mega_dropdown_bg_alpha: rgba(255, 255, 255, 0.2);
  406.      --mega_dropdown_bg_alpha_0: rgba(255, 255, 255, 0);
  407.      --mega_dropdown_links: #292929;
  408.      --mega_dropdown_links_alpha: rgba(41, 41, 41, 0.05);
  409.      --mega_dropdown_links_8: rgba(255, 255, 255, 0.8);
  410.      --color_mobile_links: #292929;
  411.      --color_mobile_links_border: rgba(41, 41, 41, 0.8);
  412.      --color_mobile_bg: #ffffff;
  413.      --color_newsletter_content: #292929;
  414.      --color_newsletter_content_subdued: rgba(41, 41, 41, 0.2);
  415.      --color_newsletter_background: #ffffff;
  416.      --color_newsletter_border: #e2e2e2;
  417.      --search_border_color: #e6e6e6;
  418.      --header_crossborder_content: rgb(41, 41, 41);
  419.      --header_crossborder_background: #ececec;
  420.      --mobile_crossborder_content: rgb(41, 41, 41);
  421.      --mobile_crossborder_background: #ececec;
  422.    
  423.      /* Navbar Colors*/
  424.      --navbar_background_color: #ffffff;
  425.      --navbar_link_color: #292929;
  426.      --navbar_link_color_alpha: rgba(41, 41, 41, 0.2);
  427.  
  428.      /* Search Popup Colors */
  429.      --search_popup_bg: #ececec;
  430.      --search_popup_input_bg: #FFFFFF;
  431.      --search_popup_input_text: #282828;
  432.      --search_popup_body_text: #282828;
  433.      --search_popup_product_background: #ffffff;
  434.      --search_product_hover: #f8f8f8;
  435.      --search_overlay_color: rgba(255, 255, 255, 0.2);
  436.      
  437.      /* Footer Colors*/
  438.      --color_subfooter_text: #ffffff;
  439.      --footer_crossborder_content: #ffffff;
  440.      --footer_crossborder_background: rgba(0,0,0,0);
  441.      --color_footer_text: #ffffff;
  442.      --color_footer_bg: #292929;
  443.      --color_subfooter_bg: #292929;
  444.      --color_footer_social_link: #012169;
  445.      --color_footer_social_link_mobile: #012169;
  446.  
  447.      /* Ad Colors*/
  448.      --collection_ad_color: ;
  449.      --collection-ad-color-background: #252525;
  450.  
  451.      /* Body Colors*/
  452.      --color_body_bg: #f8f8f8;
  453.      --color_body_bg_5: rgba(248, 248, 248, 0.05);
  454.      --color_body_bg_25: rgba(248, 248, 248, 0.25);
  455.      --color_body_bg_secondary: #ffffff;
  456.      --color_body_bg_tertiary: #f5eed2;
  457.      --color_body_text: #282828;
  458.      --color_body_text_05: rgba(40, 40, 40, 0.05);
  459.      --color_body_text_25: rgba(40, 40, 40, 0.25);
  460.      --color_body_text_55: rgba(40, 40, 40, 0.55);
  461.      --color_body_input_bg: rgba(40, 40, 40, 0.05);
  462.      --color_body_text_border: rgba(40, 40, 40, 0.6);
  463.      --color_body_text-80: rgba(40, 40, 40, 0.8);
  464.      --color_body_text-90: rgba(40, 40, 40, 0.95);
  465.      --color_body_text-97: rgba(40, 40, 40, 0.97);
  466.      
  467.      --color_border:  rgba(40, 40, 40, 0.8);
  468.  
  469.      /* Buttons */
  470.      --button_border_radius: 0px;
  471.      --button_text_transform: uppercase;
  472.      --btn-style: ;
  473.      --button_case: true;  
  474.      --btn_primary_text_color: #ffffff;
  475.      --btn_background_color: #292929;
  476.      --mobile_top_button_text: #292929;
  477.      --color_btn_background_hover: #232323;
  478.      --color_btn_text_hover: #ffffff;
  479.  
  480.      /* Swatch Colors */
  481.      --color_swatches_btn: #ffffff;
  482.      --color_swatches_text: #282828;
  483.      --color_swatches_border: #f2eded;
  484.  
  485.      /* Badges */
  486.      --sold_badge_color: #282828;
  487.      --sold_badge_color_text: #ffffff;
  488.      --sale_badge_color: #012169;
  489.      --sale_badge_color_text: #ffffff;
  490.  
  491.      /* Event colors*/
  492.      --cart_error: #ff6d6d;
  493.      --cart_success: #012169;
  494.  
  495.      /* Standard elements */
  496.      --article_gap: 5vw;
  497.      --article_text_width: 75%;
  498.      --article_sidebar_width: 25%;
  499.      
  500.      /* Standard Dawn Colors */
  501.      --color-background: var(--filter_group_background);
  502.      --color-foreground: 40, 40, 40;
  503.  
  504.      /* Standard Dawn Animations */
  505.      --duration-short: 100ms;
  506.      --duration-default: 200ms;
  507.      --duration-long: 500ms;
  508.  }
  509.  
  510.  @media screen and (max-width: 1399px){
  511.    :root{
  512.      --article_text_width: 100%;
  513.      --article_sidebar_width: 100%;
  514.    }
  515.  }
  516.  
  517. </style>
  518.  <!-- /snippets/resource__social-meta-tags.liquid -->
  519.  
  520.  
  521.  
  522.  
  523. <meta property="og:site_name" content="UK Pilates Reformers">
  524. <meta property="og:url" content="https://uk-pilatesreformers.co.uk/">
  525. <meta property="og:title" content="UK Pilates Reformers">
  526. <meta property="og:type" content="website">
  527. <meta property="og:description" content="Transform your fitness routine with our premium UK Pilates reformers! Discover a wide selection of high-quality equipment designed to enhance strength, flexibility, and overall wellness. Shop now for expertly crafted reformers, accessories, and more, and embark on your journey to a healthier, happier you!">
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534.  
  535. <meta name="twitter:card" content="summary_large_image">
  536. <meta name="twitter:title" content="UK Pilates Reformers">
  537. <meta name="twitter:description" content="Transform your fitness routine with our premium UK Pilates reformers! Discover a wide selection of high-quality equipment designed to enhance strength, flexibility, and overall wellness. Shop now for expertly crafted reformers, accessories, and more, and embark on your journey to a healthier, happier you!">
  538.  
  539.  
  540.  <!-- Initial CSS ================================================== -->
  541.  <style data-shopify>
  542. .site-header {
  543.    background-color: #ffffff;
  544. }
  545. .pre-header__wrapper {
  546.    display: grid;
  547.    max-width: 1920px;
  548.    margin: 0 auto;
  549.    padding: 10px 4%;
  550.    row-gap: 15px;
  551. }
  552. .pre-header__wrapper {
  553.    grid-template-columns: minmax(200px, max-content) auto;
  554. }
  555. .pre-header__wrapper .crossborder__form {
  556.    justify-content: flex-end;
  557. }
  558. .pre-header__links {
  559.    display: flex;
  560.    flex-wrap: wrap;
  561.    align-items: center;
  562.    justify-content: flex-start;
  563. }
  564. .pre-header__single-link {
  565.    font-size: 0.9rem;
  566.    padding-right: 30px;
  567. }
  568. .header__content-wrapper {
  569.    width: 100%;
  570.    z-index: 5000;
  571.    position: relative;
  572. }
  573. .site-header__logo--left {
  574.    margin: 0;
  575. }
  576. @media screen and (min-width: 769px) {
  577.    .header__wrapper {
  578.        column-gap: 10px;
  579.    }
  580.    .header__wrapper--left {
  581.        /*grid-template-columns: minmax(150px, 300px) auto minmax(150px, 300px);*/
  582.    }
  583.    .header__wrapper--left-below {
  584.        grid-template-columns: 1fr 1fr;
  585.    }
  586.    .header__wrapper--left-below .header__nav {
  587.        grid-row-start: 2;
  588.        grid-column-end: span 3;
  589.    }
  590.    .header__wrapper--center {
  591.        grid-template-columns: 1fr minmax(100px, min-content) 1fr;
  592.    }
  593.    .header__wrapper--center .header__logo {
  594.        grid-column: 2;
  595.        grid-row: 1;
  596.    }
  597.    .header__wrapper--center .header__nav {
  598.        grid-column: 1;
  599.        grid-row: 1;
  600.    }
  601.    .header-icons {
  602.        grid-column: 3;
  603.        grid-row: 1;
  604.    }
  605.    .header__wrapper--center-below {
  606.        grid-template-columns: 1fr 1fr 1fr;
  607.    }
  608.    .header__wrapper--center-below .header__logo {
  609.        grid-row: 1;
  610.        grid-column: 2;
  611.        justify-content: center;
  612.    }
  613.    .header__wrapper--center-below .header__nav {
  614.        grid-row-start: 2;
  615.        grid-column-end: span 3;
  616.        justify-content: center;
  617.    }
  618.    .header__wrapper--center-below .header__crossborder {
  619.        grid-column: 1;
  620.        grid-row: 1;
  621.    }
  622. }
  623. @media screen and (max-width: 768px) {
  624.    .header__wrapper {
  625.        grid-template-columns: 1fr minmax(100px, max-content) 1fr;
  626.    }
  627.    .header__logo {
  628.        width: 100%;
  629.        margin: 0 auto;
  630.    }
  631. }
  632. .header__logo {
  633.    z-index: 500;
  634.    display: flex;
  635.    position: relative;
  636. }
  637. .header__logo--center-below {
  638.    margin: 0 auto;
  639. }
  640. .header__logo img {
  641.    max-width: 100%;
  642.    height: auto;
  643.    max-height: 100%;
  644. }
  645. .header__logo-title {
  646.    margin: 0;
  647.    width: 100%;
  648.    display: flex;
  649.    align-items: center;
  650. }
  651. .header__logo-title--center,
  652. .header__logo-title--center-below {
  653.    justify-content: center;
  654. }
  655. .header__logo-text {
  656.    white-space: nowrap;
  657.    display: inline-block;
  658.    color: var(--navbar_link_color);
  659.    visibility: visible;
  660. }
  661. .site-header__cart-toggle {
  662.    display: inline-block;
  663. }
  664. .site-header__search {
  665.    display: inline-block;
  666.    max-width: 400px;
  667.    width: 100%;
  668. }
  669. .header__crossborder {
  670.    display: flex;
  671.    align-items: center;
  672. }
  673. .header__nav {
  674.    display: -webkit-box;
  675.    display: -ms-flexbox;
  676.    display: flex;
  677.    align-items: center;
  678.    -webkit-box-align: center;
  679.    -ms-flex-align: center;
  680.    align-self: center;
  681.    font-weight: 600;
  682. }
  683. .header__nav--left {
  684.    justify-content: center;
  685. }
  686. .header__wrapper--left .header__nav {
  687.    flex: 1 1 auto;
  688. }
  689. nav {
  690.    height: 100%;
  691. }
  692. .site-nav {
  693.    display: flex;
  694.    flex-wrap: wrap;
  695.    align-items: center;
  696.    height: 100%;
  697.    cursor: default;
  698.    margin: 0;
  699. }
  700. .site-nav__arrow-right {
  701.    display: flex;
  702.    align-items: center;
  703. }
  704. .site-nav.multinav {
  705.    height: auto;
  706. }
  707. .site-header .site-nav > li > a {
  708.    height: 100%;
  709.    display: flex;
  710.    align-items: center;
  711. }
  712. .main-menu--sticky-true {
  713.    max-height: 75vh;
  714. }
  715. .single-menu-container {
  716.  
  717. height: auto;
  718. background:
  719. /* Shadow covers */
  720. linear-gradient(#ffffff 30%, rgb(255, 255, 255)),
  721. linear-gradient(rgb(255, 255, 255), #ffffff 70%) 0 100%,
  722.  
  723. /* Shadows */
  724. radial-gradient(farthest-side at 50% 0, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
  725. radial-gradient(farthest-side at 50% 100%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)) 0 100%;
  726. background:
  727. /* Shadow covers */
  728. linear-gradient(#ffffff 30%, rgb(255, 255, 255)),
  729. linear-gradient(rgb(255, 255, 255), #ffffff 70%) 0 100%,
  730.  
  731. /* Shadows */
  732. linear-gradient(to top, rgba(41, 41, 41, 0.2), rgba(255, 255, 255, 0)) 50% 100%;
  733. background-repeat: no-repeat;
  734. background-color: #ffffff;
  735. background-size: 100% 30px, 100% 30px, 100% 20px, 100% 20px;
  736.  
  737. /* Opera doesn't support this in the shorthand */
  738. background-attachment: local, local, scroll, scroll;
  739. }
  740. .header-icons {
  741.    display: -webkit-box;
  742.    display: -ms-flexbox;
  743.    display: flex;
  744.    -webkit-box-pack: end;
  745.    -ms-flex-pack: end;
  746.    justify-content: flex-end;
  747. }
  748. .header-icons img {
  749.    height: 30px;
  750.    padding-left: 15px;
  751. }
  752. .header-icons a.cart-wrapper {
  753.    display: inline-block;
  754. }
  755. .header__individual-icon {
  756.    width: 50px;
  757.    height: 100%;
  758. }
  759. .header__search-container{
  760.  position: relative;
  761.  height: 50px;
  762.  display: flex;
  763.  align-self: center;
  764. }
  765. @media screen and (min-width: 769px) and (max-width: 1080px) {
  766.    .header__wrapper {
  767.        grid-gap: 20px;
  768.    }
  769.    .header__wrapper--left {
  770.        grid-template-columns: minmax(100px, max-content) auto;
  771.    }
  772. }
  773. @media screen and (max-width: 768px) {
  774.    .header__mobile-wrapper {
  775.        display: grid;
  776.        grid-template-columns: 1fr 2fr 1fr;
  777.    }
  778. }
  779. .header__mobile-logo {
  780.    display: flex;
  781.    justify-content: center;
  782. }
  783. .mobile-header__icon {
  784.    display: flex;
  785.    justify-content: flex-end;
  786.    align-items: center;
  787. }
  788. .mobile-header__icon a {
  789.    display: flex;
  790.    justify-content: flex-end;
  791.    align-items: center;
  792. }
  793. .main-menu-dropdown {
  794.    display: none;
  795.    position: absolute;
  796.    width: 100%;
  797.    left: 0;
  798.    margin: 0;
  799.    z-index: 2000;
  800.    padding: 20px 4%;
  801. }
  802. .nav-hover .main-menu-dropdown--promotion {
  803.    grid-template-columns: minmax(50%, 100%) minmax(min-content, 300px);
  804.    grid-gap: 30px;
  805. }
  806. .side-end--all-single {
  807.    display: grid;
  808.    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  809. }
  810. .main-menu-dropdown .single-drop-arrow{
  811.    display: none;
  812. }
  813. .main-menu-dropdown .main-nav-wrap {
  814.    display: grid;
  815.    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  816.    grid-gap: 30px;
  817. }
  818. .site-nav__dropdown {
  819.    list-style: none;
  820.    margin: 0;
  821. }
  822. .site-nav__dropdown--side-end {
  823.    display: grid;
  824.    grid-template-columns: minmax(150px, 200px) minmax(min-content, auto);
  825. }
  826. .site-nav__dropdown--all-single {
  827.    display: grid;
  828. }
  829. .side-end--all-single {
  830.    display: grid;
  831.    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  832. }
  833. .site-nav__grandchild {
  834.    list-style: none;
  835.    margin: 0;
  836.    font-weight: 300;
  837. }
  838. .site-nav__grandchild-link {
  839.    margin: 0;
  840. }
  841. .single-dropdown {
  842.    display: none;
  843. }
  844. .nav-hover .single-dropdown,
  845. .nav-hover .single-menu-dropdown {
  846.    display: flex;
  847.    display: -ms-flexbox;
  848.    justify-content: space-between;
  849.    border-radius: 5px;
  850. }
  851. .single-dropdown {
  852.    border-radius: 0 5px 5px 5px;
  853.    position: absolute;
  854.    background-color: {
  855.    }
  856. }
  857. .single-dropdown .grandchild-link,
  858. .single-dropdown .main-nav-wrap {
  859.    padding: 15px;
  860. }
  861. .mobile-nav__group {
  862.    display: grid;
  863.    grid-template-columns: 1fr;
  864.    width: 100%;
  865.    position: absolute;
  866.    list-style: none;
  867.    top: 0;
  868.    margin: 0;
  869. }
  870. .mobile-nav__header {
  871.    display: flex;
  872.    justify-content: flex-start;
  873.    align-items: center;
  874.    flex-wrap: wrap;
  875.    margin-bottom: 30px;
  876. }
  877. .mobile-nav__header-title {
  878.    margin: 0;
  879. }
  880. .mobile-nav__header-title--main {
  881.    padding: 0 12.5%;
  882. }
  883. .mobile-nav__link,
  884. .mobile-nav__toggle-open {
  885.    width: 100%;
  886.    display: flex;
  887.    justify-content: space-between;
  888.    align-items: center;
  889.    padding: 5px 12.5%;
  890. }
  891. .mobile-nav__link {
  892.    font-size: 1.1rem;
  893. }
  894. .mobile-nav__parent {
  895.    position: absolute;
  896.    top: 60px;
  897. }
  898. .mobile-nav__parent--level2-open {
  899.    transform: translate3d(-100%, 0, 0);
  900. }
  901. .mobile-nav__parent--level3-open {
  902.    transform: translate3d(-200%, 0, 0);
  903. }
  904. .mobile-nav__child {
  905.    right: -100%;
  906.    transform: translate3d(-100%, 0, 0);
  907.    display: none;
  908. }
  909. .mobile-nav__child--open {
  910.    right: -100%;
  911.    display: grid;
  912. }
  913. .mobile-nav__grandchild {
  914.    right: -100%;
  915.    transform: translate3d(-100%, 0, 0);
  916.    display: none;
  917. }
  918. .mobile-nav__group--closed-right {
  919.    position: absolute;
  920.    right: -100%;
  921.    display: none;
  922. }
  923. .mobile-nav__group--open {
  924.    display: block;
  925. }
  926. .mobile-nav__group--exit-to-left {
  927.    transform: translate3d(-100%, 0, 0);
  928.    transition: all 0.6s cubic-bezier(0.57, 0.06, 0.05, 0.95);
  929. }
  930. .mobile-nav__group--exit-to-right {
  931.    transform: translate3d(100%, 0, 0);
  932.    transition: all 0.6s cubic-bezier(0.57, 0.06, 0.05, 0.95);
  933. }
  934. .mobile-nav__group--enter-from-right {
  935.    transform: translate3d(0, 0, 0);
  936.    transition: all 0.6s cubic-bezier(0.57, 0.06, 0.05, 0.95);
  937. }
  938. .mobile-nav__group--enter-from-left {
  939.    transform: translate3d(0, 0, 0);
  940.    transition: all 0.6s cubic-bezier(0.57, 0.06, 0.05, 0.95);
  941. }
  942.  
  943. </style>
  944.  
  945.  
  946. <style data-shopify>
  947. html{
  948.  line-height: calc(1em + .5vw);
  949. }
  950. .hidden {
  951.  display: none !important;
  952. }
  953.  
  954. .visibility-hidden {
  955.  visibility: hidden;
  956. }
  957.  loft-collection-filters-form, loft-drawer, loft-facet-checkbox, loft-filter-group, loft-product-tabs, loft-pickup-availability, loft-pickup-availability-preview{
  958.    visibility: hidden;
  959.  }
  960.  .hydrated{
  961.    visibility: inherit;
  962.  }
  963.  .shopify-section-app .shopify-app-block{
  964.    margin: 0 0 15px 0;
  965.  }
  966.  .shopify-section-app .shopify-app-block:first-child{
  967.    max-width: var(--wrapper--full);
  968.    margin: 0 auto;
  969.    padding: 0 4vw;
  970.  }
  971.  @media screen and (min-width: 769px){
  972.    .shopify-section-app .shopify-app-block:first-child{
  973.      margin: 30px auto;
  974.    }
  975.  }
  976.  @media screen and (max-width: 768px){
  977.    .shopify-section-app.shopify-app-block:first-child{
  978.      margin: 15px auto;
  979.    }
  980.  }
  981.  
  982.  .section__standard-spacing--none{
  983.    padding: 0;
  984.  }
  985.  img.lazyload:not([src]) {
  986.  visibility: hidden;
  987.  }
  988.  .section-background--background_primary{
  989.    background-color: var(--color_body_bg);
  990.  }
  991.  .section-background--background_secondary{
  992.    background-color: var(--color_body_bg_secondary);
  993.  }
  994.  .section-background--background_tertiary{
  995.    background-color: var(--color_body_bg_tertiary);
  996.  }
  997.  .test-wrapper{
  998.    display: grid;
  999.    flex-wrap: wrap;
  1000.    /* grid-template-columns: repeat(2, minmax(min(100%, 500px), 1fr)); */
  1001.    /* grid-template-columns: 1fr 1fr; */
  1002.    /* grid-template-columns: repeat(auto-fit, minmax(min(100%, 900px), 1fr)); */
  1003.    /* grid-template-rows: repeat(auto-fit, minmax(50px, 1fr)); */
  1004.    /* grid-template-rows: repeat(auto-fill, minmax(min(100px, 100%), auto)); */
  1005.    grid-column-gap: 20px;
  1006.  }
  1007.  .section-product-template{
  1008.    grid-row-start: span 4;
  1009.  }
  1010.  .test-wrapper .dynamic__section{
  1011.    /* grid-column-start: span 2; */
  1012.  }
  1013.  .footer__block-wrapper{
  1014.    margin: 0 auto;
  1015.    max-width: 1920px;
  1016.  }
  1017.  
  1018.  .section__standard-spacing--bottom{
  1019.    padding-bottom: calc(5 * 0.5vw);
  1020.  }
  1021.  @media screen and (min-width: 769px){
  1022.    .section__standard-spacing--small{
  1023.      padding: 15px 0;
  1024.    }
  1025.    .section__standard-spacing--medium{
  1026.      padding: 30px 0;
  1027.    }
  1028.    .section__standard-spacing--large{
  1029.      padding: 45px 0;
  1030.    }
  1031.    .footer__block-wrapper{
  1032.      padding: 30px 4%;
  1033.    }
  1034.  }
  1035.  @media screen and (max-width: 768px){
  1036.    .section__standard-spacing--small{
  1037.      padding: 5px 0;
  1038.    }
  1039.    .section__standard-spacing--medium{
  1040.      padding: 15px 0;
  1041.    }
  1042.    .section__standard-spacing--large{
  1043.      padding: 30px 0;
  1044.    }
  1045.    .footer__block-wrapper{
  1046.      padding: 0 4%;
  1047.    }
  1048.  }
  1049.  @media screen and (min-width: 1000px){
  1050.    .test-wrapper{
  1051.      /* grid-template-columns: 50% 50%; */
  1052.      grid-template-columns: minmax(var(--product_image_width)) minmax(var(--product_description_width));
  1053.    }
  1054.    /* .test-wrapper .product-template__child-section:not(:first-child){
  1055.      grid-column-start: 2;
  1056.    } */
  1057.    .product-template__images{
  1058.      grid-row-start: span 4;
  1059.    }
  1060.    .test-wrapper .product-template__child-section{
  1061.      padding: 0 4vw 0 2vw;
  1062.    }
  1063.    .test-wrapper .product-template__child-section:first-child{
  1064.      padding: 0 2vw 0 4vw;
  1065.    }
  1066.    .test-wrapper .dynamic__section{
  1067.      grid-column-start: span 2;
  1068.    }
  1069.  }
  1070.  @media screen and (max-width: 999px){
  1071.    .test-wrapper{
  1072.      grid-template-columns: 100%;
  1073.    }
  1074.    .test-wrapper .product-template__child-section{
  1075.      padding: 0 4vw;
  1076.    }
  1077.  }
  1078.  .lazyloading {
  1079.    opacity: 0;
  1080.    transition: opacity 0.3s;
  1081.  }
  1082. img.lazyload:not([src]) {
  1083.    visibility: hidden;
  1084. }
  1085. html {
  1086.    font-size: var(--baseSizeMain);
  1087.    font-family: var(--bodyFontStack);
  1088.    font-weight: var(--bodyFontWeight);
  1089.    -webkit-font-smoothing: antialiased;
  1090.    -webkit-text-size-adjust: 100%;
  1091.    color: var(--colorTextBody);
  1092.    line-height: 1.3;
  1093.    letter-spacing: 0.06rem;
  1094. }
  1095. .supports-fontface .icon-fallback-text .fallback-text,
  1096. .visually-hidden {
  1097.    position: absolute;
  1098.    overflow: hidden;
  1099.    clip: rect(0 0 0 0);
  1100.    height: 1px;
  1101.    width: 1px;
  1102.    margin: -1px;
  1103.    padding: 0;
  1104.    border: 0;
  1105. }
  1106. .section__overflow--hidden{
  1107.  overflow: hidden;
  1108. }
  1109. .list-unstyled {
  1110.  margin: 0;
  1111.  padding: 0;
  1112.  list-style: none;
  1113. }
  1114. summary {
  1115.  cursor: pointer;
  1116.  list-style: none;
  1117.  position: relative;
  1118. }
  1119. .h1, .h2, .h3, .h4, .h5, h6, h1, h2, h3, h4, h5, h6{
  1120.  letter-spacing: calc(var(--font-heading-scale) * .06rem);
  1121. }
  1122. .h1,
  1123. .h2,
  1124. h1,
  1125. h2 {
  1126.    display: block;
  1127.    font-family: var(--headingFontStack);
  1128.    font-weight: var(--headingFontWeight);
  1129.    margin: 0 0 10px;
  1130.    line-height: var(--headingLineHeight);
  1131.    color: var(--colorPrimary);
  1132. }
  1133. .h1 a,
  1134. .h2 a,
  1135. h1 a,
  1136. h2 a {
  1137.    text-decoration: none;
  1138.    font-weight: inherit;
  1139.    color: var(--colorPrimary);
  1140. }
  1141. .h3,
  1142. h3 {
  1143.    display: block;
  1144.    font-weight: var(--subheaderFontWeight);
  1145.    font-family: var(--subheaderFontStack);
  1146.    font-style: var(--subheaderFontStyle);
  1147.    margin: 0 0 15px;
  1148.    line-height: var(--headerLineHeight);
  1149.    color: var(--colorPrimary);
  1150. }
  1151. .h3 a,
  1152. h3 a {
  1153.    text-decoration: none;
  1154.    font-weight: inherit;
  1155.    color: var(--colorPrimary);
  1156. }
  1157. .h4,
  1158. h4 {
  1159.    display: block;
  1160.    font-weight: var(--headingFontWeight);
  1161.    font-family: var(--headingFontStack);
  1162.    font-style: var(--headingFontStyle);
  1163.    margin: 0 0 10px;
  1164.    line-height: var(--headingLineHeight);
  1165.    color: var(--colorPrimary);
  1166. }
  1167. .h4 a,
  1168. h4 a {
  1169.    text-decoration: none;
  1170.    font-weight: inherit;
  1171.    color: var(--colorPrimary);
  1172. }
  1173. .h5,
  1174. h5 {
  1175.    display: block;
  1176.    font-family: var(--headingFontStack);
  1177.    font-weight: var(--headingFontWeight);
  1178.    text-transform: var(--button_text_transform);
  1179.    line-height: var(--headingLineHeight);
  1180.    color: var(--colorPrimary);
  1181.    margin: 0 0 15px;
  1182. }
  1183. .h5 a,
  1184. h5 a {
  1185.    text-decoration: none;
  1186.    font-weight: inherit;
  1187.    color: var(--colorPrimary);
  1188. }
  1189. .h5 a:hover,
  1190. h5 a:hover {
  1191.    color: var(--colorLink);
  1192. }
  1193. .h6,
  1194. h6 {
  1195.    display: block;
  1196.    font-family: var(--headingFontStack);
  1197.    line-height: var(--headingLineHeight);
  1198.    font-weight: var(--headingFontWeight);
  1199.    text-transform: var(--button_text_transform);
  1200.    color: var(--colorPrimary);
  1201.    margin: 0 0 5px;
  1202. }
  1203. .h6 a,
  1204. h6 a {
  1205.    text-decoration: none;
  1206.    font-weight: inherit;
  1207.    color: var(--colorPrimary);
  1208.    text-transform: var(--button_text_transform);
  1209. }
  1210.  
  1211. .section__standard-spacing--full--section-header {
  1212.  padding: 0 0 15px 0;
  1213. }
  1214. .caption-large{
  1215.  font-size: var(--smallDetail);
  1216. }
  1217. .caption{
  1218.  font-size: var(--smallerDetail);
  1219. }
  1220. @media screen and (min-width: 769px) {
  1221.    .h1,
  1222.    h1 {
  1223.        font-size: 2.441rem;
  1224.    }
  1225.    .h2,
  1226.    h2 {
  1227.        font-size: 1.953rem;
  1228.    }
  1229.    .h3,
  1230.    h3 {
  1231.        font-size: 1.25rem;
  1232.    }
  1233.    .h4,
  1234.    h4 {
  1235.        font-size: 1.25rem;
  1236.    }
  1237.    .h5,
  1238.    h5 {
  1239.        font-size: 1rem;
  1240.    }
  1241.    .h6,
  1242.    h6 {
  1243.        font-size: 0.8rem;
  1244.    }
  1245. }
  1246. @media screen and (max-width: 768px) {
  1247.    .h1,
  1248.    h1 {
  1249.        font-size: 2.074rem;
  1250.    }
  1251.    .h2,
  1252.    h2 {
  1253.        font-size: 1.728rem;
  1254.    }
  1255.    .h3,
  1256.    h3 {
  1257.        font-size: 1.2rem;
  1258.    }
  1259.    .h4,
  1260.    h4 {
  1261.        font-size: 1.2rem;
  1262.    }
  1263.    .h5,
  1264.    h5 {
  1265.        font-size: 1rem;
  1266.    }
  1267.    .h6,
  1268.    h6 {
  1269.        font-size: 0.833rem;
  1270.    }
  1271. }
  1272. @media screen and (max-width: 480px) {
  1273.    .section__standard-margin {
  1274.        margin-bottom: 15px;
  1275.    }
  1276. }
  1277. @media screen and (min-width: 481px) and (max-width: 1180px) {
  1278.    .section__standard-margin {
  1279.        margin-bottom: 15px;
  1280.    }
  1281. }
  1282. @media screen and (min-width: 1181px) {
  1283.    .section__standard-margin {
  1284.        margin-bottom: 30px;
  1285.    }
  1286. }
  1287. .element__interior-padding--small-card-image {
  1288.    padding: 0;
  1289. }
  1290. .element__interior-padding--small-card-text {
  1291.    padding: 0;
  1292. }
  1293. .element__exterior-padding--small-card {
  1294.    padding: 15px;
  1295. }
  1296. .standard__element-spacing--right-small {
  1297.    margin-right: 10px;
  1298.    margin-bottom: 10px;
  1299. }
  1300. .section__standard-spacing--sides {
  1301.    padding: 0 1%;
  1302. }
  1303. .section__standard-spacing--top {
  1304.  padding: 45px 0 0 0;
  1305. }
  1306. @media screen and (max-width: 480px) {
  1307.    .section__standard-spacing {
  1308.        padding: 5% 10%;
  1309.    }
  1310.    .section__standard-spacing--internal {
  1311.        padding: 5% 10%;
  1312.    }
  1313.    .section__standard-spacing--internal-wide {
  1314.        padding: 10%;
  1315.    }
  1316.    .section__standard-spacing--internal-small {
  1317.        padding: 10%;
  1318.    }
  1319.    .section__standard-spacing--even {
  1320.        padding: 30px;
  1321.    }
  1322.    .section__standard-spacing--even-medium {
  1323.        padding: 15px;
  1324.    }
  1325.    .section__standard-spacing--even-small {
  1326.        padding: 15px;
  1327.    }
  1328.    .section__standard-spacing--even-small-sides {
  1329.        padding: 0 15px;
  1330.    }
  1331.    .section__standard-spacing--top-bottom {
  1332.        padding: 30px 0 30px 0;
  1333.    }
  1334.    .section__standard-spacing--top-bottom-small {
  1335.      padding: 1rem 0 1rem 0;
  1336.    }
  1337.    .section__standard-spacing--sides-bottom {
  1338.        padding: 0 15px 15px 15px;
  1339.    }
  1340.    .section__standard-spacing--top-sides--section-header {
  1341.        padding: 30px 15px 0 15px;
  1342.    }
  1343. }
  1344. @media screen and (max-width: 768px) {
  1345.    .section__unique-spacing--lg-sm {
  1346.        padding: 1%;
  1347.    }
  1348.    .section__standard-spacing {
  1349.        padding: 30px;
  1350.    }
  1351.    .section__unique-spacing--fp-photo {
  1352.        padding: 1%;
  1353.    }
  1354.    .section__unique-spacing--fp-description {
  1355.        padding: 30px 10%;
  1356.    }
  1357.    .section__standard-offset {
  1358.        padding: 7.5px;
  1359.    }
  1360. }
  1361. @media screen and (min-width: 769px) {
  1362.    .section__standard-offset {
  1363.        padding: 15px;
  1364.    }
  1365. }
  1366. @media screen and (min-width: 769px) and (max-width: 1180px) {
  1367.    .section__unique-spacing--lg-sm {
  1368.        padding: 30px;
  1369.    }
  1370.    .section__standard-spacing {
  1371.        padding: 40px;
  1372.    }
  1373.    .section__unique-spacing--fp-photo {
  1374.        padding: 3%;
  1375.    }
  1376.    .section__unique-spacing--fp-description {
  1377.        padding: 3%;
  1378.    }
  1379. }
  1380. @media screen and (min-width: 481px) and (max-width: 1180px) {
  1381.    .section__standard-spacing--internal {
  1382.        padding: 5% 10%;
  1383.    }
  1384.    .section__standard-spacing--internal-small {
  1385.        padding: 10%;
  1386.    }
  1387.    .section__standard-spacing--even {
  1388.        padding: 30px;
  1389.    }
  1390.    .section__standard-spacing--even-medium {
  1391.        padding: 30px;
  1392.    }
  1393.    .section__standard-spacing--even-small {
  1394.        padding: 15px;
  1395.    }
  1396.    .section__standard-spacing--even-small-sides {
  1397.        padding: 0 15px;
  1398.    }
  1399.    .section__standard-spacing--top-bottom {
  1400.        padding: 30px 0 30px 0;
  1401.    }
  1402.    .section__standard-spacing--top-bottom-small {
  1403.      padding: 1rem 0 1rem 0;
  1404.    }
  1405.    .section__standard-spacing--sides-bottom {
  1406.        padding: 0 30px 30px 30px;
  1407.    }
  1408.    .section__standard-spacing--top-sides--section-header {
  1409.        padding: 30px 15px 0 15px;
  1410.    }
  1411. }
  1412. @media screen and (min-width: 1181px) {
  1413.    .section__unique-spacing--lg-sm {
  1414.        padding: 60px;
  1415.    }
  1416.    .section__standard-spacing {
  1417.        padding: var(--padding-standard);
  1418.    }
  1419.    .section__standard-spacing--internal {
  1420.        padding: 10%;
  1421.    }
  1422.    .section__standard-spacing--internal-small {
  1423.        padding: 10%;
  1424.    }
  1425.    .section__unique-spacing--fp-photo {
  1426.        padding: 5%;
  1427.    }
  1428.    .section__unique-spacing--fp-description {
  1429.        padding: 5%;
  1430.    }
  1431.    .section__standard-spacing--even {
  1432.        padding: 60px;
  1433.    }
  1434.    .section__standard-spacing--even-medium {
  1435.        padding: 45px;
  1436.    }
  1437.    .section__standard-spacing--even-small {
  1438.        padding: 30px;
  1439.    }
  1440.    .section__standard-spacing--even-small-sides {
  1441.        padding: 0 30px;
  1442.    }
  1443.    .section__standard-spacing--top-bottom {
  1444.        padding: 45px 0 45px 0;
  1445.    }
  1446.    .section__standard-spacing--top-bottom-small {
  1447.      padding: 1.5rem 0 1.5rem 0;
  1448.    }
  1449.    .section__standard-spacing--sides-bottom {
  1450.        padding: 0 30px 30px 30px;
  1451.    }
  1452.    .section__standard-spacing--top-sides--section-header {
  1453.        padding: 45px 30px 0 30px;
  1454.    }
  1455. }
  1456. .promo-bar__slide:nth-child(n + 2),
  1457. .slideshow__slide:nth-child(n + 2) {
  1458.    display: none;
  1459. }
  1460. .flickity-slider .promo-bar__slide,
  1461. .flickity-slider .slideshow__slide {
  1462.    display: flex;
  1463. }
  1464. .slideshow__dot-wrapper {
  1465.    min-height: 61px;
  1466. }
  1467. .animations-enabled .section__image-animations--scale {
  1468.    transform: scale(1.25) translateZ(0);
  1469.    opacity: 0;
  1470. }
  1471. .animations-enabled .section__load-animations--scale {
  1472.    transform: scale(1) translateZ(0);
  1473.    opacity: 1;
  1474. }
  1475.  
  1476. .overflow-hidden-mobile,
  1477. .overflow-hidden-tablet {
  1478.  overflow: hidden;
  1479. }
  1480.  
  1481. @media screen and (min-width: 750px) {
  1482.  .overflow-hidden-mobile {
  1483.    overflow: auto;
  1484.  }
  1485. }
  1486.  
  1487. @media screen and (min-width: 990px) {
  1488.  .overflow-hidden-tablet {
  1489.    overflow: auto;
  1490.  }
  1491. }
  1492. .rating {
  1493.  display: inline-block;
  1494.  margin: 0;
  1495. }
  1496.  
  1497. .product .rating-star {
  1498.  --letter-spacing: 0.8;
  1499.  --font-size: 1.7;
  1500. }
  1501. .product-loop-element__reviews{
  1502.  padding:initial;
  1503. }
  1504. .rating-star {
  1505.  --letter-spacing: 0.1;
  1506.  --font-size: 1.1;
  1507. }
  1508.  
  1509. .rating-star {
  1510.  --percent: calc(
  1511.    (
  1512.        var(--rating) / var(--rating-max) + var(--rating-decimal) *
  1513.          var(--font-size) /
  1514.          (var(--rating-max) * (var(--letter-spacing) + var(--font-size)))
  1515.      ) * 100%
  1516.  );
  1517.  letter-spacing: calc(var(--letter-spacing) * 1rem);
  1518.  font-size: calc(var(--font-size) * 1rem);
  1519.  line-height: 1;
  1520.  display: inline-block;
  1521.  font-family: Times;
  1522.  margin: 0;
  1523. }
  1524.  
  1525. .rating-star::before {
  1526.  content: '★★★★★';
  1527.  background: linear-gradient(
  1528.    90deg,
  1529.    var(--color-icon) var(--percent),
  1530.    rgba(var(--color-foreground), 0.15) var(--percent)
  1531.  );
  1532.  -webkit-background-clip: text;
  1533. }
  1534.  
  1535. .rating-text {
  1536.  display: none;
  1537. }
  1538.  
  1539. .rating-count {
  1540.  display: inline-block;
  1541.  margin: 0;
  1542. }
  1543.  
  1544. @media (forced-colors: active) {
  1545.  .rating {
  1546.    display: none;
  1547.  }
  1548.  
  1549.  .rating-text {
  1550.    display: block;
  1551.  }
  1552. }
  1553.  
  1554.  
  1555. </style>
  1556.  
  1557. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="nPY0P9j2XoTfhJTrFHe5eMl3C3z7yI-wEQKOFmz47C0">
  1558. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/80955703638/digital_wallets/dialog">
  1559. <meta name="shopify-checkout-api-token" content="7ae61cb4ae0fc5990685770ed261ce0c">
  1560. <meta id="in-context-paypal-metadata" data-shop-id="80955703638" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="GBP">
  1561. <script async="async" src="/checkouts/internal/preloads.js?locale=en&version=checkout-renderer"></script>
  1562. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  1563. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en&version=checkout-renderer&shop_id=80955703638" crossorigin="anonymous"></script>
  1564. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":80955703638,"countryCode":"GB","currencyCode":"GBP","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/80955703638","merchantName":"UK Pilates Reformers","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","maestro","masterCard","amex","discover","elo"],"total":{"type":"pending","label":"UK Pilates Reformers","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  1565. <script id="shopify-features" type="application/json">{"accessToken":"7ae61cb4ae0fc5990685770ed261ce0c","betas":["rich-media-storefront-analytics"],"domain":"uk-pilatesreformers.co.uk","predictiveSearch":true,"shopId":80955703638,"locale":"en"}</script>
  1566. <script>var Shopify = Shopify || {};
  1567. Shopify.shop = "7cd516-3.myshopify.com";
  1568. Shopify.locale = "en";
  1569. Shopify.currency = {"active":"GBP","rate":"1.0"};
  1570. Shopify.country = "GB";
  1571. Shopify.theme = {"name":"Pre Loft upgrade 2.3.7 (Updates V1.1)","id":174976663894,"schema_name":"Loft","schema_version":"2.3.7","theme_store_id":846,"role":"main"};
  1572. Shopify.theme.handle = "null";
  1573. Shopify.theme.style = {"id":null,"handle":null};
  1574. Shopify.cdnHost = "uk-pilatesreformers.co.uk/cdn";
  1575. Shopify.routes = Shopify.routes || {};
  1576. Shopify.routes.root = "/";</script>
  1577. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  1578. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  1579. <script>window.ShopifyPay = window.ShopifyPay || {};
  1580. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  1581. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  1582. <script>
  1583.  window.Shopify = window.Shopify || {};
  1584.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  1585.  window.Shopify.featureAssets['shop-js'] = {"shop-cart-sync":["modules/v2/client.shop-cart-sync_D7-dt4yQ.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"shop-button":["modules/v2/client.shop-button_Dk3C-nrc.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_BJTzcthb.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-shop-cart-sync":["modules/v2/client.init-shop-cart-sync_D4LP0mdf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_BIiDGR_9.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-windoid":["modules/v2/client.init-windoid_Cggc9BHJ.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_BIqXeISy.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"pay-button":["modules/v2/client.pay-button_4B9uZD6V.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_BN4amUeE.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_DdQVK1uj.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_CKOixL28.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_kjqkEy5G.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CIgZ6QOF.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_D0GKEBXn.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"lead-capture":["modules/v2/client.lead-capture_B1OqQ3Ju.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"payment-terms":["modules/v2/client.payment-terms_B3uZ3S0s.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"]};
  1586. </script>
  1587. <script id="__st">var __st={"a":80955703638,"offset":3600,"reqid":"3e47bdee-9587-4d0b-9695-08dc6a8511e0-1751647955","pageurl":"uk-pilatesreformers.co.uk\/","u":"bdfe77833af2","p":"home"};</script>
  1588. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  1589. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
  1590. <script integrity="sha256-DTN/DDRLW4ijBM7GedgYZhatFOf+PYQ7/WEM4Q6kiFw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/storefront/load_feature-0d337f0c344b5b88a304cec679d8186616ad14e7fe3d843bfd610ce10ea4885c.js" crossorigin="anonymous"></script>
  1591. <script crossorigin="anonymous" defer="defer" src="//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-9846a8162782d0b340b9256e1835a4bf4ccf7ab521e1221004c475e86df911f4.js?v=20220906"></script>
  1592. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://uk-pilatesreformers.co.uk/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  1593. </script>
  1594. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  1595.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  1596. </script>
  1597. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  1598. </script>
  1599. <script id='scb4127' type='text/javascript' async='' src='https://uk-pilatesreformers.co.uk/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
  1600. <link rel="stylesheet" media="screen" href="https://uk-pilatesreformers.co.uk/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  1601.  
  1602. <style id="shopify-accelerated-checkout-cart">
  1603.        #shopify-buyer-consent {
  1604.  margin-top: 1em;
  1605.  display: inline-block;
  1606.  width: 100%;
  1607. }
  1608.  
  1609. #shopify-buyer-consent.hidden {
  1610.  display: none;
  1611. }
  1612.  
  1613. #shopify-subscription-policy-button {
  1614.  background: none;
  1615.  border: none;
  1616.  padding: 0;
  1617.  text-decoration: underline;
  1618.  font-size: inherit;
  1619.  cursor: pointer;
  1620. }
  1621.  
  1622. #shopify-subscription-policy-button::before {
  1623.  box-shadow: none;
  1624. }
  1625.  
  1626.      </style>
  1627. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1628.  
  1629.  <!-- Header hook for plugins ================================================== -->
  1630.  <link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/header_styles.nomin.css?v=181819031480666285271732721636" as="style"><link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme.css?v=24646252712672622271732727938" as="style">
  1631.  <link rel="stylesheet" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/custom.css?v=26699377809221193891732789957">
  1632.  
  1633.  <link rel="preload" as="font" href="//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n4.934accbf9f5987aa89334210e6c1e9151f37d3b6.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=c84c4e9a177f8200f136b52c0827428194ab19b9857e8ccb28e779458098a38f" type="font/woff2" crossorigin>
  1634.  <link rel="preload" as="font" href="//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n7.58aca33913fc6666cc9e8a53f6b16ec5c3c05a3f.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=89f9547c1557b0c39f8db4edfe9e3d5c2ec9adbcc0e84fdb81c5dcf402eeba11" type="font/woff2" crossorigin>
  1635.  <link rel="preload" as="font" href="//uk-pilatesreformers.co.uk/cdn/fonts/poppins/poppins_n5.25334cd7ff48c81cfd51a6bc5a81d92a1b4d4501.woff2?h1=N2NkNTE2LTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cGlsYXRlc3JlZm9ybWVyc2RpcmVjdHVrLm15c2hvcGlmeS5jb20&h3=dWstcGlsYXRlc3JlZm9ybWVycy5jby51aw&hmac=ca22e5ce49bf7593af64a1aedcfad4906fa234b75ba3f99e3040d36098b6bf19" type="font/woff2" crossorigin>
  1636.  <link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/vendor_jquery.js?v=133132906189461661841732721637" as="script">
  1637.  <link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/commons.nomin.js?v=93955695144317083031732721636" as="script">
  1638.  <link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_sections.nomin.js?v=159304578737053471771732721637" as="script">
  1639.  <link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/vendor_lazysizes.js?v=170539586289455096371732721637" as="script"><link rel="preload" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme.nomin.js?v=81739003165115556811732721637" as="script">
  1640.  
  1641.  <!-- THEME JS INIT -->  
  1642.  <script defer src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/vendor_jquery.js?v=133132906189461661841732721637"></script>
  1643.  <script defer src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/commons.nomin.js?v=93955695144317083031732721636"></script>
  1644.  
  1645.  <!-- Base CSS ================================================== -->
  1646.  <link rel="stylesheet" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/header_styles.nomin.css?v=181819031480666285271732721636"><link rel="stylesheet" href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme.css?v=24646252712672622271732727938">
  1647.  
  1648.  <script type="module" src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme-components.esm.js?v=174749885776787604741732721636"></script>
  1649.  <script nomodule src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme-components.js?805"></script>
  1650.  
  1651.  <script defer src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme_sections.nomin.js?v=159304578737053471771732721637"></script>
  1652.  <script defer src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/vendor_lazysizes.js?v=170539586289455096371732721637"></script><script defer src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/theme.nomin.js?v=81739003165115556811732721637"></script>
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665. <script>
  1666.    window.theme = window.theme || {};
  1667.    window.theme.settings = window.theme.settings || {};
  1668.  
  1669.    window.theme.HashScrolling = function(){return};
  1670.    window.theme.routes = {
  1671.      store_path: 'https://uk-pilatesreformers.co.uk',
  1672.      root_url: '/',
  1673.      account_url: '/account',
  1674.      account_login_url: 'https://uk-pilatesreformers.co.uk/customer_authentication/redirect?locale=en',
  1675.      account_logout_url: '/account/logout',
  1676.      account_recover_url: '/account/recover',
  1677.      account_register_url: 'https://shopify.com/80955703638/account?locale=en',
  1678.      account_addresses_url: '/account/addresses',
  1679.      collections_url: '/collections',
  1680.      all_products_collection_url: '/collections/all',
  1681.      product_recommendations_url: '/recommendations/products',
  1682.      search_url: '/search',
  1683.      cart_url: '/cart',
  1684.      cart_add_url: '/cart/add',
  1685.      cart_change_url: '/cart/change',
  1686.      cart_clear_url: '/cart/clear',
  1687.    };
  1688.    window.theme.settings = {
  1689.      enable_preloader: 'false',
  1690.      enable_animations: 'true',
  1691.      search_product_title: 'Products',
  1692.      search_soldout_label: 'Sold Out',
  1693.      search_sale_label: 'Sale',
  1694.      search_page_title: 'Pages',
  1695.      search_article_title: 'Articles',
  1696.      search_product_width: 'false',
  1697.      search_border_color: '#e6e6e6',
  1698.      search_show_reviews: 'false',
  1699.      search_force_product_height: 'false',
  1700.      search_product_image_height: '300',
  1701.      search_mobile_product_image_height: 'false',
  1702.      search_product_overlay: '25',
  1703.      search_overlay_color: '#ffffff',
  1704.      search_image_fill: 'false',
  1705.      search_show_tile_view: 'true',
  1706.      search_no_results: 'Your search did not return any results',
  1707.      show_badge: 'false',
  1708.      display_circle: 'false',
  1709.      display_rectangle: 'true',
  1710.      enable_quick: 'false',
  1711.      delimiter: '::',
  1712.      moneyFormat: '£{{amount_no_decimals}}',
  1713.    };
  1714.    window.theme.settings.promo = {
  1715.      expand: 'Expand',
  1716.      close: 'Expand',
  1717.    };
  1718.    window.theme.settings.product = {
  1719.      unavailable: "Unavailable",
  1720.      add_to_cart: "Add to Cart",
  1721.      sold_out: "Sold Out",
  1722.      compare_at: "Compare at",
  1723.      moneyFormat: "£{{amount_no_decimals}}",
  1724.      moneyFormatWithCurrency: "£{{amount_no_decimals}} GBP",
  1725.    };
  1726.    window.theme.settings.features = window.theme.settings.features || {};
  1727.    window.theme.settings.features.newsletter = {
  1728.      popupEnabled: 'false',
  1729.      testModeOn: 'false',
  1730.      delayBeforeShowing: '1000',
  1731.    };
  1732.    window.shopUrl = 'https://uk-pilatesreformers.co.uk';
  1733.    window.routes = {
  1734.      cart_add_url: '/cart/add',
  1735.      cart_change_url: '/cart/change',
  1736.      cart_update_url: '/cart/update',
  1737.      predictive_search_url: '/search/suggest'
  1738.    };
  1739.  
  1740.    window.cartStrings = {
  1741.      error: `There was an error while updating your cart. Please try again.`,
  1742.      quantityError: `You can only add [quantity] of this item to your cart.`
  1743.    };
  1744.  
  1745.    window.variantStrings = {
  1746.      addToCart: `Add to Cart`,
  1747.      soldOut: `Sold Out`,
  1748.      unavailable: `Unavailable`,
  1749.    };
  1750.  
  1751. </script>
  1752.  
  1753.  <script>
  1754.    
  1755.  
  1756.    
  1757.      theme.HashScrolling();
  1758.    
  1759.    
  1760.    document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
  1761.  </script>
  1762.  <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/global.js?v=144138144078158849031732721636" defer="defer"></script><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->
  1763.  
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775.  <script async src="https://static.klaviyo.com/onsite/js/Syz7Ui/klaviyo.js?company_id=Syz7Ui"></script>
  1776.  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>
  1777.  
  1778.  
  1779.  
  1780.  
  1781.  
  1782.  
  1783.  <script>
  1784.    window.klaviyoReviewsProductDesignMode = false
  1785.  </script>
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791.  
  1792.  
  1793. <!-- END app block --><!-- BEGIN app block: shopify://apps/simprosys-google-shopping-feed/blocks/core_settings_block/1f0b859e-9fa6-4007-97e8-4513aff5ff3b --><!-- BEGIN: GSF App Core Tags & Scripts by Simprosys Google Shopping Feed -->
  1794.  
  1795.    <!-- BEGIN app snippet: gsf_verification_code -->
  1796.    <meta name="google-site-verification" content="nPY0P9j2XoTfhJTrFHe5eMl3C3z7yI-wEQKOFmz47C0" />
  1797.  
  1798.  
  1799.  
  1800. <!-- END app snippet -->
  1801.  
  1802.  
  1803.  
  1804.    <!-- BEGIN app snippet: gsf_tracking_data -->
  1805.    
  1806.    <script>
  1807.        
  1808.        
  1809.        
  1810.        
  1811.        
  1812.        
  1813.        var gsf_conversion_data = {page_type : 'home', event : 'page_view', data : {product_data : [{variant_id : 49289202630998, product_id : 9299551945046, name : "Arc", price : "144", currency : "GBP", sku : "ELN 450025", brand : "Elina Pilates", variant : "Black", category : "Pilates Equipment"}, {variant_id : 49289202368854, product_id : 9299551682902, name : "Arc | Hollow", price : "135", currency : "GBP", sku : "ELN 450040", brand : "Elina Pilates", variant : "Black", category : "Pilates Equipment"}], total_price :"279", shop_currency : "GBP"}};
  1814.        
  1815.        
  1816.    </script>
  1817.    
  1818.  
  1819.    
  1820.  
  1821.    
  1822.  
  1823.  
  1824.  
  1825. <!-- END app snippet -->
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833. <!-- END: GSF App Core Tags & Scripts by Simprosys Google Shopping Feed -->
  1834. <!-- END app block --><link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1835. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 80955703638,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  1836. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:m,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 80955703638,storefrontBaseUrl: "https://uk-pilatesreformers.co.uk",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"1066238294","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-KDR974Y6R5\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-KDR974Y6R5\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"26a08df6fb732969dd50810ae4fdc2c1","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "co.uk",initData: {"shop":{"name":"UK Pilates Reformers","paymentSettings":{"currencyCode":"GBP"},"myshopifyDomain":"7cd516-3.myshopify.com","countryCode":"GB","storefrontUrl":"https://uk-pilatesreformers.co.uk"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://uk-pilatesreformers.co.uk/cdn","79c51b55w8151734bp1f8946d8mfa37738b",{"modern":"","legacy":""},{"shopId":"80955703638","storefrontBaseUrl":"https://uk-pilatesreformers.co.uk","extensionBaseUrl":"https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"ac843a20\"]","isMerchantRequest":"false","hashVersion":"79c51b55w8151734bp1f8946d8mfa37738b"});</script><script>
  1837.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1838.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1839.  window.ShopifyAnalytics.meta.currency = 'GBP';
  1840.  var meta = {"page":{"pageType":"home"}};
  1841.  for (var attr in meta) {
  1842.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  1843.  }
  1844. </script>
  1845. <script class="analytics">
  1846.  (function () {
  1847.    var customDocumentWrite = function(content) {
  1848.      var jquery = null;
  1849.  
  1850.      if (window.jQuery) {
  1851.        jquery = window.jQuery;
  1852.      } else if (window.Checkout && window.Checkout.$) {
  1853.        jquery = window.Checkout.$;
  1854.      }
  1855.  
  1856.      if (jquery) {
  1857.        jquery('body').append(content);
  1858.      }
  1859.    };
  1860.  
  1861.    var hasLoggedConversion = function(token) {
  1862.      if (token) {
  1863.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1864.      }
  1865.      return false;
  1866.    }
  1867.  
  1868.    var setCookieIfConversion = function(token) {
  1869.      if (token) {
  1870.        var twoMonthsFromNow = new Date(Date.now());
  1871.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1872.  
  1873.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1874.      }
  1875.    }
  1876.  
  1877.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1878.    if (trekkie.integrations) {
  1879.      return;
  1880.    }
  1881.    trekkie.methods = [
  1882.      'identify',
  1883.      'page',
  1884.      'ready',
  1885.      'track',
  1886.      'trackForm',
  1887.      'trackLink'
  1888.    ];
  1889.    trekkie.factory = function(method) {
  1890.      return function() {
  1891.        var args = Array.prototype.slice.call(arguments);
  1892.        args.unshift(method);
  1893.        trekkie.push(args);
  1894.        return trekkie;
  1895.      };
  1896.    };
  1897.    for (var i = 0; i < trekkie.methods.length; i++) {
  1898.      var key = trekkie.methods[i];
  1899.      trekkie[key] = trekkie.factory(key);
  1900.    }
  1901.    trekkie.load = function(config) {
  1902.      trekkie.config = config || {};
  1903.      trekkie.config.initialDocumentCookie = document.cookie;
  1904.      var first = document.getElementsByTagName('script')[0];
  1905.      var script = document.createElement('script');
  1906.      script.type = 'text/javascript';
  1907.      script.onerror = function(e) {
  1908.        var scriptFallback = document.createElement('script');
  1909.        scriptFallback.type = 'text/javascript';
  1910.        scriptFallback.onerror = function(error) {
  1911.                var Monorail = {
  1912.      produce: function produce(monorailDomain, schemaId, payload) {
  1913.        var currentMs = new Date().getTime();
  1914.        var event = {
  1915.          schema_id: schemaId,
  1916.          payload: payload,
  1917.          metadata: {
  1918.            event_created_at_ms: currentMs,
  1919.            event_sent_at_ms: currentMs
  1920.          }
  1921.        };
  1922.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1923.      },
  1924.      sendRequest: function sendRequest(endpointUrl, payload) {
  1925.        // Try the sendBeacon API
  1926.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1927.          var blobData = new window.Blob([payload], {
  1928.            type: 'text/plain'
  1929.          });
  1930.  
  1931.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1932.            return true;
  1933.          } // sendBeacon was not successful
  1934.  
  1935.        } // XHR beacon
  1936.  
  1937.        var xhr = new XMLHttpRequest();
  1938.  
  1939.        try {
  1940.          xhr.open('POST', endpointUrl);
  1941.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1942.          xhr.send(payload);
  1943.        } catch (e) {
  1944.          console.log(e);
  1945.        }
  1946.  
  1947.        return false;
  1948.      },
  1949.      isIos12: function isIos12() {
  1950.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1951.      }
  1952.    };
  1953.    Monorail.produce('monorail-edge.shopifysvc.com',
  1954.      'trekkie_storefront_load_errors/1.1',
  1955.      {shop_id: 80955703638,
  1956.      theme_id: 174976663894,
  1957.      app_name: "storefront",
  1958.      context_url: window.location.href,
  1959.      source_url: "//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js"});
  1960.  
  1961.        };
  1962.        scriptFallback.async = true;
  1963.        scriptFallback.src = '//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  1964.        first.parentNode.insertBefore(scriptFallback, first);
  1965.      };
  1966.      script.async = true;
  1967.      script.src = '//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  1968.      first.parentNode.insertBefore(script, first);
  1969.    };
  1970.    trekkie.load(
  1971.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":80955703638,"isMerchantRequest":null,"themeId":174976663894,"themeCityHash":"1098807958791748643","contentLanguage":"en","currency":"GBP","eventMetadataId":"3d4797d8-43c0-4a21-8cae-1e98f801732e"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1972.    );
  1973.  
  1974.    var loaded = false;
  1975.    trekkie.ready(function() {
  1976.      if (loaded) return;
  1977.      loaded = true;
  1978.  
  1979.      window.ShopifyAnalytics.lib = window.trekkie;
  1980.  
  1981.      var originalDocumentWrite = document.write;
  1982.      document.write = customDocumentWrite;
  1983.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1984.      document.write = originalDocumentWrite;
  1985.  
  1986.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1987.  
  1988.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1989.      var token = match? match[1]: undefined;
  1990.      if (!hasLoggedConversion(token)) {
  1991.        setCookieIfConversion(token);
  1992.        
  1993.      }
  1994.    });
  1995.  
  1996.  
  1997.        var eventsListenerScript = document.createElement('script');
  1998.        eventsListenerScript.async = true;
  1999.        eventsListenerScript.src = "//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/shop_events_listener-1d89eace2351930ad947448cd92e0cd236cb81ecc8f6bbf9ce2331557cb884b2.js";
  2000.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  2001.  
  2002. })();</script>
  2003. <script
  2004.  defer
  2005.  src="https://uk-pilatesreformers.co.uk/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
  2006.  data-application="storefront-renderer"
  2007.  data-shop-id="80955703638"
  2008.  data-render-region="gcp-us-east1"
  2009.  data-page-type="index"
  2010.  data-theme-instance-id="174976663894"
  2011.  data-theme-name="Loft"
  2012.  data-theme-version="2.3.7"
  2013.  data-monorail-region="shop_domain"
  2014.  data-resource-timing-sampling-rate="10"
  2015.  data-shs="true"
  2016. ></script>
  2017. </head>
  2018. <body id="uk-pilates-reformers" class="template-index template-index  animations-enabled" ><article role="banner" class="header__section-wrapper">
  2019.    <!-- BEGIN sections: header-group -->
  2020. <div id="shopify-section-sections--24031473205590__announcement-bar" class="shopify-section shopify-section-group-header-group disclosure-section shopify-section-announcement shopify-section header__promo-wrapper"><!-- /sections/Announcement-bar.liquid -->
  2021.  
  2022.  
  2023.  
  2024. <style data-shopify>
  2025. .promo-bar-offset{
  2026. top:40px;
  2027. }
  2028. @media screen and (max-width:768px){
  2029. .sticky-header{
  2030. top:40px;
  2031. }
  2032. .promo-content-wrapper,
  2033. .promo-bar{
  2034. opacity:1;
  2035. }
  2036. }
  2037. </style>
  2038.  
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044. <article class="promo-bar__container promo-bar__container-slider--false" data-disclosure-section aria-labelledby="promo_bar_label"
  2045.         data-section-id="sections--24031473205590__announcement-bar"
  2046.         data-block-count="1"
  2047.         data-speed="4000"
  2048.         data-autoplay="4000"
  2049.         data-slider="false"
  2050.         data-section-type="announcement"
  2051.         data-language="false"
  2052.         data-currency="false"  
  2053.         >
  2054.  <span class="visually-hidden" hidden id="promo_bar_label">
  2055.    Promo Bar
  2056.  </span>
  2057.  <section class="promo-bar__slide-container promo-bar__slide-container--full-width" aria-labelledby="header-promotional-messages">
  2058.    <span hidden id="header-promotional-messages">
  2059.      Promotional messages
  2060.    </span>
  2061.    <div class="swiper-wrapper" role="group">
  2062.      
  2063.      <div class="promo-bar__slide swiper-slide p--small"><div class="promo-bar__slide-content">
  2064.    <span class="p--bold">Basingstoke RG248QU Showroom NOW OPEN </span>
  2065.    <p>Reformers available to try  |  Call 0800 222 9 333 to View</p>
  2066.  </div></div>
  2067.  
  2068. </div>
  2069.  
  2070. </section>
  2071.  <div class="promo-bar__icon-wrapper"></div>
  2072. </article>
  2073.  
  2074.  
  2075. <style data-shopify>
  2076.  
  2077. .header__promo-wrapper{
  2078. position: relative;
  2079. z-index: 299;
  2080. overflow-x: clip;
  2081. }
  2082. .promo-bar__container{
  2083. margin-left: auto;
  2084. margin-right: auto;
  2085. position: relative;
  2086. padding: 0;
  2087. display: flex;
  2088. justify-content: space-between;
  2089. padding: 0px 4%;
  2090. background-color: var(--promo_bg);
  2091. color: var(--promo_text);
  2092. }
  2093. .promo-bar__icon-wrapper{
  2094. display: flex;
  2095. flex-wrap:wrap;
  2096. align-items: center;
  2097. height: 100%;
  2098. list-style: none;
  2099. margin: 0;
  2100. }
  2101. .promo-bar__icon{
  2102. margin: 0;
  2103. padding: 5px;
  2104. }
  2105. .promo-bar__icon-link{
  2106. display: flex;
  2107. align-items: center;
  2108. }
  2109. .promo-bar__container .header__crossborder{
  2110. justify-content: flex-end;
  2111. }
  2112. .promo-bar__container .crossborder__toggle{
  2113. margin-right: 0;
  2114. margin-left: 10px;
  2115. }
  2116. .promo-bar__slide-container{
  2117. width: 100%;
  2118. display: flex;
  2119. align-items: center;
  2120. }
  2121. .promo-bar__slide-container .flickity-button:disabled{
  2122. display: unset;
  2123. opacity: .5;
  2124. }
  2125. .promo-bar__slide-container button.flickity-button{
  2126. opacity: 1;
  2127. color: var(--promo_text);
  2128. }
  2129.  
  2130. .header__promo{
  2131. display: block;
  2132. width: 100%;
  2133. height: 100%;
  2134. padding: 10px 4%;
  2135. }
  2136. .promo-bar__content-container{
  2137. display: flex;
  2138. flex-wrap: wrap;
  2139. width: 100%;
  2140. height: 100%;
  2141. }
  2142. .promo-bar__slide{
  2143. padding: 0;
  2144. display: flex;
  2145. align-items: center;
  2146. width: 100%;
  2147. }
  2148.  
  2149. .promo-bar__slide-content{
  2150. width: 100%;
  2151. padding: 10px 5px;
  2152. }
  2153. .promo-bar__slide-content a {
  2154. color: var(--promo_text_link);
  2155. }
  2156.  
  2157. .promo-bar__slide span p, .promo-bar__slide-content p {
  2158. margin: 0;
  2159. }
  2160.  
  2161. .js-more-btn{
  2162. display: flex;
  2163. align-items: center;
  2164. width: 100%;
  2165. padding: 10px 0 0 0;
  2166. }
  2167.  
  2168. .js-more-btn--text-left{
  2169. justify-content: flex-start;
  2170. }
  2171.  
  2172. .js-more-btn--text-center{
  2173. justify-content: center;
  2174. }
  2175.  
  2176. .js-more-btn svg{
  2177. margin: 5px;
  2178. }
  2179.  
  2180. @media screen and (min-width: 769px){
  2181. .promo-bar__container .swiper-wrapper{
  2182. flex: 1 1 auto;
  2183. }
  2184. .promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2185. flex: 1 1 auto;
  2186. padding: 0 30px;
  2187. }
  2188. .promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--full-width{
  2189. flex: 1 1 auto;
  2190. padding: 0 50px;
  2191. }.promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2192. padding: 0 15px;
  2193. }
  2194. .promo-bar__container-slider--false .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2195. padding: 0 15px;
  2196. }.promo-bar__container .promo-bar__slide-container--half-width{
  2197. max-width: 500px;
  2198. }
  2199. .promo-bar__container .flickity-button{
  2200. height: 20px;
  2201. }
  2202. .promo-bar__slide-container--full-width .promo-bar__slide-content{
  2203. text-align: center;
  2204. }
  2205. .promo-bar__slide-container--half-width .promo-bar__slide-content{
  2206. text-align: left;
  2207. }
  2208. .promo-bar__slide-container--full-width .flickity-prev-next-button.previous,
  2209. .promo-bar__slide-container--half-width .flickity-prev-next-button.previous{
  2210. left: -50px;
  2211. width: 50px;
  2212. }
  2213. .promo-bar__slide-container .flickity-button-icon{
  2214. left: 0;
  2215. width: 100%;
  2216. }
  2217. .promo-bar__slide-container--full-width .flickity-prev-next-button.next{
  2218. right: -50px;
  2219. width: 50px;
  2220. }
  2221. .promo-bar__slide-container--half-width .flickity-prev-next-button.next{
  2222. right: -50px;
  2223. width: 50px;
  2224. }
  2225. }
  2226. @media screen and (max-width: 768px){
  2227. .promo-bar__container .swiper-wrapper{
  2228. width: 100%;
  2229. }
  2230. .promo-bar__container-slider--true .promo-bar__slide-container{
  2231. width: 100%;
  2232. padding: 0 40px;
  2233. }
  2234. .promo-bar__slide-container .flickity-prev-next-button.previous{
  2235. left: -40px;
  2236. width: 40px;
  2237. }
  2238. .promo-bar__slide-container .flickity-prev-next-button.next{
  2239. right: -40px;
  2240. width: 40px;
  2241. }
  2242. .promo-bar__slide-content{
  2243. text-align: center;
  2244. }
  2245. .promo-bar__slide{
  2246. justify-content: space-between;
  2247. }
  2248. .promo-bar__slide span p, .promo-bar__slide-content p {
  2249. flex: 1 1 auto;
  2250. }
  2251. }
  2252. </style>
  2253. </div><div id="shopify-section-sections--24031473205590__header" class="shopify-section shopify-section-group-header-group section-header">
  2254.  
  2255. <!-- /sections/header.liquid -->
  2256.  
  2257.  
  2258.  
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268. <style data-shopify>
  2269.  
  2270. .header__logo{
  2271.  width: 200px;
  2272.  max-width: 100%;
  2273. }
  2274.  
  2275. .dim,
  2276. .dimSearch{
  2277. background-color:rgba(255, 255, 255, 0.6);
  2278. }
  2279.  
  2280. @media screen and (max-width: 768px){
  2281.  .site-header--bottom{
  2282.    bottom: 0;
  2283.    position: fixed;
  2284.    width: 100%;
  2285.  }
  2286. }
  2287.  
  2288. .site-header__logo-image::before {
  2289.  content: "";
  2290.  width: 1px;
  2291.  margin-left: -1px;
  2292.  float: left;
  2293.  height: 0;
  2294.  padding-top: 24.75633528265107%;
  2295. }
  2296. .site-header__logo-image::after { /* to clear float */
  2297.  content: "";
  2298.  display: table;
  2299.  clear: both;
  2300. }@media screen and (min-width: 769px) {
  2301.  .header__wrapper {
  2302.      column-gap: 10px;
  2303.  }
  2304.  .header__wrapper--left {
  2305.      grid-template-columns: 200px auto 200px;
  2306.  }
  2307.  .header__wrapper--left-below {
  2308.    grid-template-columns: 200px auto 200px;
  2309.  }
  2310.  .header__wrapper{
  2311.    grid-template-columns: 200px auto 200px;
  2312.  }
  2313. }
  2314.  
  2315.  
  2316. .section-header{
  2317.  position: sticky;
  2318. }
  2319. .header__section-wrapper{
  2320.  display:initial;
  2321. }
  2322.  
  2323.  
  2324. </style>
  2325.  
  2326. <div data-section-id="sections--24031473205590__header" data-section-type="header">
  2327. <header id="header" data-position="true" class="site-header site-header--top nav-bar  card-shadow ">
  2328.  <div class="header__wrapper header__wrapper--center-below">
  2329.    <button type="button" class="text-left medium-down--show large--hide js-drawer-open-left mobile-header__icon" aria-controls="NavDrawer" aria-expanded="false" aria-label="Open menu">
  2330.      <svg width="50px" height="50px" viewBox="0 0 50 50">
  2331.    <g id="Icon_Hamburger" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2332.        <g id="align-justify" transform="translate(16.000000, 17.000000)" stroke="#292929" stroke-width="1.6">
  2333.            <line x1="18" y1="10" x2="0" y2="10" id="Shape"></line>
  2334.            <line x1="18" y1="15" x2="0" y2="15" id="Shape"></line>
  2335.            <line x1="18" y1="0" x2="0" y2="0" id="Shape"></line>
  2336.            <line x1="18" y1="5" x2="0" y2="5" id="Shape"></line>
  2337.        </g>
  2338.    </g>
  2339. </svg>
  2340.    </button>
  2341.    <noscript class="no-js__mobile">
  2342.      <span id="no-js__mobile-nav-wrapper">
  2343.      <details name="no-js__mobile-nav" id="no-js__mobile-nav--button">
  2344.        <summary id="no-js__mobile-nav--open">
  2345.          <span class="no-js__open">
  2346.          <svg width="50px" height="50px" viewBox="0 0 50 50">
  2347.    <g id="Icon_Hamburger" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2348.        <g id="align-justify" transform="translate(16.000000, 17.000000)" stroke="#292929" stroke-width="1.6">
  2349.            <line x1="18" y1="10" x2="0" y2="10" id="Shape"></line>
  2350.            <line x1="18" y1="15" x2="0" y2="15" id="Shape"></line>
  2351.            <line x1="18" y1="0" x2="0" y2="0" id="Shape"></line>
  2352.            <line x1="18" y1="5" x2="0" y2="5" id="Shape"></line>
  2353.        </g>
  2354.    </g>
  2355. </svg>
  2356.        </span>
  2357.        <span class="no-js__close">
  2358.          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
  2359.        </span>
  2360.      </summary>
  2361.      <ul><li>
  2362.        <details>
  2363.          <summary> <a href="">Reformers</a></summary>
  2364.          
  2365.        </details>
  2366.      </li>
  2367.      <li>
  2368.        <details>
  2369.          <summary> <a href="">Towers</a></summary>
  2370.          
  2371.        </details>
  2372.      </li>
  2373.      <li>
  2374.        <details>
  2375.          <summary> <a href="">Cadillacs</a></summary>
  2376.          
  2377.        </details>
  2378.      </li>
  2379.      <li>
  2380.        <details>
  2381.          <summary> <a href="">Chairs</a></summary>
  2382.          
  2383.        </details>
  2384.      </li>
  2385.      <li>
  2386.        <details>
  2387.          <summary> <a href="">Barrels</a></summary>
  2388.          
  2389.        </details>
  2390.      </li>
  2391.      <li>
  2392.        <details>
  2393.          <summary> <a href="">Wall Units</a></summary>
  2394.          
  2395.        </details>
  2396.      </li>
  2397.      <li>
  2398.        <details>
  2399.          <summary> <a href="">Equipment</a></summary>
  2400.          
  2401.        </details>
  2402.      </li>
  2403.      <li>
  2404.        <details>
  2405.          <summary> <a href="">Contact Us</a></summary>
  2406.          
  2407.        </details>
  2408.      </li>
  2409.      <li>
  2410.        <details>
  2411.          <summary> About ></summary>
  2412.          
  2413.          <ul><li>
  2414.            <details>
  2415.                <summary><a href="">About Us</a> </summary>
  2416.                
  2417.            </details>
  2418.            </li>
  2419.            <li>
  2420.            <details>
  2421.                <summary><a href="">Blog</a> </summary>
  2422.                
  2423.            </details>
  2424.            </li>
  2425.            <li>
  2426.            <details>
  2427.                <summary><a href="">Why Shop With Us?</a> </summary>
  2428.                
  2429.            </details>
  2430.            </li>
  2431.            <li>
  2432.            <details>
  2433.                <summary><a href="">Commercial Quotes</a> </summary>
  2434.                
  2435.            </details>
  2436.            </li>
  2437.            <li>
  2438.            <details>
  2439.                <summary><a href="">FAQs</a> </summary>
  2440.                
  2441.            </details>
  2442.            </li>
  2443.            <li>
  2444.            <details>
  2445.                <summary><a href="">Feedback</a> </summary>
  2446.                
  2447.            </details>
  2448.            </li>
  2449.            
  2450.        </ul>
  2451.        
  2452.        </details>
  2453.      </li>
  2454.      
  2455.    </ul>
  2456.     </details>
  2457.     </span>
  2458.    </noscript>
  2459.    <div class="header__logo header__logo--center-below">
  2460.      <h1 class="header__logo-title header__logo-title--center-below">
  2461.        
  2462.          
  2463.          
  2464.          <a href="/" itemprop="WebPage" class="site-header__logo-image" style="width: 200px; max-height: 50px">
  2465.            <img class="lazyload"
  2466.              data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/UK_Pilates_Reformers-512px.png?v=1709064318&width={width}"
  2467.              data-parent-fit="contain"
  2468.              data-widths="[100, 125, 150, 175, 200, 225, 250, 275, 300]"
  2469.              data-aspectratio="4.039370078740157"
  2470.              data-sizes="auto"
  2471.              alt="UK Pilates Reformers"
  2472.              style="max-width: 200px;">
  2473.          </a>
  2474.        
  2475.      </h1>
  2476.      <a href="/" itemprop="url" class="site-header__shop-link" aria-labelledby="nav-label__store-logo-link"></a>
  2477.      <div id="nav-label__store-logo-link" hidden>UK Pilates Reformers</div>
  2478.    </div>
  2479.  
  2480.    <!-- Desktop Nav -->
  2481.    <div class="header__nav header__nav--center-below medium-down--hide">
  2482.      <nav class="js__desktop--nav" aria-label="DesktopNavigation">
  2483.        
  2484.          <ul class="site-nav single-menu " id="AccessibleNav" role="menubar">
  2485.  
  2486.  
  2487.    
  2488.      <li id="Reformers" class="  site-nav__link-container  p--bold " role="menuitem">
  2489.        <a href="/collections/pilates-reformers" class="site-nav__main-link">Reformers</a>
  2490.      </li>
  2491.    
  2492.  
  2493.    
  2494.      <li id="Towers" class="  site-nav__link-container  p--bold " role="menuitem">
  2495.        <a href="/collections/pilates-reformers-with-tower" class="site-nav__main-link">Towers</a>
  2496.      </li>
  2497.    
  2498.  
  2499.    
  2500.      <li id="Cadillacs" class="  site-nav__link-container  p--bold " role="menuitem">
  2501.        <a href="/collections/pilates-cadillac" class="site-nav__main-link">Cadillacs</a>
  2502.      </li>
  2503.    
  2504.  
  2505.    
  2506.      <li id="Chairs" class="  site-nav__link-container  p--bold " role="menuitem">
  2507.        <a href="/collections/wunda-chair-pilates" class="site-nav__main-link">Chairs</a>
  2508.      </li>
  2509.    
  2510.  
  2511.    
  2512.      <li id="Barrels" class="  site-nav__link-container  p--bold " role="menuitem">
  2513.        <a href="/collections/pilates-ladder-barrels" class="site-nav__main-link">Barrels</a>
  2514.      </li>
  2515.    
  2516.  
  2517.    
  2518.      <li id="Wall_Units" class="  site-nav__link-container  p--bold " role="menuitem">
  2519.        <a href="/collections/pilates-wall-units" class="site-nav__main-link">Wall Units</a>
  2520.      </li>
  2521.    
  2522.  
  2523.    
  2524.      <li id="Equipment" class="  site-nav__link-container  p--bold " role="menuitem">
  2525.        <a href="/collections/pilates-equipment" class="site-nav__main-link">Equipment</a>
  2526.      </li>
  2527.    
  2528.  
  2529.    
  2530.      <li id="Contact_Us" class="  site-nav__link-container  p--bold " role="menuitem">
  2531.        <a href="/pages/contact-us" class="site-nav__main-link">Contact Us</a>
  2532.      </li>
  2533.    
  2534.  
  2535.    
  2536. <li id="About" class="site-nav__link-container site-nav--has-dropdown p--bold " aria-haspopup="true" role="menuitem">
  2537.        <!-- Display the parent link -->
  2538.        <a href="#" class="site-nav__main-link site-nav--has-dropdown_link  ">
  2539.          About
  2540.          <span class="site-nav__arrow-down" aria-hidden="true"><svg width="16px" height="10px" viewBox="0 0 16 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  2541.    <g id="icon-dropdown-small" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2542.        <g id="arrow-drop-down-line" transform="translate(3.000000, 2.000000)" fill="#292929" fill-rule="nonzero">
  2543.            <polygon id="Path" points="5 6 0.757 1.757 2.172 0.343 5 3.172 7.828 0.343 9.243 1.757"></polygon>
  2544.        </g>
  2545.    </g>
  2546. </svg></span>
  2547.        </a>
  2548.  
  2549.        <!-- Create the container to house child and grandchild link -->
  2550.        <div class="  nav-menu-js single-dropdown  main-menu--sticky-true child-link">
  2551.          <div class="single-menu-container">
  2552.            <ul class="site-nav__dropdown" role="menu">
  2553.              <div class="main-nav-wrap">
  2554.                  
  2555.                <!-- gather grandchild links -->
  2556.                  
  2557.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2558.                        <a class="site-nav__link" href="/pages/about-us">About Us</a>
  2559.                      </li>
  2560.                                
  2561.                  
  2562.                <!-- gather grandchild links -->
  2563.                  
  2564.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2565.                        <a class="site-nav__link" href="/blogs/news">Blog</a>
  2566.                      </li>
  2567.                                
  2568.                  
  2569.                <!-- gather grandchild links -->
  2570.                  
  2571.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2572.                        <a class="site-nav__link" href="/pages/why-shop-with-us">Why Shop With Us?</a>
  2573.                      </li>
  2574.                                
  2575.                  
  2576.                <!-- gather grandchild links -->
  2577.                  
  2578.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2579.                        <a class="site-nav__link" href="/pages/commercial-quotes">Commercial Quotes</a>
  2580.                      </li>
  2581.                                
  2582.                  
  2583.                <!-- gather grandchild links -->
  2584.                  
  2585.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2586.                        <a class="site-nav__link" href="/pages/pilates-faqs">FAQs</a>
  2587.                      </li>
  2588.                                
  2589.                  
  2590.                <!-- gather grandchild links -->
  2591.                  
  2592.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2593.                        <a class="site-nav__link" href="/pages/feedback">Feedback</a>
  2594.                      </li>
  2595.                                
  2596.                
  2597.              </div>
  2598.            </ul>
  2599.          </div>      
  2600.        </div>
  2601.      </li>
  2602.    
  2603.  
  2604. </ul>
  2605.        
  2606.      </nav>
  2607.      <!-- No-js single-menu for accessibility -->
  2608.      <noscript class="no-js__desktop--nav">
  2609.        <nav class="header__inline-menu" aria-label="DesktopNavigation">
  2610.          <ul class="site-nav single-menu text-center" id="AccessibleNav" role="menubar"><li id="Reformers" class="child-site-nav__link child-div  has-children "><a id="Reformers" href="/collections/pilates-reformers" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2611.                    <span>Reformers</span>
  2612.                  </a></li><li id="Towers" class="child-site-nav__link child-div  has-children "><a id="Towers" href="/collections/pilates-reformers-with-tower" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2613.                    <span>Towers</span>
  2614.                  </a></li><li id="Cadillacs" class="child-site-nav__link child-div  has-children "><a id="Cadillacs" href="/collections/pilates-cadillac" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2615.                    <span>Cadillacs</span>
  2616.                  </a></li><li id="Chairs" class="child-site-nav__link child-div  has-children "><a id="Chairs" href="/collections/wunda-chair-pilates" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2617.                    <span>Chairs</span>
  2618.                  </a></li><li id="Barrels" class="child-site-nav__link child-div  has-children "><a id="Barrels" href="/collections/pilates-ladder-barrels" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2619.                    <span>Barrels</span>
  2620.                  </a></li><li id="Wall Units" class="child-site-nav__link child-div  has-children "><a id="Wall Units" href="/collections/pilates-wall-units" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2621.                    <span>Wall Units</span>
  2622.                  </a></li><li id="Equipment" class="child-site-nav__link child-div  has-children "><a id="Equipment" href="/collections/pilates-equipment" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2623.                    <span>Equipment</span>
  2624.                  </a></li><li id="Contact Us" class="child-site-nav__link child-div  has-children "><a id="Contact Us" href="/pages/contact-us" class="animate__animated animate__fadeIn site-nav__link-container  ">
  2625.                    <span>Contact Us</span>
  2626.                  </a></li><li id="About" class="child-site-nav__link child-div  has-children "><details-disclosure>
  2627.                    <details class="no-js__desktop--details">
  2628.                      <summary class="site-nav__main-link site-nav--has-dropdown_link animate__animated animate__fadeIn">
  2629.                        <span>About</span>
  2630.                        <span class="site-nav__arrow-down" aria-hidden="true"><svg width="16px" height="10px" viewBox="0 0 16 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  2631.    <g id="icon-dropdown-small" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2632.        <g id="arrow-drop-down-line" transform="translate(3.000000, 2.000000)" fill="#292929" fill-rule="nonzero">
  2633.            <polygon id="Path" points="5 6 0.757 1.757 2.172 0.343 5 3.172 7.828 0.343 9.243 1.757"></polygon>
  2634.        </g>
  2635.    </g>
  2636. </svg></span>
  2637.                      </summary>
  2638.                      <div class="animate__animated animate__fadeIn nav-menu-js single-dropdown  main-menu--sticky-true child-link">
  2639.                        <div class="single-menu-container">
  2640.                      <ul class="animate__animated animate__fadeIn nav-menu-js single-dropdown  main-menu--sticky-true child-link" tabindex="-1"><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/pages/about-us" class="child-site-nav__link  site-nav__link child-div children-4">
  2641.                                About Us
  2642.                              </a></li><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/blogs/news" class="child-site-nav__link  site-nav__link child-div children-4">
  2643.                                Blog
  2644.                              </a></li><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/pages/why-shop-with-us" class="child-site-nav__link  site-nav__link child-div children-4">
  2645.                                Why Shop With Us?
  2646.                              </a></li><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/pages/commercial-quotes" class="child-site-nav__link  site-nav__link child-div children-4">
  2647.                                Commercial Quotes
  2648.                              </a></li><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/pages/pilates-faqs" class="child-site-nav__link  site-nav__link child-div children-4">
  2649.                                FAQs
  2650.                              </a></li><li class="child-site-nav__link child-div  has-children " aria-haspopup="true" role="menuitem"><a href="/pages/feedback" class="child-site-nav__link  site-nav__link child-div children-4">
  2651.                                Feedback
  2652.                              </a></li></ul>
  2653.                    </div>      
  2654.                  </div>
  2655.                    </details>
  2656.                  </details-disclosure></li></ul>
  2657.      </nav>
  2658.      </noscript>
  2659.    </div>
  2660.    <!-- //Desktop Nav -->
  2661.  
  2662.    <!-- Desktop center-below Layout --><div class="header__search-container">
  2663.        <!-- <button type="button" class="predictive-search__trigger"
  2664.          data-modal-open="global__predictive-search"
  2665.          disabled>
  2666.        </button>   -->
  2667.        <button aria-labelledby="nav-label__search" data-micromodal-trigger="modal-1"><svg class="header__individual-icon" height="50px" viewBox="0 0 50 50">
  2668.  <g id="Icon_Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2669.      <g id="search" stroke="#292929" stroke-width="1.6">
  2670.          <circle id="Oval" cx="23.5" cy="23.5" r="7.5"></circle>
  2671.          <line x1="34" y1="34" x2="29" y2="29" id="Shape"></line>
  2672.      </g>
  2673.  </g>
  2674. </svg></button>
  2675.        <div id="nav-label__search" hidden>Search</div>
  2676.        <!-- <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive-search.js?v=33016745803952707301732721636" defer="defer"></script>
  2677.  
  2678. <div class="modal micromodal-slide" id="modal-1" aria-hidden="true">
  2679.  <div class="modal__overlay modal__overlay--search" tabindex="-1" data-micromodal-close>
  2680.    <div class="modal__container predictive-search__wrapper" role="dialog" aria-modal="true"
  2681.      aria-labelledby="modal-1-title">
  2682.      <h2 class="modal__title" id="modal-1-title" style="display: none">
  2683.        Search
  2684.      </h2>
  2685.      <div class="search-content" id="modal-1-content">
  2686.        <predictive-search>
  2687.          <form action="/search" method="get" role="search" class="input-group">
  2688.            <div class="one-whole text-left search-input-field-container ">
  2689.              <div class="search-input-field card-shadow">
  2690.                <input type="search" id="search-input" name="q" role="combobox" value=""
  2691.                  placeholder="Enter search terms..." aria-expanded="false" aria-owns="predictive-search-results"
  2692.                  aria-controls="predictive-search-results" aria-haspopup="listbox" aria-autocomplete="list"
  2693.                  data-autofocus
  2694.                  class="predictive-search__input js-search-query"
  2695.                  aria-label="Enter search terms..."
  2696.                  autocomplete="off">
  2697.              </div>
  2698.            </div>
  2699.            <input name="options[prefix]" type="hidden" value="last">
  2700.  
  2701.            <div id="predictive-search" tabindex="-1"></div>
  2702.          </form>
  2703.        </predictive-search>
  2704.      </div>
  2705.    </div>
  2706.  </div>
  2707. </div>
  2708.  
  2709.  
  2710.  
  2711. -->
  2712.      </div><div class="large--text-right header-icons icon-wrapper">
  2713.      <div class="header__icon-group"><a class="header__individual-icon medium-down--hide" href="/account">
  2714.              <svg class="header__individual-icon"  height="50px" viewBox="0 0 50 50">
  2715.    <g id="Icon_Account" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2716.        <g id="user" stroke="#292929" stroke-width="1.6">
  2717.            <path d="M34,34 L34,32 C34,29.790861 31.9852814,28 29.5,28 L20.5,28 C18.0147186,28 16,29.790861 16,32 L16,34" id="Shape"></path>
  2718.            <circle id="Oval" cx="25" cy="20" r="4"></circle>
  2719.        </g>
  2720.    </g>
  2721. </svg>
  2722.              <span class="visually-hidden">Account Login</span>
  2723.            </a><a class="header__individual-icon cart-wrapper  js-cart-icon" href="/cart">
  2724.          <div id="cart-svg-count" class="cart-item-count">0</div>
  2725.          <svg class="header__individual-icon" height="50px" viewBox="0 0 50 50">
  2726.    <g id="Icon_Cart" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2727.        <g id="shopping-cart" stroke="#292929" stroke-width="1.55">
  2728.            <circle id="Oval" cx="19.3636364" cy="33.1818182" r="1.81818182"></circle>
  2729.            <circle id="Oval" cx="30.2727273" cy="33.1818182" r="1.81818182"></circle>
  2730.            <path d="M17.2454545,19.5454545 L33,19.5454545 L31.4727273,27.1727273 C31.3011482,28.0365741 30.5351055,28.6532385 29.6545455,28.6363636 L20.0454545,28.6363636 C19.1268013,28.6441553 18.3466689,27.9654401 18.2272727,27.0545455 L16.8454545,16.5818182 C16.7269293,15.6778144 15.9571942,15.0013805 15.0454545,15 L13,15" id="Shape"></path>
  2731.        </g>
  2732.    </g>
  2733. </svg>
  2734.          <span class="visually-hidden">Cart </span>
  2735.        </a>
  2736.        
  2737.        <div class="js-cart-count" style="display:none;">
  2738.          <a href="/cart" class="site-header__cart-toggle js-drawer-open-right">
  2739.            <span class="icon icon-cart" aria-hidden="true"></span>
  2740.            Cart
  2741.            (<span id="CartCount">0</span>
  2742.            items
  2743.            <span id="CartCost">£0</span>)
  2744.          </a>
  2745.        </div>
  2746.      </div>
  2747.    </div>
  2748.  </div>
  2749. </header>
  2750.  
  2751. <cart-notification>
  2752.  <div class="cart-notification-wrapper page-width">
  2753.    <div id="cart-notification" class="cart-notification focus-inset" aria-modal="true" aria-label="Item added" role="dialog" tabindex="-1">
  2754.      <div class="cart-notification__header">
  2755.        <h2 class="cart-notification__heading caption-large text-body">Liquid error (snippets/cart-notification line 15): Could not find asset snippets/icon-checkmark.liquidItem added</h2>
  2756.        <button type="button" class="cart-notification__close modal__close-button link link--text focus-inset" aria-label="Close">
  2757.          <svg class="icon icon-close" aria-hidden="true" focusable="false"><use href="#icon-close"></svg>
  2758.        </button>
  2759.      </div>
  2760.      <div id="cart-notification-product" class="cart-notification-product"></div>
  2761.      <div class="cart-notification__links">
  2762.        <a href="/cart" id="cart-notification-button" class="button button--secondary button--full-width"></a>
  2763.        <form action="/cart" method="post" id="cart-notification-form">
  2764.          <button class="button button--primary button--full-width" name="checkout">Proceed To Checkout</button>
  2765.        </form>
  2766.        <button type="button" class="link button-label">Continue Shopping </button>
  2767.      </div>
  2768.    </div>
  2769.  </div>
  2770. </cart-notification>
  2771. <style data-shopify>
  2772.  .cart-notification {
  2773.     display: none;
  2774.  }
  2775. </style>
  2776. <div class="dim"></div>
  2777.  
  2778. <!-- Mobile Nav Drawer -->
  2779. <div id="NavDrawer" data-section-id="sections--24031473205590__header--mobile-menu" data-section-type="mobile_menu" class="lazysection lazyload drawer drawer--bottom large--hide medium-down--show">
  2780.  <div class="drawer__close js-drawer-close">
  2781.    <button type="button" aria-label="Close menu">
  2782.      <span class="mobile-nav-close" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></span>
  2783.    </button>
  2784.  </div>
  2785.  
  2786.  <nav aria-label="Header Menu" aria-haspopup="true" role="navigation" class="mobile-nav__group-wrapper mobile-nav__wrapper">
  2787.  <ul id="mobile-menu__main-menu" class="mobile-nav__parent mobile-nav__group mobile-nav__group--open" role="menu" data-level="1">
  2788.    <li class="mobile-nav__header">
  2789.      <span class="h2 mobile-nav__header-title mobile-nav__header-title--main">Header Menu</span>
  2790.    </li><li id="reformers-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-reformers" class="mobile-nav__link">Reformers</a></li><li id="towers-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-reformers-with-tower" class="mobile-nav__link">Towers</a></li><li id="cadillacs-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-cadillac" class="mobile-nav__link">Cadillacs</a></li><li id="chairs-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/wunda-chair-pilates" class="mobile-nav__link">Chairs</a></li><li id="barrels-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-ladder-barrels" class="mobile-nav__link">Barrels</a></li><li id="wall-units-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-wall-units" class="mobile-nav__link">Wall Units</a></li><li id="equipment-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/collections/pilates-equipment" class="mobile-nav__link">Equipment</a></li><li id="contact-us-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/contact-us" class="mobile-nav__link">Contact Us</a></li><li id="about-li" class="mobile-nav__item" aria-haspopup="true" role="menuitem">
  2791.          <button type="button" class="icon-fallback-text mobile-nav__toggle-open" data-target="about-9" data-level="1" aria-expanded="false">
  2792.            <span class="mobile-nav__label">About</span>
  2793.            <span class="mobile-nav-arrow" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg></span>              
  2794.          </button>    
  2795.          <ul id="about-9" class="mobile-nav__group mobile-nav__group--closed mobile-nav__child" data-parent="about-9" data-level="2">
  2796.            <li class="visually-hidden" tabindex="-1" data-menu-title="2">
  2797.              About
  2798.            </li>
  2799.            <li class="mobile-nav__header">
  2800.              <button type="button" class="icon-fallback-text mobile-nav__toggle-close" data-target="mobile-menu__main-menu" data-current-container="about-9" aria-expanded="true" aria-label="">
  2801.                <span class="go-back mobile-nav-arrow" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg></span>      
  2802.              </button>
  2803.              <h2 class="mobile-nav__header-title">About</h2>
  2804.            </li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/about-us" class="mobile-nav__link">About Us</a></li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/blogs/news" class="mobile-nav__link">Blog</a></li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/why-shop-with-us" class="mobile-nav__link">Why Shop With Us?</a></li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/commercial-quotes" class="mobile-nav__link">Commercial Quotes</a></li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/pilates-faqs" class="mobile-nav__link">FAQs</a></li><li class="mobile-nav__item" aria-haspopup="true" role="menuitem"><a href="/pages/feedback" class="mobile-nav__link">Feedback</a></li></ul></li></ul>
  2805. </nav>
  2806.  
  2807.  <div class="mobile__nav-footer mobile__nav-wrapper">
  2808.    <div class="mobile__nav-crossborder"></div>
  2809.    <div class="mobile__nav-links">
  2810.        
  2811.          
  2812.            <div class="mobile-account-link p--bold">
  2813.              <a href="https://uk-pilatesreformers.co.uk/customer_authentication/redirect?locale=en" id="customer_login_link">Sign-In</a>
  2814.            </div >
  2815.            <div class="mobile-account-link p--bold">
  2816.              <a href="https://shopify.com/80955703638/account?locale=en" id="customer_register_link">Register</a>
  2817.            </div>
  2818.          
  2819.        
  2820.      
  2821.    </div>
  2822.    <div class="mobile__nav-social-media">
  2823.      
  2824.  
  2825. <ul class="promo-bar__icon-wrapper">
  2826.  
  2827.  
  2828.  
  2829.  
  2830.  
  2831.  
  2832.  
  2833.  
  2834.  
  2835. </ul>
  2836.  
  2837.    </div>
  2838.  </div>
  2839. </div>
  2840. <!-- //Mobile Nav Drawer -->
  2841.  
  2842. <!-- Mobile Predictive Search -->
  2843.  
  2844. <!-- //Mobile Predictive Search -->
  2845. </div>
  2846.  
  2847. </div>
  2848. <!-- END sections: header-group -->
  2849.  </article>
  2850.  <div id="PageContainer" class="is-moved-by-drawer">
  2851.    <main class="wrapper--full main-content   ">
  2852.      <div id="shopify-section-template--24031472877910__image_with_text_1" class="shopify-section dynamic__section section__image-with-text"><style data-shopify>
  2853.  #shopify-section-template--24031472877910__image_with_text_1{
  2854.    background-color: var(--color_body_bg);
  2855.  }
  2856. </style>
  2857.  
  2858. <!-- /sections/home-features.liquid -->
  2859. <div class="section__standard-spacing--none">
  2860.  <div class="">
  2861.    <div class=""><!-- /snippets/section__image-with-text.liquid -->
  2862. <style data-shopify>
  2863. #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container,
  2864.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container{
  2865.      background-color: #3e5e61;
  2866.    }
  2867.    #image-with-text--template--24031472877910__image_with_text_1 h2,
  2868.    #image-with-text--template--24031472877910__image_with_text_1 h3,
  2869.    #image-with-text--template--24031472877910__image_with_text_1 p{
  2870.      color: #ffffff;
  2871.    }
  2872.  
  2873.    #image-with-text--template--24031472877910__image_with_text_1 .btn--tertiary{
  2874.      color: #ffffff;
  2875.      border-color: #ffffff;
  2876.    }
  2877.    #image-with-text--template--24031472877910__image_with_text_1 .btn--tertiary:hover{
  2878.      color: #ffffff;
  2879.      border-color: #282828;
  2880.      background-color: #282828;
  2881.    }.feature-flex{
  2882.    display: flex;
  2883.    flex-wrap: wrap;
  2884.  }
  2885.  .feature-flex-right{
  2886.    display: flex;
  2887.    flex-wrap: wrap-reverse;
  2888.  }
  2889.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container::before{
  2890.    content: "";
  2891.    width: 1px;
  2892.    margin-left: -1px;
  2893.    float: left;
  2894.    height: 0;
  2895.    padding-top: 66.66666666666666%;
  2896.    position: relative;
  2897.  }
  2898.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container::after{
  2899.    content: "";
  2900.    display: table;
  2901.    clear: both;
  2902.  }
  2903.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container{
  2904.    flex: 1 1 auto;
  2905.    width: 40%;
  2906.  }
  2907.  .image-with-text__content{
  2908.    width: 100%;
  2909.  }
  2910.  @media screen and (min-width: 769px){
  2911.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container{
  2912.      min-width: 60%;
  2913.      background-position: center center;
  2914.      flex: 1 1 auto;
  2915.    }
  2916.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container{
  2917.      min-width: 350px;
  2918.    }
  2919.  }
  2920.  @media screen and (max-width: 768px){
  2921.    .image-with-text__image-container{
  2922.      width: 100%;
  2923.    }
  2924.  }
  2925. </style>
  2926.  
  2927. <div id="image-with-text--template--24031472877910__image_with_text_1" class="home-promotion-block feature-flex">
  2928.  
  2929.    
  2930.      <div class="image-with-text__image-container left-image lazyload"
  2931.            data-bgset="
  2932.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=180 180w 120h,
  2933.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=360 360w 240h,
  2934.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=540 540w 360h,
  2935.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=720 720w 480h,
  2936.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=900 900w 600h,
  2937.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=1080 1080w 720h,
  2938.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=1296 1296w 864h,
  2939.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=1512 1512w 1008h,
  2940.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=1728 1728w 1152h,
  2941.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1740248890&width=5757 5757w 3838h
  2942. "
  2943.            data-sizes="auto"
  2944.            data-parent-fit="cover"></div>
  2945.    
  2946.  
  2947.    <div class="image-with-text__content-container right-text text-left">
  2948.      <div class="section__text-block image-with-text__content section__standard-spacing" data-animation-layer="2">
  2949.        
  2950.        <h2>Welcome to UK Pilates Reformers</h2>
  2951.        
  2952.        
  2953.        
  2954.          <p><em>Move With Intention, Sculpt Perfection</em></p>
  2955.        
  2956.        <a href="/collections/all" class="btn btn--tertiary">All Products</a>
  2957.      </div>
  2958.    </div>
  2959.  
  2960. </div></div>
  2961.  </div>
  2962. </div>
  2963.  
  2964.  
  2965. </div><div id="shopify-section-template--24031472877910__main_featured_collection_icCcmz" class="shopify-section dynamic__section section__featured-collection">
  2966. <!-- /sections/home-featured-collection.liquid -->
  2967. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  2968. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  2969.  
  2970.  
  2971.  
  2972.  
  2973.  
  2974.  
  2975.  
  2976.  
  2977.  
  2978.  
  2979.  
  2980.  
  2981.  
  2982.  
  2983.  
  2984.  
  2985.  
  2986.  
  2987. <style data-shopify>
  2988. #shopify-section-template--24031472877910__main_featured_collection_icCcmz{
  2989.  background-color: var(--color_body_bg);
  2990. }
  2991. .featured-collection__loop{
  2992.  max-width: 100%;
  2993. }
  2994.  
  2995. #section--template--24031472877910__main_featured_collection_icCcmz .promo__content-wrapper{
  2996.  background-color: #282828;
  2997.  color: #ffffff;
  2998. }
  2999.  
  3000. #section--template--24031472877910__main_featured_collection_icCcmz h2, #section--template--24031472877910__main_featured_collection_icCcmz h4 {
  3001.  color: #ffffff;
  3002. }
  3003. #section--template--24031472877910__main_featured_collection_icCcmz .promo__border {
  3004.  border: solid 1px #ffffff;
  3005. }
  3006. #section--template--24031472877910__main_featured_collection_icCcmz .promo__overlay{
  3007.  background-color: rgba(11, 11, 11, 0.2);
  3008. }
  3009.  
  3010. .featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz{
  3011.  border: 1px solid #e6e6e6;
  3012. }
  3013.  
  3014. .promotion_image--template--24031472877910__main_featured_collection_icCcmz{
  3015.  background-image: url(files/uk-pilates-reformers-collections-1.webp);
  3016.  background-size: cover;
  3017. }.featured-collection--template--24031472877910__main_featured_collection_icCcmz{
  3018.    background-color: var(--color_body_bg);
  3019.  }
  3020.  .featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz{
  3021.    border: 1px solid #e6e6e6;
  3022.  }
  3023.  
  3024.  .product-loop__img-template--24031472877910__main_featured_collection_icCcmz--cover{
  3025.    object-fit: cover!important;
  3026.    height: 100%;
  3027. }
  3028. .img--cover{
  3029.  width:100%;
  3030. }
  3031.  
  3032. @media screen and (min-width: 769px){
  3033.  .featured-collection--template--24031472877910__main_featured_collection_icCcmz .product-loop-element--hover .product-loop__image-link{
  3034.    background-color: rgba(255, 255, 255, 0.25);
  3035.  }
  3036. }
  3037. </style>
  3038. <div id="section-featured-collection--template--24031472877910__main_featured_collection_icCcmz" class="section__standard-spacing--small">
  3039.  <div class="wrapper lazysection lazyload featured-collection featured-collection--template--24031472877910__main_featured_collection_icCcmz"  data-section-id="template--24031472877910__main_featured_collection_icCcmz" data-section-type="featured_collection" ><div class="section__text-block section__standard-spacing--full--section-header text-center"><a href="/collections/pilates-reformers"><h2>Reformers</h2></a><a class="h5 text--underline" href="/collections/pilates-reformers">View All Products</a></div><div class="featured-collection__loop featured-collection__loop--slider-true">
  3040.        
  3041.          
  3042.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false  ">
  3043.              <!-- /snippets/product-loop-item.liquid -->
  3044. <style data-shopify>
  3045.  
  3046.  
  3047.  
  3048.    # {
  3049.      max-width: px;
  3050.      max-height: px;
  3051.    }
  3052.    # {
  3053.      max-width: px;
  3054.      max-height: px;
  3055.    }
  3056.  
  3057.  
  3058.  
  3059. </style>
  3060.  
  3061.  
  3062.  
  3063.  
  3064.  
  3065.  
  3066.  
  3067.  
  3068.  
  3069.  
  3070.  
  3071.  
  3072.  
  3073.  
  3074.    
  3075.      
  3076.      
  3077.  
  3078. <style data-shopify>
  3079.  #product-loop--9295442346326 .product-loop__image-container::before{
  3080.    content: "";
  3081.    width: 1px;
  3082.    margin-left: -1px;
  3083.    float: left;
  3084.    height: 0;
  3085.    padding-top: 100.0%;
  3086.    position: relative;
  3087.  }
  3088.  #product-loop--9295442346326 .product-loop__image-container::after{
  3089.    content: "";
  3090.    display: table;
  3091.    clear: both;
  3092.  }
  3093. </style>
  3094.  
  3095.  
  3096. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3097. <div id="product-loop--9295442346326" class="product-loop-element ">
  3098.    
  3099.    <div class="product-loop__image-container ">
  3100.        
  3101.        <span class="icon icon-"  aria-hidden="true"></span>
  3102. <span class="fallback-text"></span>
  3103.  
  3104.  
  3105.  
  3106.        
  3107.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3108.          data-parent-fit="cover"
  3109.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/domo-reformer-1.jpg?v=1731276791&width={width}"
  3110.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3111.          data-aspectratio="1.0"
  3112.          data-sizes="auto"
  3113.          alt="Domo Reformer">
  3114.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3115.          data-parent-fit="cover"
  3116.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault.jpg?v=1740234254&width={width}"
  3117.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3118.          data-aspectratio="1.0"
  3119.          data-sizes="auto"
  3120.          alt="">
  3121.        
  3122.        <a class="product-loop__image-link" href="/products/pilates-reformer-domo" aria-label="Domo Reformer"></a>
  3123.    </div>
  3124.      <div class="product-loop-element__details ">
  3125.        <p class="product-loop_title ">
  3126.          <a class="p-link--no-accent" href="/products/pilates-reformer-domo" aria-label="Domo Reformer" >Domo Reformer</a>
  3127.          
  3128.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3129.        </p><div class="product-loop-element__price  ">
  3130.          
  3131.            
  3132.                
  3133.                <p class="p--bold p--small">from £821</p>
  3134.              
  3135.          
  3136.        
  3137.          <p data-unit-price-wrapper class="p--small  hidden">
  3138.            <span data-unit-price></span>
  3139.            <span>/</span>
  3140.            <span data-unit-price-measurement-reference-value></span>
  3141.            <span data-unit-price-measurement-reference-unit></span>
  3142.          </p>
  3143.        </div><div class="product-loop-element__swatch">
  3144. </div></div>
  3145.  </div>
  3146. </div>
  3147.            </div>
  3148.          
  3149.        
  3150.        
  3151.        
  3152.        
  3153.          
  3154.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false  ">
  3155.              <!-- /snippets/product-loop-item.liquid -->
  3156. <style data-shopify>
  3157.  
  3158.  
  3159.  
  3160.    # {
  3161.      max-width: px;
  3162.      max-height: px;
  3163.    }
  3164.    # {
  3165.      max-width: px;
  3166.      max-height: px;
  3167.    }
  3168.  
  3169.  
  3170.  
  3171. </style>
  3172.  
  3173.  
  3174.  
  3175.  
  3176.  
  3177.  
  3178.  
  3179.  
  3180.  
  3181.  
  3182.  
  3183.  
  3184.  
  3185. <style data-shopify>
  3186.  #product-loop--9295200911702 .product-loop__image-container::before{
  3187.    content: "";
  3188.    width: 1px;
  3189.    margin-left: -1px;
  3190.    float: left;
  3191.    height: 0;
  3192.    padding-top: 100.0%;
  3193.    position: relative;
  3194.  }
  3195.  #product-loop--9295200911702 .product-loop__image-container::after{
  3196.    content: "";
  3197.    display: table;
  3198.    clear: both;
  3199.  }
  3200. </style>
  3201.  
  3202.  
  3203. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3204. <div id="product-loop--9295200911702" class="product-loop-element ">
  3205.    
  3206.    <div class="product-loop__image-container ">
  3207.        
  3208.        <span class="icon icon-"  aria-hidden="true"></span>
  3209. <span class="fallback-text"></span>
  3210.  
  3211.  
  3212.  
  3213.        
  3214.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3215.          data-parent-fit="cover"
  3216.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum.jpg?v=1731363499&width={width}"
  3217.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3218.          data-aspectratio="1.0"
  3219.          data-sizes="auto"
  3220.          alt="Lignum Reformer | Maple">
  3221.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3222.          data-parent-fit="cover"
  3223.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_178140f7-4413-4ba2-a807-73f31c63e941.jpg?v=1740241440&width={width}"
  3224.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3225.          data-aspectratio="1.0"
  3226.          data-sizes="auto"
  3227.          alt="">
  3228.        
  3229.        <a class="product-loop__image-link" href="/products/pilates-reformer-lignum" aria-label="Lignum Reformer | Maple"></a>
  3230.    </div>
  3231.      <div class="product-loop-element__details ">
  3232.        <p class="product-loop_title ">
  3233.          <a class="p-link--no-accent" href="/products/pilates-reformer-lignum" aria-label="Lignum Reformer | Maple" >Lignum Reformer | Maple</a>
  3234.          
  3235.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3236.        </p><div class="product-loop-element__price  ">
  3237.          
  3238.            
  3239.                <p class="p--bold p--small">£1,649</p>
  3240.              
  3241.          
  3242.        
  3243.          <p data-unit-price-wrapper class="p--small  hidden">
  3244.            <span data-unit-price></span>
  3245.            <span>/</span>
  3246.            <span data-unit-price-measurement-reference-value></span>
  3247.            <span data-unit-price-measurement-reference-unit></span>
  3248.          </p>
  3249.        </div><div class="product-loop-element__swatch">
  3250.  
  3251.  
  3252.  
  3253.  
  3254.  
  3255.  
  3256.  
  3257.  
  3258.  
  3259.  
  3260.  
  3261.  
  3262.  
  3263.  
  3264.  
  3265.  
  3266.  
  3267.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3268.      <div class="tooltip">Black</div>
  3269.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3270.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_e7161035-8699-40ff-908d-721a32d51c7a.jpg?v=1740241563&width={width}"
  3271.  data-widths="[50, 75, 100, 150, 200]"
  3272.  data-sizes="auto"
  3273.  data-parent-fit="cover"
  3274.  onError="this.style.display = 'none';"
  3275.  alt="Black swatch">
  3276.      </div>
  3277.    </label>
  3278.  
  3279.  
  3280.  
  3281.  
  3282.  
  3283.  
  3284.  
  3285.  
  3286.  
  3287.  
  3288.  
  3289.  
  3290.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3291.      <div class="tooltip">Gray</div>
  3292.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3293.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_da7e4afa-20b5-48da-97d4-d99ea514e70d.jpg?v=1740241563&width={width}"
  3294.  data-widths="[50, 75, 100, 150, 200]"
  3295.  data-sizes="auto"
  3296.  data-parent-fit="cover"
  3297.  onError="this.style.display = 'none';"
  3298.  alt="Gray swatch">
  3299.      </div>
  3300.    </label>
  3301.  
  3302.  
  3303.  
  3304.  
  3305.  
  3306.  
  3307.  
  3308.  
  3309.  
  3310.  
  3311.  
  3312.  
  3313.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3314.      <div class="tooltip">Blue</div>
  3315.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3316.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_29c5956f-263b-4328-95fd-cfb9c152646f.jpg?v=1740241563&width={width}"
  3317.  data-widths="[50, 75, 100, 150, 200]"
  3318.  data-sizes="auto"
  3319.  data-parent-fit="cover"
  3320.  onError="this.style.display = 'none';"
  3321.  alt="Blue swatch">
  3322.      </div>
  3323.    </label>
  3324.  
  3325.  
  3326.  
  3327.  
  3328.  
  3329.  
  3330.  
  3331.  
  3332.  
  3333.  
  3334.  
  3335.  
  3336.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3337.      <div class="tooltip">Ocean Blue</div>
  3338.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3339.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_f99eebba-c756-4dce-8385-9f85d913c471.jpg?v=1740241563&width={width}"
  3340.  data-widths="[50, 75, 100, 150, 200]"
  3341.  data-sizes="auto"
  3342.  data-parent-fit="cover"
  3343.  onError="this.style.display = 'none';"
  3344.  alt="Ocean Blue swatch">
  3345.      </div>
  3346.    </label>
  3347.  
  3348.  
  3349.  
  3350.  
  3351.  
  3352.  
  3353.  
  3354.  
  3355.  
  3356.  
  3357.  
  3358.  
  3359.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3360.      <div class="tooltip">Green</div>
  3361.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3362.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_025f9bca-2405-47a9-a57d-f03204cd5c17.jpg?v=1740241563&width={width}"
  3363.  data-widths="[50, 75, 100, 150, 200]"
  3364.  data-sizes="auto"
  3365.  data-parent-fit="cover"
  3366.  onError="this.style.display = 'none';"
  3367.  alt="Green swatch">
  3368.      </div>
  3369.    </label>
  3370.  
  3371.  
  3372.  
  3373.  
  3374.  
  3375.  
  3376.  
  3377.  
  3378.  
  3379.  
  3380.  
  3381.  
  3382.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3383.      <div class="tooltip">Red</div>
  3384.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3385.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_9d665843-5415-43c3-8b6a-2e2fa32a72d3.jpg?v=1740241563&width={width}"
  3386.  data-widths="[50, 75, 100, 150, 200]"
  3387.  data-sizes="auto"
  3388.  data-parent-fit="cover"
  3389.  onError="this.style.display = 'none';"
  3390.  alt="Red swatch">
  3391.      </div>
  3392.    </label>
  3393.  
  3394.  
  3395.  
  3396.  
  3397.  
  3398.  
  3399.  
  3400.  
  3401.  
  3402.  
  3403.  
  3404.  
  3405.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3406.      <div class="tooltip">Ivory</div>
  3407.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3408.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_9d828dc3-cbe4-48bb-82b9-31b225c3ac87.jpg?v=1740241563&width={width}"
  3409.  data-widths="[50, 75, 100, 150, 200]"
  3410.  data-sizes="auto"
  3411.  data-parent-fit="cover"
  3412.  onError="this.style.display = 'none';"
  3413.  alt="Ivory swatch">
  3414.      </div>
  3415.    </label>
  3416.  
  3417.  
  3418.  
  3419.  
  3420.  
  3421.  
  3422.  
  3423.  
  3424.  
  3425.  
  3426.  
  3427.  
  3428.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3429.      <div class="tooltip">Mocha</div>
  3430.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3431.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_c544bc74-afe1-4bd0-8bf7-45feb415d810.jpg?v=1740241563&width={width}"
  3432.  data-widths="[50, 75, 100, 150, 200]"
  3433.  data-sizes="auto"
  3434.  data-parent-fit="cover"
  3435.  onError="this.style.display = 'none';"
  3436.  alt="Mocha swatch">
  3437.      </div>
  3438.    </label>
  3439.  
  3440.  
  3441.  
  3442.  
  3443. </div></div>
  3444.  </div>
  3445. </div>
  3446.            </div>
  3447.          
  3448.        
  3449.        
  3450.        
  3451.        
  3452.          
  3453.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false  ">
  3454.              <!-- /snippets/product-loop-item.liquid -->
  3455. <style data-shopify>
  3456.  
  3457.  
  3458.  
  3459.    # {
  3460.      max-width: px;
  3461.      max-height: px;
  3462.    }
  3463.    # {
  3464.      max-width: px;
  3465.      max-height: px;
  3466.    }
  3467.  
  3468.  
  3469.  
  3470. </style>
  3471.  
  3472.  
  3473.  
  3474.  
  3475.  
  3476.  
  3477.  
  3478.  
  3479.  
  3480.  
  3481.  
  3482.  
  3483.  
  3484. <style data-shopify>
  3485.  #product-loop--9295390048598 .product-loop__image-container::before{
  3486.    content: "";
  3487.    width: 1px;
  3488.    margin-left: -1px;
  3489.    float: left;
  3490.    height: 0;
  3491.    padding-top: 100.0%;
  3492.    position: relative;
  3493.  }
  3494.  #product-loop--9295390048598 .product-loop__image-container::after{
  3495.    content: "";
  3496.    display: table;
  3497.    clear: both;
  3498.  }
  3499. </style>
  3500.  
  3501.  
  3502. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3503. <div id="product-loop--9295390048598" class="product-loop-element ">
  3504.    
  3505.    <div class="product-loop__image-container ">
  3506.        
  3507.        <span class="icon icon-"  aria-hidden="true"></span>
  3508. <span class="fallback-text"></span>
  3509.  
  3510.  
  3511.  
  3512.        
  3513.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3514.          data-parent-fit="cover"
  3515.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_e12a50f2-136a-4f30-98e3-041c65e09906.jpg?v=1731363828&width={width}"
  3516.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3517.          data-aspectratio="1.0"
  3518.          data-sizes="auto"
  3519.          alt="Nubium Reformer | White">
  3520.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3521.          data-parent-fit="cover"
  3522.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_91d5a4d0-6076-484e-836c-c7f1548972a5.jpg?v=1731363828&width={width}"
  3523.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3524.          data-aspectratio="1.0"
  3525.          data-sizes="auto"
  3526.          alt="">
  3527.        
  3528.        <a class="product-loop__image-link" href="/products/pilates-reformer-nubium" aria-label="Nubium Reformer | White"></a>
  3529.    </div>
  3530.      <div class="product-loop-element__details ">
  3531.        <p class="product-loop_title ">
  3532.          <a class="p-link--no-accent" href="/products/pilates-reformer-nubium" aria-label="Nubium Reformer | White" >Nubium Reformer | White</a>
  3533.          
  3534.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3535.        </p><div class="product-loop-element__price  ">
  3536.          
  3537.            
  3538.                <p class="p--bold p--small">£1,649</p>
  3539.              
  3540.          
  3541.        
  3542.          <p data-unit-price-wrapper class="p--small  hidden">
  3543.            <span data-unit-price></span>
  3544.            <span>/</span>
  3545.            <span data-unit-price-measurement-reference-value></span>
  3546.            <span data-unit-price-measurement-reference-unit></span>
  3547.          </p>
  3548.        </div><div class="product-loop-element__swatch">
  3549.  
  3550.  
  3551.  
  3552.  
  3553.  
  3554.  
  3555.  
  3556.  
  3557.  
  3558.  
  3559.  
  3560.  
  3561.  
  3562.  
  3563.  
  3564.  
  3565.  
  3566.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3567.      <div class="tooltip">Black</div>
  3568.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3569.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_e12a50f2-136a-4f30-98e3-041c65e09906.jpg?v=1731363828&width={width}"
  3570.  data-widths="[50, 75, 100, 150, 200]"
  3571.  data-sizes="auto"
  3572.  data-parent-fit="cover"
  3573.  onError="this.style.display = 'none';"
  3574.  alt="Black swatch">
  3575.      </div>
  3576.    </label>
  3577.  
  3578.  
  3579.  
  3580.  
  3581.  
  3582.  
  3583.  
  3584.  
  3585.  
  3586.  
  3587.  
  3588.  
  3589.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3590.      <div class="tooltip">Gray</div>
  3591.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3592.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit.jpg?v=1740243159&width={width}"
  3593.  data-widths="[50, 75, 100, 150, 200]"
  3594.  data-sizes="auto"
  3595.  data-parent-fit="cover"
  3596.  onError="this.style.display = 'none';"
  3597.  alt="Gray swatch">
  3598.      </div>
  3599.    </label>
  3600.  
  3601.  
  3602.  
  3603.  
  3604.  
  3605.  
  3606.  
  3607.  
  3608.  
  3609.  
  3610.  
  3611.  
  3612.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3613.      <div class="tooltip">Blue</div>
  3614.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3615.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_8af2bdab-6fba-4bcb-aa5b-8c78d1cd616c.jpg?v=1740243150&width={width}"
  3616.  data-widths="[50, 75, 100, 150, 200]"
  3617.  data-sizes="auto"
  3618.  data-parent-fit="cover"
  3619.  onError="this.style.display = 'none';"
  3620.  alt="Blue swatch">
  3621.      </div>
  3622.    </label>
  3623.  
  3624.  
  3625.  
  3626.  
  3627.  
  3628.  
  3629.  
  3630.  
  3631.  
  3632.  
  3633.  
  3634.  
  3635.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3636.      <div class="tooltip">Ocean Blue</div>
  3637.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3638.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_e6cb1ac8-07ae-4291-a338-49efb9148252.jpg?v=1740243150&width={width}"
  3639.  data-widths="[50, 75, 100, 150, 200]"
  3640.  data-sizes="auto"
  3641.  data-parent-fit="cover"
  3642.  onError="this.style.display = 'none';"
  3643.  alt="Ocean Blue swatch">
  3644.      </div>
  3645.    </label>
  3646.  
  3647.  
  3648.  
  3649.  
  3650.  
  3651.  
  3652.  
  3653.  
  3654.  
  3655.  
  3656.  
  3657.  
  3658.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3659.      <div class="tooltip">Green</div>
  3660.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3661.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_f3e388c6-69a5-42cf-98ec-1973a67c59dd.jpg?v=1740243150&width={width}"
  3662.  data-widths="[50, 75, 100, 150, 200]"
  3663.  data-sizes="auto"
  3664.  data-parent-fit="cover"
  3665.  onError="this.style.display = 'none';"
  3666.  alt="Green swatch">
  3667.      </div>
  3668.    </label>
  3669.  
  3670.  
  3671.  
  3672.  
  3673.  
  3674.  
  3675.  
  3676.  
  3677.  
  3678.  
  3679.  
  3680.  
  3681.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3682.      <div class="tooltip">Red</div>
  3683.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3684.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_a35f0e41-b497-472b-9161-4b12e7585b12.jpg?v=1740243150&width={width}"
  3685.  data-widths="[50, 75, 100, 150, 200]"
  3686.  data-sizes="auto"
  3687.  data-parent-fit="cover"
  3688.  onError="this.style.display = 'none';"
  3689.  alt="Red swatch">
  3690.      </div>
  3691.    </label>
  3692.  
  3693.  
  3694.  
  3695.  
  3696.  
  3697.  
  3698.  
  3699.  
  3700.  
  3701.  
  3702.  
  3703.  
  3704.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3705.      <div class="tooltip">Ivory</div>
  3706.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3707.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_07ff8231-96a7-4082-a467-307e6f4d3409.jpg?v=1740243150&width={width}"
  3708.  data-widths="[50, 75, 100, 150, 200]"
  3709.  data-sizes="auto"
  3710.  data-parent-fit="cover"
  3711.  onError="this.style.display = 'none';"
  3712.  alt="Ivory swatch">
  3713.      </div>
  3714.    </label>
  3715.  
  3716.  
  3717.  
  3718.  
  3719.  
  3720.  
  3721.  
  3722.  
  3723.  
  3724.  
  3725.  
  3726.  
  3727.    <label for="template--24031472877910__main_featured_collection_icCcmz-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_icCcmz-1">
  3728.      <div class="tooltip">Mocha</div>
  3729.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3730.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_3f7e9d4f-52e9-4573-9a7e-9d188d3b69d1.jpg?v=1740243150&width={width}"
  3731.  data-widths="[50, 75, 100, 150, 200]"
  3732.  data-sizes="auto"
  3733.  data-parent-fit="cover"
  3734.  onError="this.style.display = 'none';"
  3735.  alt="Mocha swatch">
  3736.      </div>
  3737.    </label>
  3738.  
  3739.  
  3740.  
  3741.  
  3742. </div></div>
  3743.  </div>
  3744. </div>
  3745.            </div>
  3746.          
  3747.        
  3748.        
  3749.        
  3750.  
  3751.      
  3752.        <div id="section--template--24031472877910__main_featured_collection_icCcmz" class="featured-collection__promo featured-collection__promo--slider--one-quarter featured-collection__--slider-true--image-false"><div class="section__standard-spacing--even-medium promo__content-wrapper content-class text-center card-shadow">
  3753.      <div class="promo__text">
  3754.        
  3755.          <p class="text--no-margin">Sale!</p>
  3756.        
  3757.        
  3758.          <h2>Shop Now</h2>
  3759.        
  3760.        
  3761.          <div><p>Grab the hottest deals</p></div>
  3762.        
  3763.        
  3764.        <a class="btn btn--outline" href="/collections/pilates-reformers">View all</a>
  3765.        
  3766.      </div><div class="section__standard-offset promo__border-container">
  3767.          <div class="promo__border"></div>
  3768.        </div><div class="promo__overlay"></div>
  3769.        <img src="//uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=1470" srcset="//uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=540 540w, //uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=720 720w, //uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=900 900w, //uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=1080 1080w, //uk-pilatesreformers.co.uk/cdn/shop/files/uk-pilates-reformers-collections-1.webp?v=1710413868&amp;width=1296 1296w" width="1470" height="2048" loading="lazy" class="promo__image lazyload lazystretch" sizes="(min-width:2048px) 1296px, (min-width:1944px) 1080px, (min-width:1728px) 900px, (min-width:1512px) 720px, (min-width:1296px) 540px, (min-width:1080px) calc((100vw - 11.5rem) / 2), calc(100vw - 4rem)">
  3770.      
  3771.    </div>
  3772.  </div>
  3773.      
  3774.    
  3775.    </div>
  3776.  </div>
  3777. </div>
  3778.  
  3779. <style> #shopify-section-template--24031472877910__main_featured_collection_icCcmz .p--accent {color: red !important;} </style></div><div id="shopify-section-template--24031472877910__featured_collection_1" class="shopify-section dynamic__section section__featured-collection">
  3780. <!-- /sections/home-featured-collection.liquid -->
  3781. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  3782. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  3783.  
  3784.  
  3785.  
  3786.  
  3787.  
  3788.  
  3789.  
  3790.  
  3791.  
  3792.  
  3793.  
  3794.  
  3795.  
  3796.  
  3797.  
  3798.  
  3799.  
  3800.  
  3801. <style data-shopify>
  3802. #shopify-section-template--24031472877910__featured_collection_1{
  3803.  background-color: var(--color_body_bg);
  3804. }
  3805. .featured-collection__loop{
  3806.  max-width: 100%;
  3807. }
  3808.  
  3809. #section--template--24031472877910__featured_collection_1 .promo__content-wrapper{
  3810.  background-color: #282828;
  3811.  color: #ffffff;
  3812. }
  3813.  
  3814. #section--template--24031472877910__featured_collection_1 h2, #section--template--24031472877910__featured_collection_1 h4 {
  3815.  color: #ffffff;
  3816. }
  3817. #section--template--24031472877910__featured_collection_1 .promo__border {
  3818.  border: solid 1px #ffffff;
  3819. }
  3820. #section--template--24031472877910__featured_collection_1 .promo__overlay{
  3821.  background-color: rgba(11, 11, 11, 0.2);
  3822. }
  3823.  
  3824. .featured-collection__product-border-template--24031472877910__featured_collection_1{
  3825.  border: 1px solid #e6e6e6;
  3826. }
  3827.  
  3828. .promotion_image--template--24031472877910__featured_collection_1{
  3829.  background-image: url(files/uk-pilates-reformers-collections-3.webp);
  3830.  background-size: cover;
  3831. }.featured-collection--template--24031472877910__featured_collection_1{
  3832.    background-color: var(--color_body_bg);
  3833.  }
  3834.  .featured-collection__product-border-template--24031472877910__featured_collection_1{
  3835.    border: 1px solid #e6e6e6;
  3836.  }
  3837.  
  3838.  .product-loop__img-template--24031472877910__featured_collection_1--cover{
  3839.    object-fit: cover!important;
  3840.    height: 100%;
  3841. }
  3842. .img--cover{
  3843.  width:100%;
  3844. }
  3845.  
  3846. @media screen and (min-width: 769px){
  3847.  .featured-collection--template--24031472877910__featured_collection_1 .product-loop-element--hover .product-loop__image-link{
  3848.    background-color: rgba(255, 255, 255, 0.25);
  3849.  }
  3850. }
  3851. </style>
  3852. <div id="section-featured-collection--template--24031472877910__featured_collection_1" class="section__standard-spacing--small">
  3853.  <div class="wrapper lazysection lazyload featured-collection featured-collection--template--24031472877910__featured_collection_1"  data-section-id="template--24031472877910__featured_collection_1" data-section-type="featured_collection" ><div class="section__text-block section__standard-spacing--full--section-header text-center"><a href="/collections/tower-pilates"><h2>Reformers with Tower</h2></a><a class="h5 text--underline" href="/collections/tower-pilates">View All Products</a></div><div class="featured-collection__loop featured-collection__loop--slider-true">
  3854.        
  3855.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  3856.            <!-- /snippets/product-loop-item.liquid -->
  3857. <style data-shopify>
  3858.  
  3859.  
  3860.  
  3861.    # {
  3862.      max-width: px;
  3863.      max-height: px;
  3864.    }
  3865.    # {
  3866.      max-width: px;
  3867.      max-height: px;
  3868.    }
  3869.  
  3870.  
  3871.  
  3872. </style>
  3873.  
  3874.  
  3875.  
  3876.  
  3877.  
  3878.  
  3879.  
  3880.  
  3881.  
  3882.  
  3883.  
  3884.  
  3885.  
  3886. <style data-shopify>
  3887.  #product-loop--9295259042134 .product-loop__image-container::before{
  3888.    content: "";
  3889.    width: 1px;
  3890.    margin-left: -1px;
  3891.    float: left;
  3892.    height: 0;
  3893.    padding-top: 100.0%;
  3894.    position: relative;
  3895.  }
  3896.  #product-loop--9295259042134 .product-loop__image-container::after{
  3897.    content: "";
  3898.    display: table;
  3899.    clear: both;
  3900.  }
  3901. </style>
  3902.  
  3903.  
  3904. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  3905. <div id="product-loop--9295259042134" class="product-loop-element ">
  3906.    
  3907.    <div class="product-loop__image-container ">
  3908.        
  3909.        <span class="icon icon-"  aria-hidden="true"></span>
  3910. <span class="fallback-text"></span>
  3911.  
  3912.  
  3913.  
  3914.        
  3915.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  3916.          data-parent-fit="cover"
  3917.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_50969059-a33e-450b-a67f-94f2c243140d.jpg?v=1731363614&width={width}"
  3918.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3919.          data-aspectratio="1.0"
  3920.          data-sizes="auto"
  3921.          alt="Elite Reformer with Tower | Maple">
  3922.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  3923.          data-parent-fit="cover"
  3924.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_8e6e7f12-06f7-401c-8aec-faf033b018c2.jpg?v=1740243811&width={width}"
  3925.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3926.          data-aspectratio="1.0"
  3927.          data-sizes="auto"
  3928.          alt="">
  3929.        
  3930.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-elite" aria-label="Elite Reformer with Tower | Maple"></a>
  3931.    </div>
  3932.      <div class="product-loop-element__details ">
  3933.        <p class="product-loop_title ">
  3934.          <a class="p-link--no-accent" href="/products/pilates-reformer-with-half-tower-elite" aria-label="Elite Reformer with Tower | Maple" >Elite Reformer with Tower | Maple</a>
  3935.          
  3936.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3937.        </p><div class="product-loop-element__price  ">
  3938.          
  3939.            
  3940.                <p class="p--bold p--small">£2,980</p>
  3941.              
  3942.          
  3943.        
  3944.          <p data-unit-price-wrapper class="p--small  hidden">
  3945.            <span data-unit-price></span>
  3946.            <span>/</span>
  3947.            <span data-unit-price-measurement-reference-value></span>
  3948.            <span data-unit-price-measurement-reference-unit></span>
  3949.          </p>
  3950.        </div><div class="product-loop-element__swatch">
  3951.  
  3952.  
  3953.  
  3954.  
  3955.  
  3956.  
  3957.  
  3958.  
  3959.  
  3960.  
  3961.  
  3962.  
  3963.  
  3964.  
  3965.  
  3966.  
  3967.  
  3968.    <label for="template--24031472877910__featured_collection_1-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_1-1">
  3969.      <div class="tooltip">Black</div>
  3970.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3971.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_50969059-a33e-450b-a67f-94f2c243140d.jpg?v=1731363614&width={width}"
  3972.  data-widths="[50, 75, 100, 150, 200]"
  3973.  data-sizes="auto"
  3974.  data-parent-fit="cover"
  3975.  onError="this.style.display = 'none';"
  3976.  alt="Black swatch">
  3977.      </div>
  3978.    </label>
  3979.  
  3980.  
  3981.  
  3982.  
  3983.  
  3984.  
  3985.  
  3986.  
  3987.  
  3988.  
  3989.  
  3990.  
  3991.    <label for="template--24031472877910__featured_collection_1-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_1-1">
  3992.      <div class="tooltip">Gray</div>
  3993.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3994.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_2996a880-f642-433a-b589-5c6e2d4d9efd.jpg?v=1740244032&width={width}"
  3995.  data-widths="[50, 75, 100, 150, 200]"
  3996.  data-sizes="auto"
  3997.  data-parent-fit="cover"
  3998.  onError="this.style.display = 'none';"
  3999.  alt="Gray swatch">
  4000.      </div>
  4001.    </label>
  4002.  
  4003.  
  4004.  
  4005.  
  4006.  
  4007.  
  4008.  
  4009.  
  4010.  
  4011.  
  4012.  
  4013.  
  4014.    <label for="template--24031472877910__featured_collection_1-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4015.      <div class="tooltip">Blue</div>
  4016.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4017.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_3d945d6f-603e-4e37-88e9-beca40b4a62f.jpg?v=1740244032&width={width}"
  4018.  data-widths="[50, 75, 100, 150, 200]"
  4019.  data-sizes="auto"
  4020.  data-parent-fit="cover"
  4021.  onError="this.style.display = 'none';"
  4022.  alt="Blue swatch">
  4023.      </div>
  4024.    </label>
  4025.  
  4026.  
  4027.  
  4028.  
  4029.  
  4030.  
  4031.  
  4032.  
  4033.  
  4034.  
  4035.  
  4036.  
  4037.    <label for="template--24031472877910__featured_collection_1-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4038.      <div class="tooltip">Ocean Blue</div>
  4039.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4040.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_3d5d254c-c1bc-4176-abe2-6f73d26e9407.jpg?v=1740244032&width={width}"
  4041.  data-widths="[50, 75, 100, 150, 200]"
  4042.  data-sizes="auto"
  4043.  data-parent-fit="cover"
  4044.  onError="this.style.display = 'none';"
  4045.  alt="Ocean Blue swatch">
  4046.      </div>
  4047.    </label>
  4048.  
  4049.  
  4050.  
  4051.  
  4052.  
  4053.  
  4054.  
  4055.  
  4056.  
  4057.  
  4058.  
  4059.  
  4060.    <label for="template--24031472877910__featured_collection_1-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4061.      <div class="tooltip">Green</div>
  4062.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4063.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_b0dea19a-9d72-462a-8696-d4d77bdf2c5a.jpg?v=1740244032&width={width}"
  4064.  data-widths="[50, 75, 100, 150, 200]"
  4065.  data-sizes="auto"
  4066.  data-parent-fit="cover"
  4067.  onError="this.style.display = 'none';"
  4068.  alt="Green swatch">
  4069.      </div>
  4070.    </label>
  4071.  
  4072.  
  4073.  
  4074.  
  4075.  
  4076.  
  4077.  
  4078.  
  4079.  
  4080.  
  4081.  
  4082.  
  4083.    <label for="template--24031472877910__featured_collection_1-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4084.      <div class="tooltip">Red</div>
  4085.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4086.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_d1bccf2a-011d-4861-b398-9b0f02b1c3ab.jpg?v=1740244032&width={width}"
  4087.  data-widths="[50, 75, 100, 150, 200]"
  4088.  data-sizes="auto"
  4089.  data-parent-fit="cover"
  4090.  onError="this.style.display = 'none';"
  4091.  alt="Red swatch">
  4092.      </div>
  4093.    </label>
  4094.  
  4095.  
  4096.  
  4097.  
  4098.  
  4099.  
  4100.  
  4101.  
  4102.  
  4103.  
  4104.  
  4105.  
  4106.    <label for="template--24031472877910__featured_collection_1-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4107.      <div class="tooltip">Ivory</div>
  4108.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4109.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_92022641-72c5-4859-85cb-771b56c21d4b.jpg?v=1740244032&width={width}"
  4110.  data-widths="[50, 75, 100, 150, 200]"
  4111.  data-sizes="auto"
  4112.  data-parent-fit="cover"
  4113.  onError="this.style.display = 'none';"
  4114.  alt="Ivory swatch">
  4115.      </div>
  4116.    </label>
  4117.  
  4118.  
  4119.  
  4120.  
  4121.  
  4122.  
  4123.  
  4124.  
  4125.  
  4126.  
  4127.  
  4128.  
  4129.    <label for="template--24031472877910__featured_collection_1-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4130.      <div class="tooltip">Mocha</div>
  4131.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4132.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/elite-wood-reformer-with-tower_b890d721-a833-4b52-a594-a8eae7ba4914.jpg?v=1740244032&width={width}"
  4133.  data-widths="[50, 75, 100, 150, 200]"
  4134.  data-sizes="auto"
  4135.  data-parent-fit="cover"
  4136.  onError="this.style.display = 'none';"
  4137.  alt="Mocha swatch">
  4138.      </div>
  4139.    </label>
  4140.  
  4141.  
  4142.  
  4143.  
  4144. </div></div>
  4145.  </div>
  4146. </div>
  4147.          </div>
  4148.        
  4149.        
  4150.        
  4151.        
  4152.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  4153.            <!-- /snippets/product-loop-item.liquid -->
  4154. <style data-shopify>
  4155.  
  4156.  
  4157.  
  4158.    # {
  4159.      max-width: px;
  4160.      max-height: px;
  4161.    }
  4162.    # {
  4163.      max-width: px;
  4164.      max-height: px;
  4165.    }
  4166.  
  4167.  
  4168.  
  4169. </style>
  4170.  
  4171.  
  4172.  
  4173.  
  4174.  
  4175.  
  4176.  
  4177.  
  4178.  
  4179.  
  4180.  
  4181.  
  4182.  
  4183. <style data-shopify>
  4184.  #product-loop--9295323201878 .product-loop__image-container::before{
  4185.    content: "";
  4186.    width: 1px;
  4187.    margin-left: -1px;
  4188.    float: left;
  4189.    height: 0;
  4190.    padding-top: 100.0%;
  4191.    position: relative;
  4192.  }
  4193.  #product-loop--9295323201878 .product-loop__image-container::after{
  4194.    content: "";
  4195.    display: table;
  4196.    clear: both;
  4197.  }
  4198. </style>
  4199.  
  4200.  
  4201. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4202. <div id="product-loop--9295323201878" class="product-loop-element ">
  4203.    
  4204.    <div class="product-loop__image-container ">
  4205.        
  4206.        <span class="icon icon-"  aria-hidden="true"></span>
  4207. <span class="fallback-text"></span>
  4208.  
  4209.  
  4210.  
  4211.        
  4212.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4213.          data-parent-fit="cover"
  4214.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower.jpg?v=1731363689&width={width}"
  4215.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4216.          data-aspectratio="1.0"
  4217.          data-sizes="auto"
  4218.          alt="Master Instructor Reformer with Tower">
  4219.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4220.          data-parent-fit="cover"
  4221.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_7cb4b238-1bf0-49b7-bd17-bfa52d4a7014.jpg?v=1740246614&width={width}"
  4222.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4223.          data-aspectratio="1.0"
  4224.          data-sizes="auto"
  4225.          alt="">
  4226.        
  4227.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-master-instructor" aria-label="Master Instructor Reformer with Tower"></a>
  4228.    </div>
  4229.      <div class="product-loop-element__details ">
  4230.        <p class="product-loop_title ">
  4231.          <a class="p-link--no-accent" href="/products/pilates-reformer-with-half-tower-master-instructor" aria-label="Master Instructor Reformer with Tower" >Master Instructor Reformer with Tower</a>
  4232.          
  4233.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4234.        </p><div class="product-loop-element__price  ">
  4235.          
  4236.            
  4237.                <p class="p--bold p--small">£4,139</p>
  4238.              
  4239.          
  4240.        
  4241.          <p data-unit-price-wrapper class="p--small  hidden">
  4242.            <span data-unit-price></span>
  4243.            <span>/</span>
  4244.            <span data-unit-price-measurement-reference-value></span>
  4245.            <span data-unit-price-measurement-reference-unit></span>
  4246.          </p>
  4247.        </div><div class="product-loop-element__swatch">
  4248.  
  4249.  
  4250.  
  4251.  
  4252.  
  4253.  
  4254.  
  4255.  
  4256.  
  4257.  
  4258.  
  4259.  
  4260.  
  4261.  
  4262.  
  4263.  
  4264.  
  4265.    <label for="template--24031472877910__featured_collection_1-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4266.      <div class="tooltip">Black</div>
  4267.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4268.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower.jpg?v=1731363689&width={width}"
  4269.  data-widths="[50, 75, 100, 150, 200]"
  4270.  data-sizes="auto"
  4271.  data-parent-fit="cover"
  4272.  onError="this.style.display = 'none';"
  4273.  alt="Black swatch">
  4274.      </div>
  4275.    </label>
  4276.  
  4277.  
  4278.  
  4279.  
  4280.  
  4281.  
  4282.  
  4283.  
  4284.  
  4285.  
  4286.  
  4287.  
  4288.    <label for="template--24031472877910__featured_collection_1-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4289.      <div class="tooltip">Gray</div>
  4290.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4291.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_32fc0e34-ebea-470f-b942-7d4ab7349104.jpg?v=1740247034&width={width}"
  4292.  data-widths="[50, 75, 100, 150, 200]"
  4293.  data-sizes="auto"
  4294.  data-parent-fit="cover"
  4295.  onError="this.style.display = 'none';"
  4296.  alt="Gray swatch">
  4297.      </div>
  4298.    </label>
  4299.  
  4300.  
  4301.  
  4302.  
  4303.  
  4304.  
  4305.  
  4306.  
  4307.  
  4308.  
  4309.  
  4310.  
  4311.    <label for="template--24031472877910__featured_collection_1-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4312.      <div class="tooltip">Blue</div>
  4313.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4314.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_a22788d3-3c63-4297-b9d7-9c90e6f9faa4.jpg?v=1740247034&width={width}"
  4315.  data-widths="[50, 75, 100, 150, 200]"
  4316.  data-sizes="auto"
  4317.  data-parent-fit="cover"
  4318.  onError="this.style.display = 'none';"
  4319.  alt="Blue swatch">
  4320.      </div>
  4321.    </label>
  4322.  
  4323.  
  4324.  
  4325.  
  4326.  
  4327.  
  4328.  
  4329.  
  4330.  
  4331.  
  4332.  
  4333.  
  4334.    <label for="template--24031472877910__featured_collection_1-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4335.      <div class="tooltip">Ocean Blue</div>
  4336.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4337.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_7ca392bf-02ad-4ca4-a2da-16f737304121.jpg?v=1740247034&width={width}"
  4338.  data-widths="[50, 75, 100, 150, 200]"
  4339.  data-sizes="auto"
  4340.  data-parent-fit="cover"
  4341.  onError="this.style.display = 'none';"
  4342.  alt="Ocean Blue swatch">
  4343.      </div>
  4344.    </label>
  4345.  
  4346.  
  4347.  
  4348.  
  4349.  
  4350.  
  4351.  
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.    <label for="template--24031472877910__featured_collection_1-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4358.      <div class="tooltip">Green</div>
  4359.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4360.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_87a5b6ed-4db8-4ea5-8828-d7f37ec15979.jpg?v=1740247034&width={width}"
  4361.  data-widths="[50, 75, 100, 150, 200]"
  4362.  data-sizes="auto"
  4363.  data-parent-fit="cover"
  4364.  onError="this.style.display = 'none';"
  4365.  alt="Green swatch">
  4366.      </div>
  4367.    </label>
  4368.  
  4369.  
  4370.  
  4371.  
  4372.  
  4373.  
  4374.  
  4375.  
  4376.  
  4377.  
  4378.  
  4379.  
  4380.    <label for="template--24031472877910__featured_collection_1-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4381.      <div class="tooltip">Red</div>
  4382.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4383.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_c88705de-3aff-4040-8f3c-988ab45a4954.jpg?v=1740247034&width={width}"
  4384.  data-widths="[50, 75, 100, 150, 200]"
  4385.  data-sizes="auto"
  4386.  data-parent-fit="cover"
  4387.  onError="this.style.display = 'none';"
  4388.  alt="Red swatch">
  4389.      </div>
  4390.    </label>
  4391.  
  4392.  
  4393.  
  4394.  
  4395.  
  4396.  
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.    <label for="template--24031472877910__featured_collection_1-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4404.      <div class="tooltip">Ivory</div>
  4405.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4406.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_a1272642-f6d0-46c0-9482-366d67454249.jpg?v=1740247034&width={width}"
  4407.  data-widths="[50, 75, 100, 150, 200]"
  4408.  data-sizes="auto"
  4409.  data-parent-fit="cover"
  4410.  onError="this.style.display = 'none';"
  4411.  alt="Ivory swatch">
  4412.      </div>
  4413.    </label>
  4414.  
  4415.  
  4416.  
  4417.  
  4418.  
  4419.  
  4420.  
  4421.  
  4422.  
  4423.  
  4424.  
  4425.  
  4426.    <label for="template--24031472877910__featured_collection_1-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4427.      <div class="tooltip">Mocha</div>
  4428.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4429.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_f487fe76-8180-4b72-916e-25effac91a77.jpg?v=1740247034&width={width}"
  4430.  data-widths="[50, 75, 100, 150, 200]"
  4431.  data-sizes="auto"
  4432.  data-parent-fit="cover"
  4433.  onError="this.style.display = 'none';"
  4434.  alt="Mocha swatch">
  4435.      </div>
  4436.    </label>
  4437.  
  4438.  
  4439.  
  4440.  
  4441. </div></div>
  4442.  </div>
  4443. </div>
  4444.          </div>
  4445.        
  4446.        
  4447.        
  4448.        
  4449.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  4450.            <!-- /snippets/product-loop-item.liquid -->
  4451. <style data-shopify>
  4452.  
  4453.  
  4454.  
  4455.    # {
  4456.      max-width: px;
  4457.      max-height: px;
  4458.    }
  4459.    # {
  4460.      max-width: px;
  4461.      max-height: px;
  4462.    }
  4463.  
  4464.  
  4465.  
  4466. </style>
  4467.  
  4468.  
  4469.  
  4470.  
  4471.  
  4472.  
  4473.  
  4474.  
  4475.  
  4476.  
  4477.  
  4478.  
  4479.  
  4480. <style data-shopify>
  4481.  #product-loop--9295220998486 .product-loop__image-container::before{
  4482.    content: "";
  4483.    width: 1px;
  4484.    margin-left: -1px;
  4485.    float: left;
  4486.    height: 0;
  4487.    padding-top: 100.0%;
  4488.    position: relative;
  4489.  }
  4490.  #product-loop--9295220998486 .product-loop__image-container::after{
  4491.    content: "";
  4492.    display: table;
  4493.    clear: both;
  4494.  }
  4495. </style>
  4496.  
  4497.  
  4498. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4499. <div id="product-loop--9295220998486" class="product-loop-element ">
  4500.    
  4501.    <div class="product-loop__image-container ">
  4502.        
  4503.        <span class="icon icon-"  aria-hidden="true"></span>
  4504. <span class="fallback-text"></span>
  4505.  
  4506.  
  4507.  
  4508.        
  4509.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4510.          data-parent-fit="cover"
  4511.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze.jpg?v=1731363538&width={width}"
  4512.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4513.          data-aspectratio="1.0"
  4514.          data-sizes="auto"
  4515.          alt="Wood Reformer with Tower | Maple">
  4516.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4517.          data-parent-fit="cover"
  4518.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_4c71ebc9-105c-4b04-b253-be5c9e724ea4.jpg?v=1740243603&width={width}"
  4519.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4520.          data-aspectratio="1.0"
  4521.          data-sizes="auto"
  4522.          alt="">
  4523.        
  4524.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-maple" aria-label="Wood Reformer with Tower | Maple"></a>
  4525.    </div>
  4526.      <div class="product-loop-element__details ">
  4527.        <p class="product-loop_title ">
  4528.          <a class="p-link--no-accent" href="/products/pilates-reformer-with-half-tower-maple" aria-label="Wood Reformer with Tower | Maple" >Wood Reformer with Tower | Maple</a>
  4529.          
  4530.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4531.        </p><div class="product-loop-element__price  ">
  4532.          
  4533.            
  4534.                <p class="p--bold p--small">£2,648</p>
  4535.              
  4536.          
  4537.        
  4538.          <p data-unit-price-wrapper class="p--small  hidden">
  4539.            <span data-unit-price></span>
  4540.            <span>/</span>
  4541.            <span data-unit-price-measurement-reference-value></span>
  4542.            <span data-unit-price-measurement-reference-unit></span>
  4543.          </p>
  4544.        </div><div class="product-loop-element__swatch">
  4545.  
  4546.  
  4547.  
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.    <label for="template--24031472877910__featured_collection_1-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4563.      <div class="tooltip">Black</div>
  4564.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4565.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze.jpg?v=1731363538&width={width}"
  4566.  data-widths="[50, 75, 100, 150, 200]"
  4567.  data-sizes="auto"
  4568.  data-parent-fit="cover"
  4569.  onError="this.style.display = 'none';"
  4570.  alt="Black swatch">
  4571.      </div>
  4572.    </label>
  4573.  
  4574.  
  4575.  
  4576.  
  4577.  
  4578.  
  4579.  
  4580.  
  4581.  
  4582.  
  4583.  
  4584.  
  4585.    <label for="template--24031472877910__featured_collection_1-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4586.      <div class="tooltip">Gray</div>
  4587.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4588.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_c0201d3b-388c-4688-8f5b-c0077568b373.jpg?v=1740243635&width={width}"
  4589.  data-widths="[50, 75, 100, 150, 200]"
  4590.  data-sizes="auto"
  4591.  data-parent-fit="cover"
  4592.  onError="this.style.display = 'none';"
  4593.  alt="Gray swatch">
  4594.      </div>
  4595.    </label>
  4596.  
  4597.  
  4598.  
  4599.  
  4600.  
  4601.  
  4602.  
  4603.  
  4604.  
  4605.  
  4606.  
  4607.  
  4608.    <label for="template--24031472877910__featured_collection_1-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4609.      <div class="tooltip">Blue</div>
  4610.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4611.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_d08e0adc-4c3e-4942-88a7-2ed808015abc.jpg?v=1740243635&width={width}"
  4612.  data-widths="[50, 75, 100, 150, 200]"
  4613.  data-sizes="auto"
  4614.  data-parent-fit="cover"
  4615.  onError="this.style.display = 'none';"
  4616.  alt="Blue swatch">
  4617.      </div>
  4618.    </label>
  4619.  
  4620.  
  4621.  
  4622.  
  4623.  
  4624.  
  4625.  
  4626.  
  4627.  
  4628.  
  4629.  
  4630.  
  4631.    <label for="template--24031472877910__featured_collection_1-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4632.      <div class="tooltip">Ocean Blue</div>
  4633.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4634.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_a00e096b-5ba4-44c0-8d51-c13e55bc42dd.jpg?v=1740243635&width={width}"
  4635.  data-widths="[50, 75, 100, 150, 200]"
  4636.  data-sizes="auto"
  4637.  data-parent-fit="cover"
  4638.  onError="this.style.display = 'none';"
  4639.  alt="Ocean Blue swatch">
  4640.      </div>
  4641.    </label>
  4642.  
  4643.  
  4644.  
  4645.  
  4646.  
  4647.  
  4648.  
  4649.  
  4650.  
  4651.  
  4652.  
  4653.  
  4654.    <label for="template--24031472877910__featured_collection_1-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4655.      <div class="tooltip">Green</div>
  4656.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4657.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_2ba45a28-ddb2-4592-b8c9-58e5d14887a9.jpg?v=1740243635&width={width}"
  4658.  data-widths="[50, 75, 100, 150, 200]"
  4659.  data-sizes="auto"
  4660.  data-parent-fit="cover"
  4661.  onError="this.style.display = 'none';"
  4662.  alt="Green swatch">
  4663.      </div>
  4664.    </label>
  4665.  
  4666.  
  4667.  
  4668.  
  4669.  
  4670.  
  4671.  
  4672.  
  4673.  
  4674.  
  4675.  
  4676.  
  4677.    <label for="template--24031472877910__featured_collection_1-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4678.      <div class="tooltip">Red</div>
  4679.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4680.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_322a9638-8b7a-45bd-8cdf-6c7a5422006f.jpg?v=1740243635&width={width}"
  4681.  data-widths="[50, 75, 100, 150, 200]"
  4682.  data-sizes="auto"
  4683.  data-parent-fit="cover"
  4684.  onError="this.style.display = 'none';"
  4685.  alt="Red swatch">
  4686.      </div>
  4687.    </label>
  4688.  
  4689.  
  4690.  
  4691.  
  4692.  
  4693.  
  4694.  
  4695.  
  4696.  
  4697.  
  4698.  
  4699.  
  4700.    <label for="template--24031472877910__featured_collection_1-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4701.      <div class="tooltip">Ivory</div>
  4702.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4703.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_47f91dfe-3ed9-4821-85e1-f0876717a5ba.jpg?v=1740243635&width={width}"
  4704.  data-widths="[50, 75, 100, 150, 200]"
  4705.  data-sizes="auto"
  4706.  data-parent-fit="cover"
  4707.  onError="this.style.display = 'none';"
  4708.  alt="Ivory swatch">
  4709.      </div>
  4710.    </label>
  4711.  
  4712.  
  4713.  
  4714.  
  4715.  
  4716.  
  4717.  
  4718.  
  4719.  
  4720.  
  4721.  
  4722.  
  4723.    <label for="template--24031472877910__featured_collection_1-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_1-1">
  4724.      <div class="tooltip">Mocha</div>
  4725.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4726.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_5d960066-621f-4937-84d5-b05fad59407b.jpg?v=1740243635&width={width}"
  4727.  data-widths="[50, 75, 100, 150, 200]"
  4728.  data-sizes="auto"
  4729.  data-parent-fit="cover"
  4730.  onError="this.style.display = 'none';"
  4731.  alt="Mocha swatch">
  4732.      </div>
  4733.    </label>
  4734.  
  4735.  
  4736.  
  4737.  
  4738. </div></div>
  4739.  </div>
  4740. </div>
  4741.          </div>
  4742.        
  4743.        
  4744.        
  4745.        
  4746.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  4747.            <!-- /snippets/product-loop-item.liquid -->
  4748. <style data-shopify>
  4749.  
  4750.  
  4751.  
  4752.    # {
  4753.      max-width: px;
  4754.      max-height: px;
  4755.    }
  4756.    # {
  4757.      max-width: px;
  4758.      max-height: px;
  4759.    }
  4760.  
  4761.  
  4762.  
  4763. </style>
  4764.  
  4765.  
  4766.  
  4767.  
  4768.  
  4769.  
  4770.  
  4771.  
  4772.  
  4773.  
  4774.  
  4775.  
  4776.  
  4777. <style data-shopify>
  4778.  #product-loop--9301049311574 .product-loop__image-container::before{
  4779.    content: "";
  4780.    width: 1px;
  4781.    margin-left: -1px;
  4782.    float: left;
  4783.    height: 0;
  4784.    padding-top: 100.0%;
  4785.    position: relative;
  4786.  }
  4787.  #product-loop--9301049311574 .product-loop__image-container::after{
  4788.    content: "";
  4789.    display: table;
  4790.    clear: both;
  4791.  }
  4792. </style>
  4793.  
  4794.  
  4795. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4796. <div id="product-loop--9301049311574" class="product-loop-element ">
  4797.    
  4798.    <div class="product-loop__image-container ">
  4799.        
  4800.        <span class="icon icon-"  aria-hidden="true"></span>
  4801. <span class="fallback-text"></span>
  4802.  
  4803.  
  4804.  
  4805.        
  4806.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4807.          data-parent-fit="cover"
  4808.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/aluminium-reformer-hl4-with-tower_bbfb92e2-34e9-4ec4-b342-de38036ff763.jpg?v=1731509415&width={width}"
  4809.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4810.          data-aspectratio="1.0"
  4811.          data-sizes="auto"
  4812.          alt="HL4 Aluminium Reformer with Tower">
  4813.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4814.          data-parent-fit="cover"
  4815.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_972195fd-b53e-460c-a843-c75d028d290d.jpg?v=1740250799&width={width}"
  4816.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4817.          data-aspectratio="1.0"
  4818.          data-sizes="auto"
  4819.          alt="">
  4820.        
  4821.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-aluminium-hl4" aria-label="HL4 Aluminium Reformer with Tower"></a>
  4822.    </div>
  4823.      <div class="product-loop-element__details ">
  4824.        <p class="product-loop_title ">
  4825.          <a class="p-link--no-accent" href="/products/pilates-reformer-with-half-tower-aluminium-hl4" aria-label="HL4 Aluminium Reformer with Tower" >HL4 Aluminium Reformer with Tower</a>
  4826.          
  4827.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4828.        </p><div class="product-loop-element__price  ">
  4829.          
  4830.            
  4831.                <p class="p--bold p--small">£2,854</p>
  4832.              
  4833.          
  4834.        
  4835.          <p data-unit-price-wrapper class="p--small  hidden">
  4836.            <span data-unit-price></span>
  4837.            <span>/</span>
  4838.            <span data-unit-price-measurement-reference-value></span>
  4839.            <span data-unit-price-measurement-reference-unit></span>
  4840.          </p>
  4841.        </div><div class="product-loop-element__swatch">
  4842. </div></div>
  4843.  </div>
  4844. </div>
  4845.          </div>
  4846.        
  4847.        
  4848.        
  4849.  
  4850.      
  4851.    
  4852.    </div>
  4853.  </div>
  4854. </div>
  4855.  
  4856. <style> #shopify-section-template--24031472877910__featured_collection_1 .p--accent {color: red !important;} </style></div><div id="shopify-section-template--24031472877910__featured_collection_2" class="shopify-section dynamic__section section__featured-collection">
  4857. <!-- /sections/home-featured-collection.liquid -->
  4858. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  4859. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  4860.  
  4861.  
  4862.  
  4863.  
  4864.  
  4865.  
  4866.  
  4867.  
  4868.  
  4869.  
  4870.  
  4871.  
  4872.  
  4873.  
  4874.  
  4875.  
  4876.  
  4877.  
  4878. <style data-shopify>
  4879. #shopify-section-template--24031472877910__featured_collection_2{
  4880.  background-color: var(--color_body_bg);
  4881. }
  4882. .featured-collection__loop{
  4883.  max-width: 100%;
  4884. }
  4885.  
  4886. #section--template--24031472877910__featured_collection_2 .promo__content-wrapper{
  4887.  background-color: #282828;
  4888.  color: #ffffff;
  4889. }
  4890.  
  4891. #section--template--24031472877910__featured_collection_2 h2, #section--template--24031472877910__featured_collection_2 h4 {
  4892.  color: #ffffff;
  4893. }
  4894. #section--template--24031472877910__featured_collection_2 .promo__border {
  4895.  border: solid 1px #ffffff;
  4896. }
  4897. #section--template--24031472877910__featured_collection_2 .promo__overlay{
  4898.  background-color: rgba(35, 35, 35, 0.2);
  4899. }
  4900.  
  4901. .featured-collection__product-border-template--24031472877910__featured_collection_2{
  4902.  border: 1px solid #e6e6e6;
  4903. }
  4904.  
  4905. .promotion_image--template--24031472877910__featured_collection_2{
  4906.  background-image: url(files/pilates-reformers-why-choose-us.webp);
  4907.  background-size: cover;
  4908. }.featured-collection--template--24031472877910__featured_collection_2{
  4909.    background-color: var(--color_body_bg);
  4910.  }
  4911.  .featured-collection__product-border-template--24031472877910__featured_collection_2{
  4912.    border: 1px solid #e6e6e6;
  4913.  }
  4914.  
  4915.  .product-loop__img-template--24031472877910__featured_collection_2--cover{
  4916.    object-fit: cover!important;
  4917.    height: 100%;
  4918. }
  4919. .img--cover{
  4920.  width:100%;
  4921. }
  4922.  
  4923. @media screen and (min-width: 769px){
  4924.  .featured-collection--template--24031472877910__featured_collection_2 .product-loop-element--hover .product-loop__image-link{
  4925.    background-color: rgba(255, 255, 255, 0.25);
  4926.  }
  4927. }
  4928. </style>
  4929. <div id="section-featured-collection--template--24031472877910__featured_collection_2" class="section__standard-spacing--small">
  4930.  <div class="wrapper lazysection lazyload featured-collection featured-collection--template--24031472877910__featured_collection_2"  data-section-id="template--24031472877910__featured_collection_2" data-section-type="featured_collection" ><div class="section__text-block section__standard-spacing--full--section-header text-center"><a href="/collections/pilates-cadillac"><h2>Cadillacs</h2></a><a class="h5 text--underline" href="/collections/pilates-cadillac">View All Products</a></div><div class="featured-collection__loop featured-collection__loop--slider-true">
  4931.        
  4932.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  4933.            <!-- /snippets/product-loop-item.liquid -->
  4934. <style data-shopify>
  4935.  
  4936.  
  4937.  
  4938.    # {
  4939.      max-width: px;
  4940.      max-height: px;
  4941.    }
  4942.    # {
  4943.      max-width: px;
  4944.      max-height: px;
  4945.    }
  4946.  
  4947.  
  4948.  
  4949. </style>
  4950.  
  4951.  
  4952.  
  4953.  
  4954.  
  4955.  
  4956.  
  4957.  
  4958.  
  4959.  
  4960.  
  4961.  
  4962.  
  4963. <style data-shopify>
  4964.  #product-loop--9298276319574 .product-loop__image-container::before{
  4965.    content: "";
  4966.    width: 1px;
  4967.    margin-left: -1px;
  4968.    float: left;
  4969.    height: 0;
  4970.    padding-top: 100.0%;
  4971.    position: relative;
  4972.  }
  4973.  #product-loop--9298276319574 .product-loop__image-container::after{
  4974.    content: "";
  4975.    display: table;
  4976.    clear: both;
  4977.  }
  4978. </style>
  4979.  
  4980.  
  4981. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  4982. <div id="product-loop--9298276319574" class="product-loop-element ">
  4983.    
  4984.    <div class="product-loop__image-container ">
  4985.        
  4986.        <span class="icon icon-"  aria-hidden="true"></span>
  4987. <span class="fallback-text"></span>
  4988.  
  4989.  
  4990.  
  4991.        
  4992.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  4993.          data-parent-fit="cover"
  4994.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer.jpg?v=1731408231&width={width}"
  4995.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4996.          data-aspectratio="1.0"
  4997.          data-sizes="auto"
  4998.          alt="Cadillac Reformer">
  4999.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5000.          data-parent-fit="cover"
  5001.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_a7c69b0b-ec9f-420b-b7da-7d4993fcfb84.jpg?v=1740248407&width={width}"
  5002.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5003.          data-aspectratio="1.0"
  5004.          data-sizes="auto"
  5005.          alt="">
  5006.        
  5007.        <a class="product-loop__image-link" href="/products/pilates-cadillac-reformer" aria-label="Cadillac Reformer"></a>
  5008.    </div>
  5009.      <div class="product-loop-element__details ">
  5010.        <p class="product-loop_title ">
  5011.          <a class="p-link--no-accent" href="/products/pilates-cadillac-reformer" aria-label="Cadillac Reformer" >Cadillac Reformer</a>
  5012.          
  5013.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5014.        </p><div class="product-loop-element__price  ">
  5015.          
  5016.            
  5017.                <p class="p--bold p--small">£3,139</p>
  5018.              
  5019.          
  5020.        
  5021.          <p data-unit-price-wrapper class="p--small  hidden">
  5022.            <span data-unit-price></span>
  5023.            <span>/</span>
  5024.            <span data-unit-price-measurement-reference-value></span>
  5025.            <span data-unit-price-measurement-reference-unit></span>
  5026.          </p>
  5027.        </div><div class="product-loop-element__swatch">
  5028.  
  5029.  
  5030.  
  5031.  
  5032.  
  5033.  
  5034.  
  5035.  
  5036.  
  5037.  
  5038.  
  5039.  
  5040.  
  5041.  
  5042.  
  5043.  
  5044.  
  5045.    <label for="template--24031472877910__featured_collection_2-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5046.      <div class="tooltip">Black</div>
  5047.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5048.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer.jpg?v=1731408231&width={width}"
  5049.  data-widths="[50, 75, 100, 150, 200]"
  5050.  data-sizes="auto"
  5051.  data-parent-fit="cover"
  5052.  onError="this.style.display = 'none';"
  5053.  alt="Black swatch">
  5054.      </div>
  5055.    </label>
  5056.  
  5057.  
  5058.  
  5059.  
  5060.  
  5061.  
  5062.  
  5063.  
  5064.  
  5065.  
  5066.  
  5067.  
  5068.    <label for="template--24031472877910__featured_collection_2-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5069.      <div class="tooltip">Gray</div>
  5070.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5071.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_14898d2c-f2ef-4adb-8659-92fa4643aac0.jpg?v=1740248415&width={width}"
  5072.  data-widths="[50, 75, 100, 150, 200]"
  5073.  data-sizes="auto"
  5074.  data-parent-fit="cover"
  5075.  onError="this.style.display = 'none';"
  5076.  alt="Gray swatch">
  5077.      </div>
  5078.    </label>
  5079.  
  5080.  
  5081.  
  5082.  
  5083.  
  5084.  
  5085.  
  5086.  
  5087.  
  5088.  
  5089.  
  5090.  
  5091.    <label for="template--24031472877910__featured_collection_2-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5092.      <div class="tooltip">Blue</div>
  5093.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5094.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_cd073708-78a3-4b75-abcf-f90f8e808916.jpg?v=1740248415&width={width}"
  5095.  data-widths="[50, 75, 100, 150, 200]"
  5096.  data-sizes="auto"
  5097.  data-parent-fit="cover"
  5098.  onError="this.style.display = 'none';"
  5099.  alt="Blue swatch">
  5100.      </div>
  5101.    </label>
  5102.  
  5103.  
  5104.  
  5105.  
  5106.  
  5107.  
  5108.  
  5109.  
  5110.  
  5111.  
  5112.  
  5113.  
  5114.    <label for="template--24031472877910__featured_collection_2-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5115.      <div class="tooltip">Ocean Blue</div>
  5116.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5117.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_f4f1f7db-c9ff-45c1-a26a-23c44cae6d08.jpg?v=1740248415&width={width}"
  5118.  data-widths="[50, 75, 100, 150, 200]"
  5119.  data-sizes="auto"
  5120.  data-parent-fit="cover"
  5121.  onError="this.style.display = 'none';"
  5122.  alt="Ocean Blue swatch">
  5123.      </div>
  5124.    </label>
  5125.  
  5126.  
  5127.  
  5128.  
  5129.  
  5130.  
  5131.  
  5132.  
  5133.  
  5134.  
  5135.  
  5136.  
  5137.    <label for="template--24031472877910__featured_collection_2-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5138.      <div class="tooltip">Green</div>
  5139.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5140.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_1b39bd18-4ac4-441c-ae11-5280cd79a9aa.jpg?v=1740248415&width={width}"
  5141.  data-widths="[50, 75, 100, 150, 200]"
  5142.  data-sizes="auto"
  5143.  data-parent-fit="cover"
  5144.  onError="this.style.display = 'none';"
  5145.  alt="Green swatch">
  5146.      </div>
  5147.    </label>
  5148.  
  5149.  
  5150.  
  5151.  
  5152.  
  5153.  
  5154.  
  5155.  
  5156.  
  5157.  
  5158.  
  5159.  
  5160.    <label for="template--24031472877910__featured_collection_2-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5161.      <div class="tooltip">Red</div>
  5162.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5163.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_8760601d-a792-483d-aa11-788285c47196.jpg?v=1740248415&width={width}"
  5164.  data-widths="[50, 75, 100, 150, 200]"
  5165.  data-sizes="auto"
  5166.  data-parent-fit="cover"
  5167.  onError="this.style.display = 'none';"
  5168.  alt="Red swatch">
  5169.      </div>
  5170.    </label>
  5171.  
  5172.  
  5173.  
  5174.  
  5175.  
  5176.  
  5177.  
  5178.  
  5179.  
  5180.  
  5181.  
  5182.  
  5183.    <label for="template--24031472877910__featured_collection_2-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5184.      <div class="tooltip">Ivory</div>
  5185.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5186.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_36fd50a7-9f36-4529-b804-aa515b920f2f.jpg?v=1740248415&width={width}"
  5187.  data-widths="[50, 75, 100, 150, 200]"
  5188.  data-sizes="auto"
  5189.  data-parent-fit="cover"
  5190.  onError="this.style.display = 'none';"
  5191.  alt="Ivory swatch">
  5192.      </div>
  5193.    </label>
  5194.  
  5195.  
  5196.  
  5197.  
  5198.  
  5199.  
  5200.  
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.    <label for="template--24031472877910__featured_collection_2-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5207.      <div class="tooltip">Mocha</div>
  5208.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5209.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_169d8644-a43a-441b-9e10-e52f884b256e.jpg?v=1740248415&width={width}"
  5210.  data-widths="[50, 75, 100, 150, 200]"
  5211.  data-sizes="auto"
  5212.  data-parent-fit="cover"
  5213.  onError="this.style.display = 'none';"
  5214.  alt="Mocha swatch">
  5215.      </div>
  5216.    </label>
  5217.  
  5218.  
  5219.  
  5220.  
  5221. </div></div>
  5222.  </div>
  5223. </div>
  5224.          </div>
  5225.        
  5226.        
  5227.        
  5228.        
  5229.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  5230.            <!-- /snippets/product-loop-item.liquid -->
  5231. <style data-shopify>
  5232.  
  5233.  
  5234.  
  5235.    # {
  5236.      max-width: px;
  5237.      max-height: px;
  5238.    }
  5239.    # {
  5240.      max-width: px;
  5241.      max-height: px;
  5242.    }
  5243.  
  5244.  
  5245.  
  5246. </style>
  5247.  
  5248.  
  5249.  
  5250.  
  5251.  
  5252.  
  5253.  
  5254.  
  5255.  
  5256.  
  5257.  
  5258.  
  5259.  
  5260. <style data-shopify>
  5261.  #product-loop--9298276057430 .product-loop__image-container::before{
  5262.    content: "";
  5263.    width: 1px;
  5264.    margin-left: -1px;
  5265.    float: left;
  5266.    height: 0;
  5267.    padding-top: 100.0%;
  5268.    position: relative;
  5269.  }
  5270.  #product-loop--9298276057430 .product-loop__image-container::after{
  5271.    content: "";
  5272.    display: table;
  5273.    clear: both;
  5274.  }
  5275. </style>
  5276.  
  5277.  
  5278. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5279. <div id="product-loop--9298276057430" class="product-loop-element ">
  5280.    
  5281.    <div class="product-loop__image-container ">
  5282.        
  5283.        <span class="icon icon-"  aria-hidden="true"></span>
  5284. <span class="fallback-text"></span>
  5285.  
  5286.  
  5287.  
  5288.        
  5289.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5290.          data-parent-fit="cover"
  5291.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite.jpg?v=1731408213&width={width}"
  5292.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5293.          data-aspectratio="1.0"
  5294.          data-sizes="auto"
  5295.          alt="Cadillac Reformer | Elite">
  5296.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5297.          data-parent-fit="cover"
  5298.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_07c1644f-3142-44d7-90e8-b7eb8dc07f52.jpg?v=1740248440&width={width}"
  5299.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5300.          data-aspectratio="1.0"
  5301.          data-sizes="auto"
  5302.          alt="">
  5303.        
  5304.        <a class="product-loop__image-link" href="/products/pilates-cadillac-reformer-elite" aria-label="Cadillac Reformer | Elite"></a>
  5305.    </div>
  5306.      <div class="product-loop-element__details ">
  5307.        <p class="product-loop_title ">
  5308.          <a class="p-link--no-accent" href="/products/pilates-cadillac-reformer-elite" aria-label="Cadillac Reformer | Elite" >Cadillac Reformer | Elite</a>
  5309.          
  5310.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5311.        </p><div class="product-loop-element__price  ">
  5312.          
  5313.            
  5314.                <p class="p--bold p--small">£3,435</p>
  5315.              
  5316.          
  5317.        
  5318.          <p data-unit-price-wrapper class="p--small  hidden">
  5319.            <span data-unit-price></span>
  5320.            <span>/</span>
  5321.            <span data-unit-price-measurement-reference-value></span>
  5322.            <span data-unit-price-measurement-reference-unit></span>
  5323.          </p>
  5324.        </div><div class="product-loop-element__swatch">
  5325.  
  5326.  
  5327.  
  5328.  
  5329.  
  5330.  
  5331.  
  5332.  
  5333.  
  5334.  
  5335.  
  5336.  
  5337.  
  5338.  
  5339.  
  5340.  
  5341.  
  5342.    <label for="template--24031472877910__featured_collection_2-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5343.      <div class="tooltip">Black</div>
  5344.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5345.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite.jpg?v=1731408213&width={width}"
  5346.  data-widths="[50, 75, 100, 150, 200]"
  5347.  data-sizes="auto"
  5348.  data-parent-fit="cover"
  5349.  onError="this.style.display = 'none';"
  5350.  alt="Black swatch">
  5351.      </div>
  5352.    </label>
  5353.  
  5354.  
  5355.  
  5356.  
  5357.  
  5358.  
  5359.  
  5360.  
  5361.  
  5362.  
  5363.  
  5364.  
  5365.    <label for="template--24031472877910__featured_collection_2-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5366.      <div class="tooltip">Gray</div>
  5367.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5368.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_178e5f09-042b-4b05-ba02-0ee5ffb9bf8b.jpg?v=1740248519&width={width}"
  5369.  data-widths="[50, 75, 100, 150, 200]"
  5370.  data-sizes="auto"
  5371.  data-parent-fit="cover"
  5372.  onError="this.style.display = 'none';"
  5373.  alt="Gray swatch">
  5374.      </div>
  5375.    </label>
  5376.  
  5377.  
  5378.  
  5379.  
  5380.  
  5381.  
  5382.  
  5383.  
  5384.  
  5385.  
  5386.  
  5387.  
  5388.    <label for="template--24031472877910__featured_collection_2-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5389.      <div class="tooltip">Blue</div>
  5390.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5391.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_d75e553a-302b-440e-8d95-a63794be8e21.jpg?v=1740248518&width={width}"
  5392.  data-widths="[50, 75, 100, 150, 200]"
  5393.  data-sizes="auto"
  5394.  data-parent-fit="cover"
  5395.  onError="this.style.display = 'none';"
  5396.  alt="Blue swatch">
  5397.      </div>
  5398.    </label>
  5399.  
  5400.  
  5401.  
  5402.  
  5403.  
  5404.  
  5405.  
  5406.  
  5407.  
  5408.  
  5409.  
  5410.  
  5411.    <label for="template--24031472877910__featured_collection_2-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5412.      <div class="tooltip">Ocean Blue</div>
  5413.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5414.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_7d67f741-c9af-475e-9a6d-e8fbf6a0b5a0.jpg?v=1740248518&width={width}"
  5415.  data-widths="[50, 75, 100, 150, 200]"
  5416.  data-sizes="auto"
  5417.  data-parent-fit="cover"
  5418.  onError="this.style.display = 'none';"
  5419.  alt="Ocean Blue swatch">
  5420.      </div>
  5421.    </label>
  5422.  
  5423.  
  5424.  
  5425.  
  5426.  
  5427.  
  5428.  
  5429.  
  5430.  
  5431.  
  5432.  
  5433.  
  5434.    <label for="template--24031472877910__featured_collection_2-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5435.      <div class="tooltip">Green</div>
  5436.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5437.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_70fad9c3-f304-41a3-8777-00ebb0544bfb.jpg?v=1740248518&width={width}"
  5438.  data-widths="[50, 75, 100, 150, 200]"
  5439.  data-sizes="auto"
  5440.  data-parent-fit="cover"
  5441.  onError="this.style.display = 'none';"
  5442.  alt="Green swatch">
  5443.      </div>
  5444.    </label>
  5445.  
  5446.  
  5447.  
  5448.  
  5449.  
  5450.  
  5451.  
  5452.  
  5453.  
  5454.  
  5455.  
  5456.  
  5457.    <label for="template--24031472877910__featured_collection_2-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5458.      <div class="tooltip">Red</div>
  5459.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5460.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_35613115-add4-4a00-883c-7862791f8542.jpg?v=1740248518&width={width}"
  5461.  data-widths="[50, 75, 100, 150, 200]"
  5462.  data-sizes="auto"
  5463.  data-parent-fit="cover"
  5464.  onError="this.style.display = 'none';"
  5465.  alt="Red swatch">
  5466.      </div>
  5467.    </label>
  5468.  
  5469.  
  5470.  
  5471.  
  5472.  
  5473.  
  5474.  
  5475.  
  5476.  
  5477.  
  5478.  
  5479.  
  5480.    <label for="template--24031472877910__featured_collection_2-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5481.      <div class="tooltip">Ivory</div>
  5482.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5483.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_debf05c2-6320-4055-9eaf-f033f5f6e025.jpg?v=1740248518&width={width}"
  5484.  data-widths="[50, 75, 100, 150, 200]"
  5485.  data-sizes="auto"
  5486.  data-parent-fit="cover"
  5487.  onError="this.style.display = 'none';"
  5488.  alt="Ivory swatch">
  5489.      </div>
  5490.    </label>
  5491.  
  5492.  
  5493.  
  5494.  
  5495.  
  5496.  
  5497.  
  5498.  
  5499.  
  5500.  
  5501.  
  5502.  
  5503.    <label for="template--24031472877910__featured_collection_2-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5504.      <div class="tooltip">Mocha</div>
  5505.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5506.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_cff99d42-f3ab-4ab7-bba3-8107a81df004.jpg?v=1740248518&width={width}"
  5507.  data-widths="[50, 75, 100, 150, 200]"
  5508.  data-sizes="auto"
  5509.  data-parent-fit="cover"
  5510.  onError="this.style.display = 'none';"
  5511.  alt="Mocha swatch">
  5512.      </div>
  5513.    </label>
  5514.  
  5515.  
  5516.  
  5517.  
  5518. </div></div>
  5519.  </div>
  5520. </div>
  5521.          </div>
  5522.        
  5523.        
  5524.        
  5525.        
  5526.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  5527.            <!-- /snippets/product-loop-item.liquid -->
  5528. <style data-shopify>
  5529.  
  5530.  
  5531.  
  5532.    # {
  5533.      max-width: px;
  5534.      max-height: px;
  5535.    }
  5536.    # {
  5537.      max-width: px;
  5538.      max-height: px;
  5539.    }
  5540.  
  5541.  
  5542.  
  5543. </style>
  5544.  
  5545.  
  5546.  
  5547.  
  5548.  
  5549.  
  5550.  
  5551.  
  5552.  
  5553.  
  5554.  
  5555.  
  5556.  
  5557. <style data-shopify>
  5558.  #product-loop--9298275074390 .product-loop__image-container::before{
  5559.    content: "";
  5560.    width: 1px;
  5561.    margin-left: -1px;
  5562.    float: left;
  5563.    height: 0;
  5564.    padding-top: 100.0%;
  5565.    position: relative;
  5566.  }
  5567.  #product-loop--9298275074390 .product-loop__image-container::after{
  5568.    content: "";
  5569.    display: table;
  5570.    clear: both;
  5571.  }
  5572. </style>
  5573.  
  5574.  
  5575. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5576. <div id="product-loop--9298275074390" class="product-loop-element ">
  5577.    
  5578.    <div class="product-loop__image-container ">
  5579.        
  5580.        <span class="icon icon-"  aria-hidden="true"></span>
  5581. <span class="fallback-text"></span>
  5582.  
  5583.  
  5584.  
  5585.        
  5586.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5587.          data-parent-fit="cover"
  5588.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio.jpg?v=1731408182&width={width}"
  5589.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5590.          data-aspectratio="1.0"
  5591.          data-sizes="auto"
  5592.          alt="Classic Cadillac | Aluminium">
  5593.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5594.          data-parent-fit="cover"
  5595.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_a48ef727-894f-4bc0-a6c7-618a362114a1.jpg?v=1731408182&width={width}"
  5596.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5597.          data-aspectratio="1.0"
  5598.          data-sizes="auto"
  5599.          alt="">
  5600.        
  5601.        <a class="product-loop__image-link" href="/products/pilates-cadillac-trapeze-aluminium-classic" aria-label="Classic Cadillac | Aluminium"></a>
  5602.    </div>
  5603.      <div class="product-loop-element__details ">
  5604.        <p class="product-loop_title ">
  5605.          <a class="p-link--no-accent" href="/products/pilates-cadillac-trapeze-aluminium-classic" aria-label="Classic Cadillac | Aluminium" >Classic Cadillac | Aluminium</a>
  5606.          
  5607.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5608.        </p><div class="product-loop-element__price  ">
  5609.          
  5610.            
  5611.                <p class="p--bold p--small">£3,299</p>
  5612.              
  5613.          
  5614.        
  5615.          <p data-unit-price-wrapper class="p--small  hidden">
  5616.            <span data-unit-price></span>
  5617.            <span>/</span>
  5618.            <span data-unit-price-measurement-reference-value></span>
  5619.            <span data-unit-price-measurement-reference-unit></span>
  5620.          </p>
  5621.        </div><div class="product-loop-element__swatch">
  5622.  
  5623.  
  5624.  
  5625.  
  5626.  
  5627.  
  5628.  
  5629.  
  5630.  
  5631.  
  5632.  
  5633.  
  5634.  
  5635.  
  5636.  
  5637.  
  5638.  
  5639.    <label for="template--24031472877910__featured_collection_2-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5640.      <div class="tooltip">Black</div>
  5641.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5642.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio.jpg?v=1731408182&width={width}"
  5643.  data-widths="[50, 75, 100, 150, 200]"
  5644.  data-sizes="auto"
  5645.  data-parent-fit="cover"
  5646.  onError="this.style.display = 'none';"
  5647.  alt="Black swatch">
  5648.      </div>
  5649.    </label>
  5650.  
  5651.  
  5652.  
  5653.  
  5654.  
  5655.  
  5656.  
  5657.  
  5658.  
  5659.  
  5660.  
  5661.  
  5662.    <label for="template--24031472877910__featured_collection_2-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5663.      <div class="tooltip">Gray</div>
  5664.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5665.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_9f345600-4356-43bc-a34f-8e4117dbf86c.jpg?v=1731408182&width={width}"
  5666.  data-widths="[50, 75, 100, 150, 200]"
  5667.  data-sizes="auto"
  5668.  data-parent-fit="cover"
  5669.  onError="this.style.display = 'none';"
  5670.  alt="Gray swatch">
  5671.      </div>
  5672.    </label>
  5673.  
  5674.  
  5675.  
  5676.  
  5677.  
  5678.  
  5679.  
  5680.  
  5681.  
  5682.  
  5683.  
  5684.  
  5685.    <label for="template--24031472877910__featured_collection_2-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5686.      <div class="tooltip">Blue</div>
  5687.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5688.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_e994be8b-543a-42ea-a439-26921a22fe01.jpg?v=1731695886&width={width}"
  5689.  data-widths="[50, 75, 100, 150, 200]"
  5690.  data-sizes="auto"
  5691.  data-parent-fit="cover"
  5692.  onError="this.style.display = 'none';"
  5693.  alt="Blue swatch">
  5694.      </div>
  5695.    </label>
  5696.  
  5697.  
  5698.  
  5699.  
  5700.  
  5701.  
  5702.  
  5703.  
  5704.  
  5705.  
  5706.  
  5707.  
  5708.    <label for="template--24031472877910__featured_collection_2-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5709.      <div class="tooltip">Ocean Blue</div>
  5710.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5711.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_c00654df-248a-4fd4-9bc6-56b6d9ec8960.jpg?v=1731695897&width={width}"
  5712.  data-widths="[50, 75, 100, 150, 200]"
  5713.  data-sizes="auto"
  5714.  data-parent-fit="cover"
  5715.  onError="this.style.display = 'none';"
  5716.  alt="Ocean Blue swatch">
  5717.      </div>
  5718.    </label>
  5719.  
  5720.  
  5721.  
  5722.  
  5723.  
  5724.  
  5725.  
  5726.  
  5727.  
  5728.  
  5729.  
  5730.  
  5731.    <label for="template--24031472877910__featured_collection_2-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5732.      <div class="tooltip">Green</div>
  5733.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5734.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_dce59ab7-0a43-4d07-8845-ce25c53419dd.jpg?v=1731695909&width={width}"
  5735.  data-widths="[50, 75, 100, 150, 200]"
  5736.  data-sizes="auto"
  5737.  data-parent-fit="cover"
  5738.  onError="this.style.display = 'none';"
  5739.  alt="Green swatch">
  5740.      </div>
  5741.    </label>
  5742.  
  5743.  
  5744.  
  5745.  
  5746.  
  5747.  
  5748.  
  5749.  
  5750.  
  5751.  
  5752.  
  5753.  
  5754.    <label for="template--24031472877910__featured_collection_2-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5755.      <div class="tooltip">Red</div>
  5756.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5757.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_cea86dd5-734a-4d02-a895-3b1277aa1654.jpg?v=1731695921&width={width}"
  5758.  data-widths="[50, 75, 100, 150, 200]"
  5759.  data-sizes="auto"
  5760.  data-parent-fit="cover"
  5761.  onError="this.style.display = 'none';"
  5762.  alt="Red swatch">
  5763.      </div>
  5764.    </label>
  5765.  
  5766.  
  5767.  
  5768.  
  5769.  
  5770.  
  5771.  
  5772.  
  5773.  
  5774.  
  5775.  
  5776.  
  5777.    <label for="template--24031472877910__featured_collection_2-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5778.      <div class="tooltip">Ivory</div>
  5779.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5780.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_aafa17b6-95cd-49e9-aff0-1bc096fb42bb.jpg?v=1731695932&width={width}"
  5781.  data-widths="[50, 75, 100, 150, 200]"
  5782.  data-sizes="auto"
  5783.  data-parent-fit="cover"
  5784.  onError="this.style.display = 'none';"
  5785.  alt="Ivory swatch">
  5786.      </div>
  5787.    </label>
  5788.  
  5789.  
  5790.  
  5791.  
  5792.  
  5793.  
  5794.  
  5795.  
  5796.  
  5797.  
  5798.  
  5799.  
  5800.    <label for="template--24031472877910__featured_collection_2-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5801.      <div class="tooltip">Mocha</div>
  5802.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5803.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_f9abd255-23d9-4106-82e4-bbfbcba2dbed.jpg?v=1731695943&width={width}"
  5804.  data-widths="[50, 75, 100, 150, 200]"
  5805.  data-sizes="auto"
  5806.  data-parent-fit="cover"
  5807.  onError="this.style.display = 'none';"
  5808.  alt="Mocha swatch">
  5809.      </div>
  5810.    </label>
  5811.  
  5812.  
  5813.  
  5814.  
  5815. </div></div>
  5816.  </div>
  5817. </div>
  5818.          </div>
  5819.        
  5820.        
  5821.        
  5822.        
  5823.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  5824.            <!-- /snippets/product-loop-item.liquid -->
  5825. <style data-shopify>
  5826.  
  5827.  
  5828.  
  5829.    # {
  5830.      max-width: px;
  5831.      max-height: px;
  5832.    }
  5833.    # {
  5834.      max-width: px;
  5835.      max-height: px;
  5836.    }
  5837.  
  5838.  
  5839.  
  5840. </style>
  5841.  
  5842.  
  5843.  
  5844.  
  5845.  
  5846.  
  5847.  
  5848.  
  5849.  
  5850.  
  5851.  
  5852.  
  5853.  
  5854. <style data-shopify>
  5855.  #product-loop--9298274648406 .product-loop__image-container::before{
  5856.    content: "";
  5857.    width: 1px;
  5858.    margin-left: -1px;
  5859.    float: left;
  5860.    height: 0;
  5861.    padding-top: 100.0%;
  5862.    position: relative;
  5863.  }
  5864.  #product-loop--9298274648406 .product-loop__image-container::after{
  5865.    content: "";
  5866.    display: table;
  5867.    clear: both;
  5868.  }
  5869. </style>
  5870.  
  5871.  
  5872. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5873. <div id="product-loop--9298274648406" class="product-loop-element ">
  5874.    
  5875.    <div class="product-loop__image-container ">
  5876.        
  5877.        <span class="icon icon-"  aria-hidden="true"></span>
  5878. <span class="fallback-text"></span>
  5879.  
  5880.  
  5881.  
  5882.        
  5883.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5884.          data-parent-fit="cover"
  5885.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac.jpg?v=1731408166&width={width}"
  5886.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5887.          data-aspectratio="1.0"
  5888.          data-sizes="auto"
  5889.          alt="Cadillac">
  5890.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5891.          data-parent-fit="cover"
  5892.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_67288bec-2151-44fe-ad82-11ec452d37bb.jpg?v=1740248328&width={width}"
  5893.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5894.          data-aspectratio="1.0"
  5895.          data-sizes="auto"
  5896.          alt="">
  5897.        
  5898.        <a class="product-loop__image-link" href="/products/pilates-cadillac-trapeze" aria-label="Cadillac"></a>
  5899.    </div>
  5900.      <div class="product-loop-element__details ">
  5901.        <p class="product-loop_title ">
  5902.          <a class="p-link--no-accent" href="/products/pilates-cadillac-trapeze" aria-label="Cadillac" >Cadillac</a>
  5903.          
  5904.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5905.        </p><div class="product-loop-element__price  ">
  5906.          
  5907.            
  5908.                <p class="p--bold p--small">£2,309</p>
  5909.              
  5910.          
  5911.        
  5912.          <p data-unit-price-wrapper class="p--small  hidden">
  5913.            <span data-unit-price></span>
  5914.            <span>/</span>
  5915.            <span data-unit-price-measurement-reference-value></span>
  5916.            <span data-unit-price-measurement-reference-unit></span>
  5917.          </p>
  5918.        </div><div class="product-loop-element__swatch">
  5919.  
  5920.  
  5921.  
  5922.  
  5923.  
  5924.  
  5925.  
  5926.  
  5927.  
  5928.  
  5929.  
  5930.  
  5931.  
  5932.  
  5933.  
  5934.  
  5935.  
  5936.    <label for="template--24031472877910__featured_collection_2-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5937.      <div class="tooltip">Black</div>
  5938.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5939.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac.jpg?v=1731408166&width={width}"
  5940.  data-widths="[50, 75, 100, 150, 200]"
  5941.  data-sizes="auto"
  5942.  data-parent-fit="cover"
  5943.  onError="this.style.display = 'none';"
  5944.  alt="Black swatch">
  5945.      </div>
  5946.    </label>
  5947.  
  5948.  
  5949.  
  5950.  
  5951.  
  5952.  
  5953.  
  5954.  
  5955.  
  5956.  
  5957.  
  5958.  
  5959.    <label for="template--24031472877910__featured_collection_2-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5960.      <div class="tooltip">Gray</div>
  5961.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5962.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_26a7f043-7ddb-4d21-ba87-02b369b5ebda.jpg?v=1740248377&width={width}"
  5963.  data-widths="[50, 75, 100, 150, 200]"
  5964.  data-sizes="auto"
  5965.  data-parent-fit="cover"
  5966.  onError="this.style.display = 'none';"
  5967.  alt="Gray swatch">
  5968.      </div>
  5969.    </label>
  5970.  
  5971.  
  5972.  
  5973.  
  5974.  
  5975.  
  5976.  
  5977.  
  5978.  
  5979.  
  5980.  
  5981.  
  5982.    <label for="template--24031472877910__featured_collection_2-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  5983.      <div class="tooltip">Blue</div>
  5984.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5985.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_b9cd8184-9671-473c-9a74-cac9387015f5.jpg?v=1740248358&width={width}"
  5986.  data-widths="[50, 75, 100, 150, 200]"
  5987.  data-sizes="auto"
  5988.  data-parent-fit="cover"
  5989.  onError="this.style.display = 'none';"
  5990.  alt="Blue swatch">
  5991.      </div>
  5992.    </label>
  5993.  
  5994.  
  5995.  
  5996.  
  5997.  
  5998.  
  5999.  
  6000.  
  6001.  
  6002.  
  6003.  
  6004.  
  6005.    <label for="template--24031472877910__featured_collection_2-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__featured_collection_2-1">
  6006.      <div class="tooltip">Ocean Blue</div>
  6007.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6008.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_e400f8fc-4c23-4bac-b267-58fe997f4b97.jpg?v=1740248358&width={width}"
  6009.  data-widths="[50, 75, 100, 150, 200]"
  6010.  data-sizes="auto"
  6011.  data-parent-fit="cover"
  6012.  onError="this.style.display = 'none';"
  6013.  alt="Ocean Blue swatch">
  6014.      </div>
  6015.    </label>
  6016.  
  6017.  
  6018.  
  6019.  
  6020.  
  6021.  
  6022.  
  6023.  
  6024.  
  6025.  
  6026.  
  6027.  
  6028.    <label for="template--24031472877910__featured_collection_2-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__featured_collection_2-1">
  6029.      <div class="tooltip">Green</div>
  6030.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6031.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_fdeff116-f437-4710-acd8-d809c4c9fd98.jpg?v=1740248358&width={width}"
  6032.  data-widths="[50, 75, 100, 150, 200]"
  6033.  data-sizes="auto"
  6034.  data-parent-fit="cover"
  6035.  onError="this.style.display = 'none';"
  6036.  alt="Green swatch">
  6037.      </div>
  6038.    </label>
  6039.  
  6040.  
  6041.  
  6042.  
  6043.  
  6044.  
  6045.  
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.    <label for="template--24031472877910__featured_collection_2-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__featured_collection_2-1">
  6052.      <div class="tooltip">Red</div>
  6053.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6054.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_8734e182-35d7-40b1-a123-f61e8312a17e.jpg?v=1740248358&width={width}"
  6055.  data-widths="[50, 75, 100, 150, 200]"
  6056.  data-sizes="auto"
  6057.  data-parent-fit="cover"
  6058.  onError="this.style.display = 'none';"
  6059.  alt="Red swatch">
  6060.      </div>
  6061.    </label>
  6062.  
  6063.  
  6064.  
  6065.  
  6066.  
  6067.  
  6068.  
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074.    <label for="template--24031472877910__featured_collection_2-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__featured_collection_2-1">
  6075.      <div class="tooltip">Ivory</div>
  6076.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6077.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_a991c070-fba2-43eb-b433-35d907d34925.jpg?v=1740248358&width={width}"
  6078.  data-widths="[50, 75, 100, 150, 200]"
  6079.  data-sizes="auto"
  6080.  data-parent-fit="cover"
  6081.  onError="this.style.display = 'none';"
  6082.  alt="Ivory swatch">
  6083.      </div>
  6084.    </label>
  6085.  
  6086.  
  6087.  
  6088.  
  6089.  
  6090.  
  6091.  
  6092.  
  6093.  
  6094.  
  6095.  
  6096.  
  6097.    <label for="template--24031472877910__featured_collection_2-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__featured_collection_2-1">
  6098.      <div class="tooltip">Mocha</div>
  6099.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6100.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_c83fdaba-8dff-4496-91d0-446e89376e7a.jpg?v=1740248358&width={width}"
  6101.  data-widths="[50, 75, 100, 150, 200]"
  6102.  data-sizes="auto"
  6103.  data-parent-fit="cover"
  6104.  onError="this.style.display = 'none';"
  6105.  alt="Mocha swatch">
  6106.      </div>
  6107.    </label>
  6108.  
  6109.  
  6110.  
  6111.  
  6112. </div></div>
  6113.  </div>
  6114. </div>
  6115.          </div>
  6116.        
  6117.        
  6118.        
  6119.  
  6120.      
  6121.    
  6122.    </div>
  6123.  </div>
  6124. </div>
  6125.  
  6126. <style> #shopify-section-template--24031472877910__featured_collection_2 .p--accent {color: red !important;} </style></div><div id="shopify-section-template--24031472877910__main_featured_collection_t4Vcej" class="shopify-section dynamic__section section__featured-collection">
  6127. <!-- /sections/home-featured-collection.liquid -->
  6128. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  6129. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  6130.  
  6131.  
  6132.  
  6133.  
  6134.  
  6135.  
  6136.  
  6137.  
  6138.  
  6139.  
  6140.  
  6141.  
  6142.  
  6143.  
  6144.  
  6145.  
  6146.  
  6147.  
  6148. <style data-shopify>
  6149. #shopify-section-template--24031472877910__main_featured_collection_t4Vcej{
  6150.  background-color: var(--color_body_bg);
  6151. }
  6152. .featured-collection__loop{
  6153.  max-width: 100%;
  6154. }
  6155.  
  6156. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__content-wrapper{
  6157.  background-color: #282828;
  6158.  color: #ffffff;
  6159. }
  6160.  
  6161. #section--template--24031472877910__main_featured_collection_t4Vcej h2, #section--template--24031472877910__main_featured_collection_t4Vcej h4 {
  6162.  color: #ffffff;
  6163. }
  6164. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__border {
  6165.  border: solid 1px #ffffff;
  6166. }
  6167. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__overlay{
  6168.  background-color: rgba(255, 255, 255, 0.25);
  6169. }
  6170.  
  6171. .featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej{
  6172.  border: 1px solid #e6e6e6;
  6173. }
  6174.  
  6175. .promotion_image--template--24031472877910__main_featured_collection_t4Vcej{
  6176.  background-image: url();
  6177.  background-size: cover;
  6178. }.featured-collection--template--24031472877910__main_featured_collection_t4Vcej{
  6179.    background-color: var(--color_body_bg);
  6180.  }
  6181.  .featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej{
  6182.    border: 1px solid #e6e6e6;
  6183.  }
  6184.  
  6185.  .product-loop__img-template--24031472877910__main_featured_collection_t4Vcej--cover{
  6186.    object-fit: cover!important;
  6187.    height: 100%;
  6188. }
  6189. .img--cover{
  6190.  width:100%;
  6191. }
  6192.  
  6193. @media screen and (min-width: 769px){
  6194.  .featured-collection--template--24031472877910__main_featured_collection_t4Vcej .product-loop-element--hover .product-loop__image-link{
  6195.    background-color: rgba(255, 255, 255, 0.25);
  6196.  }
  6197. }
  6198. </style>
  6199. <div id="section-featured-collection--template--24031472877910__main_featured_collection_t4Vcej" class="section__standard-spacing--large">
  6200.  <div class="wrapper lazysection lazyload featured-collection featured-collection--template--24031472877910__main_featured_collection_t4Vcej"  data-section-id="template--24031472877910__main_featured_collection_t4Vcej" data-section-type="featured_collection" ><div class="section__text-block section__standard-spacing--full--section-header text-center"><a href="/collections/wunda-chair-pilates"><h2>Chairs</h2></a><a class="h5 text--underline" href="/collections/wunda-chair-pilates">View All Products</a></div><div class="featured-collection__loop featured-collection__loop--slider-true">
  6201.        
  6202.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  6203.            <!-- /snippets/product-loop-item.liquid -->
  6204. <style data-shopify>
  6205.  
  6206.  
  6207.  
  6208.    # {
  6209.      max-width: px;
  6210.      max-height: px;
  6211.    }
  6212.    # {
  6213.      max-width: px;
  6214.      max-height: px;
  6215.    }
  6216.  
  6217.  
  6218.  
  6219. </style>
  6220.  
  6221.  
  6222.  
  6223.  
  6224.  
  6225.  
  6226.  
  6227.  
  6228.  
  6229.  
  6230.  
  6231.  
  6232.  
  6233. <style data-shopify>
  6234.  #product-loop--9298464375126 .product-loop__image-container::before{
  6235.    content: "";
  6236.    width: 1px;
  6237.    margin-left: -1px;
  6238.    float: left;
  6239.    height: 0;
  6240.    padding-top: 111.11111111111111%;
  6241.    position: relative;
  6242.  }
  6243.  #product-loop--9298464375126 .product-loop__image-container::after{
  6244.    content: "";
  6245.    display: table;
  6246.    clear: both;
  6247.  }
  6248. </style>
  6249.  
  6250.  
  6251. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6252. <div id="product-loop--9298464375126" class="product-loop-element ">
  6253.    
  6254.    <div class="product-loop__image-container ">
  6255.        
  6256.        <span class="icon icon-"  aria-hidden="true"></span>
  6257. <span class="fallback-text"></span>
  6258.  
  6259.  
  6260.  
  6261.        
  6262.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6263.          data-parent-fit="cover"
  6264.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair.jpg?v=1731415118&width={width}"
  6265.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6266.          data-aspectratio="1.0"
  6267.          data-sizes="auto"
  6268.          alt="Wunda Chair">
  6269.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6270.          data-parent-fit="cover"
  6271.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_e976a731-d28e-4e0c-9bed-c5c1e2c47669.jpg?v=1731415118&width={width}"
  6272.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6273.          data-aspectratio="1.0"
  6274.          data-sizes="auto"
  6275.          alt="">
  6276.        
  6277.        <a class="product-loop__image-link" href="/products/pilates-chair-wunda" aria-label="Wunda Chair"></a>
  6278.    </div>
  6279.      <div class="product-loop-element__details ">
  6280.        <p class="product-loop_title ">
  6281.          <a class="p-link--no-accent" href="/products/pilates-chair-wunda" aria-label="Wunda Chair" >Wunda Chair</a>
  6282.          
  6283.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6284.        </p><div class="product-loop-element__price  ">
  6285.          
  6286.            
  6287.                <p class="p--bold p--small">£899</p>
  6288.              
  6289.          
  6290.        
  6291.          <p data-unit-price-wrapper class="p--small  hidden">
  6292.            <span data-unit-price></span>
  6293.            <span>/</span>
  6294.            <span data-unit-price-measurement-reference-value></span>
  6295.            <span data-unit-price-measurement-reference-unit></span>
  6296.          </p>
  6297.        </div><div class="product-loop-element__swatch">
  6298.  
  6299.  
  6300.  
  6301.  
  6302.  
  6303.  
  6304.  
  6305.  
  6306.  
  6307.  
  6308.  
  6309.  
  6310.  
  6311.  
  6312.  
  6313.  
  6314.  
  6315.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6316.      <div class="tooltip">Black</div>
  6317.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6318.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair.jpg?v=1731415118&width={width}"
  6319.  data-widths="[50, 75, 100, 150, 200]"
  6320.  data-sizes="auto"
  6321.  data-parent-fit="cover"
  6322.  onError="this.style.display = 'none';"
  6323.  alt="Black swatch">
  6324.      </div>
  6325.    </label>
  6326.  
  6327.  
  6328.  
  6329.  
  6330.  
  6331.  
  6332.  
  6333.  
  6334.  
  6335.  
  6336.  
  6337.  
  6338.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6339.      <div class="tooltip">Gray</div>
  6340.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6341.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_6cef831c-a430-4392-a21e-7f7ebbba828e.jpg?v=1731415118&width={width}"
  6342.  data-widths="[50, 75, 100, 150, 200]"
  6343.  data-sizes="auto"
  6344.  data-parent-fit="cover"
  6345.  onError="this.style.display = 'none';"
  6346.  alt="Gray swatch">
  6347.      </div>
  6348.    </label>
  6349.  
  6350.  
  6351.  
  6352.  
  6353.  
  6354.  
  6355.  
  6356.  
  6357.  
  6358.  
  6359.  
  6360.  
  6361.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6362.      <div class="tooltip">Blue</div>
  6363.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6364.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_e803d3e0-8f6d-478a-acaa-25e4a2114473.jpg?v=1731699616&width={width}"
  6365.  data-widths="[50, 75, 100, 150, 200]"
  6366.  data-sizes="auto"
  6367.  data-parent-fit="cover"
  6368.  onError="this.style.display = 'none';"
  6369.  alt="Blue swatch">
  6370.      </div>
  6371.    </label>
  6372.  
  6373.  
  6374.  
  6375.  
  6376.  
  6377.  
  6378.  
  6379.  
  6380.  
  6381.  
  6382.  
  6383.  
  6384.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6385.      <div class="tooltip">Ocean Blue</div>
  6386.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6387.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_d8dd49f9-9d61-49ae-b9c2-603e7369f8af.jpg?v=1731699684&width={width}"
  6388.  data-widths="[50, 75, 100, 150, 200]"
  6389.  data-sizes="auto"
  6390.  data-parent-fit="cover"
  6391.  onError="this.style.display = 'none';"
  6392.  alt="Ocean Blue swatch">
  6393.      </div>
  6394.    </label>
  6395.  
  6396.  
  6397.  
  6398.  
  6399.  
  6400.  
  6401.  
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6408.      <div class="tooltip">Green</div>
  6409.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6410.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_5cbf919e-13cb-4837-a4c1-c6fc64750011.jpg?v=1731699624&width={width}"
  6411.  data-widths="[50, 75, 100, 150, 200]"
  6412.  data-sizes="auto"
  6413.  data-parent-fit="cover"
  6414.  onError="this.style.display = 'none';"
  6415.  alt="Green swatch">
  6416.      </div>
  6417.    </label>
  6418.  
  6419.  
  6420.  
  6421.  
  6422.  
  6423.  
  6424.  
  6425.  
  6426.  
  6427.  
  6428.  
  6429.  
  6430.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6431.      <div class="tooltip">Red</div>
  6432.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6433.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_46bda9f1-7195-4a81-8012-98572dfa4f6c.jpg?v=1731699632&width={width}"
  6434.  data-widths="[50, 75, 100, 150, 200]"
  6435.  data-sizes="auto"
  6436.  data-parent-fit="cover"
  6437.  onError="this.style.display = 'none';"
  6438.  alt="Red swatch">
  6439.      </div>
  6440.    </label>
  6441.  
  6442.  
  6443.  
  6444.  
  6445.  
  6446.  
  6447.  
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6454.      <div class="tooltip">Ivory</div>
  6455.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6456.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_32d29d26-3893-48df-9f5b-288b90ed5cd5.jpg?v=1731699640&width={width}"
  6457.  data-widths="[50, 75, 100, 150, 200]"
  6458.  data-sizes="auto"
  6459.  data-parent-fit="cover"
  6460.  onError="this.style.display = 'none';"
  6461.  alt="Ivory swatch">
  6462.      </div>
  6463.    </label>
  6464.  
  6465.  
  6466.  
  6467.  
  6468.  
  6469.  
  6470.  
  6471.  
  6472.  
  6473.  
  6474.  
  6475.  
  6476.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6477.      <div class="tooltip">Mocha</div>
  6478.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6479.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_4f99a1cd-eff8-492a-b0d6-2973a2cdb98c.jpg?v=1731699647&width={width}"
  6480.  data-widths="[50, 75, 100, 150, 200]"
  6481.  data-sizes="auto"
  6482.  data-parent-fit="cover"
  6483.  onError="this.style.display = 'none';"
  6484.  alt="Mocha swatch">
  6485.      </div>
  6486.    </label>
  6487.  
  6488.  
  6489.  
  6490.  
  6491. </div></div>
  6492.  </div>
  6493. </div>
  6494.          </div>
  6495.        
  6496.        
  6497.        
  6498.        
  6499.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  6500.            <!-- /snippets/product-loop-item.liquid -->
  6501. <style data-shopify>
  6502.  
  6503.  
  6504.  
  6505.    # {
  6506.      max-width: px;
  6507.      max-height: px;
  6508.    }
  6509.    # {
  6510.      max-width: px;
  6511.      max-height: px;
  6512.    }
  6513.  
  6514.  
  6515.  
  6516. </style>
  6517.  
  6518.  
  6519.  
  6520.  
  6521.  
  6522.  
  6523.  
  6524.  
  6525.  
  6526.  
  6527.  
  6528.  
  6529.  
  6530. <style data-shopify>
  6531.  #product-loop--9298464178518 .product-loop__image-container::before{
  6532.    content: "";
  6533.    width: 1px;
  6534.    margin-left: -1px;
  6535.    float: left;
  6536.    height: 0;
  6537.    padding-top: 111.11111111111111%;
  6538.    position: relative;
  6539.  }
  6540.  #product-loop--9298464178518 .product-loop__image-container::after{
  6541.    content: "";
  6542.    display: table;
  6543.    clear: both;
  6544.  }
  6545. </style>
  6546.  
  6547.  
  6548. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6549. <div id="product-loop--9298464178518" class="product-loop-element ">
  6550.    
  6551.    <div class="product-loop__image-container ">
  6552.        
  6553.        <span class="icon icon-"  aria-hidden="true"></span>
  6554. <span class="fallback-text"></span>
  6555.  
  6556.  
  6557.  
  6558.        
  6559.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6560.          data-parent-fit="cover"
  6561.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_35d5891e-f2d7-4014-897f-be3a825d1af1.jpg?v=1731415109&width={width}"
  6562.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6563.          data-aspectratio="1.0"
  6564.          data-sizes="auto"
  6565.          alt="Combo Chair | Wood Base Elite">
  6566.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6567.          data-parent-fit="cover"
  6568.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_fe2f7ff3-0eee-4369-8531-4c60ed0b3bad.jpg?v=1740254916&width={width}"
  6569.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6570.          data-aspectratio="1.0"
  6571.          data-sizes="auto"
  6572.          alt="">
  6573.        
  6574.        <a class="product-loop__image-link" href="/products/pilates-chair-combo-elite" aria-label="Combo Chair | Wood Base Elite"></a>
  6575.    </div>
  6576.      <div class="product-loop-element__details ">
  6577.        <p class="product-loop_title ">
  6578.          <a class="p-link--no-accent" href="/products/pilates-chair-combo-elite" aria-label="Combo Chair | Wood Base Elite" >Combo Chair | Wood Base Elite</a>
  6579.          
  6580.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6581.        </p><div class="product-loop-element__price  ">
  6582.          
  6583.            
  6584.                <p class="p--bold p--small">£899</p>
  6585.              
  6586.          
  6587.        
  6588.          <p data-unit-price-wrapper class="p--small  hidden">
  6589.            <span data-unit-price></span>
  6590.            <span>/</span>
  6591.            <span data-unit-price-measurement-reference-value></span>
  6592.            <span data-unit-price-measurement-reference-unit></span>
  6593.          </p>
  6594.        </div><div class="product-loop-element__swatch">
  6595.  
  6596.  
  6597.  
  6598.  
  6599.  
  6600.  
  6601.  
  6602.  
  6603.  
  6604.  
  6605.  
  6606.  
  6607.  
  6608.  
  6609.  
  6610.  
  6611.  
  6612.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6613.      <div class="tooltip">Black</div>
  6614.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6615.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_35d5891e-f2d7-4014-897f-be3a825d1af1.jpg?v=1731415109&width={width}"
  6616.  data-widths="[50, 75, 100, 150, 200]"
  6617.  data-sizes="auto"
  6618.  data-parent-fit="cover"
  6619.  onError="this.style.display = 'none';"
  6620.  alt="Black swatch">
  6621.      </div>
  6622.    </label>
  6623.  
  6624.  
  6625.  
  6626.  
  6627.  
  6628.  
  6629.  
  6630.  
  6631.  
  6632.  
  6633.  
  6634.  
  6635.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6636.      <div class="tooltip">Gray</div>
  6637.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6638.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera.jpg?v=1740254928&width={width}"
  6639.  data-widths="[50, 75, 100, 150, 200]"
  6640.  data-sizes="auto"
  6641.  data-parent-fit="cover"
  6642.  onError="this.style.display = 'none';"
  6643.  alt="Gray swatch">
  6644.      </div>
  6645.    </label>
  6646.  
  6647.  
  6648.  
  6649.  
  6650.  
  6651.  
  6652.  
  6653.  
  6654.  
  6655.  
  6656.  
  6657.  
  6658.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6659.      <div class="tooltip">Blue</div>
  6660.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6661.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_bec505c6-26a5-43fa-890b-0faa60a323a4.jpg?v=1740254928&width={width}"
  6662.  data-widths="[50, 75, 100, 150, 200]"
  6663.  data-sizes="auto"
  6664.  data-parent-fit="cover"
  6665.  onError="this.style.display = 'none';"
  6666.  alt="Blue swatch">
  6667.      </div>
  6668.    </label>
  6669.  
  6670.  
  6671.  
  6672.  
  6673.  
  6674.  
  6675.  
  6676.  
  6677.  
  6678.  
  6679.  
  6680.  
  6681.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6682.      <div class="tooltip">Ocean Blue</div>
  6683.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6684.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_ddf683cc-ad81-4a8f-8daa-7dcdf4419fb7.jpg?v=1740254928&width={width}"
  6685.  data-widths="[50, 75, 100, 150, 200]"
  6686.  data-sizes="auto"
  6687.  data-parent-fit="cover"
  6688.  onError="this.style.display = 'none';"
  6689.  alt="Ocean Blue swatch">
  6690.      </div>
  6691.    </label>
  6692.  
  6693.  
  6694.  
  6695.  
  6696.  
  6697.  
  6698.  
  6699.  
  6700.  
  6701.  
  6702.  
  6703.  
  6704.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6705.      <div class="tooltip">Green</div>
  6706.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6707.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_bbaf83dc-cf28-441d-8c81-e29566b87348.jpg?v=1740254928&width={width}"
  6708.  data-widths="[50, 75, 100, 150, 200]"
  6709.  data-sizes="auto"
  6710.  data-parent-fit="cover"
  6711.  onError="this.style.display = 'none';"
  6712.  alt="Green swatch">
  6713.      </div>
  6714.    </label>
  6715.  
  6716.  
  6717.  
  6718.  
  6719.  
  6720.  
  6721.  
  6722.  
  6723.  
  6724.  
  6725.  
  6726.  
  6727.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6728.      <div class="tooltip">Red</div>
  6729.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6730.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_69c458c1-217c-4d41-bd97-79d5feddf7e4.jpg?v=1740254928&width={width}"
  6731.  data-widths="[50, 75, 100, 150, 200]"
  6732.  data-sizes="auto"
  6733.  data-parent-fit="cover"
  6734.  onError="this.style.display = 'none';"
  6735.  alt="Red swatch">
  6736.      </div>
  6737.    </label>
  6738.  
  6739.  
  6740.  
  6741.  
  6742.  
  6743.  
  6744.  
  6745.  
  6746.  
  6747.  
  6748.  
  6749.  
  6750.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6751.      <div class="tooltip">Ivory</div>
  6752.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6753.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_598150d4-232a-436d-bbc3-5d1815eb6e38.jpg?v=1740254928&width={width}"
  6754.  data-widths="[50, 75, 100, 150, 200]"
  6755.  data-sizes="auto"
  6756.  data-parent-fit="cover"
  6757.  onError="this.style.display = 'none';"
  6758.  alt="Ivory swatch">
  6759.      </div>
  6760.    </label>
  6761.  
  6762.  
  6763.  
  6764.  
  6765.  
  6766.  
  6767.  
  6768.  
  6769.  
  6770.  
  6771.  
  6772.  
  6773.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6774.      <div class="tooltip">Mocha</div>
  6775.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6776.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_5e15d307-e378-4d23-989c-cab0971f25ee.jpg?v=1740254928&width={width}"
  6777.  data-widths="[50, 75, 100, 150, 200]"
  6778.  data-sizes="auto"
  6779.  data-parent-fit="cover"
  6780.  onError="this.style.display = 'none';"
  6781.  alt="Mocha swatch">
  6782.      </div>
  6783.    </label>
  6784.  
  6785.  
  6786.  
  6787.  
  6788. </div></div>
  6789.  </div>
  6790. </div>
  6791.          </div>
  6792.        
  6793.        
  6794.        
  6795.        
  6796.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  6797.            <!-- /snippets/product-loop-item.liquid -->
  6798. <style data-shopify>
  6799.  
  6800.  
  6801.  
  6802.    # {
  6803.      max-width: px;
  6804.      max-height: px;
  6805.    }
  6806.    # {
  6807.      max-width: px;
  6808.      max-height: px;
  6809.    }
  6810.  
  6811.  
  6812.  
  6813. </style>
  6814.  
  6815.  
  6816.  
  6817.  
  6818.  
  6819.  
  6820.  
  6821.  
  6822.  
  6823.  
  6824.  
  6825.  
  6826.  
  6827. <style data-shopify>
  6828.  #product-loop--9298463064406 .product-loop__image-container::before{
  6829.    content: "";
  6830.    width: 1px;
  6831.    margin-left: -1px;
  6832.    float: left;
  6833.    height: 0;
  6834.    padding-top: 111.11111111111111%;
  6835.    position: relative;
  6836.  }
  6837.  #product-loop--9298463064406 .product-loop__image-container::after{
  6838.    content: "";
  6839.    display: table;
  6840.    clear: both;
  6841.  }
  6842. </style>
  6843.  
  6844.  
  6845. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6846. <div id="product-loop--9298463064406" class="product-loop-element ">
  6847.    
  6848.    <div class="product-loop__image-container ">
  6849.        
  6850.        <span class="icon icon-"  aria-hidden="true"></span>
  6851. <span class="fallback-text"></span>
  6852.  
  6853.  
  6854.  
  6855.        
  6856.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6857.          data-parent-fit="cover"
  6858.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair.jpg?v=1731415070&width={width}"
  6859.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6860.          data-aspectratio="1.0"
  6861.          data-sizes="auto"
  6862.          alt="Combo Chair | Steel Base">
  6863.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6864.          data-parent-fit="cover"
  6865.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_fab6c2b5-3e2d-425b-951f-bb33425a7cac.jpg?v=1740254952&width={width}"
  6866.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6867.          data-aspectratio="1.0"
  6868.          data-sizes="auto"
  6869.          alt="">
  6870.        
  6871.        <a class="product-loop__image-link" href="/products/pilates-chair-combo-steel-base" aria-label="Combo Chair | Steel Base"></a>
  6872.    </div>
  6873.      <div class="product-loop-element__details ">
  6874.        <p class="product-loop_title ">
  6875.          <a class="p-link--no-accent" href="/products/pilates-chair-combo-steel-base" aria-label="Combo Chair | Steel Base" >Combo Chair | Steel Base</a>
  6876.          
  6877.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6878.        </p><div class="product-loop-element__price  ">
  6879.          
  6880.            
  6881.                <p class="p--bold p--small">£820</p>
  6882.              
  6883.          
  6884.        
  6885.          <p data-unit-price-wrapper class="p--small  hidden">
  6886.            <span data-unit-price></span>
  6887.            <span>/</span>
  6888.            <span data-unit-price-measurement-reference-value></span>
  6889.            <span data-unit-price-measurement-reference-unit></span>
  6890.          </p>
  6891.        </div><div class="product-loop-element__swatch">
  6892.  
  6893.  
  6894.  
  6895.  
  6896.  
  6897.  
  6898.  
  6899.  
  6900.  
  6901.  
  6902.  
  6903.  
  6904.  
  6905.  
  6906.  
  6907.  
  6908.  
  6909.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6910.      <div class="tooltip">Black</div>
  6911.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6912.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair.jpg?v=1731415070&width={width}"
  6913.  data-widths="[50, 75, 100, 150, 200]"
  6914.  data-sizes="auto"
  6915.  data-parent-fit="cover"
  6916.  onError="this.style.display = 'none';"
  6917.  alt="Black swatch">
  6918.      </div>
  6919.    </label>
  6920.  
  6921.  
  6922.  
  6923.  
  6924.  
  6925.  
  6926.  
  6927.  
  6928.  
  6929.  
  6930.  
  6931.  
  6932.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6933.      <div class="tooltip">Gray</div>
  6934.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6935.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_a46ba235-fd31-42ba-8186-38974f3cff96.jpg?v=1740254958&width={width}"
  6936.  data-widths="[50, 75, 100, 150, 200]"
  6937.  data-sizes="auto"
  6938.  data-parent-fit="cover"
  6939.  onError="this.style.display = 'none';"
  6940.  alt="Gray swatch">
  6941.      </div>
  6942.    </label>
  6943.  
  6944.  
  6945.  
  6946.  
  6947.  
  6948.  
  6949.  
  6950.  
  6951.  
  6952.  
  6953.  
  6954.  
  6955.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6956.      <div class="tooltip">Blue</div>
  6957.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6958.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_f36c2c59-4822-48c7-b55c-44d2fbd19dc7.jpg?v=1740254958&width={width}"
  6959.  data-widths="[50, 75, 100, 150, 200]"
  6960.  data-sizes="auto"
  6961.  data-parent-fit="cover"
  6962.  onError="this.style.display = 'none';"
  6963.  alt="Blue swatch">
  6964.      </div>
  6965.    </label>
  6966.  
  6967.  
  6968.  
  6969.  
  6970.  
  6971.  
  6972.  
  6973.  
  6974.  
  6975.  
  6976.  
  6977.  
  6978.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  6979.      <div class="tooltip">Ocean Blue</div>
  6980.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6981.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_97fd075d-6c78-4590-9f80-d9840db11b35.jpg?v=1740254958&width={width}"
  6982.  data-widths="[50, 75, 100, 150, 200]"
  6983.  data-sizes="auto"
  6984.  data-parent-fit="cover"
  6985.  onError="this.style.display = 'none';"
  6986.  alt="Ocean Blue swatch">
  6987.      </div>
  6988.    </label>
  6989.  
  6990.  
  6991.  
  6992.  
  6993.  
  6994.  
  6995.  
  6996.  
  6997.  
  6998.  
  6999.  
  7000.  
  7001.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7002.      <div class="tooltip">Green</div>
  7003.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7004.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_62a65174-821c-45a1-8849-5ffdb1a4411b.jpg?v=1740254958&width={width}"
  7005.  data-widths="[50, 75, 100, 150, 200]"
  7006.  data-sizes="auto"
  7007.  data-parent-fit="cover"
  7008.  onError="this.style.display = 'none';"
  7009.  alt="Green swatch">
  7010.      </div>
  7011.    </label>
  7012.  
  7013.  
  7014.  
  7015.  
  7016.  
  7017.  
  7018.  
  7019.  
  7020.  
  7021.  
  7022.  
  7023.  
  7024.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7025.      <div class="tooltip">Red</div>
  7026.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7027.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_c8fee89d-67e2-40d8-b6e5-551133c1f795.jpg?v=1740254958&width={width}"
  7028.  data-widths="[50, 75, 100, 150, 200]"
  7029.  data-sizes="auto"
  7030.  data-parent-fit="cover"
  7031.  onError="this.style.display = 'none';"
  7032.  alt="Red swatch">
  7033.      </div>
  7034.    </label>
  7035.  
  7036.  
  7037.  
  7038.  
  7039.  
  7040.  
  7041.  
  7042.  
  7043.  
  7044.  
  7045.  
  7046.  
  7047.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7048.      <div class="tooltip">Ivory</div>
  7049.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7050.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_eff10522-1bc2-4c64-a19d-5ee87a38caaf.jpg?v=1740254958&width={width}"
  7051.  data-widths="[50, 75, 100, 150, 200]"
  7052.  data-sizes="auto"
  7053.  data-parent-fit="cover"
  7054.  onError="this.style.display = 'none';"
  7055.  alt="Ivory swatch">
  7056.      </div>
  7057.    </label>
  7058.  
  7059.  
  7060.  
  7061.  
  7062.  
  7063.  
  7064.  
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7071.      <div class="tooltip">Mocha</div>
  7072.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7073.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/pilates-combo-chair_9f01bff9-b19f-4cd5-9594-4ec99fb4fe73.jpg?v=1740254958&width={width}"
  7074.  data-widths="[50, 75, 100, 150, 200]"
  7075.  data-sizes="auto"
  7076.  data-parent-fit="cover"
  7077.  onError="this.style.display = 'none';"
  7078.  alt="Mocha swatch">
  7079.      </div>
  7080.    </label>
  7081.  
  7082.  
  7083.  
  7084.  
  7085. </div></div>
  7086.  </div>
  7087. </div>
  7088.          </div>
  7089.        
  7090.        
  7091.        
  7092.        
  7093.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  7094.            <!-- /snippets/product-loop-item.liquid -->
  7095. <style data-shopify>
  7096.  
  7097.  
  7098.  
  7099.    # {
  7100.      max-width: px;
  7101.      max-height: px;
  7102.    }
  7103.    # {
  7104.      max-width: px;
  7105.      max-height: px;
  7106.    }
  7107.  
  7108.  
  7109.  
  7110. </style>
  7111.  
  7112.  
  7113.  
  7114.  
  7115.  
  7116.  
  7117.  
  7118.  
  7119.  
  7120.  
  7121.  
  7122.  
  7123.  
  7124. <style data-shopify>
  7125.  #product-loop--9298462638422 .product-loop__image-container::before{
  7126.    content: "";
  7127.    width: 1px;
  7128.    margin-left: -1px;
  7129.    float: left;
  7130.    height: 0;
  7131.    padding-top: 111.11111111111111%;
  7132.    position: relative;
  7133.  }
  7134.  #product-loop--9298462638422 .product-loop__image-container::after{
  7135.    content: "";
  7136.    display: table;
  7137.    clear: both;
  7138.  }
  7139. </style>
  7140.  
  7141.  
  7142. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  7143. <div id="product-loop--9298462638422" class="product-loop-element ">
  7144.    
  7145.    <div class="product-loop__image-container ">
  7146.        
  7147.        <span class="icon icon-"  aria-hidden="true"></span>
  7148. <span class="fallback-text"></span>
  7149.  
  7150.  
  7151.  
  7152.        
  7153.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  7154.          data-parent-fit="cover"
  7155.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair.jpg?v=1731415059&width={width}"
  7156.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  7157.          data-aspectratio="1.0"
  7158.          data-sizes="auto"
  7159.          alt="Baby Chair">
  7160.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  7161.          data-parent-fit="cover"
  7162.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/preview_images/hqdefault_109c49ae-d854-4a79-bac3-88b108f1fb80.jpg?v=1740248958&width={width}"
  7163.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  7164.          data-aspectratio="1.0"
  7165.          data-sizes="auto"
  7166.          alt="">
  7167.        
  7168.        <a class="product-loop__image-link" href="/products/pilates-chair-baby" aria-label="Baby Chair"></a>
  7169.    </div>
  7170.      <div class="product-loop-element__details ">
  7171.        <p class="product-loop_title ">
  7172.          <a class="p-link--no-accent" href="/products/pilates-chair-baby" aria-label="Baby Chair" >Baby Chair</a>
  7173.          
  7174.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  7175.        </p><div class="product-loop-element__price  ">
  7176.          
  7177.            
  7178.                <p class="p--bold p--small">£735</p>
  7179.              
  7180.          
  7181.        
  7182.          <p data-unit-price-wrapper class="p--small  hidden">
  7183.            <span data-unit-price></span>
  7184.            <span>/</span>
  7185.            <span data-unit-price-measurement-reference-value></span>
  7186.            <span data-unit-price-measurement-reference-unit></span>
  7187.          </p>
  7188.        </div><div class="product-loop-element__swatch">
  7189.  
  7190.  
  7191.  
  7192.  
  7193.  
  7194.  
  7195.  
  7196.  
  7197.  
  7198.  
  7199.  
  7200.  
  7201.  
  7202.  
  7203.  
  7204.  
  7205.  
  7206.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-0" class="swatch-element__color" data-swatch="Black" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7207.      <div class="tooltip">Black</div>
  7208.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7209.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair.jpg?v=1731415059&width={width}"
  7210.  data-widths="[50, 75, 100, 150, 200]"
  7211.  data-sizes="auto"
  7212.  data-parent-fit="cover"
  7213.  onError="this.style.display = 'none';"
  7214.  alt="Black swatch">
  7215.      </div>
  7216.    </label>
  7217.  
  7218.  
  7219.  
  7220.  
  7221.  
  7222.  
  7223.  
  7224.  
  7225.  
  7226.  
  7227.  
  7228.  
  7229.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-1" class="swatch-element__color" data-swatch="Gray" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7230.      <div class="tooltip">Gray</div>
  7231.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7232.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_fe0f9017-b73c-4483-a839-2e38308b998a.jpg?v=1740248984&width={width}"
  7233.  data-widths="[50, 75, 100, 150, 200]"
  7234.  data-sizes="auto"
  7235.  data-parent-fit="cover"
  7236.  onError="this.style.display = 'none';"
  7237.  alt="Gray swatch">
  7238.      </div>
  7239.    </label>
  7240.  
  7241.  
  7242.  
  7243.  
  7244.  
  7245.  
  7246.  
  7247.  
  7248.  
  7249.  
  7250.  
  7251.  
  7252.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-2" class="swatch-element__color" data-swatch="Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7253.      <div class="tooltip">Blue</div>
  7254.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7255.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_aa235bad-c37b-4c3c-a0d8-195a0edf2f59.jpg?v=1740248984&width={width}"
  7256.  data-widths="[50, 75, 100, 150, 200]"
  7257.  data-sizes="auto"
  7258.  data-parent-fit="cover"
  7259.  onError="this.style.display = 'none';"
  7260.  alt="Blue swatch">
  7261.      </div>
  7262.    </label>
  7263.  
  7264.  
  7265.  
  7266.  
  7267.  
  7268.  
  7269.  
  7270.  
  7271.  
  7272.  
  7273.  
  7274.  
  7275.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-3" class="swatch-element__color" data-swatch="Ocean Blue" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7276.      <div class="tooltip">Ocean Blue</div>
  7277.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7278.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_68d2e752-846a-4840-b5a8-819cbc24247d.jpg?v=1740248984&width={width}"
  7279.  data-widths="[50, 75, 100, 150, 200]"
  7280.  data-sizes="auto"
  7281.  data-parent-fit="cover"
  7282.  onError="this.style.display = 'none';"
  7283.  alt="Ocean Blue swatch">
  7284.      </div>
  7285.    </label>
  7286.  
  7287.  
  7288.  
  7289.  
  7290.  
  7291.  
  7292.  
  7293.  
  7294.  
  7295.  
  7296.  
  7297.  
  7298.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-4" class="swatch-element__color" data-swatch="Green" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7299.      <div class="tooltip">Green</div>
  7300.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7301.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_6188983a-3f19-4982-bd28-d172b45e724f.jpg?v=1740248984&width={width}"
  7302.  data-widths="[50, 75, 100, 150, 200]"
  7303.  data-sizes="auto"
  7304.  data-parent-fit="cover"
  7305.  onError="this.style.display = 'none';"
  7306.  alt="Green swatch">
  7307.      </div>
  7308.    </label>
  7309.  
  7310.  
  7311.  
  7312.  
  7313.  
  7314.  
  7315.  
  7316.  
  7317.  
  7318.  
  7319.  
  7320.  
  7321.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-5" class="swatch-element__color" data-swatch="Red" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7322.      <div class="tooltip">Red</div>
  7323.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7324.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_4aa60a6b-3131-4942-9acd-ce2855de167e.jpg?v=1740248984&width={width}"
  7325.  data-widths="[50, 75, 100, 150, 200]"
  7326.  data-sizes="auto"
  7327.  data-parent-fit="cover"
  7328.  onError="this.style.display = 'none';"
  7329.  alt="Red swatch">
  7330.      </div>
  7331.    </label>
  7332.  
  7333.  
  7334.  
  7335.  
  7336.  
  7337.  
  7338.  
  7339.  
  7340.  
  7341.  
  7342.  
  7343.  
  7344.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-6" class="swatch-element__color" data-swatch="Ivory" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7345.      <div class="tooltip">Ivory</div>
  7346.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7347.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_7a5af87d-06fc-4414-944d-776421298313.jpg?v=1740248984&width={width}"
  7348.  data-widths="[50, 75, 100, 150, 200]"
  7349.  data-sizes="auto"
  7350.  data-parent-fit="cover"
  7351.  onError="this.style.display = 'none';"
  7352.  alt="Ivory swatch">
  7353.      </div>
  7354.    </label>
  7355.  
  7356.  
  7357.  
  7358.  
  7359.  
  7360.  
  7361.  
  7362.  
  7363.  
  7364.  
  7365.  
  7366.  
  7367.    <label for="template--24031472877910__main_featured_collection_t4Vcej-1-7" class="swatch-element__color" data-swatch="Mocha" data-swatch-label="template--24031472877910__main_featured_collection_t4Vcej-1">
  7368.      <div class="tooltip">Mocha</div>
  7369.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7370.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/baby-chair_a520d8ae-cfc9-4a43-b262-5bc2bd5b6581.jpg?v=1740248984&width={width}"
  7371.  data-widths="[50, 75, 100, 150, 200]"
  7372.  data-sizes="auto"
  7373.  data-parent-fit="cover"
  7374.  onError="this.style.display = 'none';"
  7375.  alt="Mocha swatch">
  7376.      </div>
  7377.    </label>
  7378.  
  7379.  
  7380.  
  7381.  
  7382. </div></div>
  7383.  </div>
  7384. </div>
  7385.          </div>
  7386.        
  7387.        
  7388.        
  7389.  
  7390.      
  7391.    
  7392.    </div>
  7393.  </div>
  7394. </div>
  7395.  
  7396. <style> #shopify-section-template--24031472877910__main_featured_collection_t4Vcej .p--accent {color: red !important;} </style></div><div id="shopify-section-template--24031472877910__image_with_text_2" class="shopify-section dynamic__section section__image-with-text"><style data-shopify>
  7397.  #shopify-section-template--24031472877910__image_with_text_2{
  7398.    background-color: var(--color_body_bg_tertiary);
  7399.  }
  7400. </style>
  7401.  
  7402. <!-- /sections/home-features.liquid -->
  7403. <div class="section__standard-spacing--none">
  7404.  <div class="">
  7405.    <div class=""><!-- /snippets/section__image-with-text.liquid -->
  7406. <style data-shopify>
  7407. #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container,
  7408.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container{
  7409.      background-color: #3e5e61;
  7410.    }
  7411.    #image-with-text--template--24031472877910__image_with_text_2 h2,
  7412.    #image-with-text--template--24031472877910__image_with_text_2 h3,
  7413.    #image-with-text--template--24031472877910__image_with_text_2 p{
  7414.      color: #ffffff;
  7415.    }
  7416.  
  7417.    #image-with-text--template--24031472877910__image_with_text_2 .btn--tertiary{
  7418.      color: #282828;
  7419.      border-color: #282828;
  7420.    }
  7421.    #image-with-text--template--24031472877910__image_with_text_2 .btn--tertiary:hover{
  7422.      color: #ffffff;
  7423.      border-color: #282828;
  7424.      background-color: #282828;
  7425.    }.feature-flex{
  7426.    display: flex;
  7427.    flex-wrap: wrap;
  7428.  }
  7429.  .feature-flex-right{
  7430.    display: flex;
  7431.    flex-wrap: wrap-reverse;
  7432.  }
  7433.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container::before{
  7434.    content: "";
  7435.    width: 1px;
  7436.    margin-left: -1px;
  7437.    float: left;
  7438.    height: 0;
  7439.    padding-top: 66.66666666666666%;
  7440.    position: relative;
  7441.  }
  7442.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container::after{
  7443.    content: "";
  7444.    display: table;
  7445.    clear: both;
  7446.  }
  7447.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container{
  7448.    flex: 1 1 auto;
  7449.    width: 50%;
  7450.  }
  7451.  .image-with-text__content{
  7452.    width: 100%;
  7453.  }
  7454.  @media screen and (min-width: 769px){
  7455.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container{
  7456.      min-width: 50%;
  7457.      background-position: center center;
  7458.      flex: 1 1 auto;
  7459.    }
  7460.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container{
  7461.      min-width: 350px;
  7462.    }
  7463.  }
  7464.  @media screen and (max-width: 768px){
  7465.    .image-with-text__image-container{
  7466.      width: 100%;
  7467.    }
  7468.  }
  7469. </style>
  7470.  
  7471. <div id="image-with-text--template--24031472877910__image_with_text_2" class="home-promotion-block feature-flex-right">
  7472.  
  7473.    <div class="image-with-text__content-container right-text text-left">
  7474.      <div class="image-with-text__content section__standard-spacing">
  7475.        
  7476.        <h2>Mission Statement</h2>
  7477.        
  7478.        
  7479.        
  7480.          <p>To promote health and wellness in the UK by providing thoughtfully designed and finely crafted Pilates reformers and envision a community that finds empowerment through Pilates by integrating its principles of control, precision, flow, and breath into their lives.</p>
  7481.        
  7482.        
  7483.      </div>
  7484.    </div>
  7485.    
  7486.      <div class="image-with-text__image-container right-image lazyload"
  7487.        data-bgset="
  7488.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=180 180w 120h,
  7489.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=360 360w 240h,
  7490.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=540 540w 360h,
  7491.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=720 720w 480h,
  7492.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=900 900w 600h,
  7493.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1080 1080w 720h,
  7494.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1296 1296w 864h,
  7495.    
  7496.    
  7497.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1350 1350w 900h
  7498. "
  7499.        data-sizes="auto"
  7500.        data-parent-fit="cover"></div>
  7501.    
  7502.  
  7503. </div></div>
  7504.  </div>
  7505. </div>
  7506.  
  7507.  
  7508. </div><div id="shopify-section-template--24031472877910__image_banner" class="shopify-section loft-section__parallax dynamic__section section__image-banner">
  7509.  
  7510. <style data-shopify>
  7511.  
  7512.  #shopify-section-template--24031472877910__image_banner .lazyloaded{
  7513.    opacity: 1;
  7514.  }
  7515.  .section__body--template--24031472877910__image_banner {
  7516.    background: rgba(255, 255, 255, 0.75);
  7517.  }@media screen and (min-width: 1400px){
  7518.      .wrapper--contained .section-parallax .wrapper {
  7519.        left: calc((100% - 1400px) / 2);
  7520.      }
  7521.    }</style>
  7522. <div id="parallax--template--24031472877910__image_banner" class="section__standard-spacing--small" style="background-color: var(--color_body_bg)">
  7523.  <section class="section-parallax   lazysection lazyload" data-section-id="template--24031472877910__image_banner" data-section-type="banner" style="min-height: 50vh">
  7524.    <div class="section__image-outer " >
  7525.      <div class="parallax--image-wrapper-template--24031472877910__image_banner section__image lazyload"
  7526.        data-bgset="
  7527.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=180 180w 121h,
  7528.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=360 360w 241h,
  7529.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=540 540w 362h,
  7530.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=720 720w 482h,
  7531.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=900 900w 603h,
  7532.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1080 1080w 724h,
  7533.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1296 1296w 868h,
  7534.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1512 1512w 1013h,
  7535.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1728 1728w 1158h,
  7536.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=2000 2000w 1340h
  7537. "
  7538.        data-sizes="auto"
  7539.        data-parent-fit="cover"
  7540.        
  7541.        >
  7542.      </div><!-- /.section__image -->
  7543.    </div><!-- /.section__image-outer -->
  7544.  
  7545.    <div class="section__inner ">
  7546.      
  7547.        <div class="section__standard-spacing section__body section__body--template--24031472877910__image_banner">
  7548.          <div class="section__content section-parallax__content ">
  7549.            <h2>Would you like to explore more?</h2>
  7550.          
  7551.            <div class="h3">
  7552.              <p>Use our search bar to find what you're really looking for!</p>
  7553.            </div><!-- /.section__content-inner -->
  7554.          
  7555.            
  7556.              <div class="loft-form__container loft-form__container--horizontal-button">
  7557.                <!-- /snippets/resource__search-bar.liquid -->
  7558.  
  7559.  
  7560.  
  7561. <form class="loft-form__content medium-down--hide" action="/search" method="get" role="search">
  7562.  <input type="search" name="q" aria-label="Search" value="" placeholder="Enter search terms..." class="input-group-field banner" >
  7563.  <button type="submit" class="btn icon-fallback-text banner js-base-search">
  7564.    Search
  7565.  </button>
  7566. </form>
  7567.  
  7568.                <button class="large--hide btn icon-fallback-text banner" data-modal-open="global__predictive-search" data-micromodal-trigger="modal-1">Search</button>
  7569.              </div><!-- /.section__bar -->
  7570.            
  7571.  
  7572.            
  7573.          </div><!-- /.section__content -->
  7574.        </div><!-- /.section__body -->
  7575.      
  7576.    </div><!-- /.section__inner -->
  7577.  </section><!-- /.section-parallax -->
  7578. </div>
  7579.  
  7580.  
  7581. </div><div id="shopify-section-template--24031472877910__blog" class="shopify-section homepage-blog"><!-- Desktop Blog --><style data-shopify>
  7582.  #shopify-section-template--24031472877910__blog{
  7583.    background-color: var(--color_body_bg);
  7584.  }
  7585. </style>
  7586.  
  7587. <div data-section-id="template--24031472877910__blog" class="section__standard-spacing--large">
  7588.  <div class="wrapper"><div class="section__standard-spacing--full--section-header text-center"><a href="/blogs/news"><h2>Latest news</h2></a><p>Explore our blog posts for some interesting reads!</p></div><div class="blog__article-grid blog__article-grid--3"><div class="blog__card-wrapper">
  7589.            <div class="card-background  card-shadow">
  7590.              
  7591.                
  7592.                
  7593.                
  7594.                
  7595.                <img class="lazyload lazystretch"
  7596.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/mat-pilates-vs-reformer.webp?v=1712253531&width={width}"
  7597.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7598.                  data-aspectratio="1.291044776119403"
  7599.                  data-sizes="auto"
  7600.                  data-parent-fit="cover"
  7601.                  alt="Comparing mat Pilates to the Pilates reformer">
  7602.              
  7603.              <div class="blog-copy">
  7604.                <div class="blog__article-header">
  7605.                  <h3 class="h4 blog__article-title"><a href="/blogs/news/mat-pilates-vs-reformer">Exploring the Differences Between Mat and Reformer Pilates for Optimal Results</a></h3></div>
  7606.                
  7607.  
  7608.                
  7609.              </div>
  7610.            </div>
  7611.          </div><div class="blog__card-wrapper">
  7612.            <div class="card-background  card-shadow">
  7613.              
  7614.                
  7615.                
  7616.                
  7617.                
  7618.                <img class="lazyload lazystretch"
  7619.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/pilates-for-men.jpg?v=1712119044&width={width}"
  7620.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7621.                  data-aspectratio="1.5129682997118155"
  7622.                  data-sizes="auto"
  7623.                  data-parent-fit="cover"
  7624.                  alt="Pilates is also suitable for men">
  7625.              
  7626.              <div class="blog-copy">
  7627.                <div class="blog__article-header">
  7628.                  <h3 class="h4 blog__article-title"><a href="/blogs/news/unravelling-pilates-myths-mens-ultimate-fitness-secret">Unravelling Pilates Myths: Men's Ultimate Fitness Secret</a></h3></div>
  7629.                
  7630.  
  7631.                
  7632.              </div>
  7633.            </div>
  7634.          </div><div class="blog__card-wrapper">
  7635.            <div class="card-background  card-shadow">
  7636.              
  7637.                
  7638.                
  7639.                
  7640.                
  7641.                <img class="lazyload lazystretch"
  7642.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/what-is-reformer-pilates.webp?v=1711991758&width={width}"
  7643.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7644.                  data-aspectratio="1.2260536398467432"
  7645.                  data-sizes="auto"
  7646.                  data-parent-fit="cover"
  7647.                  alt="What is Reformer Pilates? The Complete Beginner's Overview">
  7648.              
  7649.              <div class="blog-copy">
  7650.                <div class="blog__article-header">
  7651.                  <h3 class="h4 blog__article-title"><a href="/blogs/news/what-is-reformer-pilates">What is Reformer Pilates? The Complete Beginner's Overview</a></h3></div>
  7652.                
  7653.  
  7654.                
  7655.              </div>
  7656.            </div>
  7657.          </div></div></div>
  7658. </div>
  7659.  
  7660.  
  7661.  
  7662.  
  7663. </div>
  7664.    </main>
  7665.  </div>
  7666.  
  7667.  <!-- BEGIN sections: footer-group -->
  7668. <div id="shopify-section-sections--24031473172822__footer" class="shopify-section shopify-section-group-footer-group footer section-footer"><!-- /sections/footer.liquid -->
  7669.  
  7670.  
  7671.  
  7672.  
  7673.  
  7674.  
  7675.  
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681. <div data-section-id="sections--24031473172822__footer" data-section-type="footer">
  7682.  <footer class="site-footer  medium-down--one-whole"><div class="footer__block-wrapper"><div class="grid--full footer__content">      
  7683.        
  7684.        
  7685.        <div class="footer__block footer__block--one-third footer__logo">
  7686.          <div class="h1 site-header__logo footer__logo-wrapper large--left" itemscope itemtype="http://schema.org/Organization">
  7687.            
  7688.            
  7689.            
  7690.            
  7691.            
  7692.  
  7693.            <style data-shopify>
  7694.            .footer__logo-image::before {
  7695.            content: "";
  7696.            width: 1px;
  7697.            margin-left: -1px;
  7698.            float: left;
  7699.            height: 0;
  7700.            padding-top: 24.378109452736318%;
  7701.            }
  7702.            .footer__logo-image::after { /* to clear float */
  7703.            content: "";
  7704.            display: table;
  7705.            clear: both;
  7706.            }
  7707.            </style>
  7708.            
  7709.            
  7710.  
  7711.            <a href="/" itemprop="url" class="footer__logo-image" style="width: 200px; max-height: 49px">
  7712.              <img class="lazyload"
  7713.                   data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/UK_Pilates_Reformers-200px_white.png?v=1710091693&width={width}"
  7714.                   data-parent-fit="contain"
  7715.                   data-widths="[100, 180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  7716.                   data-aspectratio="4.1020408163265305"
  7717.                   data-sizes="auto"
  7718.                   alt="UK Pilates Reformers"
  7719.                   itemprop="logo"
  7720.                   style="width: 200px;">
  7721.            </a>
  7722.            
  7723.          </div>
  7724.          
  7725.          <div class="footer__description">
  7726.            <p><strong>Phone<br/></strong><a href="tel:08002229333" title="Phone UK Pilates Reformers"><span style="text-decoration:underline">0800 222 9 333</span></a><br/><br/><strong>Email<br/></strong><a href="mailto:sales@uk-pilatesreformers.co.uk" title="Email UK Pilates Reformers"><span style="text-decoration:underline">sales@uk-pilatesreformers.co.uk</span></a><br/><br/><strong>Hours of Operations<br/></strong>9am - 5pm, Mon - Fri<br/><br/><strong>Better Home Living Concepts Limited<br/></strong>Company No: 14498797<strong><br/></strong>Unit 1 Finns Business Park Bowenhurst Lane, Crondall, Farnham, Surrey, England, GU10 5RP</p>
  7727.          </div>
  7728.          
  7729.          
  7730.          
  7731.  
  7732.  
  7733.  
  7734.  
  7735.  
  7736.                    
  7737.        </div>        
  7738.        
  7739.        
  7740.        
  7741.  
  7742.        <ul class="footer__block footer__block--two-thirds footer__navigation "  id="AccessibleNavFooter">
  7743.          
  7744.          
  7745.          <li class="footer__nav-wrapper ">
  7746.            <a href="/collections" class="footer__title p--bold  ">Shop Pilates</a>  
  7747.            
  7748.            <ul class="footer__sub-menu">
  7749.                
  7750.              <li class="footer__link ">
  7751.                <a href="/collections/pilates-reformers">Reformers</a>
  7752.              </li>
  7753.                
  7754.              <li class="footer__link ">
  7755.                <a href="/collections/tower-pilates">Half Towers</a>
  7756.              </li>
  7757.                
  7758.              <li class="footer__link ">
  7759.                <a href="/collections/pilates-cadillac-reformer">Cadillacs</a>
  7760.              </li>
  7761.              
  7762.            </ul>
  7763.            
  7764.          </li>
  7765.          
  7766.          
  7767.          <li class="footer__nav-wrapper ">
  7768.            <a href="#" class="footer__title p--bold  ">Get to Know Us</a>  
  7769.            
  7770.            <ul class="footer__sub-menu">
  7771.                
  7772.              <li class="footer__link ">
  7773.                <a href="/pages/about-us">About Us</a>
  7774.              </li>
  7775.                
  7776.              <li class="footer__link ">
  7777.                <a href="/pages/contact-us">Contact Us</a>
  7778.              </li>
  7779.                
  7780.              <li class="footer__link ">
  7781.                <a href="/blogs/news">Blog</a>
  7782.              </li>
  7783.                
  7784.              <li class="footer__link ">
  7785.                <a href="/pages/why-shop-with-us">Why Shop With Us?</a>
  7786.              </li>
  7787.                
  7788.              <li class="footer__link ">
  7789.                <a href="/pages/pilates-faqs">FAQs</a>
  7790.              </li>
  7791.                
  7792.              <li class="footer__link ">
  7793.                <a href="/pages/commercial-quotes">Commercial Quotes</a>
  7794.              </li>
  7795.                
  7796.              <li class="footer__link ">
  7797.                <a href="/pages/feedback">Feedback</a>
  7798.              </li>
  7799.              
  7800.            </ul>
  7801.            
  7802.          </li>
  7803.          
  7804.          
  7805.          <li class="footer__nav-wrapper ">
  7806.            <a href="#" class="footer__title p--bold  ">Our Policies</a>  
  7807.            
  7808.            <ul class="footer__sub-menu">
  7809.                
  7810.              <li class="footer__link ">
  7811.                <a href="/policies/terms-of-service">Terms of Service</a>
  7812.              </li>
  7813.                
  7814.              <li class="footer__link ">
  7815.                <a href="/policies/privacy-policy">Privacy Policy</a>
  7816.              </li>
  7817.                
  7818.              <li class="footer__link ">
  7819.                <a href="/pages/cookie-policy">Cookie Policy</a>
  7820.              </li>
  7821.                
  7822.              <li class="footer__link ">
  7823.                <a href="/policies/shipping-policy">Shipping Policy</a>
  7824.              </li>
  7825.                
  7826.              <li class="footer__link ">
  7827.                <a href="/pages/return-policy">Return Policy</a>
  7828.              </li>
  7829.                
  7830.              <li class="footer__link ">
  7831.                <a href="/pages/payment-policy">Payment Policy</a>
  7832.              </li>
  7833.                
  7834.              <li class="footer__link ">
  7835.                <a href="/pages/billing-terms-conditions">Billing Terms &amp; Conditions</a>
  7836.              </li>
  7837.                
  7838.              <li class="footer__link ">
  7839.                <a href="/pages/warranty">Warranty</a>
  7840.              </li>
  7841.                
  7842.              <li class="footer__link ">
  7843.                <a href="/pages/disclaimer">Disclaimer</a>
  7844.              </li>
  7845.              
  7846.            </ul>
  7847.            
  7848.          </li>
  7849.          
  7850.        </ul>
  7851.        
  7852.        
  7853.      </div>
  7854.        
  7855.    </div><div class="footer__subsection">
  7856.      <div class="subsection__wrapper">
  7857.        <div class="subsection__block footer__copyright p--small">  
  7858.          &copy; 2025 UK Pilates Reformers.  <a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&amp;utm_medium=shopify&amp;utm_source=onlinestore">Powered by Shopify</a>
  7859.        </div>
  7860.        
  7861.          
  7862.          <div class="subsection__block footer__payment">            
  7863.          
  7864.          <ul class="inline-list payment-icons">
  7865.            
  7866.            
  7867.            <li>
  7868.              <span class="icon"><svg class="payment-icon" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
  7869. </span>
  7870.            </li>
  7871.            
  7872.            
  7873.            
  7874.            
  7875.            
  7876.            <li>
  7877.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg> </span>
  7878.            </li>
  7879.            
  7880.            
  7881.            
  7882.            <li>
  7883.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg> </span>
  7884.            </li>
  7885.            
  7886.            
  7887.            
  7888.            
  7889.            
  7890.            
  7891.            
  7892.            <li>
  7893.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-maestro"><title id="pi-maestro">Maestro</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#00A2E5" cx="23" cy="12" r="7"/><path fill="#7375CF" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg> </span>
  7894.            </li>
  7895.            
  7896.            
  7897.            
  7898.            <li>
  7899.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg> </span>
  7900.            </li>
  7901.            
  7902.            
  7903.            
  7904.            <li>
  7905.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg> </span>
  7906.            </li>
  7907.            
  7908.            
  7909.            
  7910.            
  7911.            
  7912.            <li>
  7913.              <span class="icon"><svg class="payment-icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg> </span>
  7914.            </li>
  7915.            
  7916.            
  7917.          </ul>
  7918.        </div>
  7919.      
  7920.      
  7921. </div>
  7922.    </div>
  7923.  </footer>
  7924. </div>
  7925. </div>
  7926. <!-- END sections: footer-group -->
  7927.  
  7928.  
  7929.  
  7930. <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive-search.js?v=33016745803952707301732721636" defer="defer"></script>
  7931.  
  7932. <div class="modal micromodal-slide" id="modal-1" aria-hidden="true">
  7933.  <div class="modal__overlay modal__overlay--search" tabindex="-1" data-micromodal-close>
  7934.    <div class="modal__container predictive-search__wrapper" role="dialog" aria-modal="true"
  7935.      aria-labelledby="modal-1-title">
  7936.      <h2 class="modal__title" id="modal-1-title" style="display: none">
  7937.        Search
  7938.      </h2>
  7939.      <div class="search-content" id="modal-1-content">
  7940.        <predictive-search>
  7941.          <form action="/search" method="get" role="search" class="input-group">
  7942.            <div class="one-whole text-left search-input-field-container ">
  7943.              <div class="search-input-field card-shadow">
  7944.                <input type="search" id="search-input" name="q" role="combobox" value=""
  7945.                  placeholder="Enter search terms..." aria-expanded="false" aria-owns="predictive-search-results"
  7946.                  aria-controls="predictive-search-results" aria-haspopup="listbox" aria-autocomplete="list"
  7947.                  data-autofocus
  7948.                  class="predictive-search__input js-search-query"
  7949.                  aria-label="Enter search terms..."
  7950.                  autocomplete="off">
  7951.              </div>
  7952.            </div>
  7953.            <input name="options[prefix]" type="hidden" value="last">
  7954.  
  7955.            <div id="predictive-search" tabindex="-1"></div>
  7956.          </form>
  7957.        </predictive-search>
  7958.      </div>
  7959.    </div>
  7960.  </div>
  7961. </div>
  7962.  
  7963.  
  7964.  
  7965.  
  7966. <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/product-form.js?v=180051259843661108951732721636" defer="defer"></script>
  7967. <script>
  7968.  window.addEventListener('load', (event) => {
  7969.    let searchScript = window.theme.scripts.predictive_search.src;
  7970.    loadJS( searchScript, function(){
  7971.      window.theme.scripts.predictive_search.init();
  7972.    }, true);
  7973.  })
  7974. </script>
  7975.  
  7976. <script id="loadcss">
  7977.  window.addEventListener('load', (event) => {
  7978.    // load a CSS file just before the script element containing this code
  7979.    loadCSS( "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive_search.nomin.css?v=24144298039987706411732721636", document.getElementById("loadcss") );
  7980.    loadCSS( "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/lightbox.nomin.css?v=86644048670264354111732721636", document.getElementById("loadcss") );
  7981.  })
  7982. </script>
  7983.  <loft-cart>
  7984.    <span slot="add-to-cart-success">
  7985.      <svg width="15px" height="15px" viewBox="0 0 15 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  7986.    <defs>
  7987.        <circle id="path-1" cx="7.54224817" cy="7.54224817" r="7.54224817"></circle>
  7988.        <mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.0844963" height="15.0844963" fill="white">
  7989.            <use xlink:href="#path-1"></use>
  7990.        </mask>
  7991.    </defs>
  7992.    <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  7993.        <g id="128" stroke="var(--color_secondary_header)">
  7994.            <use id="Oval" mask="url(#mask-2)" stroke-width="3.4" xlink:href="#path-1"></use>
  7995.            <polyline id="Path-2" stroke-width="1.7" points="4.08689094 7.5 7.11105318 10.524158 10.9538954 5.04396605"></polyline>
  7996.        </g>
  7997.    </g>
  7998. </svg>Added
  7999.    </span>
  8000.    <span slot="add-to-cart-fail">
  8001.      Cart Error
  8002.    </span>
  8003.  </loft-cart>
  8004. <style> @media (min-width: 955px) {.video-wrapper {padding: 0 !important; height: 434px; width: 745px; } .template-product .video-wrapper {margin: 0 auto; }} </style>
  8005. </body>
  8006. </html>
  8007.  
  8008.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda