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

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

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