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: https://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?778",
  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?778);  
  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-GB"></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-GB&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":false}</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,"smart_payment_buttons_url":"https:\/\/uk-pilatesreformers.co.uk\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/uk-pilatesreformers.co.uk\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","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'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_CX_95ZYr.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DHTSlOBd.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_DFXqCCEN.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_C0QJhAWG.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_CszdyRfE.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_DnnBtoux.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_CIJCmAd1.en.esm.js","modules/v2/client.shop-login-button_DnnBtoux.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_D3ZIeHXA.en.esm.js","modules/v2/client.shop-login-button_DnnBtoux.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"pay-button":["modules/v2/client.pay-button_CinhACb2.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_CRY-cGv0.en.esm.js","modules/v2/client.shop-login-button_DnnBtoux.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_D5UJhBVC.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"lead-capture":["modules/v2/client.lead-capture_D9YJtjCn.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"],"payment-terms":["modules/v2/client.payment-terms_CQ_BeEFy.en.esm.js","modules/v2/chunk.common_DOYS_UBo.esm.js","modules/v2/chunk.modal_WwbNzrHU.esm.js"]};
  1586. </script>
  1587. <script id="__st">var __st={"a":80955703638,"offset":0,"reqid":"952a7a0d-e8cf-4282-84ea-c427cc87c5a8-1738755879","pageurl":"uk-pilatesreformers.co.uk\/","u":"b34fbc9a0e6d","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-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  1591. <script crossorigin="anonymous" defer="defer" src="//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.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?778"></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&region_country=GB',
  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: 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: 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 d(d,e,r,n,o,a){var i,t,s,l,c=(t=(i={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\d|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13\d|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13\d|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\d|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13\d|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13\d|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+|)/}).modern,s=i.legacy,l=navigator.userAgent,t.test(l)?"modern":(s.test(l),"legacy")),u=null!=a?a:{modern:"",legacy:""};window.Shopify=window.Shopify||{};var f=window.Shopify;f.analytics=f.analytics||{};var h=f.analytics;h.replayQueue=[],h.publish=function(d,e,r){return h.replayQueue.push([d,e,r]),!0};try{self.performance.mark("wpm:start")}catch(d){}var m=[r,"/wpm","/b",o,c.substring(0,1),".js"].join(""),p=u[c],y=!1;!function(d){var e=d.src,r=d.async,n=void 0===r||r,o=d.onload,a=d.onerror,i=d.sri,t=document.createElement("script"),s=document.head,l=document.body;t.async=n,t.src=e,i&&(t.integrity=i,t.crossOrigin="anonymous"),o&&t.addEventListener("load",o),a&&t.addEventListener("error",a),s?s.appendChild(t):l?l.appendChild(t):console.error("Did not find a head or body element to append the script")}({src:m,async:!0,onload:function(){if(!y){var r=window.webPixelsManager.init(d)||void 0;if(r){y=!0,e(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(d){var e=d[0],n=d[1],o=d[2];r.publishCustomEvent(e,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor}}},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),r="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),o=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:n||"latest",bundle_target:c,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(m," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(r,o))return!0}catch(d){}var a=new XMLHttpRequest;try{return a.open("POST",r,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1},sri:function(d){return"string"==typeof d&&/^sha384-[A-Za-z0-9+/=]+$/.test(d)}(p)?p:""})})({shopId: 80955703638,storefrontBaseUrl: "https://uk-pilatesreformers.co.uk",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: ["6a396365"],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":"642ed32d7fafb3e0986c8ba3bf3908a1","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0281","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0281","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "",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","ba2a1e4b78104b04aaf9032ab964f434d3dd2f85","82dec003w9d1c3282pcc6fa74cm936329e6",{"modern":"","legacy":""});</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1837. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1838. window.ShopifyAnalytics.meta.currency = 'GBP';
  1839. var meta = {"page":{"pageType":"home"}};
  1840. for (var attr in meta) {
  1841.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1842. }</script>
  1843. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1844.  
  1845. };
  1846. </script>
  1847. <script class="analytics">(function () {
  1848.    var customDocumentWrite = function(content) {
  1849.      var jquery = null;
  1850.  
  1851.      if (window.jQuery) {
  1852.        jquery = window.jQuery;
  1853.      } else if (window.Checkout && window.Checkout.$) {
  1854.        jquery = window.Checkout.$;
  1855.      }
  1856.  
  1857.      if (jquery) {
  1858.        jquery('body').append(content);
  1859.      }
  1860.    };
  1861.  
  1862.    var hasLoggedConversion = function(token) {
  1863.      if (token) {
  1864.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1865.      }
  1866.      return false;
  1867.    }
  1868.  
  1869.    var setCookieIfConversion = function(token) {
  1870.      if (token) {
  1871.        var twoMonthsFromNow = new Date(Date.now());
  1872.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1873.  
  1874.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1875.      }
  1876.    }
  1877.  
  1878.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1879.    if (trekkie.integrations) {
  1880.      return;
  1881.    }
  1882.    trekkie.methods = [
  1883.      'identify',
  1884.      'page',
  1885.      'ready',
  1886.      'track',
  1887.      'trackForm',
  1888.      'trackLink'
  1889.    ];
  1890.    trekkie.factory = function(method) {
  1891.      return function() {
  1892.        var args = Array.prototype.slice.call(arguments);
  1893.        args.unshift(method);
  1894.        trekkie.push(args);
  1895.        return trekkie;
  1896.      };
  1897.    };
  1898.    for (var i = 0; i < trekkie.methods.length; i++) {
  1899.      var key = trekkie.methods[i];
  1900.      trekkie[key] = trekkie.factory(key);
  1901.    }
  1902.    trekkie.load = function(config) {
  1903.      trekkie.config = config || {};
  1904.      trekkie.config.initialDocumentCookie = document.cookie;
  1905.      var first = document.getElementsByTagName('script')[0];
  1906.      var script = document.createElement('script');
  1907.      script.type = 'text/javascript';
  1908.      script.onerror = function(e) {
  1909.        var scriptFallback = document.createElement('script');
  1910.        scriptFallback.type = 'text/javascript';
  1911.        scriptFallback.onerror = function(error) {
  1912.                var Monorail = {
  1913.      produce: function produce(monorailDomain, schemaId, payload) {
  1914.        var currentMs = new Date().getTime();
  1915.        var event = {
  1916.          schema_id: schemaId,
  1917.          payload: payload,
  1918.          metadata: {
  1919.            event_created_at_ms: currentMs,
  1920.            event_sent_at_ms: currentMs
  1921.          }
  1922.        };
  1923.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1924.      },
  1925.      sendRequest: function sendRequest(endpointUrl, payload) {
  1926.        // Try the sendBeacon API
  1927.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1928.          var blobData = new window.Blob([payload], {
  1929.            type: 'text/plain'
  1930.          });
  1931.  
  1932.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1933.            return true;
  1934.          } // sendBeacon was not successful
  1935.  
  1936.        } // XHR beacon
  1937.  
  1938.        var xhr = new XMLHttpRequest();
  1939.  
  1940.        try {
  1941.          xhr.open('POST', endpointUrl);
  1942.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1943.          xhr.send(payload);
  1944.        } catch (e) {
  1945.          console.log(e);
  1946.        }
  1947.  
  1948.        return false;
  1949.      },
  1950.      isIos12: function isIos12() {
  1951.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1952.      }
  1953.    };
  1954.    Monorail.produce('monorail-edge.shopifysvc.com',
  1955.      'trekkie_storefront_load_errors/1.1',
  1956.      {shop_id: 80955703638,
  1957.      theme_id: 174976663894,
  1958.      app_name: "storefront",
  1959.      context_url: window.location.href,
  1960.      source_url: "//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.c44d6898594db6c4847cb75ef4de7d5f4456a012.min.js"});
  1961.  
  1962.        };
  1963.        scriptFallback.async = true;
  1964.        scriptFallback.src = '//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.c44d6898594db6c4847cb75ef4de7d5f4456a012.min.js';
  1965.        first.parentNode.insertBefore(scriptFallback, first);
  1966.      };
  1967.      script.async = true;
  1968.      script.src = '//uk-pilatesreformers.co.uk/cdn/s/trekkie.storefront.c44d6898594db6c4847cb75ef4de7d5f4456a012.min.js';
  1969.      first.parentNode.insertBefore(script, first);
  1970.    };
  1971.    trekkie.load(
  1972.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":80955703638,"isMerchantRequest":null,"themeId":174976663894,"themeCityHash":"1098807958791748643","contentLanguage":"en","currency":"GBP"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1973.    );
  1974.  
  1975.    var loaded = false;
  1976.    trekkie.ready(function() {
  1977.      if (loaded) return;
  1978.      loaded = true;
  1979.  
  1980.      window.ShopifyAnalytics.lib = window.trekkie;
  1981.  
  1982.  
  1983.      var originalDocumentWrite = document.write;
  1984.      document.write = customDocumentWrite;
  1985.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1986.      document.write = originalDocumentWrite;
  1987.  
  1988.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1989.  
  1990.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1991.      var token = match? match[1]: undefined;
  1992.      if (!hasLoggedConversion(token)) {
  1993.        setCookieIfConversion(token);
  1994.        
  1995.      }
  1996.    });
  1997.  
  1998.  
  1999.        var eventsListenerScript = document.createElement('script');
  2000.        eventsListenerScript.async = true;
  2001.        eventsListenerScript.src = "//uk-pilatesreformers.co.uk/cdn/shopifycloud/shopify/assets/shop_events_listener-20905db421adb60b04582abab58b285362bc2e1011d17cd3eabb3bfe05798c59.js";
  2002.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  2003.  
  2004. })();</script>
  2005. <script class="boomerang">
  2006. (function () {
  2007.  window.BOOMR = window.BOOMR || {};
  2008.  window.BOOMR.themeName = "Loft";
  2009.  window.BOOMR.themeVersion = "2.3.7";
  2010.  window.BOOMR.shopId = 80955703638;
  2011.  window.BOOMR.themeId = 174976663894;
  2012. })();</script>
  2013. <script
  2014.  defer
  2015.  src="https://uk-pilatesreformers.co.uk/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.1.0.min.js"
  2016.  data-application="storefront-renderer"
  2017.  data-shop-id="80955703638"
  2018.  data-render-region="gcp-europe-west4"
  2019.  data-page-type="index"
  2020.  data-theme-instance-id="174976663894"
  2021.  data-monorail-region="shop_domain"
  2022.  data-resource-timing-sampling-rate="10"
  2023. ></script>
  2024. </head>
  2025. <body id="uk-pilates-reformers" class="template-index template-index  animations-enabled" ><article role="banner" class="header__section-wrapper">
  2026.    <!-- BEGIN sections: header-group -->
  2027. <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 -->
  2028.  
  2029.  
  2030.  
  2031. <style data-shopify>
  2032. .promo-bar-offset{
  2033. top:40px;
  2034. }
  2035. @media screen and (max-width:768px){
  2036. .sticky-header{
  2037. top:40px;
  2038. }
  2039. .promo-content-wrapper,
  2040. .promo-bar{
  2041. opacity:1;
  2042. }
  2043. }
  2044. </style>
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051. <article class="promo-bar__container promo-bar__container-slider--false" data-disclosure-section aria-labelledby="promo_bar_label"
  2052.         data-section-id="sections--24031473205590__announcement-bar"
  2053.         data-block-count="1"
  2054.         data-speed="4000"
  2055.         data-autoplay="4000"
  2056.         data-slider="false"
  2057.         data-section-type="announcement"
  2058.         data-language="false"
  2059.         data-currency="false"  
  2060.         >
  2061.  <span class="visually-hidden" hidden id="promo_bar_label">
  2062.    Promo Bar
  2063.  </span>
  2064.  <section class="promo-bar__slide-container promo-bar__slide-container--full-width" aria-labelledby="header-promotional-messages">
  2065.    <span hidden id="header-promotional-messages">
  2066.      Promotional messages
  2067.    </span>
  2068.    <div class="swiper-wrapper" role="group">
  2069.      
  2070.      <div class="promo-bar__slide swiper-slide p--small"><div class="promo-bar__slide-content">
  2071.    <span class="p--bold">Surrey Showroom NOW OPEN </span>
  2072.    <p>All Reformer Models on Display  |  Call 0800 222 9 333 to View</p>
  2073.  </div></div>
  2074.  
  2075. </div>
  2076.  
  2077. </section>
  2078.  <div class="promo-bar__icon-wrapper"></div>
  2079. </article>
  2080.  
  2081.  
  2082. <style data-shopify>
  2083.  
  2084. .header__promo-wrapper{
  2085. position: relative;
  2086. z-index: 299;
  2087. overflow-x: clip;
  2088. }
  2089. .promo-bar__container{
  2090. margin-left: auto;
  2091. margin-right: auto;
  2092. position: relative;
  2093. padding: 0;
  2094. display: flex;
  2095. justify-content: space-between;
  2096. padding: 0px 4%;
  2097. background-color: var(--promo_bg);
  2098. color: var(--promo_text);
  2099. }
  2100. .promo-bar__icon-wrapper{
  2101. display: flex;
  2102. flex-wrap:wrap;
  2103. align-items: center;
  2104. height: 100%;
  2105. list-style: none;
  2106. margin: 0;
  2107. }
  2108. .promo-bar__icon{
  2109. margin: 0;
  2110. padding: 5px;
  2111. }
  2112. .promo-bar__icon-link{
  2113. display: flex;
  2114. align-items: center;
  2115. }
  2116. .promo-bar__container .header__crossborder{
  2117. justify-content: flex-end;
  2118. }
  2119. .promo-bar__container .crossborder__toggle{
  2120. margin-right: 0;
  2121. margin-left: 10px;
  2122. }
  2123. .promo-bar__slide-container{
  2124. width: 100%;
  2125. display: flex;
  2126. align-items: center;
  2127. }
  2128. .promo-bar__slide-container .flickity-button:disabled{
  2129. display: unset;
  2130. opacity: .5;
  2131. }
  2132. .promo-bar__slide-container button.flickity-button{
  2133. opacity: 1;
  2134. color: var(--promo_text);
  2135. }
  2136.  
  2137. .header__promo{
  2138. display: block;
  2139. width: 100%;
  2140. height: 100%;
  2141. padding: 10px 4%;
  2142. }
  2143. .promo-bar__content-container{
  2144. display: flex;
  2145. flex-wrap: wrap;
  2146. width: 100%;
  2147. height: 100%;
  2148. }
  2149. .promo-bar__slide{
  2150. padding: 0;
  2151. display: flex;
  2152. align-items: center;
  2153. width: 100%;
  2154. }
  2155.  
  2156. .promo-bar__slide-content{
  2157. width: 100%;
  2158. padding: 10px 5px;
  2159. }
  2160. .promo-bar__slide-content a {
  2161. color: var(--promo_text_link);
  2162. }
  2163.  
  2164. .promo-bar__slide span p, .promo-bar__slide-content p {
  2165. margin: 0;
  2166. }
  2167.  
  2168. .js-more-btn{
  2169. display: flex;
  2170. align-items: center;
  2171. width: 100%;
  2172. padding: 10px 0 0 0;
  2173. }
  2174.  
  2175. .js-more-btn--text-left{
  2176. justify-content: flex-start;
  2177. }
  2178.  
  2179. .js-more-btn--text-center{
  2180. justify-content: center;
  2181. }
  2182.  
  2183. .js-more-btn svg{
  2184. margin: 5px;
  2185. }
  2186.  
  2187. @media screen and (min-width: 769px){
  2188. .promo-bar__container .swiper-wrapper{
  2189. flex: 1 1 auto;
  2190. }
  2191. .promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2192. flex: 1 1 auto;
  2193. padding: 0 30px;
  2194. }
  2195. .promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--full-width{
  2196. flex: 1 1 auto;
  2197. padding: 0 50px;
  2198. }.promo-bar__container-slider--true .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2199. padding: 0 15px;
  2200. }
  2201. .promo-bar__container-slider--false .promo-bar__slide-container.promo-bar__slide-container--half-width{
  2202. padding: 0 15px;
  2203. }.promo-bar__container .promo-bar__slide-container--half-width{
  2204. max-width: 500px;
  2205. }
  2206. .promo-bar__container .flickity-button{
  2207. height: 20px;
  2208. }
  2209. .promo-bar__slide-container--full-width .promo-bar__slide-content{
  2210. text-align: center;
  2211. }
  2212. .promo-bar__slide-container--half-width .promo-bar__slide-content{
  2213. text-align: left;
  2214. }
  2215. .promo-bar__slide-container--full-width .flickity-prev-next-button.previous,
  2216. .promo-bar__slide-container--half-width .flickity-prev-next-button.previous{
  2217. left: -50px;
  2218. width: 50px;
  2219. }
  2220. .promo-bar__slide-container .flickity-button-icon{
  2221. left: 0;
  2222. width: 100%;
  2223. }
  2224. .promo-bar__slide-container--full-width .flickity-prev-next-button.next{
  2225. right: -50px;
  2226. width: 50px;
  2227. }
  2228. .promo-bar__slide-container--half-width .flickity-prev-next-button.next{
  2229. right: -50px;
  2230. width: 50px;
  2231. }
  2232. }
  2233. @media screen and (max-width: 768px){
  2234. .promo-bar__container .swiper-wrapper{
  2235. width: 100%;
  2236. }
  2237. .promo-bar__container-slider--true .promo-bar__slide-container{
  2238. width: 100%;
  2239. padding: 0 40px;
  2240. }
  2241. .promo-bar__slide-container .flickity-prev-next-button.previous{
  2242. left: -40px;
  2243. width: 40px;
  2244. }
  2245. .promo-bar__slide-container .flickity-prev-next-button.next{
  2246. right: -40px;
  2247. width: 40px;
  2248. }
  2249. .promo-bar__slide-content{
  2250. text-align: center;
  2251. }
  2252. .promo-bar__slide{
  2253. justify-content: space-between;
  2254. }
  2255. .promo-bar__slide span p, .promo-bar__slide-content p {
  2256. flex: 1 1 auto;
  2257. }
  2258. }
  2259. </style>
  2260. </div><div id="shopify-section-sections--24031473205590__header" class="shopify-section shopify-section-group-header-group section-header">
  2261.  
  2262. <!-- /sections/header.liquid -->
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273.  
  2274.  
  2275. <style data-shopify>
  2276.  
  2277. .header__logo{
  2278.  width: 200px;
  2279.  max-width: 100%;
  2280. }
  2281.  
  2282. .dim,
  2283. .dimSearch{
  2284. background-color:rgba(255, 255, 255, 0.6);
  2285. }
  2286.  
  2287. @media screen and (max-width: 768px){
  2288.  .site-header--bottom{
  2289.    bottom: 0;
  2290.    position: fixed;
  2291.    width: 100%;
  2292.  }
  2293. }
  2294.  
  2295. .site-header__logo-image::before {
  2296.  content: "";
  2297.  width: 1px;
  2298.  margin-left: -1px;
  2299.  float: left;
  2300.  height: 0;
  2301.  padding-top: 24.75633528265107%;
  2302. }
  2303. .site-header__logo-image::after { /* to clear float */
  2304.  content: "";
  2305.  display: table;
  2306.  clear: both;
  2307. }@media screen and (min-width: 769px) {
  2308.  .header__wrapper {
  2309.      column-gap: 10px;
  2310.  }
  2311.  .header__wrapper--left {
  2312.      grid-template-columns: 200px auto 200px;
  2313.  }
  2314.  .header__wrapper--left-below {
  2315.    grid-template-columns: 200px auto 200px;
  2316.  }
  2317.  .header__wrapper{
  2318.    grid-template-columns: 200px auto 200px;
  2319.  }
  2320. }
  2321.  
  2322.  
  2323. .section-header{
  2324.  position: sticky;
  2325. }
  2326. .header__section-wrapper{
  2327.  display:initial;
  2328. }
  2329.  
  2330.  
  2331. </style>
  2332.  
  2333. <div data-section-id="sections--24031473205590__header" data-section-type="header">
  2334. <header id="header" data-position="true" class="site-header site-header--top nav-bar  card-shadow ">
  2335.  <div class="header__wrapper header__wrapper--center-below">
  2336.    <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">
  2337.      <svg width="50px" height="50px" viewBox="0 0 50 50">
  2338.    <g id="Icon_Hamburger" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2339.        <g id="align-justify" transform="translate(16.000000, 17.000000)" stroke="#292929" stroke-width="1.6">
  2340.            <line x1="18" y1="10" x2="0" y2="10" id="Shape"></line>
  2341.            <line x1="18" y1="15" x2="0" y2="15" id="Shape"></line>
  2342.            <line x1="18" y1="0" x2="0" y2="0" id="Shape"></line>
  2343.            <line x1="18" y1="5" x2="0" y2="5" id="Shape"></line>
  2344.        </g>
  2345.    </g>
  2346. </svg>
  2347.    </button>
  2348.    <noscript class="no-js__mobile">
  2349.      <span id="no-js__mobile-nav-wrapper">
  2350.      <details name="no-js__mobile-nav" id="no-js__mobile-nav--button">
  2351.        <summary id="no-js__mobile-nav--open">
  2352.          <span class="no-js__open">
  2353.          <svg width="50px" height="50px" viewBox="0 0 50 50">
  2354.    <g id="Icon_Hamburger" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2355.        <g id="align-justify" transform="translate(16.000000, 17.000000)" stroke="#292929" stroke-width="1.6">
  2356.            <line x1="18" y1="10" x2="0" y2="10" id="Shape"></line>
  2357.            <line x1="18" y1="15" x2="0" y2="15" id="Shape"></line>
  2358.            <line x1="18" y1="0" x2="0" y2="0" id="Shape"></line>
  2359.            <line x1="18" y1="5" x2="0" y2="5" id="Shape"></line>
  2360.        </g>
  2361.    </g>
  2362. </svg>
  2363.        </span>
  2364.        <span class="no-js__close">
  2365.          <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>
  2366.        </span>
  2367.      </summary>
  2368.      <ul><li>
  2369.        <details>
  2370.          <summary> <a href="">Reformers</a></summary>
  2371.          
  2372.        </details>
  2373.      </li>
  2374.      <li>
  2375.        <details>
  2376.          <summary> <a href="">Towers</a></summary>
  2377.          
  2378.        </details>
  2379.      </li>
  2380.      <li>
  2381.        <details>
  2382.          <summary> <a href="">Cadillacs</a></summary>
  2383.          
  2384.        </details>
  2385.      </li>
  2386.      <li>
  2387.        <details>
  2388.          <summary> <a href="">Chairs</a></summary>
  2389.          
  2390.        </details>
  2391.      </li>
  2392.      <li>
  2393.        <details>
  2394.          <summary> <a href="">Barrels</a></summary>
  2395.          
  2396.        </details>
  2397.      </li>
  2398.      <li>
  2399.        <details>
  2400.          <summary> <a href="">Wall Units</a></summary>
  2401.          
  2402.        </details>
  2403.      </li>
  2404.      <li>
  2405.        <details>
  2406.          <summary> <a href="">Equipment</a></summary>
  2407.          
  2408.        </details>
  2409.      </li>
  2410.      <li>
  2411.        <details>
  2412.          <summary> <a href="">Contact Us</a></summary>
  2413.          
  2414.        </details>
  2415.      </li>
  2416.      <li>
  2417.        <details>
  2418.          <summary> About ></summary>
  2419.          
  2420.          <ul><li>
  2421.            <details>
  2422.                <summary><a href="">About Us</a> </summary>
  2423.                
  2424.            </details>
  2425.            </li>
  2426.            <li>
  2427.            <details>
  2428.                <summary><a href="">Blog</a> </summary>
  2429.                
  2430.            </details>
  2431.            </li>
  2432.            <li>
  2433.            <details>
  2434.                <summary><a href="">Why Shop With Us?</a> </summary>
  2435.                
  2436.            </details>
  2437.            </li>
  2438.            <li>
  2439.            <details>
  2440.                <summary><a href="">Commercial Quotes</a> </summary>
  2441.                
  2442.            </details>
  2443.            </li>
  2444.            <li>
  2445.            <details>
  2446.                <summary><a href="">FAQs</a> </summary>
  2447.                
  2448.            </details>
  2449.            </li>
  2450.            <li>
  2451.            <details>
  2452.                <summary><a href="">Feedback</a> </summary>
  2453.                
  2454.            </details>
  2455.            </li>
  2456.            
  2457.        </ul>
  2458.        
  2459.        </details>
  2460.      </li>
  2461.      
  2462.    </ul>
  2463.     </details>
  2464.     </span>
  2465.    </noscript>
  2466.    <div class="header__logo header__logo--center-below">
  2467.      <h1 class="header__logo-title header__logo-title--center-below">
  2468.        
  2469.          
  2470.          
  2471.          <a href="/" itemprop="WebPage" class="site-header__logo-image" style="width: 200px; max-height: 50px">
  2472.            <img class="lazyload"
  2473.              data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/UK_Pilates_Reformers-512px.png?v=1709064318&width={width}"
  2474.              data-parent-fit="contain"
  2475.              data-widths="[100, 125, 150, 175, 200, 225, 250, 275, 300]"
  2476.              data-aspectratio="4.039370078740157"
  2477.              data-sizes="auto"
  2478.              alt="UK Pilates Reformers"
  2479.              style="max-width: 200px;">
  2480.          </a>
  2481.        
  2482.      </h1>
  2483.      <a href="/" itemprop="url" class="site-header__shop-link" aria-labelledby="nav-label__store-logo-link"></a>
  2484.      <div id="nav-label__store-logo-link" hidden>UK Pilates Reformers</div>
  2485.    </div>
  2486.  
  2487.    <!-- Desktop Nav -->
  2488.    <div class="header__nav header__nav--center-below medium-down--hide">
  2489.      <nav class="js__desktop--nav" aria-label="DesktopNavigation">
  2490.        
  2491.          <ul class="site-nav single-menu " id="AccessibleNav" role="menubar">
  2492.  
  2493.  
  2494.    
  2495.      <li id="Reformers" class="  site-nav__link-container  p--bold " role="menuitem">
  2496.        <a href="/collections/pilates-reformers" class="site-nav__main-link">Reformers</a>
  2497.      </li>
  2498.    
  2499.  
  2500.    
  2501.      <li id="Towers" class="  site-nav__link-container  p--bold " role="menuitem">
  2502.        <a href="/collections/pilates-reformers-with-tower" class="site-nav__main-link">Towers</a>
  2503.      </li>
  2504.    
  2505.  
  2506.    
  2507.      <li id="Cadillacs" class="  site-nav__link-container  p--bold " role="menuitem">
  2508.        <a href="/collections/pilates-cadillac" class="site-nav__main-link">Cadillacs</a>
  2509.      </li>
  2510.    
  2511.  
  2512.    
  2513.      <li id="Chairs" class="  site-nav__link-container  p--bold " role="menuitem">
  2514.        <a href="/collections/wunda-chair-pilates" class="site-nav__main-link">Chairs</a>
  2515.      </li>
  2516.    
  2517.  
  2518.    
  2519.      <li id="Barrels" class="  site-nav__link-container  p--bold " role="menuitem">
  2520.        <a href="/collections/pilates-ladder-barrels" class="site-nav__main-link">Barrels</a>
  2521.      </li>
  2522.    
  2523.  
  2524.    
  2525.      <li id="Wall_Units" class="  site-nav__link-container  p--bold " role="menuitem">
  2526.        <a href="/collections/pilates-wall-units" class="site-nav__main-link">Wall Units</a>
  2527.      </li>
  2528.    
  2529.  
  2530.    
  2531.      <li id="Equipment" class="  site-nav__link-container  p--bold " role="menuitem">
  2532.        <a href="/collections/pilates-equipment" class="site-nav__main-link">Equipment</a>
  2533.      </li>
  2534.    
  2535.  
  2536.    
  2537.      <li id="Contact_Us" class="  site-nav__link-container  p--bold " role="menuitem">
  2538.        <a href="/pages/contact-us" class="site-nav__main-link">Contact Us</a>
  2539.      </li>
  2540.    
  2541.  
  2542.    
  2543. <li id="About" class="site-nav__link-container site-nav--has-dropdown p--bold " aria-haspopup="true" role="menuitem">
  2544.        <!-- Display the parent link -->
  2545.        <a href="#" class="site-nav__main-link site-nav--has-dropdown_link  ">
  2546.          About
  2547.          <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">
  2548.    <g id="icon-dropdown-small" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2549.        <g id="arrow-drop-down-line" transform="translate(3.000000, 2.000000)" fill="#292929" fill-rule="nonzero">
  2550.            <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>
  2551.        </g>
  2552.    </g>
  2553. </svg></span>
  2554.        </a>
  2555.  
  2556.        <!-- Create the container to house child and grandchild link -->
  2557.        <div class="  nav-menu-js single-dropdown  main-menu--sticky-true child-link">
  2558.          <div class="single-menu-container">
  2559.            <ul class="site-nav__dropdown" role="menu">
  2560.              <div class="main-nav-wrap">
  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="/pages/about-us">About Us</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="/blogs/news">Blog</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/why-shop-with-us">Why Shop With Us?</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/commercial-quotes">Commercial Quotes</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/pilates-faqs">FAQs</a>
  2594.                      </li>
  2595.                                
  2596.                  
  2597.                <!-- gather grandchild links -->
  2598.                  
  2599.                      <li class="child-site-nav__link  site-nav__link child-div children-4" role="menuitem">
  2600.                        <a class="site-nav__link" href="/pages/feedback">Feedback</a>
  2601.                      </li>
  2602.                                
  2603.                
  2604.              </div>
  2605.            </ul>
  2606.          </div>      
  2607.        </div>
  2608.      </li>
  2609.    
  2610.  
  2611. </ul>
  2612.        
  2613.      </nav>
  2614.      <!-- No-js single-menu for accessibility -->
  2615.      <noscript class="no-js__desktop--nav">
  2616.        <nav class="header__inline-menu" aria-label="DesktopNavigation">
  2617.          <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  ">
  2618.                    <span>Reformers</span>
  2619.                  </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  ">
  2620.                    <span>Towers</span>
  2621.                  </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  ">
  2622.                    <span>Cadillacs</span>
  2623.                  </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  ">
  2624.                    <span>Chairs</span>
  2625.                  </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  ">
  2626.                    <span>Barrels</span>
  2627.                  </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  ">
  2628.                    <span>Wall Units</span>
  2629.                  </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  ">
  2630.                    <span>Equipment</span>
  2631.                  </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  ">
  2632.                    <span>Contact Us</span>
  2633.                  </a></li><li id="About" class="child-site-nav__link child-div  has-children "><details-disclosure>
  2634.                    <details class="no-js__desktop--details">
  2635.                      <summary class="site-nav__main-link site-nav--has-dropdown_link animate__animated animate__fadeIn">
  2636.                        <span>About</span>
  2637.                        <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">
  2638.    <g id="icon-dropdown-small" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2639.        <g id="arrow-drop-down-line" transform="translate(3.000000, 2.000000)" fill="#292929" fill-rule="nonzero">
  2640.            <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>
  2641.        </g>
  2642.    </g>
  2643. </svg></span>
  2644.                      </summary>
  2645.                      <div class="animate__animated animate__fadeIn nav-menu-js single-dropdown  main-menu--sticky-true child-link">
  2646.                        <div class="single-menu-container">
  2647.                      <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">
  2648.                                About Us
  2649.                              </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">
  2650.                                Blog
  2651.                              </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">
  2652.                                Why Shop With Us?
  2653.                              </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">
  2654.                                Commercial Quotes
  2655.                              </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">
  2656.                                FAQs
  2657.                              </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">
  2658.                                Feedback
  2659.                              </a></li></ul>
  2660.                    </div>      
  2661.                  </div>
  2662.                    </details>
  2663.                  </details-disclosure></li></ul>
  2664.      </nav>
  2665.      </noscript>
  2666.    </div>
  2667.    <!-- //Desktop Nav -->
  2668.  
  2669.    <!-- Desktop center-below Layout --><div class="header__search-container">
  2670.        <!-- <button type="button" class="predictive-search__trigger"
  2671.          data-modal-open="global__predictive-search"
  2672.          disabled>
  2673.        </button>   -->
  2674.        <button aria-labelledby="nav-label__search" data-micromodal-trigger="modal-1"><svg class="header__individual-icon" height="50px" viewBox="0 0 50 50">
  2675.  <g id="Icon_Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2676.      <g id="search" stroke="#292929" stroke-width="1.6">
  2677.          <circle id="Oval" cx="23.5" cy="23.5" r="7.5"></circle>
  2678.          <line x1="34" y1="34" x2="29" y2="29" id="Shape"></line>
  2679.      </g>
  2680.  </g>
  2681. </svg></button>
  2682.        <div id="nav-label__search" hidden>Search</div>
  2683.        <!-- <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive-search.js?v=33016745803952707301732721636" defer="defer"></script>
  2684.  
  2685. <div class="modal micromodal-slide" id="modal-1" aria-hidden="true">
  2686.  <div class="modal__overlay modal__overlay--search" tabindex="-1" data-micromodal-close>
  2687.    <div class="modal__container predictive-search__wrapper" role="dialog" aria-modal="true"
  2688.      aria-labelledby="modal-1-title">
  2689.      <h2 class="modal__title" id="modal-1-title" style="display: none">
  2690.        Search
  2691.      </h2>
  2692.      <div class="search-content" id="modal-1-content">
  2693.        <predictive-search>
  2694.          <form action="/search" method="get" role="search" class="input-group">
  2695.            <div class="one-whole text-left search-input-field-container ">
  2696.              <div class="search-input-field card-shadow">
  2697.                <input type="search" id="search-input" name="q" role="combobox" value=""
  2698.                  placeholder="Enter search terms..." aria-expanded="false" aria-owns="predictive-search-results"
  2699.                  aria-controls="predictive-search-results" aria-haspopup="listbox" aria-autocomplete="list"
  2700.                  data-autofocus
  2701.                  class="predictive-search__input js-search-query"
  2702.                  aria-label="Enter search terms..."
  2703.                  autocomplete="off">
  2704.              </div>
  2705.            </div>
  2706.            <input name="options[prefix]" type="hidden" value="last">
  2707.  
  2708.            <div id="predictive-search" tabindex="-1"></div>
  2709.          </form>
  2710.        </predictive-search>
  2711.      </div>
  2712.    </div>
  2713.  </div>
  2714. </div>
  2715.  
  2716.  
  2717.  
  2718. -->
  2719.      </div><div class="large--text-right header-icons icon-wrapper">
  2720.      <div class="header__icon-group"><a class="header__individual-icon medium-down--hide" href="/account">
  2721.              <svg class="header__individual-icon"  height="50px" viewBox="0 0 50 50">
  2722.    <g id="Icon_Account" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2723.        <g id="user" stroke="#292929" stroke-width="1.6">
  2724.            <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>
  2725.            <circle id="Oval" cx="25" cy="20" r="4"></circle>
  2726.        </g>
  2727.    </g>
  2728. </svg>
  2729.              <span class="visually-hidden">Account Login</span>
  2730.            </a><a class="header__individual-icon cart-wrapper  js-cart-icon" href="/cart">
  2731.          <div id="cart-svg-count" class="cart-item-count">0</div>
  2732.          <svg class="header__individual-icon" height="50px" viewBox="0 0 50 50">
  2733.    <g id="Icon_Cart" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
  2734.        <g id="shopping-cart" stroke="#292929" stroke-width="1.55">
  2735.            <circle id="Oval" cx="19.3636364" cy="33.1818182" r="1.81818182"></circle>
  2736.            <circle id="Oval" cx="30.2727273" cy="33.1818182" r="1.81818182"></circle>
  2737.            <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>
  2738.        </g>
  2739.    </g>
  2740. </svg>
  2741.          <span class="visually-hidden">Cart </span>
  2742.        </a>
  2743.        
  2744.        <div class="js-cart-count" style="display:none;">
  2745.          <a href="/cart" class="site-header__cart-toggle js-drawer-open-right">
  2746.            <span class="icon icon-cart" aria-hidden="true"></span>
  2747.            Cart
  2748.            (<span id="CartCount">0</span>
  2749.            items
  2750.            <span id="CartCost">£0</span>)
  2751.          </a>
  2752.        </div>
  2753.      </div>
  2754.    </div>
  2755.  </div>
  2756. </header>
  2757.  
  2758. <cart-notification>
  2759.  <div class="cart-notification-wrapper page-width">
  2760.    <div id="cart-notification" class="cart-notification focus-inset" aria-modal="true" aria-label="Item added" role="dialog" tabindex="-1">
  2761.      <div class="cart-notification__header">
  2762.        <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>
  2763.        <button type="button" class="cart-notification__close modal__close-button link link--text focus-inset" aria-label="Close">
  2764.          <svg class="icon icon-close" aria-hidden="true" focusable="false"><use href="#icon-close"></svg>
  2765.        </button>
  2766.      </div>
  2767.      <div id="cart-notification-product" class="cart-notification-product"></div>
  2768.      <div class="cart-notification__links">
  2769.        <a href="/cart" id="cart-notification-button" class="button button--secondary button--full-width"></a>
  2770.        <form action="/cart" method="post" id="cart-notification-form">
  2771.          <button class="button button--primary button--full-width" name="checkout">Proceed To Checkout</button>
  2772.        </form>
  2773.        <button type="button" class="link button-label">Continue Shopping </button>
  2774.      </div>
  2775.    </div>
  2776.  </div>
  2777. </cart-notification>
  2778. <style data-shopify>
  2779.  .cart-notification {
  2780.     display: none;
  2781.  }
  2782. </style>
  2783. <div class="dim"></div>
  2784.  
  2785. <!-- Mobile Nav Drawer -->
  2786. <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">
  2787.  <div class="drawer__close js-drawer-close">
  2788.    <button type="button" aria-label="Close menu">
  2789.      <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>
  2790.    </button>
  2791.  </div>
  2792.  
  2793.  <nav aria-label="Header Menu" aria-haspopup="true" role="navigation" class="mobile-nav__group-wrapper mobile-nav__wrapper">
  2794.  <ul id="mobile-menu__main-menu" class="mobile-nav__parent mobile-nav__group mobile-nav__group--open" role="menu" data-level="1">
  2795.    <li class="mobile-nav__header">
  2796.      <span class="h2 mobile-nav__header-title mobile-nav__header-title--main">Header Menu</span>
  2797.    </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">
  2798.          <button type="button" class="icon-fallback-text mobile-nav__toggle-open" data-target="about-9" data-level="1" aria-expanded="false">
  2799.            <span class="mobile-nav__label">About</span>
  2800.            <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>              
  2801.          </button>    
  2802.          <ul id="about-9" class="mobile-nav__group mobile-nav__group--closed mobile-nav__child" data-parent="about-9" data-level="2">
  2803.            <li class="visually-hidden" tabindex="-1" data-menu-title="2">
  2804.              About
  2805.            </li>
  2806.            <li class="mobile-nav__header">
  2807.              <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="">
  2808.                <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>      
  2809.              </button>
  2810.              <h2 class="mobile-nav__header-title">About</h2>
  2811.            </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>
  2812. </nav>
  2813.  
  2814.  <div class="mobile__nav-footer mobile__nav-wrapper">
  2815.    <div class="mobile__nav-crossborder"></div>
  2816.    <div class="mobile__nav-links">
  2817.        
  2818.          
  2819.            <div class="mobile-account-link p--bold">
  2820.              <a href="https://uk-pilatesreformers.co.uk/customer_authentication/redirect?locale=en&amp;region_country=GB" id="customer_login_link">Sign-In</a>
  2821.            </div >
  2822.            <div class="mobile-account-link p--bold">
  2823.              <a href="https://shopify.com/80955703638/account?locale=en" id="customer_register_link">Register</a>
  2824.            </div>
  2825.          
  2826.        
  2827.      
  2828.    </div>
  2829.    <div class="mobile__nav-social-media">
  2830.      
  2831.  
  2832. <ul class="promo-bar__icon-wrapper">
  2833.  
  2834.  
  2835.  
  2836.  
  2837.  
  2838.  
  2839.  
  2840.  
  2841.  
  2842. </ul>
  2843.  
  2844.    </div>
  2845.  </div>
  2846. </div>
  2847. <!-- //Mobile Nav Drawer -->
  2848.  
  2849. <!-- Mobile Predictive Search -->
  2850.  
  2851. <!-- //Mobile Predictive Search -->
  2852. </div>
  2853.  
  2854. </div>
  2855. <!-- END sections: header-group -->
  2856.  </article>
  2857.  <div id="PageContainer" class="is-moved-by-drawer">
  2858.    <main class="wrapper--full main-content   ">
  2859.      <div id="shopify-section-template--24031472877910__image_with_text_1" class="shopify-section dynamic__section section__image-with-text"><style data-shopify>
  2860.  #shopify-section-template--24031472877910__image_with_text_1{
  2861.    background-color: var(--color_body_bg);
  2862.  }
  2863. </style>
  2864.  
  2865. <!-- /sections/home-features.liquid -->
  2866. <div class="section__standard-spacing--none">
  2867.  <div class="">
  2868.    <div class=""><!-- /snippets/section__image-with-text.liquid -->
  2869. <style data-shopify>
  2870. #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container,
  2871.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container{
  2872.      background-color: #3e5e61;
  2873.    }
  2874.    #image-with-text--template--24031472877910__image_with_text_1 h2,
  2875.    #image-with-text--template--24031472877910__image_with_text_1 h3,
  2876.    #image-with-text--template--24031472877910__image_with_text_1 p{
  2877.      color: #ffffff;
  2878.    }
  2879.  
  2880.    #image-with-text--template--24031472877910__image_with_text_1 .btn--tertiary{
  2881.      color: #ffffff;
  2882.      border-color: #ffffff;
  2883.    }
  2884.    #image-with-text--template--24031472877910__image_with_text_1 .btn--tertiary:hover{
  2885.      color: #ffffff;
  2886.      border-color: #282828;
  2887.      background-color: #282828;
  2888.    }.feature-flex{
  2889.    display: flex;
  2890.    flex-wrap: wrap;
  2891.  }
  2892.  .feature-flex-right{
  2893.    display: flex;
  2894.    flex-wrap: wrap-reverse;
  2895.  }
  2896.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container::before{
  2897.    content: "";
  2898.    width: 1px;
  2899.    margin-left: -1px;
  2900.    float: left;
  2901.    height: 0;
  2902.    padding-top: 66.66666666666666%;
  2903.    position: relative;
  2904.  }
  2905.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container::after{
  2906.    content: "";
  2907.    display: table;
  2908.    clear: both;
  2909.  }
  2910.  #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container{
  2911.    flex: 1 1 auto;
  2912.    width: 40%;
  2913.  }
  2914.  .image-with-text__content{
  2915.    width: 100%;
  2916.  }
  2917.  @media screen and (min-width: 769px){
  2918.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__image-container{
  2919.      min-width: 60%;
  2920.      background-position: center center;
  2921.      flex: 1 1 auto;
  2922.    }
  2923.    #image-with-text--template--24031472877910__image_with_text_1 .image-with-text__content-container{
  2924.      min-width: 350px;
  2925.    }
  2926.  }
  2927.  @media screen and (max-width: 768px){
  2928.    .image-with-text__image-container{
  2929.      width: 100%;
  2930.    }
  2931.  }
  2932. </style>
  2933.  
  2934. <div id="image-with-text--template--24031472877910__image_with_text_1" class="home-promotion-block feature-flex">
  2935.  
  2936.    
  2937.      <div class="image-with-text__image-container left-image lazyload"
  2938.            data-bgset="
  2939.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=180 180w 120h,
  2940.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=360 360w 240h,
  2941.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=540 540w 360h,
  2942.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=720 720w 480h,
  2943.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=900 900w 600h,
  2944.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=1080 1080w 720h,
  2945.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=1296 1296w 864h,
  2946.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=1512 1512w 1008h,
  2947.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=1728 1728w 1152h,
  2948.    //uk-pilatesreformers.co.uk/cdn/shop/files/classic-aluminium-reformer-86-with-tower_d9379161-cfc7-456c-a12d-905f7de64c76.jpg?v=1731363917&width=5757 5757w 3838h
  2949. "
  2950.            data-sizes="auto"
  2951.            data-parent-fit="cover"></div>
  2952.    
  2953.  
  2954.    <div class="image-with-text__content-container right-text text-left">
  2955.      <div class="section__text-block image-with-text__content section__standard-spacing" data-animation-layer="2">
  2956.        
  2957.        <h2>Welcome to UK Pilates Reformers</h2>
  2958.        
  2959.        
  2960.        
  2961.          <p><em>Move With Intention, Sculpt Perfection</em></p>
  2962.        
  2963.        <a href="/collections/all" class="btn btn--tertiary">All Products</a>
  2964.      </div>
  2965.    </div>
  2966.  
  2967. </div></div>
  2968.  </div>
  2969. </div>
  2970.  
  2971.  
  2972. </div><div id="shopify-section-template--24031472877910__main_featured_collection_icCcmz" class="shopify-section dynamic__section section__featured-collection">
  2973. <!-- /sections/home-featured-collection.liquid -->
  2974. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  2975. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  2976.  
  2977.  
  2978.  
  2979.  
  2980.  
  2981.  
  2982.  
  2983.  
  2984.  
  2985.  
  2986.  
  2987.  
  2988.  
  2989.  
  2990.  
  2991.  
  2992.  
  2993.  
  2994. <style data-shopify>
  2995. #shopify-section-template--24031472877910__main_featured_collection_icCcmz{
  2996.  background-color: var(--color_body_bg);
  2997. }
  2998. .featured-collection__loop{
  2999.  max-width: 100%;
  3000. }
  3001.  
  3002. #section--template--24031472877910__main_featured_collection_icCcmz .promo__content-wrapper{
  3003.  background-color: #282828;
  3004.  color: #ffffff;
  3005. }
  3006.  
  3007. #section--template--24031472877910__main_featured_collection_icCcmz h2, #section--template--24031472877910__main_featured_collection_icCcmz h4 {
  3008.  color: #ffffff;
  3009. }
  3010. #section--template--24031472877910__main_featured_collection_icCcmz .promo__border {
  3011.  border: solid 1px #ffffff;
  3012. }
  3013. #section--template--24031472877910__main_featured_collection_icCcmz .promo__overlay{
  3014.  background-color: rgba(11, 11, 11, 0.2);
  3015. }
  3016.  
  3017. .featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz{
  3018.  border: 1px solid #e6e6e6;
  3019. }
  3020.  
  3021. .promotion_image--template--24031472877910__main_featured_collection_icCcmz{
  3022.  background-image: url(files/uk-pilates-reformers-collections-1.webp);
  3023.  background-size: cover;
  3024. }.featured-collection--template--24031472877910__main_featured_collection_icCcmz{
  3025.    background-color: var(--color_body_bg);
  3026.  }
  3027.  .featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz{
  3028.    border: 1px solid #e6e6e6;
  3029.  }
  3030.  
  3031.  .product-loop__img-template--24031472877910__main_featured_collection_icCcmz--cover{
  3032.    object-fit: cover!important;
  3033.    height: 100%;
  3034. }
  3035. .img--cover{
  3036.  width:100%;
  3037. }
  3038.  
  3039. @media screen and (min-width: 769px){
  3040.  .featured-collection--template--24031472877910__main_featured_collection_icCcmz .product-loop-element--hover .product-loop__image-link{
  3041.    background-color: rgba(255, 255, 255, 0.25);
  3042.  }
  3043. }
  3044. </style>
  3045. <div id="section-featured-collection--template--24031472877910__main_featured_collection_icCcmz" class="section__standard-spacing--small">
  3046.  <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">
  3047.        
  3048.          
  3049.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false  ">
  3050.              <!-- /snippets/product-loop-item.liquid -->
  3051. <style data-shopify>
  3052.  
  3053.  
  3054.  
  3055.    # {
  3056.      max-width: px;
  3057.      max-height: px;
  3058.    }
  3059.    # {
  3060.      max-width: px;
  3061.      max-height: px;
  3062.    }
  3063.  
  3064.  
  3065.  
  3066. </style>
  3067.  
  3068.  
  3069.  
  3070.  
  3071.  
  3072.  
  3073.  
  3074.  
  3075.  
  3076.  
  3077.  
  3078.  
  3079.  
  3080.  
  3081.    
  3082.      
  3083.      
  3084.  
  3085. <style data-shopify>
  3086.  #product-loop--9295442346326 .product-loop__image-container::before{
  3087.    content: "";
  3088.    width: 1px;
  3089.    margin-left: -1px;
  3090.    float: left;
  3091.    height: 0;
  3092.    padding-top: 100.0%;
  3093.    position: relative;
  3094.  }
  3095.  #product-loop--9295442346326 .product-loop__image-container::after{
  3096.    content: "";
  3097.    display: table;
  3098.    clear: both;
  3099.  }
  3100. </style>
  3101.  
  3102.  
  3103. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3104. <div id="product-loop--9295442346326" class="product-loop-element ">
  3105.    
  3106.    <div class="product-loop__image-container ">
  3107.        
  3108.        <span class="icon icon-"  aria-hidden="true"></span>
  3109. <span class="fallback-text"></span>
  3110.  
  3111.  
  3112.  
  3113.        
  3114.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3115.          data-parent-fit="cover"
  3116.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/domo-reformer-1.jpg?v=1731276791&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="Domo Reformer">
  3121.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3122.          data-parent-fit="cover"
  3123.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/domo-reformer-2.jpg?v=1731276791&width={width}"
  3124.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3125.          data-aspectratio="1.0"
  3126.          data-sizes="auto"
  3127.          alt="">
  3128.        
  3129.        <a class="product-loop__image-link" href="/products/pilates-reformer-domo" aria-label="Domo Reformer"></a>
  3130.    </div>
  3131.      <div class="product-loop-element__details ">
  3132.        <p class="product-loop_title ">
  3133.          <a class="p-link--no-accent" href="/products/pilates-reformer-domo" aria-label="Domo Reformer" >Domo Reformer</a>
  3134.          
  3135.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3136.        </p><div class="product-loop-element__price  ">
  3137.          
  3138.            
  3139.                
  3140.                <p class="p--bold p--small">from £821</p>
  3141.              
  3142.          
  3143.        
  3144.          <p data-unit-price-wrapper class="p--small  hidden">
  3145.            <span data-unit-price></span>
  3146.            <span>/</span>
  3147.            <span data-unit-price-measurement-reference-value></span>
  3148.            <span data-unit-price-measurement-reference-unit></span>
  3149.          </p>
  3150.        </div><div class="product-loop-element__swatch">
  3151. </div></div>
  3152.  </div>
  3153. </div>
  3154.            </div>
  3155.          
  3156.        
  3157.        
  3158.        
  3159.        
  3160.          
  3161.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false  ">
  3162.              <!-- /snippets/product-loop-item.liquid -->
  3163. <style data-shopify>
  3164.  
  3165.  
  3166.  
  3167.    # {
  3168.      max-width: px;
  3169.      max-height: px;
  3170.    }
  3171.    # {
  3172.      max-width: px;
  3173.      max-height: px;
  3174.    }
  3175.  
  3176.  
  3177.  
  3178. </style>
  3179.  
  3180.  
  3181.  
  3182.  
  3183.  
  3184.  
  3185.  
  3186.  
  3187.  
  3188.  
  3189.  
  3190.  
  3191.  
  3192. <style data-shopify>
  3193.  #product-loop--9295200911702 .product-loop__image-container::before{
  3194.    content: "";
  3195.    width: 1px;
  3196.    margin-left: -1px;
  3197.    float: left;
  3198.    height: 0;
  3199.    padding-top: 100.0%;
  3200.    position: relative;
  3201.  }
  3202.  #product-loop--9295200911702 .product-loop__image-container::after{
  3203.    content: "";
  3204.    display: table;
  3205.    clear: both;
  3206.  }
  3207. </style>
  3208.  
  3209.  
  3210. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3211. <div id="product-loop--9295200911702" class="product-loop-element ">
  3212.    
  3213.    <div class="product-loop__image-container ">
  3214.        
  3215.        <span class="icon icon-"  aria-hidden="true"></span>
  3216. <span class="fallback-text"></span>
  3217.  
  3218.  
  3219.  
  3220.        
  3221.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3222.          data-parent-fit="cover"
  3223.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum.jpg?v=1731363499&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="Lignum Reformer | Beech">
  3228.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3229.          data-parent-fit="cover"
  3230.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_e7161035-8699-40ff-908d-721a32d51c7a.jpg?v=1731363499&width={width}"
  3231.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3232.          data-aspectratio="1.0"
  3233.          data-sizes="auto"
  3234.          alt="">
  3235.        
  3236.        <a class="product-loop__image-link" href="/products/pilates-reformer-beech" aria-label="Lignum Reformer | Beech"></a>
  3237.    </div>
  3238.      <div class="product-loop-element__details ">
  3239.        <p class="product-loop_title ">
  3240.          <a class="p-link--no-accent" href="/products/pilates-reformer-beech" aria-label="Lignum Reformer | Beech" >Lignum Reformer | Beech</a>
  3241.          
  3242.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3243.        </p><div class="product-loop-element__price  ">
  3244.          
  3245.            
  3246.                <p class="p--bold p--small">£1,649</p>
  3247.              
  3248.          
  3249.        
  3250.          <p data-unit-price-wrapper class="p--small  hidden">
  3251.            <span data-unit-price></span>
  3252.            <span>/</span>
  3253.            <span data-unit-price-measurement-reference-value></span>
  3254.            <span data-unit-price-measurement-reference-unit></span>
  3255.          </p>
  3256.        </div><div class="product-loop-element__swatch">
  3257.  
  3258.  
  3259.  
  3260.  
  3261.  
  3262.  
  3263.  
  3264.  
  3265.  
  3266.  
  3267.  
  3268.  
  3269.  
  3270.  
  3271.  
  3272.  
  3273.  
  3274.    <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">
  3275.      <div class="tooltip">Black</div>
  3276.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3277.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_e7161035-8699-40ff-908d-721a32d51c7a.jpg?v=1731363499&width={width}"
  3278.  data-widths="[50, 75, 100, 150, 200]"
  3279.  data-sizes="auto"
  3280.  data-parent-fit="cover"
  3281.  onError="this.style.display = 'none';"
  3282.  alt="Black swatch">
  3283.      </div>
  3284.    </label>
  3285.  
  3286.  
  3287.  
  3288.  
  3289.  
  3290.  
  3291.  
  3292.  
  3293.  
  3294.  
  3295.  
  3296.  
  3297.    <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">
  3298.      <div class="tooltip">Gray</div>
  3299.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3300.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_da7e4afa-20b5-48da-97d4-d99ea514e70d.jpg?v=1737728012&width={width}"
  3301.  data-widths="[50, 75, 100, 150, 200]"
  3302.  data-sizes="auto"
  3303.  data-parent-fit="cover"
  3304.  onError="this.style.display = 'none';"
  3305.  alt="Gray swatch">
  3306.      </div>
  3307.    </label>
  3308.  
  3309.  
  3310.  
  3311.  
  3312.  
  3313.  
  3314.  
  3315.  
  3316.  
  3317.  
  3318.  
  3319.  
  3320.    <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">
  3321.      <div class="tooltip">Blue</div>
  3322.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3323.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_29c5956f-263b-4328-95fd-cfb9c152646f.jpg?v=1737728012&width={width}"
  3324.  data-widths="[50, 75, 100, 150, 200]"
  3325.  data-sizes="auto"
  3326.  data-parent-fit="cover"
  3327.  onError="this.style.display = 'none';"
  3328.  alt="Blue swatch">
  3329.      </div>
  3330.    </label>
  3331.  
  3332.  
  3333.  
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.    <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">
  3344.      <div class="tooltip">Ocean Blue</div>
  3345.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3346.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_f99eebba-c756-4dce-8385-9f85d913c471.jpg?v=1737728012&width={width}"
  3347.  data-widths="[50, 75, 100, 150, 200]"
  3348.  data-sizes="auto"
  3349.  data-parent-fit="cover"
  3350.  onError="this.style.display = 'none';"
  3351.  alt="Ocean Blue swatch">
  3352.      </div>
  3353.    </label>
  3354.  
  3355.  
  3356.  
  3357.  
  3358.  
  3359.  
  3360.  
  3361.  
  3362.  
  3363.  
  3364.  
  3365.  
  3366.    <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">
  3367.      <div class="tooltip">Green</div>
  3368.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3369.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_025f9bca-2405-47a9-a57d-f03204cd5c17.jpg?v=1737728012&width={width}"
  3370.  data-widths="[50, 75, 100, 150, 200]"
  3371.  data-sizes="auto"
  3372.  data-parent-fit="cover"
  3373.  onError="this.style.display = 'none';"
  3374.  alt="Green swatch">
  3375.      </div>
  3376.    </label>
  3377.  
  3378.  
  3379.  
  3380.  
  3381.  
  3382.  
  3383.  
  3384.  
  3385.  
  3386.  
  3387.  
  3388.  
  3389.    <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">
  3390.      <div class="tooltip">Red</div>
  3391.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3392.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_9d665843-5415-43c3-8b6a-2e2fa32a72d3.jpg?v=1737728012&width={width}"
  3393.  data-widths="[50, 75, 100, 150, 200]"
  3394.  data-sizes="auto"
  3395.  data-parent-fit="cover"
  3396.  onError="this.style.display = 'none';"
  3397.  alt="Red swatch">
  3398.      </div>
  3399.    </label>
  3400.  
  3401.  
  3402.  
  3403.  
  3404.  
  3405.  
  3406.  
  3407.  
  3408.  
  3409.  
  3410.  
  3411.  
  3412.    <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">
  3413.      <div class="tooltip">Ivory</div>
  3414.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3415.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_9d828dc3-cbe4-48bb-82b9-31b225c3ac87.jpg?v=1737728012&width={width}"
  3416.  data-widths="[50, 75, 100, 150, 200]"
  3417.  data-sizes="auto"
  3418.  data-parent-fit="cover"
  3419.  onError="this.style.display = 'none';"
  3420.  alt="Ivory swatch">
  3421.      </div>
  3422.    </label>
  3423.  
  3424.  
  3425.  
  3426.  
  3427.  
  3428.  
  3429.  
  3430.  
  3431.  
  3432.  
  3433.  
  3434.  
  3435.    <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">
  3436.      <div class="tooltip">Mocha</div>
  3437.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3438.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wooden-reformer-lignum_c544bc74-afe1-4bd0-8bf7-45feb415d810.jpg?v=1737728012&width={width}"
  3439.  data-widths="[50, 75, 100, 150, 200]"
  3440.  data-sizes="auto"
  3441.  data-parent-fit="cover"
  3442.  onError="this.style.display = 'none';"
  3443.  alt="Mocha swatch">
  3444.      </div>
  3445.    </label>
  3446.  
  3447.  
  3448.  
  3449.  
  3450. </div></div>
  3451.  </div>
  3452. </div>
  3453.            </div>
  3454.          
  3455.        
  3456.        
  3457.        
  3458.        
  3459.          
  3460.            <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false  ">
  3461.              <!-- /snippets/product-loop-item.liquid -->
  3462. <style data-shopify>
  3463.  
  3464.  
  3465.  
  3466.    # {
  3467.      max-width: px;
  3468.      max-height: px;
  3469.    }
  3470.    # {
  3471.      max-width: px;
  3472.      max-height: px;
  3473.    }
  3474.  
  3475.  
  3476.  
  3477. </style>
  3478.  
  3479.  
  3480.  
  3481.  
  3482.  
  3483.  
  3484.  
  3485.  
  3486.  
  3487.  
  3488.  
  3489.  
  3490.  
  3491. <style data-shopify>
  3492.  #product-loop--9295390048598 .product-loop__image-container::before{
  3493.    content: "";
  3494.    width: 1px;
  3495.    margin-left: -1px;
  3496.    float: left;
  3497.    height: 0;
  3498.    padding-top: 100.0%;
  3499.    position: relative;
  3500.  }
  3501.  #product-loop--9295390048598 .product-loop__image-container::after{
  3502.    content: "";
  3503.    display: table;
  3504.    clear: both;
  3505.  }
  3506. </style>
  3507.  
  3508.  
  3509. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_icCcmz ">
  3510. <div id="product-loop--9295390048598" class="product-loop-element ">
  3511.    
  3512.    <div class="product-loop__image-container ">
  3513.        
  3514.        <span class="icon icon-"  aria-hidden="true"></span>
  3515. <span class="fallback-text"></span>
  3516.  
  3517.  
  3518.  
  3519.        
  3520.        <img class="product-loop__primary-image lazyload section__load-animations--fade  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_e12a50f2-136a-4f30-98e3-041c65e09906.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="Nubium Reformer | White">
  3527.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_icCcmz   "
  3528.          data-parent-fit="cover"
  3529.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_91d5a4d0-6076-484e-836c-c7f1548972a5.jpg?v=1731363828&width={width}"
  3530.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3531.          data-aspectratio="1.0"
  3532.          data-sizes="auto"
  3533.          alt="">
  3534.        
  3535.        <a class="product-loop__image-link" href="/products/pilates-reformer-nubium" aria-label="Nubium Reformer | White"></a>
  3536.    </div>
  3537.      <div class="product-loop-element__details ">
  3538.        <p class="product-loop_title ">
  3539.          <a class="p-link--no-accent" href="/products/pilates-reformer-nubium" aria-label="Nubium Reformer | White" >Nubium Reformer | White</a>
  3540.          
  3541.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3542.        </p><div class="product-loop-element__price  ">
  3543.          
  3544.            
  3545.                <p class="p--bold p--small">£1,649</p>
  3546.              
  3547.          
  3548.        
  3549.          <p data-unit-price-wrapper class="p--small  hidden">
  3550.            <span data-unit-price></span>
  3551.            <span>/</span>
  3552.            <span data-unit-price-measurement-reference-value></span>
  3553.            <span data-unit-price-measurement-reference-unit></span>
  3554.          </p>
  3555.        </div><div class="product-loop-element__swatch">
  3556.  
  3557.  
  3558.  
  3559.  
  3560.  
  3561.  
  3562.  
  3563.  
  3564.  
  3565.  
  3566.  
  3567.  
  3568.  
  3569.  
  3570.  
  3571.  
  3572.  
  3573.    <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">
  3574.      <div class="tooltip">Black</div>
  3575.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3576.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_e12a50f2-136a-4f30-98e3-041c65e09906.jpg?v=1731363828&width={width}"
  3577.  data-widths="[50, 75, 100, 150, 200]"
  3578.  data-sizes="auto"
  3579.  data-parent-fit="cover"
  3580.  onError="this.style.display = 'none';"
  3581.  alt="Black swatch">
  3582.      </div>
  3583.    </label>
  3584.  
  3585.  
  3586.  
  3587.  
  3588.  
  3589.  
  3590.  
  3591.  
  3592.  
  3593.  
  3594.  
  3595.  
  3596.    <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">
  3597.      <div class="tooltip">Gray</div>
  3598.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3599.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit.jpg?v=1737729098&width={width}"
  3600.  data-widths="[50, 75, 100, 150, 200]"
  3601.  data-sizes="auto"
  3602.  data-parent-fit="cover"
  3603.  onError="this.style.display = 'none';"
  3604.  alt="Gray swatch">
  3605.      </div>
  3606.    </label>
  3607.  
  3608.  
  3609.  
  3610.  
  3611.  
  3612.  
  3613.  
  3614.  
  3615.  
  3616.  
  3617.  
  3618.  
  3619.    <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">
  3620.      <div class="tooltip">Blue</div>
  3621.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3622.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_8af2bdab-6fba-4bcb-aa5b-8c78d1cd616c.jpg?v=1737729098&width={width}"
  3623.  data-widths="[50, 75, 100, 150, 200]"
  3624.  data-sizes="auto"
  3625.  data-parent-fit="cover"
  3626.  onError="this.style.display = 'none';"
  3627.  alt="Blue swatch">
  3628.      </div>
  3629.    </label>
  3630.  
  3631.  
  3632.  
  3633.  
  3634.  
  3635.  
  3636.  
  3637.  
  3638.  
  3639.  
  3640.  
  3641.  
  3642.    <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">
  3643.      <div class="tooltip">Ocean Blue</div>
  3644.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3645.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_e6cb1ac8-07ae-4291-a338-49efb9148252.jpg?v=1737729098&width={width}"
  3646.  data-widths="[50, 75, 100, 150, 200]"
  3647.  data-sizes="auto"
  3648.  data-parent-fit="cover"
  3649.  onError="this.style.display = 'none';"
  3650.  alt="Ocean Blue swatch">
  3651.      </div>
  3652.    </label>
  3653.  
  3654.  
  3655.  
  3656.  
  3657.  
  3658.  
  3659.  
  3660.  
  3661.  
  3662.  
  3663.  
  3664.  
  3665.    <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">
  3666.      <div class="tooltip">Green</div>
  3667.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3668.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_f3e388c6-69a5-42cf-98ec-1973a67c59dd.jpg?v=1737729098&width={width}"
  3669.  data-widths="[50, 75, 100, 150, 200]"
  3670.  data-sizes="auto"
  3671.  data-parent-fit="cover"
  3672.  onError="this.style.display = 'none';"
  3673.  alt="Green swatch">
  3674.      </div>
  3675.    </label>
  3676.  
  3677.  
  3678.  
  3679.  
  3680.  
  3681.  
  3682.  
  3683.  
  3684.  
  3685.  
  3686.  
  3687.  
  3688.    <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">
  3689.      <div class="tooltip">Red</div>
  3690.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3691.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_a35f0e41-b497-472b-9161-4b12e7585b12.jpg?v=1737729098&width={width}"
  3692.  data-widths="[50, 75, 100, 150, 200]"
  3693.  data-sizes="auto"
  3694.  data-parent-fit="cover"
  3695.  onError="this.style.display = 'none';"
  3696.  alt="Red swatch">
  3697.      </div>
  3698.    </label>
  3699.  
  3700.  
  3701.  
  3702.  
  3703.  
  3704.  
  3705.  
  3706.  
  3707.  
  3708.  
  3709.  
  3710.  
  3711.    <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">
  3712.      <div class="tooltip">Ivory</div>
  3713.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3714.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_07ff8231-96a7-4082-a467-307e6f4d3409.jpg?v=1737729098&width={width}"
  3715.  data-widths="[50, 75, 100, 150, 200]"
  3716.  data-sizes="auto"
  3717.  data-parent-fit="cover"
  3718.  onError="this.style.display = 'none';"
  3719.  alt="Ivory swatch">
  3720.      </div>
  3721.    </label>
  3722.  
  3723.  
  3724.  
  3725.  
  3726.  
  3727.  
  3728.  
  3729.  
  3730.  
  3731.  
  3732.  
  3733.  
  3734.    <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">
  3735.      <div class="tooltip">Mocha</div>
  3736.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3737.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-kit_3f7e9d4f-52e9-4573-9a7e-9d188d3b69d1.jpg?v=1737729098&width={width}"
  3738.  data-widths="[50, 75, 100, 150, 200]"
  3739.  data-sizes="auto"
  3740.  data-parent-fit="cover"
  3741.  onError="this.style.display = 'none';"
  3742.  alt="Mocha swatch">
  3743.      </div>
  3744.    </label>
  3745.  
  3746.  
  3747.  
  3748.  
  3749. </div></div>
  3750.  </div>
  3751. </div>
  3752.            </div>
  3753.          
  3754.        
  3755.        
  3756.        
  3757.  
  3758.      
  3759.        <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">
  3760.      <div class="promo__text">
  3761.        
  3762.          <p class="text--no-margin">Sale!</p>
  3763.        
  3764.        
  3765.          <h2>Shop Now</h2>
  3766.        
  3767.        
  3768.          <div><p>Grab the hottest deals</p></div>
  3769.        
  3770.        
  3771.        <a class="btn btn--outline" href="/collections/pilates-reformers">View all</a>
  3772.        
  3773.      </div><div class="section__standard-offset promo__border-container">
  3774.          <div class="promo__border"></div>
  3775.        </div><div class="promo__overlay"></div>
  3776.        <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)">
  3777.      
  3778.    </div>
  3779.  </div>
  3780.      
  3781.    
  3782.    </div>
  3783.  </div>
  3784. </div>
  3785.  
  3786. <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">
  3787. <!-- /sections/home-featured-collection.liquid -->
  3788. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  3789. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  3790.  
  3791.  
  3792.  
  3793.  
  3794.  
  3795.  
  3796.  
  3797.  
  3798.  
  3799.  
  3800.  
  3801.  
  3802.  
  3803.  
  3804.  
  3805.  
  3806.  
  3807.  
  3808. <style data-shopify>
  3809. #shopify-section-template--24031472877910__featured_collection_1{
  3810.  background-color: var(--color_body_bg);
  3811. }
  3812. .featured-collection__loop{
  3813.  max-width: 100%;
  3814. }
  3815.  
  3816. #section--template--24031472877910__featured_collection_1 .promo__content-wrapper{
  3817.  background-color: #282828;
  3818.  color: #ffffff;
  3819. }
  3820.  
  3821. #section--template--24031472877910__featured_collection_1 h2, #section--template--24031472877910__featured_collection_1 h4 {
  3822.  color: #ffffff;
  3823. }
  3824. #section--template--24031472877910__featured_collection_1 .promo__border {
  3825.  border: solid 1px #ffffff;
  3826. }
  3827. #section--template--24031472877910__featured_collection_1 .promo__overlay{
  3828.  background-color: rgba(11, 11, 11, 0.2);
  3829. }
  3830.  
  3831. .featured-collection__product-border-template--24031472877910__featured_collection_1{
  3832.  border: 1px solid #e6e6e6;
  3833. }
  3834.  
  3835. .promotion_image--template--24031472877910__featured_collection_1{
  3836.  background-image: url(files/uk-pilates-reformers-collections-3.webp);
  3837.  background-size: cover;
  3838. }.featured-collection--template--24031472877910__featured_collection_1{
  3839.    background-color: var(--color_body_bg);
  3840.  }
  3841.  .featured-collection__product-border-template--24031472877910__featured_collection_1{
  3842.    border: 1px solid #e6e6e6;
  3843.  }
  3844.  
  3845.  .product-loop__img-template--24031472877910__featured_collection_1--cover{
  3846.    object-fit: cover!important;
  3847.    height: 100%;
  3848. }
  3849. .img--cover{
  3850.  width:100%;
  3851. }
  3852.  
  3853. @media screen and (min-width: 769px){
  3854.  .featured-collection--template--24031472877910__featured_collection_1 .product-loop-element--hover .product-loop__image-link{
  3855.    background-color: rgba(255, 255, 255, 0.25);
  3856.  }
  3857. }
  3858. </style>
  3859. <div id="section-featured-collection--template--24031472877910__featured_collection_1" class="section__standard-spacing--small">
  3860.  <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">
  3861.        
  3862.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  3863.            <!-- /snippets/product-loop-item.liquid -->
  3864. <style data-shopify>
  3865.  
  3866.  
  3867.  
  3868.    # {
  3869.      max-width: px;
  3870.      max-height: px;
  3871.    }
  3872.    # {
  3873.      max-width: px;
  3874.      max-height: px;
  3875.    }
  3876.  
  3877.  
  3878.  
  3879. </style>
  3880.  
  3881.  
  3882.  
  3883.  
  3884.  
  3885.  
  3886.  
  3887.  
  3888.  
  3889.  
  3890.  
  3891.  
  3892.  
  3893. <style data-shopify>
  3894.  #product-loop--9295323201878 .product-loop__image-container::before{
  3895.    content: "";
  3896.    width: 1px;
  3897.    margin-left: -1px;
  3898.    float: left;
  3899.    height: 0;
  3900.    padding-top: 100.0%;
  3901.    position: relative;
  3902.  }
  3903.  #product-loop--9295323201878 .product-loop__image-container::after{
  3904.    content: "";
  3905.    display: table;
  3906.    clear: both;
  3907.  }
  3908. </style>
  3909.  
  3910.  
  3911. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  3912. <div id="product-loop--9295323201878" class="product-loop-element ">
  3913.    
  3914.    <div class="product-loop__image-container ">
  3915.        
  3916.        <span class="icon icon-"  aria-hidden="true"></span>
  3917. <span class="fallback-text"></span>
  3918.  
  3919.  
  3920.  
  3921.        
  3922.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  3923.          data-parent-fit="cover"
  3924.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower.jpg?v=1731363689&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="Master Instructor Reformer with Tower">
  3929.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  3930.          data-parent-fit="cover"
  3931.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_8af10fd4-cc3c-48d4-bc16-7c65a7998ef5.jpg?v=1731363689&width={width}"
  3932.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  3933.          data-aspectratio="1.0"
  3934.          data-sizes="auto"
  3935.          alt="">
  3936.        
  3937.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-master-instructor" aria-label="Master Instructor Reformer with Tower"></a>
  3938.    </div>
  3939.      <div class="product-loop-element__details ">
  3940.        <p class="product-loop_title ">
  3941.          <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>
  3942.          
  3943.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  3944.        </p><div class="product-loop-element__price  ">
  3945.          
  3946.            
  3947.                <p class="p--bold p--small">£4,139</p>
  3948.              
  3949.          
  3950.        
  3951.          <p data-unit-price-wrapper class="p--small  hidden">
  3952.            <span data-unit-price></span>
  3953.            <span>/</span>
  3954.            <span data-unit-price-measurement-reference-value></span>
  3955.            <span data-unit-price-measurement-reference-unit></span>
  3956.          </p>
  3957.        </div><div class="product-loop-element__swatch">
  3958.  
  3959.  
  3960.  
  3961.  
  3962.  
  3963.  
  3964.  
  3965.  
  3966.  
  3967.  
  3968.  
  3969.  
  3970.  
  3971.  
  3972.  
  3973.  
  3974.  
  3975.    <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">
  3976.      <div class="tooltip">Black</div>
  3977.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  3978.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower.jpg?v=1731363689&width={width}"
  3979.  data-widths="[50, 75, 100, 150, 200]"
  3980.  data-sizes="auto"
  3981.  data-parent-fit="cover"
  3982.  onError="this.style.display = 'none';"
  3983.  alt="Black swatch">
  3984.      </div>
  3985.    </label>
  3986.  
  3987.  
  3988.  
  3989.  
  3990.  
  3991.  
  3992.  
  3993.  
  3994.  
  3995.  
  3996.  
  3997.  
  3998.    <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">
  3999.      <div class="tooltip">Gray</div>
  4000.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4001.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_32fc0e34-ebea-470f-b942-7d4ab7349104.jpg?v=1731363689&width={width}"
  4002.  data-widths="[50, 75, 100, 150, 200]"
  4003.  data-sizes="auto"
  4004.  data-parent-fit="cover"
  4005.  onError="this.style.display = 'none';"
  4006.  alt="Gray swatch">
  4007.      </div>
  4008.    </label>
  4009.  
  4010.  
  4011.  
  4012.  
  4013.  
  4014.  
  4015.  
  4016.  
  4017.  
  4018.  
  4019.  
  4020.  
  4021.    <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">
  4022.      <div class="tooltip">Blue</div>
  4023.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4024.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_a22788d3-3c63-4297-b9d7-9c90e6f9faa4.jpg?v=1731691076&width={width}"
  4025.  data-widths="[50, 75, 100, 150, 200]"
  4026.  data-sizes="auto"
  4027.  data-parent-fit="cover"
  4028.  onError="this.style.display = 'none';"
  4029.  alt="Blue swatch">
  4030.      </div>
  4031.    </label>
  4032.  
  4033.  
  4034.  
  4035.  
  4036.  
  4037.  
  4038.  
  4039.  
  4040.  
  4041.  
  4042.  
  4043.  
  4044.    <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">
  4045.      <div class="tooltip">Ocean Blue</div>
  4046.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4047.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_7ca392bf-02ad-4ca4-a2da-16f737304121.jpg?v=1731691173&width={width}"
  4048.  data-widths="[50, 75, 100, 150, 200]"
  4049.  data-sizes="auto"
  4050.  data-parent-fit="cover"
  4051.  onError="this.style.display = 'none';"
  4052.  alt="Ocean Blue swatch">
  4053.      </div>
  4054.    </label>
  4055.  
  4056.  
  4057.  
  4058.  
  4059.  
  4060.  
  4061.  
  4062.  
  4063.  
  4064.  
  4065.  
  4066.  
  4067.    <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">
  4068.      <div class="tooltip">Green</div>
  4069.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4070.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_87a5b6ed-4db8-4ea5-8828-d7f37ec15979.jpg?v=1731691228&width={width}"
  4071.  data-widths="[50, 75, 100, 150, 200]"
  4072.  data-sizes="auto"
  4073.  data-parent-fit="cover"
  4074.  onError="this.style.display = 'none';"
  4075.  alt="Green swatch">
  4076.      </div>
  4077.    </label>
  4078.  
  4079.  
  4080.  
  4081.  
  4082.  
  4083.  
  4084.  
  4085.  
  4086.  
  4087.  
  4088.  
  4089.  
  4090.    <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">
  4091.      <div class="tooltip">Red</div>
  4092.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4093.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_c88705de-3aff-4040-8f3c-988ab45a4954.jpg?v=1731691262&width={width}"
  4094.  data-widths="[50, 75, 100, 150, 200]"
  4095.  data-sizes="auto"
  4096.  data-parent-fit="cover"
  4097.  onError="this.style.display = 'none';"
  4098.  alt="Red swatch">
  4099.      </div>
  4100.    </label>
  4101.  
  4102.  
  4103.  
  4104.  
  4105.  
  4106.  
  4107.  
  4108.  
  4109.  
  4110.  
  4111.  
  4112.  
  4113.    <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">
  4114.      <div class="tooltip">Ivory</div>
  4115.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4116.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_a1272642-f6d0-46c0-9482-366d67454249.jpg?v=1731691294&width={width}"
  4117.  data-widths="[50, 75, 100, 150, 200]"
  4118.  data-sizes="auto"
  4119.  data-parent-fit="cover"
  4120.  onError="this.style.display = 'none';"
  4121.  alt="Ivory swatch">
  4122.      </div>
  4123.    </label>
  4124.  
  4125.  
  4126.  
  4127.  
  4128.  
  4129.  
  4130.  
  4131.  
  4132.  
  4133.  
  4134.  
  4135.  
  4136.    <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">
  4137.      <div class="tooltip">Mocha</div>
  4138.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4139.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/reformer-master-instructor-with-tower_f487fe76-8180-4b72-916e-25effac91a77.jpg?v=1731691330&width={width}"
  4140.  data-widths="[50, 75, 100, 150, 200]"
  4141.  data-sizes="auto"
  4142.  data-parent-fit="cover"
  4143.  onError="this.style.display = 'none';"
  4144.  alt="Mocha swatch">
  4145.      </div>
  4146.    </label>
  4147.  
  4148.  
  4149.  
  4150.  
  4151. </div></div>
  4152.  </div>
  4153. </div>
  4154.          </div>
  4155.        
  4156.        
  4157.        
  4158.        
  4159.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  4160.            <!-- /snippets/product-loop-item.liquid -->
  4161. <style data-shopify>
  4162.  
  4163.  
  4164.  
  4165.    # {
  4166.      max-width: px;
  4167.      max-height: px;
  4168.    }
  4169.    # {
  4170.      max-width: px;
  4171.      max-height: px;
  4172.    }
  4173.  
  4174.  
  4175.  
  4176. </style>
  4177.  
  4178.  
  4179.  
  4180.  
  4181.  
  4182.  
  4183.  
  4184.  
  4185.  
  4186.  
  4187.  
  4188.  
  4189.  
  4190. <style data-shopify>
  4191.  #product-loop--9295220998486 .product-loop__image-container::before{
  4192.    content: "";
  4193.    width: 1px;
  4194.    margin-left: -1px;
  4195.    float: left;
  4196.    height: 0;
  4197.    padding-top: 100.0%;
  4198.    position: relative;
  4199.  }
  4200.  #product-loop--9295220998486 .product-loop__image-container::after{
  4201.    content: "";
  4202.    display: table;
  4203.    clear: both;
  4204.  }
  4205. </style>
  4206.  
  4207.  
  4208. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4209. <div id="product-loop--9295220998486" class="product-loop-element ">
  4210.    
  4211.    <div class="product-loop__image-container ">
  4212.        
  4213.        <span class="icon icon-"  aria-hidden="true"></span>
  4214. <span class="fallback-text"></span>
  4215.  
  4216.  
  4217.  
  4218.        
  4219.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4220.          data-parent-fit="cover"
  4221.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze.jpg?v=1731363538&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="Wood Reformer with Tower | Maple">
  4226.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4227.          data-parent-fit="cover"
  4228.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_e4fb5f45-c98d-48be-8f88-bd7b84054dc5.jpg?v=1731363538&width={width}"
  4229.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4230.          data-aspectratio="1.0"
  4231.          data-sizes="auto"
  4232.          alt="">
  4233.        
  4234.        <a class="product-loop__image-link" href="/products/pilates-reformer-with-half-tower-maple" aria-label="Wood Reformer with Tower | Maple"></a>
  4235.    </div>
  4236.      <div class="product-loop-element__details ">
  4237.        <p class="product-loop_title ">
  4238.          <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>
  4239.          
  4240.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4241.        </p><div class="product-loop-element__price  ">
  4242.          
  4243.            
  4244.                <p class="p--bold p--small">£2,648</p>
  4245.              
  4246.          
  4247.        
  4248.          <p data-unit-price-wrapper class="p--small  hidden">
  4249.            <span data-unit-price></span>
  4250.            <span>/</span>
  4251.            <span data-unit-price-measurement-reference-value></span>
  4252.            <span data-unit-price-measurement-reference-unit></span>
  4253.          </p>
  4254.        </div><div class="product-loop-element__swatch">
  4255.  
  4256.  
  4257.  
  4258.  
  4259.  
  4260.  
  4261.  
  4262.  
  4263.  
  4264.  
  4265.  
  4266.  
  4267.  
  4268.  
  4269.  
  4270.  
  4271.  
  4272.    <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">
  4273.      <div class="tooltip">Black</div>
  4274.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4275.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze.jpg?v=1731363538&width={width}"
  4276.  data-widths="[50, 75, 100, 150, 200]"
  4277.  data-sizes="auto"
  4278.  data-parent-fit="cover"
  4279.  onError="this.style.display = 'none';"
  4280.  alt="Black swatch">
  4281.      </div>
  4282.    </label>
  4283.  
  4284.  
  4285.  
  4286.  
  4287.  
  4288.  
  4289.  
  4290.  
  4291.  
  4292.  
  4293.  
  4294.  
  4295.    <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">
  4296.      <div class="tooltip">Gray</div>
  4297.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4298.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_c0201d3b-388c-4688-8f5b-c0077568b373.jpg?v=1731363538&width={width}"
  4299.  data-widths="[50, 75, 100, 150, 200]"
  4300.  data-sizes="auto"
  4301.  data-parent-fit="cover"
  4302.  onError="this.style.display = 'none';"
  4303.  alt="Gray swatch">
  4304.      </div>
  4305.    </label>
  4306.  
  4307.  
  4308.  
  4309.  
  4310.  
  4311.  
  4312.  
  4313.  
  4314.  
  4315.  
  4316.  
  4317.  
  4318.    <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">
  4319.      <div class="tooltip">Blue</div>
  4320.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4321.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_d08e0adc-4c3e-4942-88a7-2ed808015abc.jpg?v=1731687166&width={width}"
  4322.  data-widths="[50, 75, 100, 150, 200]"
  4323.  data-sizes="auto"
  4324.  data-parent-fit="cover"
  4325.  onError="this.style.display = 'none';"
  4326.  alt="Blue swatch">
  4327.      </div>
  4328.    </label>
  4329.  
  4330.  
  4331.  
  4332.  
  4333.  
  4334.  
  4335.  
  4336.  
  4337.  
  4338.  
  4339.  
  4340.  
  4341.    <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">
  4342.      <div class="tooltip">Ocean Blue</div>
  4343.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4344.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_a00e096b-5ba4-44c0-8d51-c13e55bc42dd.jpg?v=1731687176&width={width}"
  4345.  data-widths="[50, 75, 100, 150, 200]"
  4346.  data-sizes="auto"
  4347.  data-parent-fit="cover"
  4348.  onError="this.style.display = 'none';"
  4349.  alt="Ocean Blue swatch">
  4350.      </div>
  4351.    </label>
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360.  
  4361.  
  4362.  
  4363.  
  4364.    <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">
  4365.      <div class="tooltip">Green</div>
  4366.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4367.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_2ba45a28-ddb2-4592-b8c9-58e5d14887a9.jpg?v=1731687183&width={width}"
  4368.  data-widths="[50, 75, 100, 150, 200]"
  4369.  data-sizes="auto"
  4370.  data-parent-fit="cover"
  4371.  onError="this.style.display = 'none';"
  4372.  alt="Green swatch">
  4373.      </div>
  4374.    </label>
  4375.  
  4376.  
  4377.  
  4378.  
  4379.  
  4380.  
  4381.  
  4382.  
  4383.  
  4384.  
  4385.  
  4386.  
  4387.    <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">
  4388.      <div class="tooltip">Red</div>
  4389.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4390.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_322a9638-8b7a-45bd-8cdf-6c7a5422006f.jpg?v=1731687191&width={width}"
  4391.  data-widths="[50, 75, 100, 150, 200]"
  4392.  data-sizes="auto"
  4393.  data-parent-fit="cover"
  4394.  onError="this.style.display = 'none';"
  4395.  alt="Red swatch">
  4396.      </div>
  4397.    </label>
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404.  
  4405.  
  4406.  
  4407.  
  4408.  
  4409.  
  4410.    <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">
  4411.      <div class="tooltip">Ivory</div>
  4412.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4413.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_47f91dfe-3ed9-4821-85e1-f0876717a5ba.jpg?v=1731687197&width={width}"
  4414.  data-widths="[50, 75, 100, 150, 200]"
  4415.  data-sizes="auto"
  4416.  data-parent-fit="cover"
  4417.  onError="this.style.display = 'none';"
  4418.  alt="Ivory swatch">
  4419.      </div>
  4420.    </label>
  4421.  
  4422.  
  4423.  
  4424.  
  4425.  
  4426.  
  4427.  
  4428.  
  4429.  
  4430.  
  4431.  
  4432.  
  4433.    <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">
  4434.      <div class="tooltip">Mocha</div>
  4435.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4436.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-half-trapeze_5d960066-621f-4937-84d5-b05fad59407b.jpg?v=1731687204&width={width}"
  4437.  data-widths="[50, 75, 100, 150, 200]"
  4438.  data-sizes="auto"
  4439.  data-parent-fit="cover"
  4440.  onError="this.style.display = 'none';"
  4441.  alt="Mocha swatch">
  4442.      </div>
  4443.    </label>
  4444.  
  4445.  
  4446.  
  4447.  
  4448. </div></div>
  4449.  </div>
  4450. </div>
  4451.          </div>
  4452.        
  4453.        
  4454.        
  4455.        
  4456.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  4457.            <!-- /snippets/product-loop-item.liquid -->
  4458. <style data-shopify>
  4459.  
  4460.  
  4461.  
  4462.    # {
  4463.      max-width: px;
  4464.      max-height: px;
  4465.    }
  4466.    # {
  4467.      max-width: px;
  4468.      max-height: px;
  4469.    }
  4470.  
  4471.  
  4472.  
  4473. </style>
  4474.  
  4475.  
  4476.  
  4477.  
  4478.  
  4479.  
  4480.  
  4481.  
  4482.  
  4483.  
  4484.  
  4485.  
  4486.  
  4487. <style data-shopify>
  4488.  #product-loop--9295419179350 .product-loop__image-container::before{
  4489.    content: "";
  4490.    width: 1px;
  4491.    margin-left: -1px;
  4492.    float: left;
  4493.    height: 0;
  4494.    padding-top: 100.0%;
  4495.    position: relative;
  4496.  }
  4497.  #product-loop--9295419179350 .product-loop__image-container::after{
  4498.    content: "";
  4499.    display: table;
  4500.    clear: both;
  4501.  }
  4502. </style>
  4503.  
  4504.  
  4505. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4506. <div id="product-loop--9295419179350" class="product-loop-element ">
  4507.    
  4508.    <div class="product-loop__image-container ">
  4509.        
  4510.        <span class="icon icon-"  aria-hidden="true"></span>
  4511. <span class="fallback-text"></span>
  4512.  
  4513.  
  4514.  
  4515.        
  4516.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4517.          data-parent-fit="cover"
  4518.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer.jpg?v=1731363949&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="Twin Reformer with Tower">
  4523.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4524.          data-parent-fit="cover"
  4525.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_fe2353f9-cd3d-4de4-b92c-5a2d033ad1fd.jpg?v=1731363949&width={width}"
  4526.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4527.          data-aspectratio="1.0"
  4528.          data-sizes="auto"
  4529.          alt="">
  4530.        
  4531.        <a class="product-loop__image-link" href="/products/pilates-reformer-twin" aria-label="Twin Reformer with Tower"></a>
  4532.    </div>
  4533.      <div class="product-loop-element__details ">
  4534.        <p class="product-loop_title ">
  4535.          <a class="p-link--no-accent" href="/products/pilates-reformer-twin" aria-label="Twin Reformer with Tower" >Twin Reformer with Tower</a>
  4536.          
  4537.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4538.        </p><div class="product-loop-element__price  ">
  4539.          
  4540.            
  4541.                <p class="p--bold p--small">£3,444</p>
  4542.              
  4543.          
  4544.        
  4545.          <p data-unit-price-wrapper class="p--small  hidden">
  4546.            <span data-unit-price></span>
  4547.            <span>/</span>
  4548.            <span data-unit-price-measurement-reference-value></span>
  4549.            <span data-unit-price-measurement-reference-unit></span>
  4550.          </p>
  4551.        </div><div class="product-loop-element__swatch">
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.  
  4563.  
  4564.  
  4565.  
  4566.  
  4567.  
  4568.  
  4569.    <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">
  4570.      <div class="tooltip">Black</div>
  4571.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4572.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer.jpg?v=1731363949&width={width}"
  4573.  data-widths="[50, 75, 100, 150, 200]"
  4574.  data-sizes="auto"
  4575.  data-parent-fit="cover"
  4576.  onError="this.style.display = 'none';"
  4577.  alt="Black swatch">
  4578.      </div>
  4579.    </label>
  4580.  
  4581.  
  4582.  
  4583.  
  4584.  
  4585.  
  4586.  
  4587.  
  4588.  
  4589.  
  4590.  
  4591.  
  4592.    <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">
  4593.      <div class="tooltip">Gray</div>
  4594.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4595.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_6d85a0cf-d603-4550-8b40-65e3b2ee97bd.jpg?v=1731363949&width={width}"
  4596.  data-widths="[50, 75, 100, 150, 200]"
  4597.  data-sizes="auto"
  4598.  data-parent-fit="cover"
  4599.  onError="this.style.display = 'none';"
  4600.  alt="Gray swatch">
  4601.      </div>
  4602.    </label>
  4603.  
  4604.  
  4605.  
  4606.  
  4607.  
  4608.  
  4609.  
  4610.  
  4611.  
  4612.  
  4613.  
  4614.  
  4615.    <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">
  4616.      <div class="tooltip">Blue</div>
  4617.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4618.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_bce75720-2326-45ee-94fb-aa511b0b6748.jpg?v=1731689412&width={width}"
  4619.  data-widths="[50, 75, 100, 150, 200]"
  4620.  data-sizes="auto"
  4621.  data-parent-fit="cover"
  4622.  onError="this.style.display = 'none';"
  4623.  alt="Blue swatch">
  4624.      </div>
  4625.    </label>
  4626.  
  4627.  
  4628.  
  4629.  
  4630.  
  4631.  
  4632.  
  4633.  
  4634.  
  4635.  
  4636.  
  4637.  
  4638.    <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">
  4639.      <div class="tooltip">Ocean Blue</div>
  4640.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4641.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_bce75720-2326-45ee-94fb-aa511b0b6748.jpg?v=1731689412&width={width}"
  4642.  data-widths="[50, 75, 100, 150, 200]"
  4643.  data-sizes="auto"
  4644.  data-parent-fit="cover"
  4645.  onError="this.style.display = 'none';"
  4646.  alt="Ocean Blue swatch">
  4647.      </div>
  4648.    </label>
  4649.  
  4650.  
  4651.  
  4652.  
  4653.  
  4654.  
  4655.  
  4656.  
  4657.  
  4658.  
  4659.  
  4660.  
  4661.    <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">
  4662.      <div class="tooltip">Green</div>
  4663.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4664.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_f468c0e0-933c-4d0d-891c-1a0b90da374a.jpg?v=1731689612&width={width}"
  4665.  data-widths="[50, 75, 100, 150, 200]"
  4666.  data-sizes="auto"
  4667.  data-parent-fit="cover"
  4668.  onError="this.style.display = 'none';"
  4669.  alt="Green swatch">
  4670.      </div>
  4671.    </label>
  4672.  
  4673.  
  4674.  
  4675.  
  4676.  
  4677.  
  4678.  
  4679.  
  4680.  
  4681.  
  4682.  
  4683.  
  4684.    <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">
  4685.      <div class="tooltip">Red</div>
  4686.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4687.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_30b6ec06-98ee-425c-b512-410a2c7e147f.jpg?v=1731689653&width={width}"
  4688.  data-widths="[50, 75, 100, 150, 200]"
  4689.  data-sizes="auto"
  4690.  data-parent-fit="cover"
  4691.  onError="this.style.display = 'none';"
  4692.  alt="Red swatch">
  4693.      </div>
  4694.    </label>
  4695.  
  4696.  
  4697.  
  4698.  
  4699.  
  4700.  
  4701.  
  4702.  
  4703.  
  4704.  
  4705.  
  4706.  
  4707.    <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">
  4708.      <div class="tooltip">Ivory</div>
  4709.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4710.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_3186a293-0495-4439-8f30-a8b476819aa5.jpg?v=1731689697&width={width}"
  4711.  data-widths="[50, 75, 100, 150, 200]"
  4712.  data-sizes="auto"
  4713.  data-parent-fit="cover"
  4714.  onError="this.style.display = 'none';"
  4715.  alt="Ivory swatch">
  4716.      </div>
  4717.    </label>
  4718.  
  4719.  
  4720.  
  4721.  
  4722.  
  4723.  
  4724.  
  4725.  
  4726.  
  4727.  
  4728.  
  4729.  
  4730.    <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">
  4731.      <div class="tooltip">Mocha</div>
  4732.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  4733.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/twin-reformer_f956f54a-8033-4582-a875-fe3ff00c3d31.jpg?v=1731689739&width={width}"
  4734.  data-widths="[50, 75, 100, 150, 200]"
  4735.  data-sizes="auto"
  4736.  data-parent-fit="cover"
  4737.  onError="this.style.display = 'none';"
  4738.  alt="Mocha swatch">
  4739.      </div>
  4740.    </label>
  4741.  
  4742.  
  4743.  
  4744.  
  4745. </div></div>
  4746.  </div>
  4747. </div>
  4748.          </div>
  4749.        
  4750.        
  4751.        
  4752.        
  4753.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  4754.            <!-- /snippets/product-loop-item.liquid -->
  4755. <style data-shopify>
  4756.  
  4757.  
  4758.  
  4759.    # {
  4760.      max-width: px;
  4761.      max-height: px;
  4762.    }
  4763.    # {
  4764.      max-width: px;
  4765.      max-height: px;
  4766.    }
  4767.  
  4768.  
  4769.  
  4770. </style>
  4771.  
  4772.  
  4773.  
  4774.  
  4775.  
  4776.  
  4777.  
  4778.  
  4779.  
  4780.  
  4781.  
  4782.  
  4783.  
  4784. <style data-shopify>
  4785.  #product-loop--9295390343510 .product-loop__image-container::before{
  4786.    content: "";
  4787.    width: 1px;
  4788.    margin-left: -1px;
  4789.    float: left;
  4790.    height: 0;
  4791.    padding-top: 100.0%;
  4792.    position: relative;
  4793.  }
  4794.  #product-loop--9295390343510 .product-loop__image-container::after{
  4795.    content: "";
  4796.    display: table;
  4797.    clear: both;
  4798.  }
  4799. </style>
  4800.  
  4801.  
  4802. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_1 ">
  4803. <div id="product-loop--9295390343510" class="product-loop-element ">
  4804.    
  4805.    <div class="product-loop__image-container ">
  4806.        
  4807.        <span class="icon icon-"  aria-hidden="true"></span>
  4808. <span class="fallback-text"></span>
  4809.  
  4810.  
  4811.  
  4812.        
  4813.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_1   "
  4814.          data-parent-fit="cover"
  4815.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-black-edition-with-tower.jpg?v=1731363847&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="Nubium Reformer with Tower | Black">
  4820.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_1   "
  4821.          data-parent-fit="cover"
  4822.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/nubium-reformer-black-edition-with-tower_2ff87a4b-b733-4d2d-9c9c-80b53c27ce44.jpg?v=1731363847&width={width}"
  4823.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  4824.          data-aspectratio="1.0"
  4825.          data-sizes="auto"
  4826.          alt="">
  4827.        
  4828.        <a class="product-loop__image-link" href="/products/pilates-reformerwith-half-tower-nubium-black" aria-label="Nubium Reformer with Tower | Black"></a>
  4829.    </div>
  4830.      <div class="product-loop-element__details ">
  4831.        <p class="product-loop_title ">
  4832.          <a class="p-link--no-accent" href="/products/pilates-reformerwith-half-tower-nubium-black" aria-label="Nubium Reformer with Tower | Black" >Nubium Reformer with Tower | Black</a>
  4833.          
  4834.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  4835.        </p><div class="product-loop-element__price  ">
  4836.          
  4837.            
  4838.                <p class="p--bold p--small">£2,299</p>
  4839.              
  4840.          
  4841.        
  4842.          <p data-unit-price-wrapper class="p--small  hidden">
  4843.            <span data-unit-price></span>
  4844.            <span>/</span>
  4845.            <span data-unit-price-measurement-reference-value></span>
  4846.            <span data-unit-price-measurement-reference-unit></span>
  4847.          </p>
  4848.        </div><div class="product-loop-element__swatch">
  4849. </div></div>
  4850.  </div>
  4851. </div>
  4852.          </div>
  4853.        
  4854.        
  4855.        
  4856.  
  4857.      
  4858.    
  4859.    </div>
  4860.  </div>
  4861. </div>
  4862.  
  4863. <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">
  4864. <!-- /sections/home-featured-collection.liquid -->
  4865. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  4866. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  4867.  
  4868.  
  4869.  
  4870.  
  4871.  
  4872.  
  4873.  
  4874.  
  4875.  
  4876.  
  4877.  
  4878.  
  4879.  
  4880.  
  4881.  
  4882.  
  4883.  
  4884.  
  4885. <style data-shopify>
  4886. #shopify-section-template--24031472877910__featured_collection_2{
  4887.  background-color: var(--color_body_bg);
  4888. }
  4889. .featured-collection__loop{
  4890.  max-width: 100%;
  4891. }
  4892.  
  4893. #section--template--24031472877910__featured_collection_2 .promo__content-wrapper{
  4894.  background-color: #282828;
  4895.  color: #ffffff;
  4896. }
  4897.  
  4898. #section--template--24031472877910__featured_collection_2 h2, #section--template--24031472877910__featured_collection_2 h4 {
  4899.  color: #ffffff;
  4900. }
  4901. #section--template--24031472877910__featured_collection_2 .promo__border {
  4902.  border: solid 1px #ffffff;
  4903. }
  4904. #section--template--24031472877910__featured_collection_2 .promo__overlay{
  4905.  background-color: rgba(35, 35, 35, 0.2);
  4906. }
  4907.  
  4908. .featured-collection__product-border-template--24031472877910__featured_collection_2{
  4909.  border: 1px solid #e6e6e6;
  4910. }
  4911.  
  4912. .promotion_image--template--24031472877910__featured_collection_2{
  4913.  background-image: url(files/pilates-reformers-why-choose-us.webp);
  4914.  background-size: cover;
  4915. }.featured-collection--template--24031472877910__featured_collection_2{
  4916.    background-color: var(--color_body_bg);
  4917.  }
  4918.  .featured-collection__product-border-template--24031472877910__featured_collection_2{
  4919.    border: 1px solid #e6e6e6;
  4920.  }
  4921.  
  4922.  .product-loop__img-template--24031472877910__featured_collection_2--cover{
  4923.    object-fit: cover!important;
  4924.    height: 100%;
  4925. }
  4926. .img--cover{
  4927.  width:100%;
  4928. }
  4929.  
  4930. @media screen and (min-width: 769px){
  4931.  .featured-collection--template--24031472877910__featured_collection_2 .product-loop-element--hover .product-loop__image-link{
  4932.    background-color: rgba(255, 255, 255, 0.25);
  4933.  }
  4934. }
  4935. </style>
  4936. <div id="section-featured-collection--template--24031472877910__featured_collection_2" class="section__standard-spacing--small">
  4937.  <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">
  4938.        
  4939.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  4940.            <!-- /snippets/product-loop-item.liquid -->
  4941. <style data-shopify>
  4942.  
  4943.  
  4944.  
  4945.    # {
  4946.      max-width: px;
  4947.      max-height: px;
  4948.    }
  4949.    # {
  4950.      max-width: px;
  4951.      max-height: px;
  4952.    }
  4953.  
  4954.  
  4955.  
  4956. </style>
  4957.  
  4958.  
  4959.  
  4960.  
  4961.  
  4962.  
  4963.  
  4964.  
  4965.  
  4966.  
  4967.  
  4968.  
  4969.  
  4970. <style data-shopify>
  4971.  #product-loop--9298276319574 .product-loop__image-container::before{
  4972.    content: "";
  4973.    width: 1px;
  4974.    margin-left: -1px;
  4975.    float: left;
  4976.    height: 0;
  4977.    padding-top: 100.0%;
  4978.    position: relative;
  4979.  }
  4980.  #product-loop--9298276319574 .product-loop__image-container::after{
  4981.    content: "";
  4982.    display: table;
  4983.    clear: both;
  4984.  }
  4985. </style>
  4986.  
  4987.  
  4988. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  4989. <div id="product-loop--9298276319574" class="product-loop-element ">
  4990.    
  4991.    <div class="product-loop__image-container ">
  4992.        
  4993.        <span class="icon icon-"  aria-hidden="true"></span>
  4994. <span class="fallback-text"></span>
  4995.  
  4996.  
  4997.  
  4998.        
  4999.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5000.          data-parent-fit="cover"
  5001.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer.jpg?v=1731408231&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="Cadillac Reformer">
  5006.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5007.          data-parent-fit="cover"
  5008.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_567c95e2-5120-49c3-ba14-ac0e7c52016d.jpg?v=1731408231&width={width}"
  5009.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5010.          data-aspectratio="1.0"
  5011.          data-sizes="auto"
  5012.          alt="">
  5013.        
  5014.        <a class="product-loop__image-link" href="/products/pilates-cadillac-reformer" aria-label="Cadillac Reformer"></a>
  5015.    </div>
  5016.      <div class="product-loop-element__details ">
  5017.        <p class="product-loop_title ">
  5018.          <a class="p-link--no-accent" href="/products/pilates-cadillac-reformer" aria-label="Cadillac Reformer" >Cadillac Reformer</a>
  5019.          
  5020.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5021.        </p><div class="product-loop-element__price  ">
  5022.          
  5023.            
  5024.                <p class="p--bold p--small">£3,139</p>
  5025.              
  5026.          
  5027.        
  5028.          <p data-unit-price-wrapper class="p--small  hidden">
  5029.            <span data-unit-price></span>
  5030.            <span>/</span>
  5031.            <span data-unit-price-measurement-reference-value></span>
  5032.            <span data-unit-price-measurement-reference-unit></span>
  5033.          </p>
  5034.        </div><div class="product-loop-element__swatch">
  5035.  
  5036.  
  5037.  
  5038.  
  5039.  
  5040.  
  5041.  
  5042.  
  5043.  
  5044.  
  5045.  
  5046.  
  5047.  
  5048.  
  5049.  
  5050.  
  5051.  
  5052.    <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">
  5053.      <div class="tooltip">Black</div>
  5054.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5055.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer.jpg?v=1731408231&width={width}"
  5056.  data-widths="[50, 75, 100, 150, 200]"
  5057.  data-sizes="auto"
  5058.  data-parent-fit="cover"
  5059.  onError="this.style.display = 'none';"
  5060.  alt="Black swatch">
  5061.      </div>
  5062.    </label>
  5063.  
  5064.  
  5065.  
  5066.  
  5067.  
  5068.  
  5069.  
  5070.  
  5071.  
  5072.  
  5073.  
  5074.  
  5075.    <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">
  5076.      <div class="tooltip">Gray</div>
  5077.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5078.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_14898d2c-f2ef-4adb-8659-92fa4643aac0.jpg?v=1731408231&width={width}"
  5079.  data-widths="[50, 75, 100, 150, 200]"
  5080.  data-sizes="auto"
  5081.  data-parent-fit="cover"
  5082.  onError="this.style.display = 'none';"
  5083.  alt="Gray swatch">
  5084.      </div>
  5085.    </label>
  5086.  
  5087.  
  5088.  
  5089.  
  5090.  
  5091.  
  5092.  
  5093.  
  5094.  
  5095.  
  5096.  
  5097.  
  5098.    <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">
  5099.      <div class="tooltip">Blue</div>
  5100.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5101.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_cd073708-78a3-4b75-abcf-f90f8e808916.jpg?v=1731695000&width={width}"
  5102.  data-widths="[50, 75, 100, 150, 200]"
  5103.  data-sizes="auto"
  5104.  data-parent-fit="cover"
  5105.  onError="this.style.display = 'none';"
  5106.  alt="Blue swatch">
  5107.      </div>
  5108.    </label>
  5109.  
  5110.  
  5111.  
  5112.  
  5113.  
  5114.  
  5115.  
  5116.  
  5117.  
  5118.  
  5119.  
  5120.  
  5121.    <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">
  5122.      <div class="tooltip">Ocean Blue</div>
  5123.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5124.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_f4f1f7db-c9ff-45c1-a26a-23c44cae6d08.jpg?v=1731695016&width={width}"
  5125.  data-widths="[50, 75, 100, 150, 200]"
  5126.  data-sizes="auto"
  5127.  data-parent-fit="cover"
  5128.  onError="this.style.display = 'none';"
  5129.  alt="Ocean Blue swatch">
  5130.      </div>
  5131.    </label>
  5132.  
  5133.  
  5134.  
  5135.  
  5136.  
  5137.  
  5138.  
  5139.  
  5140.  
  5141.  
  5142.  
  5143.  
  5144.    <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">
  5145.      <div class="tooltip">Green</div>
  5146.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5147.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_1b39bd18-4ac4-441c-ae11-5280cd79a9aa.jpg?v=1731695031&width={width}"
  5148.  data-widths="[50, 75, 100, 150, 200]"
  5149.  data-sizes="auto"
  5150.  data-parent-fit="cover"
  5151.  onError="this.style.display = 'none';"
  5152.  alt="Green swatch">
  5153.      </div>
  5154.    </label>
  5155.  
  5156.  
  5157.  
  5158.  
  5159.  
  5160.  
  5161.  
  5162.  
  5163.  
  5164.  
  5165.  
  5166.  
  5167.    <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">
  5168.      <div class="tooltip">Red</div>
  5169.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5170.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_8760601d-a792-483d-aa11-788285c47196.jpg?v=1731695044&width={width}"
  5171.  data-widths="[50, 75, 100, 150, 200]"
  5172.  data-sizes="auto"
  5173.  data-parent-fit="cover"
  5174.  onError="this.style.display = 'none';"
  5175.  alt="Red swatch">
  5176.      </div>
  5177.    </label>
  5178.  
  5179.  
  5180.  
  5181.  
  5182.  
  5183.  
  5184.  
  5185.  
  5186.  
  5187.  
  5188.  
  5189.  
  5190.    <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">
  5191.      <div class="tooltip">Ivory</div>
  5192.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5193.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_36fd50a7-9f36-4529-b804-aa515b920f2f.jpg?v=1731695059&width={width}"
  5194.  data-widths="[50, 75, 100, 150, 200]"
  5195.  data-sizes="auto"
  5196.  data-parent-fit="cover"
  5197.  onError="this.style.display = 'none';"
  5198.  alt="Ivory swatch">
  5199.      </div>
  5200.    </label>
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.  
  5207.  
  5208.  
  5209.  
  5210.  
  5211.  
  5212.  
  5213.    <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">
  5214.      <div class="tooltip">Mocha</div>
  5215.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5216.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer_169d8644-a43a-441b-9e10-e52f884b256e.jpg?v=1731695074&width={width}"
  5217.  data-widths="[50, 75, 100, 150, 200]"
  5218.  data-sizes="auto"
  5219.  data-parent-fit="cover"
  5220.  onError="this.style.display = 'none';"
  5221.  alt="Mocha swatch">
  5222.      </div>
  5223.    </label>
  5224.  
  5225.  
  5226.  
  5227.  
  5228. </div></div>
  5229.  </div>
  5230. </div>
  5231.          </div>
  5232.        
  5233.        
  5234.        
  5235.        
  5236.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  5237.            <!-- /snippets/product-loop-item.liquid -->
  5238. <style data-shopify>
  5239.  
  5240.  
  5241.  
  5242.    # {
  5243.      max-width: px;
  5244.      max-height: px;
  5245.    }
  5246.    # {
  5247.      max-width: px;
  5248.      max-height: px;
  5249.    }
  5250.  
  5251.  
  5252.  
  5253. </style>
  5254.  
  5255.  
  5256.  
  5257.  
  5258.  
  5259.  
  5260.  
  5261.  
  5262.  
  5263.  
  5264.  
  5265.  
  5266.  
  5267. <style data-shopify>
  5268.  #product-loop--9298276057430 .product-loop__image-container::before{
  5269.    content: "";
  5270.    width: 1px;
  5271.    margin-left: -1px;
  5272.    float: left;
  5273.    height: 0;
  5274.    padding-top: 100.0%;
  5275.    position: relative;
  5276.  }
  5277.  #product-loop--9298276057430 .product-loop__image-container::after{
  5278.    content: "";
  5279.    display: table;
  5280.    clear: both;
  5281.  }
  5282. </style>
  5283.  
  5284.  
  5285. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5286. <div id="product-loop--9298276057430" class="product-loop-element ">
  5287.    
  5288.    <div class="product-loop__image-container ">
  5289.        
  5290.        <span class="icon icon-"  aria-hidden="true"></span>
  5291. <span class="fallback-text"></span>
  5292.  
  5293.  
  5294.  
  5295.        
  5296.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5297.          data-parent-fit="cover"
  5298.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite.jpg?v=1731408213&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="Cadillac Reformer | Elite">
  5303.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5304.          data-parent-fit="cover"
  5305.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_e9712248-79cb-4c48-8a38-20a7a65816ac.jpg?v=1731408213&width={width}"
  5306.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5307.          data-aspectratio="1.0"
  5308.          data-sizes="auto"
  5309.          alt="">
  5310.        
  5311.        <a class="product-loop__image-link" href="/products/pilates-cadillac-reformer-elite" aria-label="Cadillac Reformer | Elite"></a>
  5312.    </div>
  5313.      <div class="product-loop-element__details ">
  5314.        <p class="product-loop_title ">
  5315.          <a class="p-link--no-accent" href="/products/pilates-cadillac-reformer-elite" aria-label="Cadillac Reformer | Elite" >Cadillac Reformer | Elite</a>
  5316.          
  5317.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5318.        </p><div class="product-loop-element__price  ">
  5319.          
  5320.            
  5321.                <p class="p--bold p--small">£3,435</p>
  5322.              
  5323.          
  5324.        
  5325.          <p data-unit-price-wrapper class="p--small  hidden">
  5326.            <span data-unit-price></span>
  5327.            <span>/</span>
  5328.            <span data-unit-price-measurement-reference-value></span>
  5329.            <span data-unit-price-measurement-reference-unit></span>
  5330.          </p>
  5331.        </div><div class="product-loop-element__swatch">
  5332.  
  5333.  
  5334.  
  5335.  
  5336.  
  5337.  
  5338.  
  5339.  
  5340.  
  5341.  
  5342.  
  5343.  
  5344.  
  5345.  
  5346.  
  5347.  
  5348.  
  5349.    <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">
  5350.      <div class="tooltip">Black</div>
  5351.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5352.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite.jpg?v=1731408213&width={width}"
  5353.  data-widths="[50, 75, 100, 150, 200]"
  5354.  data-sizes="auto"
  5355.  data-parent-fit="cover"
  5356.  onError="this.style.display = 'none';"
  5357.  alt="Black swatch">
  5358.      </div>
  5359.    </label>
  5360.  
  5361.  
  5362.  
  5363.  
  5364.  
  5365.  
  5366.  
  5367.  
  5368.  
  5369.  
  5370.  
  5371.  
  5372.    <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">
  5373.      <div class="tooltip">Gray</div>
  5374.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5375.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_178e5f09-042b-4b05-ba02-0ee5ffb9bf8b.jpg?v=1731408213&width={width}"
  5376.  data-widths="[50, 75, 100, 150, 200]"
  5377.  data-sizes="auto"
  5378.  data-parent-fit="cover"
  5379.  onError="this.style.display = 'none';"
  5380.  alt="Gray swatch">
  5381.      </div>
  5382.    </label>
  5383.  
  5384.  
  5385.  
  5386.  
  5387.  
  5388.  
  5389.  
  5390.  
  5391.  
  5392.  
  5393.  
  5394.  
  5395.    <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">
  5396.      <div class="tooltip">Blue</div>
  5397.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5398.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_d75e553a-302b-440e-8d95-a63794be8e21.jpg?v=1731695440&width={width}"
  5399.  data-widths="[50, 75, 100, 150, 200]"
  5400.  data-sizes="auto"
  5401.  data-parent-fit="cover"
  5402.  onError="this.style.display = 'none';"
  5403.  alt="Blue swatch">
  5404.      </div>
  5405.    </label>
  5406.  
  5407.  
  5408.  
  5409.  
  5410.  
  5411.  
  5412.  
  5413.  
  5414.  
  5415.  
  5416.  
  5417.  
  5418.    <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">
  5419.      <div class="tooltip">Ocean Blue</div>
  5420.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5421.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_7d67f741-c9af-475e-9a6d-e8fbf6a0b5a0.jpg?v=1731695460&width={width}"
  5422.  data-widths="[50, 75, 100, 150, 200]"
  5423.  data-sizes="auto"
  5424.  data-parent-fit="cover"
  5425.  onError="this.style.display = 'none';"
  5426.  alt="Ocean Blue swatch">
  5427.      </div>
  5428.    </label>
  5429.  
  5430.  
  5431.  
  5432.  
  5433.  
  5434.  
  5435.  
  5436.  
  5437.  
  5438.  
  5439.  
  5440.  
  5441.    <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">
  5442.      <div class="tooltip">Green</div>
  5443.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5444.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_70fad9c3-f304-41a3-8777-00ebb0544bfb.jpg?v=1731695477&width={width}"
  5445.  data-widths="[50, 75, 100, 150, 200]"
  5446.  data-sizes="auto"
  5447.  data-parent-fit="cover"
  5448.  onError="this.style.display = 'none';"
  5449.  alt="Green swatch">
  5450.      </div>
  5451.    </label>
  5452.  
  5453.  
  5454.  
  5455.  
  5456.  
  5457.  
  5458.  
  5459.  
  5460.  
  5461.  
  5462.  
  5463.  
  5464.    <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">
  5465.      <div class="tooltip">Red</div>
  5466.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5467.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_35613115-add4-4a00-883c-7862791f8542.jpg?v=1731695496&width={width}"
  5468.  data-widths="[50, 75, 100, 150, 200]"
  5469.  data-sizes="auto"
  5470.  data-parent-fit="cover"
  5471.  onError="this.style.display = 'none';"
  5472.  alt="Red swatch">
  5473.      </div>
  5474.    </label>
  5475.  
  5476.  
  5477.  
  5478.  
  5479.  
  5480.  
  5481.  
  5482.  
  5483.  
  5484.  
  5485.  
  5486.  
  5487.    <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">
  5488.      <div class="tooltip">Ivory</div>
  5489.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5490.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_debf05c2-6320-4055-9eaf-f033f5f6e025.jpg?v=1731695514&width={width}"
  5491.  data-widths="[50, 75, 100, 150, 200]"
  5492.  data-sizes="auto"
  5493.  data-parent-fit="cover"
  5494.  onError="this.style.display = 'none';"
  5495.  alt="Ivory swatch">
  5496.      </div>
  5497.    </label>
  5498.  
  5499.  
  5500.  
  5501.  
  5502.  
  5503.  
  5504.  
  5505.  
  5506.  
  5507.  
  5508.  
  5509.  
  5510.    <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">
  5511.      <div class="tooltip">Mocha</div>
  5512.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5513.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-reformer-elite_cff99d42-f3ab-4ab7-bba3-8107a81df004.jpg?v=1731695535&width={width}"
  5514.  data-widths="[50, 75, 100, 150, 200]"
  5515.  data-sizes="auto"
  5516.  data-parent-fit="cover"
  5517.  onError="this.style.display = 'none';"
  5518.  alt="Mocha swatch">
  5519.      </div>
  5520.    </label>
  5521.  
  5522.  
  5523.  
  5524.  
  5525. </div></div>
  5526.  </div>
  5527. </div>
  5528.          </div>
  5529.        
  5530.        
  5531.        
  5532.        
  5533.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  5534.            <!-- /snippets/product-loop-item.liquid -->
  5535. <style data-shopify>
  5536.  
  5537.  
  5538.  
  5539.    # {
  5540.      max-width: px;
  5541.      max-height: px;
  5542.    }
  5543.    # {
  5544.      max-width: px;
  5545.      max-height: px;
  5546.    }
  5547.  
  5548.  
  5549.  
  5550. </style>
  5551.  
  5552.  
  5553.  
  5554.  
  5555.  
  5556.  
  5557.  
  5558.  
  5559.  
  5560.  
  5561.  
  5562.  
  5563.  
  5564. <style data-shopify>
  5565.  #product-loop--9298275074390 .product-loop__image-container::before{
  5566.    content: "";
  5567.    width: 1px;
  5568.    margin-left: -1px;
  5569.    float: left;
  5570.    height: 0;
  5571.    padding-top: 100.0%;
  5572.    position: relative;
  5573.  }
  5574.  #product-loop--9298275074390 .product-loop__image-container::after{
  5575.    content: "";
  5576.    display: table;
  5577.    clear: both;
  5578.  }
  5579. </style>
  5580.  
  5581.  
  5582. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5583. <div id="product-loop--9298275074390" class="product-loop-element ">
  5584.    
  5585.    <div class="product-loop__image-container ">
  5586.        
  5587.        <span class="icon icon-"  aria-hidden="true"></span>
  5588. <span class="fallback-text"></span>
  5589.  
  5590.  
  5591.  
  5592.        
  5593.        <img class="product-loop__primary-image lazyload section__load-animations--fade  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.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="Classic Cadillac | Aluminium">
  5600.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5601.          data-parent-fit="cover"
  5602.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_a48ef727-894f-4bc0-a6c7-618a362114a1.jpg?v=1731408182&width={width}"
  5603.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5604.          data-aspectratio="1.0"
  5605.          data-sizes="auto"
  5606.          alt="">
  5607.        
  5608.        <a class="product-loop__image-link" href="/products/pilates-cadillac-trapeze-aluminium-classic" aria-label="Classic Cadillac | Aluminium"></a>
  5609.    </div>
  5610.      <div class="product-loop-element__details ">
  5611.        <p class="product-loop_title ">
  5612.          <a class="p-link--no-accent" href="/products/pilates-cadillac-trapeze-aluminium-classic" aria-label="Classic Cadillac | Aluminium" >Classic Cadillac | Aluminium</a>
  5613.          
  5614.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5615.        </p><div class="product-loop-element__price  ">
  5616.          
  5617.            
  5618.                <p class="p--bold p--small">£3,299</p>
  5619.              
  5620.          
  5621.        
  5622.          <p data-unit-price-wrapper class="p--small  hidden">
  5623.            <span data-unit-price></span>
  5624.            <span>/</span>
  5625.            <span data-unit-price-measurement-reference-value></span>
  5626.            <span data-unit-price-measurement-reference-unit></span>
  5627.          </p>
  5628.        </div><div class="product-loop-element__swatch">
  5629.  
  5630.  
  5631.  
  5632.  
  5633.  
  5634.  
  5635.  
  5636.  
  5637.  
  5638.  
  5639.  
  5640.  
  5641.  
  5642.  
  5643.  
  5644.  
  5645.  
  5646.    <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">
  5647.      <div class="tooltip">Black</div>
  5648.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5649.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio.jpg?v=1731408182&width={width}"
  5650.  data-widths="[50, 75, 100, 150, 200]"
  5651.  data-sizes="auto"
  5652.  data-parent-fit="cover"
  5653.  onError="this.style.display = 'none';"
  5654.  alt="Black swatch">
  5655.      </div>
  5656.    </label>
  5657.  
  5658.  
  5659.  
  5660.  
  5661.  
  5662.  
  5663.  
  5664.  
  5665.  
  5666.  
  5667.  
  5668.  
  5669.    <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">
  5670.      <div class="tooltip">Gray</div>
  5671.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5672.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_9f345600-4356-43bc-a34f-8e4117dbf86c.jpg?v=1731408182&width={width}"
  5673.  data-widths="[50, 75, 100, 150, 200]"
  5674.  data-sizes="auto"
  5675.  data-parent-fit="cover"
  5676.  onError="this.style.display = 'none';"
  5677.  alt="Gray swatch">
  5678.      </div>
  5679.    </label>
  5680.  
  5681.  
  5682.  
  5683.  
  5684.  
  5685.  
  5686.  
  5687.  
  5688.  
  5689.  
  5690.  
  5691.  
  5692.    <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">
  5693.      <div class="tooltip">Blue</div>
  5694.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5695.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_e994be8b-543a-42ea-a439-26921a22fe01.jpg?v=1731695886&width={width}"
  5696.  data-widths="[50, 75, 100, 150, 200]"
  5697.  data-sizes="auto"
  5698.  data-parent-fit="cover"
  5699.  onError="this.style.display = 'none';"
  5700.  alt="Blue swatch">
  5701.      </div>
  5702.    </label>
  5703.  
  5704.  
  5705.  
  5706.  
  5707.  
  5708.  
  5709.  
  5710.  
  5711.  
  5712.  
  5713.  
  5714.  
  5715.    <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">
  5716.      <div class="tooltip">Ocean Blue</div>
  5717.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5718.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_c00654df-248a-4fd4-9bc6-56b6d9ec8960.jpg?v=1731695897&width={width}"
  5719.  data-widths="[50, 75, 100, 150, 200]"
  5720.  data-sizes="auto"
  5721.  data-parent-fit="cover"
  5722.  onError="this.style.display = 'none';"
  5723.  alt="Ocean Blue swatch">
  5724.      </div>
  5725.    </label>
  5726.  
  5727.  
  5728.  
  5729.  
  5730.  
  5731.  
  5732.  
  5733.  
  5734.  
  5735.  
  5736.  
  5737.  
  5738.    <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">
  5739.      <div class="tooltip">Green</div>
  5740.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5741.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_dce59ab7-0a43-4d07-8845-ce25c53419dd.jpg?v=1731695909&width={width}"
  5742.  data-widths="[50, 75, 100, 150, 200]"
  5743.  data-sizes="auto"
  5744.  data-parent-fit="cover"
  5745.  onError="this.style.display = 'none';"
  5746.  alt="Green swatch">
  5747.      </div>
  5748.    </label>
  5749.  
  5750.  
  5751.  
  5752.  
  5753.  
  5754.  
  5755.  
  5756.  
  5757.  
  5758.  
  5759.  
  5760.  
  5761.    <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">
  5762.      <div class="tooltip">Red</div>
  5763.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5764.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_cea86dd5-734a-4d02-a895-3b1277aa1654.jpg?v=1731695921&width={width}"
  5765.  data-widths="[50, 75, 100, 150, 200]"
  5766.  data-sizes="auto"
  5767.  data-parent-fit="cover"
  5768.  onError="this.style.display = 'none';"
  5769.  alt="Red swatch">
  5770.      </div>
  5771.    </label>
  5772.  
  5773.  
  5774.  
  5775.  
  5776.  
  5777.  
  5778.  
  5779.  
  5780.  
  5781.  
  5782.  
  5783.  
  5784.    <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">
  5785.      <div class="tooltip">Ivory</div>
  5786.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5787.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_aafa17b6-95cd-49e9-aff0-1bc096fb42bb.jpg?v=1731695932&width={width}"
  5788.  data-widths="[50, 75, 100, 150, 200]"
  5789.  data-sizes="auto"
  5790.  data-parent-fit="cover"
  5791.  onError="this.style.display = 'none';"
  5792.  alt="Ivory swatch">
  5793.      </div>
  5794.    </label>
  5795.  
  5796.  
  5797.  
  5798.  
  5799.  
  5800.  
  5801.  
  5802.  
  5803.  
  5804.  
  5805.  
  5806.  
  5807.    <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">
  5808.      <div class="tooltip">Mocha</div>
  5809.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5810.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac-clasico-aluminio_f9abd255-23d9-4106-82e4-bbfbcba2dbed.jpg?v=1731695943&width={width}"
  5811.  data-widths="[50, 75, 100, 150, 200]"
  5812.  data-sizes="auto"
  5813.  data-parent-fit="cover"
  5814.  onError="this.style.display = 'none';"
  5815.  alt="Mocha swatch">
  5816.      </div>
  5817.    </label>
  5818.  
  5819.  
  5820.  
  5821.  
  5822. </div></div>
  5823.  </div>
  5824. </div>
  5825.          </div>
  5826.        
  5827.        
  5828.        
  5829.        
  5830.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  5831.            <!-- /snippets/product-loop-item.liquid -->
  5832. <style data-shopify>
  5833.  
  5834.  
  5835.  
  5836.    # {
  5837.      max-width: px;
  5838.      max-height: px;
  5839.    }
  5840.    # {
  5841.      max-width: px;
  5842.      max-height: px;
  5843.    }
  5844.  
  5845.  
  5846.  
  5847. </style>
  5848.  
  5849.  
  5850.  
  5851.  
  5852.  
  5853.  
  5854.  
  5855.  
  5856.  
  5857.  
  5858.  
  5859.  
  5860.  
  5861. <style data-shopify>
  5862.  #product-loop--9298274648406 .product-loop__image-container::before{
  5863.    content: "";
  5864.    width: 1px;
  5865.    margin-left: -1px;
  5866.    float: left;
  5867.    height: 0;
  5868.    padding-top: 100.0%;
  5869.    position: relative;
  5870.  }
  5871.  #product-loop--9298274648406 .product-loop__image-container::after{
  5872.    content: "";
  5873.    display: table;
  5874.    clear: both;
  5875.  }
  5876. </style>
  5877.  
  5878.  
  5879. <div class="card-background featured-collection__product-border-template--24031472877910__featured_collection_2 ">
  5880. <div id="product-loop--9298274648406" class="product-loop-element ">
  5881.    
  5882.    <div class="product-loop__image-container ">
  5883.        
  5884.        <span class="icon icon-"  aria-hidden="true"></span>
  5885. <span class="fallback-text"></span>
  5886.  
  5887.  
  5888.  
  5889.        
  5890.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__featured_collection_2   "
  5891.          data-parent-fit="cover"
  5892.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac.jpg?v=1731408166&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="Cadillac">
  5897.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__featured_collection_2   "
  5898.          data-parent-fit="cover"
  5899.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_dc6b9f55-540f-4cf3-89c0-88740ec37985.jpg?v=1731408166&width={width}"
  5900.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  5901.          data-aspectratio="1.0"
  5902.          data-sizes="auto"
  5903.          alt="">
  5904.        
  5905.        <a class="product-loop__image-link" href="/products/pilates-cadillac-trapeze" aria-label="Cadillac"></a>
  5906.    </div>
  5907.      <div class="product-loop-element__details ">
  5908.        <p class="product-loop_title ">
  5909.          <a class="p-link--no-accent" href="/products/pilates-cadillac-trapeze" aria-label="Cadillac" >Cadillac</a>
  5910.          
  5911.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  5912.        </p><div class="product-loop-element__price  ">
  5913.          
  5914.            
  5915.                <p class="p--bold p--small">£2,309</p>
  5916.              
  5917.          
  5918.        
  5919.          <p data-unit-price-wrapper class="p--small  hidden">
  5920.            <span data-unit-price></span>
  5921.            <span>/</span>
  5922.            <span data-unit-price-measurement-reference-value></span>
  5923.            <span data-unit-price-measurement-reference-unit></span>
  5924.          </p>
  5925.        </div><div class="product-loop-element__swatch">
  5926.  
  5927.  
  5928.  
  5929.  
  5930.  
  5931.  
  5932.  
  5933.  
  5934.  
  5935.  
  5936.  
  5937.  
  5938.  
  5939.  
  5940.  
  5941.  
  5942.  
  5943.    <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">
  5944.      <div class="tooltip">Black</div>
  5945.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5946.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac.jpg?v=1731408166&width={width}"
  5947.  data-widths="[50, 75, 100, 150, 200]"
  5948.  data-sizes="auto"
  5949.  data-parent-fit="cover"
  5950.  onError="this.style.display = 'none';"
  5951.  alt="Black swatch">
  5952.      </div>
  5953.    </label>
  5954.  
  5955.  
  5956.  
  5957.  
  5958.  
  5959.  
  5960.  
  5961.  
  5962.  
  5963.  
  5964.  
  5965.  
  5966.    <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">
  5967.      <div class="tooltip">Gray</div>
  5968.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5969.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_26a7f043-7ddb-4d21-ba87-02b369b5ebda.jpg?v=1731408166&width={width}"
  5970.  data-widths="[50, 75, 100, 150, 200]"
  5971.  data-sizes="auto"
  5972.  data-parent-fit="cover"
  5973.  onError="this.style.display = 'none';"
  5974.  alt="Gray swatch">
  5975.      </div>
  5976.    </label>
  5977.  
  5978.  
  5979.  
  5980.  
  5981.  
  5982.  
  5983.  
  5984.  
  5985.  
  5986.  
  5987.  
  5988.  
  5989.    <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">
  5990.      <div class="tooltip">Blue</div>
  5991.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  5992.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_b9cd8184-9671-473c-9a74-cac9387015f5.jpg?v=1731694078&width={width}"
  5993.  data-widths="[50, 75, 100, 150, 200]"
  5994.  data-sizes="auto"
  5995.  data-parent-fit="cover"
  5996.  onError="this.style.display = 'none';"
  5997.  alt="Blue swatch">
  5998.      </div>
  5999.    </label>
  6000.  
  6001.  
  6002.  
  6003.  
  6004.  
  6005.  
  6006.  
  6007.  
  6008.  
  6009.  
  6010.  
  6011.  
  6012.    <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">
  6013.      <div class="tooltip">Ocean Blue</div>
  6014.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6015.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_e400f8fc-4c23-4bac-b267-58fe997f4b97.jpg?v=1731694090&width={width}"
  6016.  data-widths="[50, 75, 100, 150, 200]"
  6017.  data-sizes="auto"
  6018.  data-parent-fit="cover"
  6019.  onError="this.style.display = 'none';"
  6020.  alt="Ocean Blue swatch">
  6021.      </div>
  6022.    </label>
  6023.  
  6024.  
  6025.  
  6026.  
  6027.  
  6028.  
  6029.  
  6030.  
  6031.  
  6032.  
  6033.  
  6034.  
  6035.    <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">
  6036.      <div class="tooltip">Green</div>
  6037.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6038.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_fdeff116-f437-4710-acd8-d809c4c9fd98.jpg?v=1731694102&width={width}"
  6039.  data-widths="[50, 75, 100, 150, 200]"
  6040.  data-sizes="auto"
  6041.  data-parent-fit="cover"
  6042.  onError="this.style.display = 'none';"
  6043.  alt="Green swatch">
  6044.      </div>
  6045.    </label>
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.  
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058.    <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">
  6059.      <div class="tooltip">Red</div>
  6060.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6061.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_8734e182-35d7-40b1-a123-f61e8312a17e.jpg?v=1731694113&width={width}"
  6062.  data-widths="[50, 75, 100, 150, 200]"
  6063.  data-sizes="auto"
  6064.  data-parent-fit="cover"
  6065.  onError="this.style.display = 'none';"
  6066.  alt="Red swatch">
  6067.      </div>
  6068.    </label>
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074.  
  6075.  
  6076.  
  6077.  
  6078.  
  6079.  
  6080.  
  6081.    <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">
  6082.      <div class="tooltip">Ivory</div>
  6083.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6084.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_a991c070-fba2-43eb-b433-35d907d34925.jpg?v=1731694127&width={width}"
  6085.  data-widths="[50, 75, 100, 150, 200]"
  6086.  data-sizes="auto"
  6087.  data-parent-fit="cover"
  6088.  onError="this.style.display = 'none';"
  6089.  alt="Ivory swatch">
  6090.      </div>
  6091.    </label>
  6092.  
  6093.  
  6094.  
  6095.  
  6096.  
  6097.  
  6098.  
  6099.  
  6100.  
  6101.  
  6102.  
  6103.  
  6104.    <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">
  6105.      <div class="tooltip">Mocha</div>
  6106.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6107.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/cadillac_c83fdaba-8dff-4496-91d0-446e89376e7a.jpg?v=1731694139&width={width}"
  6108.  data-widths="[50, 75, 100, 150, 200]"
  6109.  data-sizes="auto"
  6110.  data-parent-fit="cover"
  6111.  onError="this.style.display = 'none';"
  6112.  alt="Mocha swatch">
  6113.      </div>
  6114.    </label>
  6115.  
  6116.  
  6117.  
  6118.  
  6119. </div></div>
  6120.  </div>
  6121. </div>
  6122.          </div>
  6123.        
  6124.        
  6125.        
  6126.  
  6127.      
  6128.    
  6129.    </div>
  6130.  </div>
  6131. </div>
  6132.  
  6133. <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">
  6134. <!-- /sections/home-featured-collection.liquid -->
  6135. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/component-price.css?v=33945095323007485641732721636" rel="stylesheet" type="text/css" media="all" />
  6136. <link href="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/section-main-product.css?v=171573473304332452191732735471" rel="stylesheet" type="text/css" media="all" />
  6137.  
  6138.  
  6139.  
  6140.  
  6141.  
  6142.  
  6143.  
  6144.  
  6145.  
  6146.  
  6147.  
  6148.  
  6149.  
  6150.  
  6151.  
  6152.  
  6153.  
  6154.  
  6155. <style data-shopify>
  6156. #shopify-section-template--24031472877910__main_featured_collection_t4Vcej{
  6157.  background-color: var(--color_body_bg);
  6158. }
  6159. .featured-collection__loop{
  6160.  max-width: 100%;
  6161. }
  6162.  
  6163. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__content-wrapper{
  6164.  background-color: #282828;
  6165.  color: #ffffff;
  6166. }
  6167.  
  6168. #section--template--24031472877910__main_featured_collection_t4Vcej h2, #section--template--24031472877910__main_featured_collection_t4Vcej h4 {
  6169.  color: #ffffff;
  6170. }
  6171. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__border {
  6172.  border: solid 1px #ffffff;
  6173. }
  6174. #section--template--24031472877910__main_featured_collection_t4Vcej .promo__overlay{
  6175.  background-color: rgba(255, 255, 255, 0.25);
  6176. }
  6177.  
  6178. .featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej{
  6179.  border: 1px solid #e6e6e6;
  6180. }
  6181.  
  6182. .promotion_image--template--24031472877910__main_featured_collection_t4Vcej{
  6183.  background-image: url();
  6184.  background-size: cover;
  6185. }.featured-collection--template--24031472877910__main_featured_collection_t4Vcej{
  6186.    background-color: var(--color_body_bg);
  6187.  }
  6188.  .featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej{
  6189.    border: 1px solid #e6e6e6;
  6190.  }
  6191.  
  6192.  .product-loop__img-template--24031472877910__main_featured_collection_t4Vcej--cover{
  6193.    object-fit: cover!important;
  6194.    height: 100%;
  6195. }
  6196. .img--cover{
  6197.  width:100%;
  6198. }
  6199.  
  6200. @media screen and (min-width: 769px){
  6201.  .featured-collection--template--24031472877910__main_featured_collection_t4Vcej .product-loop-element--hover .product-loop__image-link{
  6202.    background-color: rgba(255, 255, 255, 0.25);
  6203.  }
  6204. }
  6205. </style>
  6206. <div id="section-featured-collection--template--24031472877910__main_featured_collection_t4Vcej" class="section__standard-spacing--large">
  6207.  <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">
  6208.        
  6209.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__1--slider-true--image-false ">
  6210.            <!-- /snippets/product-loop-item.liquid -->
  6211. <style data-shopify>
  6212.  
  6213.  
  6214.  
  6215.    # {
  6216.      max-width: px;
  6217.      max-height: px;
  6218.    }
  6219.    # {
  6220.      max-width: px;
  6221.      max-height: px;
  6222.    }
  6223.  
  6224.  
  6225.  
  6226. </style>
  6227.  
  6228.  
  6229.  
  6230.  
  6231.  
  6232.  
  6233.  
  6234.  
  6235.  
  6236.  
  6237.  
  6238.  
  6239.  
  6240. <style data-shopify>
  6241.  #product-loop--9298464375126 .product-loop__image-container::before{
  6242.    content: "";
  6243.    width: 1px;
  6244.    margin-left: -1px;
  6245.    float: left;
  6246.    height: 0;
  6247.    padding-top: 111.11111111111111%;
  6248.    position: relative;
  6249.  }
  6250.  #product-loop--9298464375126 .product-loop__image-container::after{
  6251.    content: "";
  6252.    display: table;
  6253.    clear: both;
  6254.  }
  6255. </style>
  6256.  
  6257.  
  6258. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6259. <div id="product-loop--9298464375126" class="product-loop-element ">
  6260.    
  6261.    <div class="product-loop__image-container ">
  6262.        
  6263.        <span class="icon icon-"  aria-hidden="true"></span>
  6264. <span class="fallback-text"></span>
  6265.  
  6266.  
  6267.  
  6268.        
  6269.        <img class="product-loop__primary-image lazyload section__load-animations--fade  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.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="Wunda Chair">
  6276.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6277.          data-parent-fit="cover"
  6278.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_e976a731-d28e-4e0c-9bed-c5c1e2c47669.jpg?v=1731415118&width={width}"
  6279.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6280.          data-aspectratio="1.0"
  6281.          data-sizes="auto"
  6282.          alt="">
  6283.        
  6284.        <a class="product-loop__image-link" href="/products/pilates-chair-wunda" aria-label="Wunda Chair"></a>
  6285.    </div>
  6286.      <div class="product-loop-element__details ">
  6287.        <p class="product-loop_title ">
  6288.          <a class="p-link--no-accent" href="/products/pilates-chair-wunda" aria-label="Wunda Chair" >Wunda Chair</a>
  6289.          
  6290.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6291.        </p><div class="product-loop-element__price  ">
  6292.          
  6293.            
  6294.                <p class="p--bold p--small">£899</p>
  6295.              
  6296.          
  6297.        
  6298.          <p data-unit-price-wrapper class="p--small  hidden">
  6299.            <span data-unit-price></span>
  6300.            <span>/</span>
  6301.            <span data-unit-price-measurement-reference-value></span>
  6302.            <span data-unit-price-measurement-reference-unit></span>
  6303.          </p>
  6304.        </div><div class="product-loop-element__swatch">
  6305.  
  6306.  
  6307.  
  6308.  
  6309.  
  6310.  
  6311.  
  6312.  
  6313.  
  6314.  
  6315.  
  6316.  
  6317.  
  6318.  
  6319.  
  6320.  
  6321.  
  6322.    <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">
  6323.      <div class="tooltip">Black</div>
  6324.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6325.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair.jpg?v=1731415118&width={width}"
  6326.  data-widths="[50, 75, 100, 150, 200]"
  6327.  data-sizes="auto"
  6328.  data-parent-fit="cover"
  6329.  onError="this.style.display = 'none';"
  6330.  alt="Black swatch">
  6331.      </div>
  6332.    </label>
  6333.  
  6334.  
  6335.  
  6336.  
  6337.  
  6338.  
  6339.  
  6340.  
  6341.  
  6342.  
  6343.  
  6344.  
  6345.    <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">
  6346.      <div class="tooltip">Gray</div>
  6347.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6348.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_6cef831c-a430-4392-a21e-7f7ebbba828e.jpg?v=1731415118&width={width}"
  6349.  data-widths="[50, 75, 100, 150, 200]"
  6350.  data-sizes="auto"
  6351.  data-parent-fit="cover"
  6352.  onError="this.style.display = 'none';"
  6353.  alt="Gray swatch">
  6354.      </div>
  6355.    </label>
  6356.  
  6357.  
  6358.  
  6359.  
  6360.  
  6361.  
  6362.  
  6363.  
  6364.  
  6365.  
  6366.  
  6367.  
  6368.    <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">
  6369.      <div class="tooltip">Blue</div>
  6370.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6371.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_e803d3e0-8f6d-478a-acaa-25e4a2114473.jpg?v=1731699616&width={width}"
  6372.  data-widths="[50, 75, 100, 150, 200]"
  6373.  data-sizes="auto"
  6374.  data-parent-fit="cover"
  6375.  onError="this.style.display = 'none';"
  6376.  alt="Blue swatch">
  6377.      </div>
  6378.    </label>
  6379.  
  6380.  
  6381.  
  6382.  
  6383.  
  6384.  
  6385.  
  6386.  
  6387.  
  6388.  
  6389.  
  6390.  
  6391.    <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">
  6392.      <div class="tooltip">Ocean Blue</div>
  6393.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6394.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_d8dd49f9-9d61-49ae-b9c2-603e7369f8af.jpg?v=1731699684&width={width}"
  6395.  data-widths="[50, 75, 100, 150, 200]"
  6396.  data-sizes="auto"
  6397.  data-parent-fit="cover"
  6398.  onError="this.style.display = 'none';"
  6399.  alt="Ocean Blue swatch">
  6400.      </div>
  6401.    </label>
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.    <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">
  6415.      <div class="tooltip">Green</div>
  6416.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6417.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_5cbf919e-13cb-4837-a4c1-c6fc64750011.jpg?v=1731699624&width={width}"
  6418.  data-widths="[50, 75, 100, 150, 200]"
  6419.  data-sizes="auto"
  6420.  data-parent-fit="cover"
  6421.  onError="this.style.display = 'none';"
  6422.  alt="Green swatch">
  6423.      </div>
  6424.    </label>
  6425.  
  6426.  
  6427.  
  6428.  
  6429.  
  6430.  
  6431.  
  6432.  
  6433.  
  6434.  
  6435.  
  6436.  
  6437.    <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">
  6438.      <div class="tooltip">Red</div>
  6439.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6440.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_46bda9f1-7195-4a81-8012-98572dfa4f6c.jpg?v=1731699632&width={width}"
  6441.  data-widths="[50, 75, 100, 150, 200]"
  6442.  data-sizes="auto"
  6443.  data-parent-fit="cover"
  6444.  onError="this.style.display = 'none';"
  6445.  alt="Red swatch">
  6446.      </div>
  6447.    </label>
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.  
  6457.  
  6458.  
  6459.  
  6460.    <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">
  6461.      <div class="tooltip">Ivory</div>
  6462.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6463.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_32d29d26-3893-48df-9f5b-288b90ed5cd5.jpg?v=1731699640&width={width}"
  6464.  data-widths="[50, 75, 100, 150, 200]"
  6465.  data-sizes="auto"
  6466.  data-parent-fit="cover"
  6467.  onError="this.style.display = 'none';"
  6468.  alt="Ivory swatch">
  6469.      </div>
  6470.    </label>
  6471.  
  6472.  
  6473.  
  6474.  
  6475.  
  6476.  
  6477.  
  6478.  
  6479.  
  6480.  
  6481.  
  6482.  
  6483.    <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">
  6484.      <div class="tooltip">Mocha</div>
  6485.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6486.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wunda-chair_4f99a1cd-eff8-492a-b0d6-2973a2cdb98c.jpg?v=1731699647&width={width}"
  6487.  data-widths="[50, 75, 100, 150, 200]"
  6488.  data-sizes="auto"
  6489.  data-parent-fit="cover"
  6490.  onError="this.style.display = 'none';"
  6491.  alt="Mocha swatch">
  6492.      </div>
  6493.    </label>
  6494.  
  6495.  
  6496.  
  6497.  
  6498. </div></div>
  6499.  </div>
  6500. </div>
  6501.          </div>
  6502.        
  6503.        
  6504.        
  6505.        
  6506.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__2--slider-true--image-false ">
  6507.            <!-- /snippets/product-loop-item.liquid -->
  6508. <style data-shopify>
  6509.  
  6510.  
  6511.  
  6512.    # {
  6513.      max-width: px;
  6514.      max-height: px;
  6515.    }
  6516.    # {
  6517.      max-width: px;
  6518.      max-height: px;
  6519.    }
  6520.  
  6521.  
  6522.  
  6523. </style>
  6524.  
  6525.  
  6526.  
  6527.  
  6528.  
  6529.  
  6530.  
  6531.  
  6532.  
  6533.  
  6534.  
  6535.  
  6536.  
  6537. <style data-shopify>
  6538.  #product-loop--9298464178518 .product-loop__image-container::before{
  6539.    content: "";
  6540.    width: 1px;
  6541.    margin-left: -1px;
  6542.    float: left;
  6543.    height: 0;
  6544.    padding-top: 111.11111111111111%;
  6545.    position: relative;
  6546.  }
  6547.  #product-loop--9298464178518 .product-loop__image-container::after{
  6548.    content: "";
  6549.    display: table;
  6550.    clear: both;
  6551.  }
  6552. </style>
  6553.  
  6554.  
  6555. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6556. <div id="product-loop--9298464178518" class="product-loop-element ">
  6557.    
  6558.    <div class="product-loop__image-container ">
  6559.        
  6560.        <span class="icon icon-"  aria-hidden="true"></span>
  6561. <span class="fallback-text"></span>
  6562.  
  6563.  
  6564.  
  6565.        
  6566.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6567.          data-parent-fit="cover"
  6568.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_35d5891e-f2d7-4014-897f-be3a825d1af1.jpg?v=1731415109&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="Combo Chair | Wood Base Elite">
  6573.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6574.          data-parent-fit="cover"
  6575.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_09e70229-f7f7-4b46-ba75-673ce73d3d6b.jpg?v=1731415109&width={width}"
  6576.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6577.          data-aspectratio="1.0"
  6578.          data-sizes="auto"
  6579.          alt="">
  6580.        
  6581.        <a class="product-loop__image-link" href="/products/pilates-chair-combo-elite" aria-label="Combo Chair | Wood Base Elite"></a>
  6582.    </div>
  6583.      <div class="product-loop-element__details ">
  6584.        <p class="product-loop_title ">
  6585.          <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>
  6586.          
  6587.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6588.        </p><div class="product-loop-element__price  ">
  6589.          
  6590.            
  6591.                <p class="p--bold p--small">£899</p>
  6592.              
  6593.          
  6594.        
  6595.          <p data-unit-price-wrapper class="p--small  hidden">
  6596.            <span data-unit-price></span>
  6597.            <span>/</span>
  6598.            <span data-unit-price-measurement-reference-value></span>
  6599.            <span data-unit-price-measurement-reference-unit></span>
  6600.          </p>
  6601.        </div><div class="product-loop-element__swatch">
  6602.  
  6603.  
  6604.  
  6605.  
  6606.  
  6607.  
  6608.  
  6609.  
  6610.  
  6611.  
  6612.  
  6613.  
  6614.  
  6615.  
  6616.  
  6617.  
  6618.  
  6619.    <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">
  6620.      <div class="tooltip">Black</div>
  6621.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6622.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_35d5891e-f2d7-4014-897f-be3a825d1af1.jpg?v=1731415109&width={width}"
  6623.  data-widths="[50, 75, 100, 150, 200]"
  6624.  data-sizes="auto"
  6625.  data-parent-fit="cover"
  6626.  onError="this.style.display = 'none';"
  6627.  alt="Black swatch">
  6628.      </div>
  6629.    </label>
  6630.  
  6631.  
  6632.  
  6633.  
  6634.  
  6635.  
  6636.  
  6637.  
  6638.  
  6639.  
  6640.  
  6641.  
  6642.    <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">
  6643.      <div class="tooltip">Gray</div>
  6644.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6645.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera.jpg?v=1731415108&width={width}"
  6646.  data-widths="[50, 75, 100, 150, 200]"
  6647.  data-sizes="auto"
  6648.  data-parent-fit="cover"
  6649.  onError="this.style.display = 'none';"
  6650.  alt="Gray swatch">
  6651.      </div>
  6652.    </label>
  6653.  
  6654.  
  6655.  
  6656.  
  6657.  
  6658.  
  6659.  
  6660.  
  6661.  
  6662.  
  6663.  
  6664.  
  6665.    <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">
  6666.      <div class="tooltip">Blue</div>
  6667.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6668.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_bec505c6-26a5-43fa-890b-0faa60a323a4.jpg?v=1731699267&width={width}"
  6669.  data-widths="[50, 75, 100, 150, 200]"
  6670.  data-sizes="auto"
  6671.  data-parent-fit="cover"
  6672.  onError="this.style.display = 'none';"
  6673.  alt="Blue swatch">
  6674.      </div>
  6675.    </label>
  6676.  
  6677.  
  6678.  
  6679.  
  6680.  
  6681.  
  6682.  
  6683.  
  6684.  
  6685.  
  6686.  
  6687.  
  6688.    <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">
  6689.      <div class="tooltip">Ocean Blue</div>
  6690.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6691.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_ddf683cc-ad81-4a8f-8daa-7dcdf4419fb7.jpg?v=1731699278&width={width}"
  6692.  data-widths="[50, 75, 100, 150, 200]"
  6693.  data-sizes="auto"
  6694.  data-parent-fit="cover"
  6695.  onError="this.style.display = 'none';"
  6696.  alt="Ocean Blue swatch">
  6697.      </div>
  6698.    </label>
  6699.  
  6700.  
  6701.  
  6702.  
  6703.  
  6704.  
  6705.  
  6706.  
  6707.  
  6708.  
  6709.  
  6710.  
  6711.    <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">
  6712.      <div class="tooltip">Green</div>
  6713.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6714.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_bbaf83dc-cf28-441d-8c81-e29566b87348.jpg?v=1731699332&width={width}"
  6715.  data-widths="[50, 75, 100, 150, 200]"
  6716.  data-sizes="auto"
  6717.  data-parent-fit="cover"
  6718.  onError="this.style.display = 'none';"
  6719.  alt="Green swatch">
  6720.      </div>
  6721.    </label>
  6722.  
  6723.  
  6724.  
  6725.  
  6726.  
  6727.  
  6728.  
  6729.  
  6730.  
  6731.  
  6732.  
  6733.  
  6734.    <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">
  6735.      <div class="tooltip">Red</div>
  6736.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6737.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_69c458c1-217c-4d41-bd97-79d5feddf7e4.jpg?v=1731699323&width={width}"
  6738.  data-widths="[50, 75, 100, 150, 200]"
  6739.  data-sizes="auto"
  6740.  data-parent-fit="cover"
  6741.  onError="this.style.display = 'none';"
  6742.  alt="Red swatch">
  6743.      </div>
  6744.    </label>
  6745.  
  6746.  
  6747.  
  6748.  
  6749.  
  6750.  
  6751.  
  6752.  
  6753.  
  6754.  
  6755.  
  6756.  
  6757.    <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">
  6758.      <div class="tooltip">Ivory</div>
  6759.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6760.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_598150d4-232a-436d-bbc3-5d1815eb6e38.jpg?v=1731698786&width={width}"
  6761.  data-widths="[50, 75, 100, 150, 200]"
  6762.  data-sizes="auto"
  6763.  data-parent-fit="cover"
  6764.  onError="this.style.display = 'none';"
  6765.  alt="Ivory swatch">
  6766.      </div>
  6767.    </label>
  6768.  
  6769.  
  6770.  
  6771.  
  6772.  
  6773.  
  6774.  
  6775.  
  6776.  
  6777.  
  6778.  
  6779.  
  6780.    <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">
  6781.      <div class="tooltip">Mocha</div>
  6782.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6783.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-elitebase-madera_5e15d307-e378-4d23-989c-cab0971f25ee.jpg?v=1731698821&width={width}"
  6784.  data-widths="[50, 75, 100, 150, 200]"
  6785.  data-sizes="auto"
  6786.  data-parent-fit="cover"
  6787.  onError="this.style.display = 'none';"
  6788.  alt="Mocha swatch">
  6789.      </div>
  6790.    </label>
  6791.  
  6792.  
  6793.  
  6794.  
  6795. </div></div>
  6796.  </div>
  6797. </div>
  6798.          </div>
  6799.        
  6800.        
  6801.        
  6802.        
  6803.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__3--slider-true--image-false ">
  6804.            <!-- /snippets/product-loop-item.liquid -->
  6805. <style data-shopify>
  6806.  
  6807.  
  6808.  
  6809.    # {
  6810.      max-width: px;
  6811.      max-height: px;
  6812.    }
  6813.    # {
  6814.      max-width: px;
  6815.      max-height: px;
  6816.    }
  6817.  
  6818.  
  6819.  
  6820. </style>
  6821.  
  6822.  
  6823.  
  6824.  
  6825.  
  6826.  
  6827.  
  6828.  
  6829.  
  6830.  
  6831.  
  6832.  
  6833.  
  6834. <style data-shopify>
  6835.  #product-loop--9298479219030 .product-loop__image-container::before{
  6836.    content: "";
  6837.    width: 1px;
  6838.    margin-left: -1px;
  6839.    float: left;
  6840.    height: 0;
  6841.    padding-top: 111.11111111111111%;
  6842.    position: relative;
  6843.  }
  6844.  #product-loop--9298479219030 .product-loop__image-container::after{
  6845.    content: "";
  6846.    display: table;
  6847.    clear: both;
  6848.  }
  6849. </style>
  6850.  
  6851.  
  6852. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  6853. <div id="product-loop--9298479219030" class="product-loop-element ">
  6854.    
  6855.    <div class="product-loop__image-container ">
  6856.        
  6857.        <span class="icon icon-"  aria-hidden="true"></span>
  6858. <span class="fallback-text"></span>
  6859.  
  6860.  
  6861.  
  6862.        
  6863.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6864.          data-parent-fit="cover"
  6865.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo-1.jpg?v=1731416163&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="Wunda Chair &amp; Electric Chair Combined">
  6870.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  6871.          data-parent-fit="cover"
  6872.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo-2.jpg?v=1731416163&width={width}"
  6873.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  6874.          data-aspectratio="1.0"
  6875.          data-sizes="auto"
  6876.          alt="">
  6877.        
  6878.        <a class="product-loop__image-link" href="/products/pilates-chair-combination-wunda-electric" aria-label="Wunda Chair & Electric Chair Combined"></a>
  6879.    </div>
  6880.      <div class="product-loop-element__details ">
  6881.        <p class="product-loop_title ">
  6882.          <a class="p-link--no-accent" href="/products/pilates-chair-combination-wunda-electric" aria-label="Wunda Chair & Electric Chair Combined" >Wunda Chair & Electric Chair Combined</a>
  6883.          
  6884.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  6885.        </p><div class="product-loop-element__price  ">
  6886.          
  6887.            
  6888.                <p class="p--bold p--small">£1,479</p>
  6889.              
  6890.          
  6891.        
  6892.          <p data-unit-price-wrapper class="p--small  hidden">
  6893.            <span data-unit-price></span>
  6894.            <span>/</span>
  6895.            <span data-unit-price-measurement-reference-value></span>
  6896.            <span data-unit-price-measurement-reference-unit></span>
  6897.          </p>
  6898.        </div><div class="product-loop-element__swatch">
  6899.  
  6900.  
  6901.  
  6902.  
  6903.  
  6904.  
  6905.  
  6906.  
  6907.  
  6908.  
  6909.  
  6910.  
  6911.  
  6912.  
  6913.  
  6914.  
  6915.  
  6916.    <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">
  6917.      <div class="tooltip">Black</div>
  6918.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6919.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo-1.jpg?v=1731416163&width={width}"
  6920.  data-widths="[50, 75, 100, 150, 200]"
  6921.  data-sizes="auto"
  6922.  data-parent-fit="cover"
  6923.  onError="this.style.display = 'none';"
  6924.  alt="Black swatch">
  6925.      </div>
  6926.    </label>
  6927.  
  6928.  
  6929.  
  6930.  
  6931.  
  6932.  
  6933.  
  6934.  
  6935.  
  6936.  
  6937.  
  6938.  
  6939.    <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">
  6940.      <div class="tooltip">Gray</div>
  6941.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6942.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo-6.jpg?v=1731416162&width={width}"
  6943.  data-widths="[50, 75, 100, 150, 200]"
  6944.  data-sizes="auto"
  6945.  data-parent-fit="cover"
  6946.  onError="this.style.display = 'none';"
  6947.  alt="Gray swatch">
  6948.      </div>
  6949.    </label>
  6950.  
  6951.  
  6952.  
  6953.  
  6954.  
  6955.  
  6956.  
  6957.  
  6958.  
  6959.  
  6960.  
  6961.  
  6962.    <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">
  6963.      <div class="tooltip">Blue</div>
  6964.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6965.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_f5403da5-4540-47cc-a64e-f42b8ad156c2.jpg?v=1731700023&width={width}"
  6966.  data-widths="[50, 75, 100, 150, 200]"
  6967.  data-sizes="auto"
  6968.  data-parent-fit="cover"
  6969.  onError="this.style.display = 'none';"
  6970.  alt="Blue swatch">
  6971.      </div>
  6972.    </label>
  6973.  
  6974.  
  6975.  
  6976.  
  6977.  
  6978.  
  6979.  
  6980.  
  6981.  
  6982.  
  6983.  
  6984.  
  6985.    <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">
  6986.      <div class="tooltip">Ocean Blue</div>
  6987.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  6988.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_609c6050-6f16-4d93-ab90-e3f99c79f5ee.jpg?v=1731700032&width={width}"
  6989.  data-widths="[50, 75, 100, 150, 200]"
  6990.  data-sizes="auto"
  6991.  data-parent-fit="cover"
  6992.  onError="this.style.display = 'none';"
  6993.  alt="Ocean Blue swatch">
  6994.      </div>
  6995.    </label>
  6996.  
  6997.  
  6998.  
  6999.  
  7000.  
  7001.  
  7002.  
  7003.  
  7004.  
  7005.  
  7006.  
  7007.  
  7008.    <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">
  7009.      <div class="tooltip">Green</div>
  7010.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7011.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_bf2ce726-ba6a-4248-ac85-f54d7be4348a.jpg?v=1731700041&width={width}"
  7012.  data-widths="[50, 75, 100, 150, 200]"
  7013.  data-sizes="auto"
  7014.  data-parent-fit="cover"
  7015.  onError="this.style.display = 'none';"
  7016.  alt="Green swatch">
  7017.      </div>
  7018.    </label>
  7019.  
  7020.  
  7021.  
  7022.  
  7023.  
  7024.  
  7025.  
  7026.  
  7027.  
  7028.  
  7029.  
  7030.  
  7031.    <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">
  7032.      <div class="tooltip">Red</div>
  7033.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7034.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_9dbf34c1-7afb-4d78-b473-c6c4f14df145.jpg?v=1731700049&width={width}"
  7035.  data-widths="[50, 75, 100, 150, 200]"
  7036.  data-sizes="auto"
  7037.  data-parent-fit="cover"
  7038.  onError="this.style.display = 'none';"
  7039.  alt="Red swatch">
  7040.      </div>
  7041.    </label>
  7042.  
  7043.  
  7044.  
  7045.  
  7046.  
  7047.  
  7048.  
  7049.  
  7050.  
  7051.  
  7052.  
  7053.  
  7054.    <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">
  7055.      <div class="tooltip">Ivory</div>
  7056.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7057.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_bf51bb6e-6f28-40cf-9acb-a3d1b5c96dbe.jpg?v=1731700056&width={width}"
  7058.  data-widths="[50, 75, 100, 150, 200]"
  7059.  data-sizes="auto"
  7060.  data-parent-fit="cover"
  7061.  onError="this.style.display = 'none';"
  7062.  alt="Ivory swatch">
  7063.      </div>
  7064.    </label>
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.  
  7071.  
  7072.  
  7073.  
  7074.  
  7075.  
  7076.  
  7077.    <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">
  7078.      <div class="tooltip">Mocha</div>
  7079.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7080.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/combo-chair-clasica-con-respaldo_6d201eaa-a588-464c-8621-04dede39918d.jpg?v=1731700064&width={width}"
  7081.  data-widths="[50, 75, 100, 150, 200]"
  7082.  data-sizes="auto"
  7083.  data-parent-fit="cover"
  7084.  onError="this.style.display = 'none';"
  7085.  alt="Mocha swatch">
  7086.      </div>
  7087.    </label>
  7088.  
  7089.  
  7090.  
  7091.  
  7092. </div></div>
  7093.  </div>
  7094. </div>
  7095.          </div>
  7096.        
  7097.        
  7098.        
  7099.        
  7100.          <div class="featured-collection__product featured-collection__product--one-quarter  featured-collection__product--slider featured-collection__4--slider-true--image-false ">
  7101.            <!-- /snippets/product-loop-item.liquid -->
  7102. <style data-shopify>
  7103.  
  7104.  
  7105.  
  7106.    # {
  7107.      max-width: px;
  7108.      max-height: px;
  7109.    }
  7110.    # {
  7111.      max-width: px;
  7112.      max-height: px;
  7113.    }
  7114.  
  7115.  
  7116.  
  7117. </style>
  7118.  
  7119.  
  7120.  
  7121.  
  7122.  
  7123.  
  7124.  
  7125.  
  7126.  
  7127.  
  7128.  
  7129.  
  7130.  
  7131. <style data-shopify>
  7132.  #product-loop--9298463523158 .product-loop__image-container::before{
  7133.    content: "";
  7134.    width: 1px;
  7135.    margin-left: -1px;
  7136.    float: left;
  7137.    height: 0;
  7138.    padding-top: 111.11111111111111%;
  7139.    position: relative;
  7140.  }
  7141.  #product-loop--9298463523158 .product-loop__image-container::after{
  7142.    content: "";
  7143.    display: table;
  7144.    clear: both;
  7145.  }
  7146. </style>
  7147.  
  7148.  
  7149. <div class="card-background featured-collection__product-border-template--24031472877910__main_featured_collection_t4Vcej ">
  7150. <div id="product-loop--9298463523158" class="product-loop-element ">
  7151.    
  7152.    <div class="product-loop__image-container ">
  7153.        
  7154.        <span class="icon icon-"  aria-hidden="true"></span>
  7155. <span class="fallback-text"></span>
  7156.  
  7157.  
  7158.  
  7159.        
  7160.        <img class="product-loop__primary-image lazyload section__load-animations--fade  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  7161.          data-parent-fit="cover"
  7162.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair.jpg?v=1731415086&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="Combo Chair | Wood Base">
  7167.          <img class="medium-down--hide product-loop__secondary-image lazyload  product-loop__img-template--24031472877910__main_featured_collection_t4Vcej   "
  7168.          data-parent-fit="cover"
  7169.          data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_9c1dc513-ac0d-4117-818c-1d959d94acdf.jpg?v=1731415086&width={width}"
  7170.          data-widths="[250, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  7171.          data-aspectratio="1.0"
  7172.          data-sizes="auto"
  7173.          alt="">
  7174.        
  7175.        <a class="product-loop__image-link" href="/products/pilates-chair-combo-wood-base" aria-label="Combo Chair | Wood Base"></a>
  7176.    </div>
  7177.      <div class="product-loop-element__details ">
  7178.        <p class="product-loop_title ">
  7179.          <a class="p-link--no-accent" href="/products/pilates-chair-combo-wood-base" aria-label="Combo Chair | Wood Base" >Combo Chair | Wood Base</a>
  7180.          
  7181.          <br><small><a href="/collections/vendors?q=Elina%20Pilates" title="Elina Pilates">Elina Pilates</a></small>
  7182.        </p><div class="product-loop-element__price  ">
  7183.          
  7184.            
  7185.                <p class="p--bold p--small">£820</p>
  7186.              
  7187.          
  7188.        
  7189.          <p data-unit-price-wrapper class="p--small  hidden">
  7190.            <span data-unit-price></span>
  7191.            <span>/</span>
  7192.            <span data-unit-price-measurement-reference-value></span>
  7193.            <span data-unit-price-measurement-reference-unit></span>
  7194.          </p>
  7195.        </div><div class="product-loop-element__swatch">
  7196.  
  7197.  
  7198.  
  7199.  
  7200.  
  7201.  
  7202.  
  7203.  
  7204.  
  7205.  
  7206.  
  7207.  
  7208.  
  7209.  
  7210.  
  7211.  
  7212.  
  7213.    <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">
  7214.      <div class="tooltip">Black</div>
  7215.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7216.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair.jpg?v=1731415086&width={width}"
  7217.  data-widths="[50, 75, 100, 150, 200]"
  7218.  data-sizes="auto"
  7219.  data-parent-fit="cover"
  7220.  onError="this.style.display = 'none';"
  7221.  alt="Black swatch">
  7222.      </div>
  7223.    </label>
  7224.  
  7225.  
  7226.  
  7227.  
  7228.  
  7229.  
  7230.  
  7231.  
  7232.  
  7233.  
  7234.  
  7235.  
  7236.    <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">
  7237.      <div class="tooltip">Gray</div>
  7238.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7239.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_1d85b2e8-b70f-4618-b603-528068cf3f71.jpg?v=1737729811&width={width}"
  7240.  data-widths="[50, 75, 100, 150, 200]"
  7241.  data-sizes="auto"
  7242.  data-parent-fit="cover"
  7243.  onError="this.style.display = 'none';"
  7244.  alt="Gray swatch">
  7245.      </div>
  7246.    </label>
  7247.  
  7248.  
  7249.  
  7250.  
  7251.  
  7252.  
  7253.  
  7254.  
  7255.  
  7256.  
  7257.  
  7258.  
  7259.    <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">
  7260.      <div class="tooltip">Blue</div>
  7261.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7262.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_b0de0a38-4281-4811-b106-199261d8600a.jpg?v=1737729811&width={width}"
  7263.  data-widths="[50, 75, 100, 150, 200]"
  7264.  data-sizes="auto"
  7265.  data-parent-fit="cover"
  7266.  onError="this.style.display = 'none';"
  7267.  alt="Blue swatch">
  7268.      </div>
  7269.    </label>
  7270.  
  7271.  
  7272.  
  7273.  
  7274.  
  7275.  
  7276.  
  7277.  
  7278.  
  7279.  
  7280.  
  7281.  
  7282.    <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">
  7283.      <div class="tooltip">Ocean Blue</div>
  7284.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7285.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_b80d4444-5899-4992-aae6-1e1f3e1b04f6.jpg?v=1737729811&width={width}"
  7286.  data-widths="[50, 75, 100, 150, 200]"
  7287.  data-sizes="auto"
  7288.  data-parent-fit="cover"
  7289.  onError="this.style.display = 'none';"
  7290.  alt="Ocean Blue swatch">
  7291.      </div>
  7292.    </label>
  7293.  
  7294.  
  7295.  
  7296.  
  7297.  
  7298.  
  7299.  
  7300.  
  7301.  
  7302.  
  7303.  
  7304.  
  7305.    <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">
  7306.      <div class="tooltip">Green</div>
  7307.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7308.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_d0f7ba38-a590-44ba-9089-0e314a4d8dc4.jpg?v=1737729811&width={width}"
  7309.  data-widths="[50, 75, 100, 150, 200]"
  7310.  data-sizes="auto"
  7311.  data-parent-fit="cover"
  7312.  onError="this.style.display = 'none';"
  7313.  alt="Green swatch">
  7314.      </div>
  7315.    </label>
  7316.  
  7317.  
  7318.  
  7319.  
  7320.  
  7321.  
  7322.  
  7323.  
  7324.  
  7325.  
  7326.  
  7327.  
  7328.    <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">
  7329.      <div class="tooltip">Red</div>
  7330.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7331.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_d9dc1e20-381d-4bed-86ea-946eb67c0b40.jpg?v=1737729811&width={width}"
  7332.  data-widths="[50, 75, 100, 150, 200]"
  7333.  data-sizes="auto"
  7334.  data-parent-fit="cover"
  7335.  onError="this.style.display = 'none';"
  7336.  alt="Red swatch">
  7337.      </div>
  7338.    </label>
  7339.  
  7340.  
  7341.  
  7342.  
  7343.  
  7344.  
  7345.  
  7346.  
  7347.  
  7348.  
  7349.  
  7350.  
  7351.    <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">
  7352.      <div class="tooltip">Ivory</div>
  7353.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7354.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_e1f098d6-6965-454d-a44a-87533e195445.jpg?v=1737729811&width={width}"
  7355.  data-widths="[50, 75, 100, 150, 200]"
  7356.  data-sizes="auto"
  7357.  data-parent-fit="cover"
  7358.  onError="this.style.display = 'none';"
  7359.  alt="Ivory swatch">
  7360.      </div>
  7361.    </label>
  7362.  
  7363.  
  7364.  
  7365.  
  7366.  
  7367.  
  7368.  
  7369.  
  7370.  
  7371.  
  7372.  
  7373.  
  7374.    <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">
  7375.      <div class="tooltip">Mocha</div>
  7376.      <div class="swatch-element__image-container"><img class="lazyload swatch-element__image"
  7377.  data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/wood-combo-chair_ed50714d-562b-423f-8b8b-d4a6d45d3637.jpg?v=1737729811&width={width}"
  7378.  data-widths="[50, 75, 100, 150, 200]"
  7379.  data-sizes="auto"
  7380.  data-parent-fit="cover"
  7381.  onError="this.style.display = 'none';"
  7382.  alt="Mocha swatch">
  7383.      </div>
  7384.    </label>
  7385.  
  7386.  
  7387.  
  7388.  
  7389. </div></div>
  7390.  </div>
  7391. </div>
  7392.          </div>
  7393.        
  7394.        
  7395.        
  7396.  
  7397.      
  7398.    
  7399.    </div>
  7400.  </div>
  7401. </div>
  7402.  
  7403. <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>
  7404.  #shopify-section-template--24031472877910__image_with_text_2{
  7405.    background-color: var(--color_body_bg_tertiary);
  7406.  }
  7407. </style>
  7408.  
  7409. <!-- /sections/home-features.liquid -->
  7410. <div class="section__standard-spacing--none">
  7411.  <div class="">
  7412.    <div class=""><!-- /snippets/section__image-with-text.liquid -->
  7413. <style data-shopify>
  7414. #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container,
  7415.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container{
  7416.      background-color: #3e5e61;
  7417.    }
  7418.    #image-with-text--template--24031472877910__image_with_text_2 h2,
  7419.    #image-with-text--template--24031472877910__image_with_text_2 h3,
  7420.    #image-with-text--template--24031472877910__image_with_text_2 p{
  7421.      color: #ffffff;
  7422.    }
  7423.  
  7424.    #image-with-text--template--24031472877910__image_with_text_2 .btn--tertiary{
  7425.      color: #282828;
  7426.      border-color: #282828;
  7427.    }
  7428.    #image-with-text--template--24031472877910__image_with_text_2 .btn--tertiary:hover{
  7429.      color: #ffffff;
  7430.      border-color: #282828;
  7431.      background-color: #282828;
  7432.    }.feature-flex{
  7433.    display: flex;
  7434.    flex-wrap: wrap;
  7435.  }
  7436.  .feature-flex-right{
  7437.    display: flex;
  7438.    flex-wrap: wrap-reverse;
  7439.  }
  7440.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container::before{
  7441.    content: "";
  7442.    width: 1px;
  7443.    margin-left: -1px;
  7444.    float: left;
  7445.    height: 0;
  7446.    padding-top: 66.66666666666666%;
  7447.    position: relative;
  7448.  }
  7449.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container::after{
  7450.    content: "";
  7451.    display: table;
  7452.    clear: both;
  7453.  }
  7454.  #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container{
  7455.    flex: 1 1 auto;
  7456.    width: 50%;
  7457.  }
  7458.  .image-with-text__content{
  7459.    width: 100%;
  7460.  }
  7461.  @media screen and (min-width: 769px){
  7462.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__image-container{
  7463.      min-width: 50%;
  7464.      background-position: center center;
  7465.      flex: 1 1 auto;
  7466.    }
  7467.    #image-with-text--template--24031472877910__image_with_text_2 .image-with-text__content-container{
  7468.      min-width: 350px;
  7469.    }
  7470.  }
  7471.  @media screen and (max-width: 768px){
  7472.    .image-with-text__image-container{
  7473.      width: 100%;
  7474.    }
  7475.  }
  7476. </style>
  7477.  
  7478. <div id="image-with-text--template--24031472877910__image_with_text_2" class="home-promotion-block feature-flex-right">
  7479.  
  7480.    <div class="image-with-text__content-container right-text text-left">
  7481.      <div class="image-with-text__content section__standard-spacing">
  7482.        
  7483.        <h2>Mission Statement</h2>
  7484.        
  7485.        
  7486.        
  7487.          <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>
  7488.        
  7489.        
  7490.      </div>
  7491.    </div>
  7492.    
  7493.      <div class="image-with-text__image-container right-image lazyload"
  7494.        data-bgset="
  7495.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=180 180w 120h,
  7496.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=360 360w 240h,
  7497.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=540 540w 360h,
  7498.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=720 720w 480h,
  7499.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=900 900w 600h,
  7500.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1080 1080w 720h,
  7501.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1296 1296w 864h,
  7502.    
  7503.    
  7504.    //uk-pilatesreformers.co.uk/cdn/shop/files/direct-pilates-reformers-about-us.webp?v=1706540098&width=1350 1350w 900h
  7505. "
  7506.        data-sizes="auto"
  7507.        data-parent-fit="cover"></div>
  7508.    
  7509.  
  7510. </div></div>
  7511.  </div>
  7512. </div>
  7513.  
  7514.  
  7515. </div><div id="shopify-section-template--24031472877910__image_banner" class="shopify-section loft-section__parallax dynamic__section section__image-banner">
  7516.  
  7517. <style data-shopify>
  7518.  
  7519.  #shopify-section-template--24031472877910__image_banner .lazyloaded{
  7520.    opacity: 1;
  7521.  }
  7522.  .section__body--template--24031472877910__image_banner {
  7523.    background: rgba(255, 255, 255, 0.75);
  7524.  }@media screen and (min-width: 1400px){
  7525.      .wrapper--contained .section-parallax .wrapper {
  7526.        left: calc((100% - 1400px) / 2);
  7527.      }
  7528.    }</style>
  7529. <div id="parallax--template--24031472877910__image_banner" class="section__standard-spacing--small" style="background-color: var(--color_body_bg)">
  7530.  <section class="section-parallax   lazysection lazyload" data-section-id="template--24031472877910__image_banner" data-section-type="banner" style="min-height: 50vh">
  7531.    <div class="section__image-outer " >
  7532.      <div class="parallax--image-wrapper-template--24031472877910__image_banner section__image lazyload"
  7533.        data-bgset="
  7534.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=180 180w 121h,
  7535.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=360 360w 241h,
  7536.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=540 540w 362h,
  7537.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=720 720w 482h,
  7538.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=900 900w 603h,
  7539.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1080 1080w 724h,
  7540.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1296 1296w 868h,
  7541.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1512 1512w 1013h,
  7542.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=1728 1728w 1158h,
  7543.    //uk-pilatesreformers.co.uk/cdn/shop/files/wood-pilates-reformer-home-page.webp?v=1709283663&width=2000 2000w 1340h
  7544. "
  7545.        data-sizes="auto"
  7546.        data-parent-fit="cover"
  7547.        
  7548.        >
  7549.      </div><!-- /.section__image -->
  7550.    </div><!-- /.section__image-outer -->
  7551.  
  7552.    <div class="section__inner ">
  7553.      
  7554.        <div class="section__standard-spacing section__body section__body--template--24031472877910__image_banner">
  7555.          <div class="section__content section-parallax__content ">
  7556.            <h2>Would you like to explore more?</h2>
  7557.          
  7558.            <div class="h3">
  7559.              <p>Use our search bar to find what you're really looking for!</p>
  7560.            </div><!-- /.section__content-inner -->
  7561.          
  7562.            
  7563.              <div class="loft-form__container loft-form__container--horizontal-button">
  7564.                <!-- /snippets/resource__search-bar.liquid -->
  7565.  
  7566.  
  7567.  
  7568. <form class="loft-form__content medium-down--hide" action="/search" method="get" role="search">
  7569.  <input type="search" name="q" aria-label="Search" value="" placeholder="Enter search terms..." class="input-group-field banner" >
  7570.  <button type="submit" class="btn icon-fallback-text banner js-base-search">
  7571.    Search
  7572.  </button>
  7573. </form>
  7574.  
  7575.                <button class="large--hide btn icon-fallback-text banner" data-modal-open="global__predictive-search" data-micromodal-trigger="modal-1">Search</button>
  7576.              </div><!-- /.section__bar -->
  7577.            
  7578.  
  7579.            
  7580.          </div><!-- /.section__content -->
  7581.        </div><!-- /.section__body -->
  7582.      
  7583.    </div><!-- /.section__inner -->
  7584.  </section><!-- /.section-parallax -->
  7585. </div>
  7586.  
  7587.  
  7588. </div><div id="shopify-section-template--24031472877910__blog" class="shopify-section homepage-blog"><!-- Desktop Blog --><style data-shopify>
  7589.  #shopify-section-template--24031472877910__blog{
  7590.    background-color: var(--color_body_bg);
  7591.  }
  7592. </style>
  7593.  
  7594. <div data-section-id="template--24031472877910__blog" class="section__standard-spacing--large">
  7595.  <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">
  7596.            <div class="card-background  card-shadow">
  7597.              
  7598.                
  7599.                
  7600.                
  7601.                
  7602.                <img class="lazyload lazystretch"
  7603.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/mat-pilates-vs-reformer.webp?v=1712253531&width={width}"
  7604.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7605.                  data-aspectratio="1.291044776119403"
  7606.                  data-sizes="auto"
  7607.                  data-parent-fit="cover"
  7608.                  alt="Comparing mat Pilates to the Pilates reformer">
  7609.              
  7610.              <div class="blog-copy">
  7611.                <div class="blog__article-header">
  7612.                  <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>
  7613.                
  7614.  
  7615.                
  7616.              </div>
  7617.            </div>
  7618.          </div><div class="blog__card-wrapper">
  7619.            <div class="card-background  card-shadow">
  7620.              
  7621.                
  7622.                
  7623.                
  7624.                
  7625.                <img class="lazyload lazystretch"
  7626.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/pilates-for-men.jpg?v=1712119044&width={width}"
  7627.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7628.                  data-aspectratio="1.5129682997118155"
  7629.                  data-sizes="auto"
  7630.                  data-parent-fit="cover"
  7631.                  alt="Pilates is also suitable for men">
  7632.              
  7633.              <div class="blog-copy">
  7634.                <div class="blog__article-header">
  7635.                  <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>
  7636.                
  7637.  
  7638.                
  7639.              </div>
  7640.            </div>
  7641.          </div><div class="blog__card-wrapper">
  7642.            <div class="card-background  card-shadow">
  7643.              
  7644.                
  7645.                
  7646.                
  7647.                
  7648.                <img class="lazyload lazystretch"
  7649.                  data-src="//uk-pilatesreformers.co.uk/cdn/shop/articles/what-is-reformer-pilates.webp?v=1711991758&width={width}"
  7650.                  data-widths="[540, 720, 900, 1080, 1296, 1512, 1728, 1944, 2048]"
  7651.                  data-aspectratio="1.2260536398467432"
  7652.                  data-sizes="auto"
  7653.                  data-parent-fit="cover"
  7654.                  alt="What is Reformer Pilates? The Complete Beginner's Overview">
  7655.              
  7656.              <div class="blog-copy">
  7657.                <div class="blog__article-header">
  7658.                  <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>
  7659.                
  7660.  
  7661.                
  7662.              </div>
  7663.            </div>
  7664.          </div></div></div>
  7665. </div>
  7666.  
  7667.  
  7668.  
  7669.  
  7670. </div>
  7671.    </main>
  7672.  </div>
  7673.  
  7674.  <!-- BEGIN sections: footer-group -->
  7675. <div id="shopify-section-sections--24031473172822__footer" class="shopify-section shopify-section-group-footer-group footer section-footer"><!-- /sections/footer.liquid -->
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681.  
  7682.  
  7683.  
  7684.  
  7685.  
  7686.  
  7687.  
  7688. <div data-section-id="sections--24031473172822__footer" data-section-type="footer">
  7689.  <footer class="site-footer  medium-down--one-whole"><div class="footer__block-wrapper"><div class="grid--full footer__content">      
  7690.        
  7691.        
  7692.        <div class="footer__block footer__block--one-third footer__logo">
  7693.          <div class="h1 site-header__logo footer__logo-wrapper large--left" itemscope itemtype="http://schema.org/Organization">
  7694.            
  7695.            
  7696.            
  7697.            
  7698.            
  7699.  
  7700.            <style data-shopify>
  7701.            .footer__logo-image::before {
  7702.            content: "";
  7703.            width: 1px;
  7704.            margin-left: -1px;
  7705.            float: left;
  7706.            height: 0;
  7707.            padding-top: 24.378109452736318%;
  7708.            }
  7709.            .footer__logo-image::after { /* to clear float */
  7710.            content: "";
  7711.            display: table;
  7712.            clear: both;
  7713.            }
  7714.            </style>
  7715.            
  7716.            
  7717.  
  7718.            <a href="/" itemprop="url" class="footer__logo-image" style="width: 200px; max-height: 49px">
  7719.              <img class="lazyload"
  7720.                   data-src="//uk-pilatesreformers.co.uk/cdn/shop/files/UK_Pilates_Reformers-200px_white.png?v=1710091693&width={width}"
  7721.                   data-parent-fit="contain"
  7722.                   data-widths="[100, 180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  7723.                   data-aspectratio="4.1020408163265305"
  7724.                   data-sizes="auto"
  7725.                   alt="UK Pilates Reformers"
  7726.                   itemprop="logo"
  7727.                   style="width: 200px;">
  7728.            </a>
  7729.            
  7730.          </div>
  7731.          
  7732.          <div class="footer__description">
  7733.            <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</p>
  7734.          </div>
  7735.          
  7736.          
  7737.          
  7738.  
  7739.  
  7740.  
  7741.  
  7742.  
  7743.                    
  7744.        </div>        
  7745.        
  7746.        
  7747.        
  7748.  
  7749.        <ul class="footer__block footer__block--two-thirds footer__navigation "  id="AccessibleNavFooter">
  7750.          
  7751.          
  7752.          <li class="footer__nav-wrapper ">
  7753.            <a href="/collections" class="footer__title p--bold  ">Shop Pilates</a>  
  7754.            
  7755.            <ul class="footer__sub-menu">
  7756.                
  7757.              <li class="footer__link ">
  7758.                <a href="/collections/pilates-reformers">Reformers</a>
  7759.              </li>
  7760.                
  7761.              <li class="footer__link ">
  7762.                <a href="/collections/tower-pilates">Half Towers</a>
  7763.              </li>
  7764.                
  7765.              <li class="footer__link ">
  7766.                <a href="/collections/pilates-cadillac-reformer">Cadillacs</a>
  7767.              </li>
  7768.              
  7769.            </ul>
  7770.            
  7771.          </li>
  7772.          
  7773.          
  7774.          <li class="footer__nav-wrapper ">
  7775.            <a href="#" class="footer__title p--bold  ">Get to Know Us</a>  
  7776.            
  7777.            <ul class="footer__sub-menu">
  7778.                
  7779.              <li class="footer__link ">
  7780.                <a href="/pages/about-us">About Us</a>
  7781.              </li>
  7782.                
  7783.              <li class="footer__link ">
  7784.                <a href="/pages/contact-us">Contact Us</a>
  7785.              </li>
  7786.                
  7787.              <li class="footer__link ">
  7788.                <a href="/blogs/news">Blog</a>
  7789.              </li>
  7790.                
  7791.              <li class="footer__link ">
  7792.                <a href="/pages/why-shop-with-us">Why Shop With Us?</a>
  7793.              </li>
  7794.                
  7795.              <li class="footer__link ">
  7796.                <a href="/pages/pilates-faqs">FAQs</a>
  7797.              </li>
  7798.                
  7799.              <li class="footer__link ">
  7800.                <a href="/pages/commercial-quotes">Commercial Quotes</a>
  7801.              </li>
  7802.                
  7803.              <li class="footer__link ">
  7804.                <a href="/pages/feedback">Feedback</a>
  7805.              </li>
  7806.              
  7807.            </ul>
  7808.            
  7809.          </li>
  7810.          
  7811.          
  7812.          <li class="footer__nav-wrapper ">
  7813.            <a href="#" class="footer__title p--bold  ">Our Policies</a>  
  7814.            
  7815.            <ul class="footer__sub-menu">
  7816.                
  7817.              <li class="footer__link ">
  7818.                <a href="/policies/terms-of-service">Terms of Service</a>
  7819.              </li>
  7820.                
  7821.              <li class="footer__link ">
  7822.                <a href="/policies/privacy-policy">Privacy Policy</a>
  7823.              </li>
  7824.                
  7825.              <li class="footer__link ">
  7826.                <a href="/pages/cookie-policy">Cookie Policy</a>
  7827.              </li>
  7828.                
  7829.              <li class="footer__link ">
  7830.                <a href="/policies/shipping-policy">Shipping Policy</a>
  7831.              </li>
  7832.                
  7833.              <li class="footer__link ">
  7834.                <a href="/pages/return-policy">Return Policy</a>
  7835.              </li>
  7836.                
  7837.              <li class="footer__link ">
  7838.                <a href="/pages/payment-policy">Payment Policy</a>
  7839.              </li>
  7840.                
  7841.              <li class="footer__link ">
  7842.                <a href="/pages/billing-terms-conditions">Billing Terms &amp; Conditions</a>
  7843.              </li>
  7844.                
  7845.              <li class="footer__link ">
  7846.                <a href="/pages/warranty">Warranty</a>
  7847.              </li>
  7848.                
  7849.              <li class="footer__link ">
  7850.                <a href="/pages/disclaimer">Disclaimer</a>
  7851.              </li>
  7852.              
  7853.            </ul>
  7854.            
  7855.          </li>
  7856.          
  7857.        </ul>
  7858.        
  7859.        
  7860.      </div>
  7861.        
  7862.    </div><div class="footer__subsection">
  7863.      <div class="subsection__wrapper">
  7864.        <div class="subsection__block footer__copyright p--small">  
  7865.          &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>
  7866.        </div>
  7867.        
  7868.          
  7869.          <div class="subsection__block footer__payment">            
  7870.          
  7871.          <ul class="inline-list payment-icons">
  7872.            
  7873.            
  7874.            <li>
  7875.              <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>
  7876. </span>
  7877.            </li>
  7878.            
  7879.            
  7880.            
  7881.            
  7882.            
  7883.            <li>
  7884.              <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>
  7885.            </li>
  7886.            
  7887.            
  7888.            
  7889.            <li>
  7890.              <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>
  7891.            </li>
  7892.            
  7893.            
  7894.            
  7895.            
  7896.            
  7897.            
  7898.            
  7899.            <li>
  7900.              <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>
  7901.            </li>
  7902.            
  7903.            
  7904.            
  7905.            <li>
  7906.              <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>
  7907.            </li>
  7908.            
  7909.            
  7910.            
  7911.            <li>
  7912.              <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>
  7913.            </li>
  7914.            
  7915.            
  7916.            
  7917.            
  7918.            
  7919.            <li>
  7920.              <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>
  7921.            </li>
  7922.            
  7923.            
  7924.          </ul>
  7925.        </div>
  7926.      
  7927.      
  7928. </div>
  7929.    </div>
  7930.  </footer>
  7931. </div>
  7932. </div>
  7933. <!-- END sections: footer-group -->
  7934.  
  7935.  
  7936.  
  7937. <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive-search.js?v=33016745803952707301732721636" defer="defer"></script>
  7938.  
  7939. <div class="modal micromodal-slide" id="modal-1" aria-hidden="true">
  7940.  <div class="modal__overlay modal__overlay--search" tabindex="-1" data-micromodal-close>
  7941.    <div class="modal__container predictive-search__wrapper" role="dialog" aria-modal="true"
  7942.      aria-labelledby="modal-1-title">
  7943.      <h2 class="modal__title" id="modal-1-title" style="display: none">
  7944.        Search
  7945.      </h2>
  7946.      <div class="search-content" id="modal-1-content">
  7947.        <predictive-search>
  7948.          <form action="/search" method="get" role="search" class="input-group">
  7949.            <div class="one-whole text-left search-input-field-container ">
  7950.              <div class="search-input-field card-shadow">
  7951.                <input type="search" id="search-input" name="q" role="combobox" value=""
  7952.                  placeholder="Enter search terms..." aria-expanded="false" aria-owns="predictive-search-results"
  7953.                  aria-controls="predictive-search-results" aria-haspopup="listbox" aria-autocomplete="list"
  7954.                  data-autofocus
  7955.                  class="predictive-search__input js-search-query"
  7956.                  aria-label="Enter search terms..."
  7957.                  autocomplete="off">
  7958.              </div>
  7959.            </div>
  7960.            <input name="options[prefix]" type="hidden" value="last">
  7961.  
  7962.            <div id="predictive-search" tabindex="-1"></div>
  7963.          </form>
  7964.        </predictive-search>
  7965.      </div>
  7966.    </div>
  7967.  </div>
  7968. </div>
  7969.  
  7970.  
  7971.  
  7972.  
  7973. <script src="//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/product-form.js?v=180051259843661108951732721636" defer="defer"></script>
  7974. <script>
  7975.  window.addEventListener('load', (event) => {
  7976.    let searchScript = window.theme.scripts.predictive_search.src;
  7977.    loadJS( searchScript, function(){
  7978.      window.theme.scripts.predictive_search.init();
  7979.    }, true);
  7980.  })
  7981. </script>
  7982.  
  7983. <script id="loadcss">
  7984.  window.addEventListener('load', (event) => {
  7985.    // load a CSS file just before the script element containing this code
  7986.    loadCSS( "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/predictive_search.nomin.css?v=24144298039987706411732721636", document.getElementById("loadcss") );
  7987.    loadCSS( "//uk-pilatesreformers.co.uk/cdn/shop/t/16/assets/lightbox.nomin.css?v=86644048670264354111732721636", document.getElementById("loadcss") );
  7988.  })
  7989. </script>
  7990.  <loft-cart>
  7991.    <span slot="add-to-cart-success">
  7992.      <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">
  7993.    <defs>
  7994.        <circle id="path-1" cx="7.54224817" cy="7.54224817" r="7.54224817"></circle>
  7995.        <mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.0844963" height="15.0844963" fill="white">
  7996.            <use xlink:href="#path-1"></use>
  7997.        </mask>
  7998.    </defs>
  7999.    <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  8000.        <g id="128" stroke="var(--color_secondary_header)">
  8001.            <use id="Oval" mask="url(#mask-2)" stroke-width="3.4" xlink:href="#path-1"></use>
  8002.            <polyline id="Path-2" stroke-width="1.7" points="4.08689094 7.5 7.11105318 10.524158 10.9538954 5.04396605"></polyline>
  8003.        </g>
  8004.    </g>
  8005. </svg>Added
  8006.    </span>
  8007.    <span slot="add-to-cart-fail">
  8008.      Cart Error
  8009.    </span>
  8010.  </loft-cart>
  8011. <style> @media (min-width: 955px) {.video-wrapper {padding: 0 !important; height: 434px; width: 745px; } .template-product .video-wrapper {margin: 0 auto; }} </style>
  8012. </body>
  8013. </html>
  8014.  
  8015.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda