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