Outiref

Code source de l'URL : http://lavantgardiste.com/

<!doctype html>
<html class="no-js" lang="fr">
  <head>
    <script>  
  (function() {
      class Ceos_Data_Layer {
        constructor() {
          window.dataLayer = window.dataLayer || []; 
          
          // use a prefix of events name
          this.eventPrefix = '';

          //Keep the value false to get non-formatted product ID
          this.formattedItemId = true; 

          // data schema
          this.dataSchema = {
            ecommerce: {
                show: true
            },
            dynamicRemarketing: {
                show: false,
                business_vertical: 'retail'
            }
          }

          // add to wishlist selectors
          this.addToWishListSelectors = {
            'addWishListIcon': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // quick view selectors
          this.quickViewSelector = {
            'quickViewElement': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // mini cart button selector
          this.miniCartButton = [
            'a[href="/cart"]', 
          ];
          this.miniCartAppersOn = 'click';


          // begin checkout buttons/links selectors
          this.beginCheckoutButtons = [
            'input[name="checkout"]',
            'button[name="checkout"]',
            'a[href="/checkout"]',
            '.additional-checkout-buttons',
          ];

          // direct checkout button selector
          this.shopifyDirectCheckoutButton = [
            '.shopify-payment-button'
          ]

          //Keep the value true if Add to Cart redirects to the cart page
          this.isAddToCartRedirect = false;
          
          // keep the value false if cart items increment/decrement/remove refresh page 
          this.isAjaxCartIncrementDecrement = true;
          

          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"EUR","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
          this.countryCode = "FR";
          this.collectData();  
          this.storeURL = "https://www.lavantgardiste.com";
          localStorage.setItem('shopCountryCode', this.countryCode);
        }

        updateCart() {
          fetch("/cart.js")
          .then((response) => response.json())
          .then((data) => {
            this.cart = data;
          });
        }

       debounce(delay) {         
          let timeoutId;
          return function(func) {
            const context = this;
            const args = arguments;
            
            clearTimeout(timeoutId);
            
            timeoutId = setTimeout(function() {
              func.apply(context, args);
            }, delay);
          };
        }

        eventConsole(eventName, eventData) {
          const css1 = 'background: red; color: #fff; font-size: normal; border-radius: 3px 0 0 3px; padding: 3px 4px;';
          const css2 = 'background-color: blue; color: #fff; font-size: normal; border-radius: 0 3px 3px 0; padding: 3px 4px;';
          console.log('%cGTM DataLayer Event:%c' + eventName, css1, css2, eventData);
        }

        collectData() { 
            this.customerData();
            this.ajaxRequestData();
            this.searchPageData();
            this.miniCartData();
            this.beginCheckoutData();
  
            
  
            
  
            
            
            this.addToWishListData();
            this.quickViewData();
            this.formData();
            this.phoneClickData();
            this.emailClickData();
        }        

        //logged-in customer data 
        customerData() {
            const currentUser = {};
            

            if (currentUser.email) {
              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            if (currentUser.phone) {
              currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            window.dataLayer = window.dataLayer || [];
            dataLayer.push({
              customer: currentUser
            });
        }

        // add_to_cart, remove_from_cart, search
        ajaxRequestData() {
          const self = this;
          
          // handle non-ajax add to cart
          if(this.isAddToCartRedirect) {
            document.addEventListener('submit', function(event) {
              const addToCartForm = event.target.closest('form[action="/cart/add"]');
              if(addToCartForm) {
                event.preventDefault();
                
                const formData = new FormData(addToCartForm);
            
                fetch(window.Shopify.routes.root + 'cart/add.js', {
                  method: 'POST',
                  body: formData
                })
                .then(response => {
                    window.location.href = "/cart";
                })
                .catch((error) => {
                  console.error('Error:', error);
                });
              }
            });
          }
          
          // fetch
          let originalFetch = window.fetch;
          let debounce = this.debounce(800);
          
          window.fetch = function () {
            return originalFetch.apply(this, arguments).then((response) => {
              if (response.ok) {
                let cloneResponse = response.clone();
                let requestURL = arguments[0].url || arguments[0];
                
                if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {   
                  const queryString = requestURL.split('?')[1];
                  const urlParams = new URLSearchParams(queryString);
                  const search_term = urlParams.get("q");

                  debounce(function() {
                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                      .then(res => res.json())
                      .then(function(data) {
                            const products = data.resources.results.products;
                            if(products.length) {
                              const fetchRequests = products.map(product =>
                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                  .then(response => response.json())
                                  .catch(error => console.error('Error fetching:', error))
                              );

                              Promise.all(fetchRequests)
                                .then(products => {
                                    const items = products.map((product) => {
                                      return {
                                        product_id: product.id,
                                        product_title: product.title,
                                        variant_id: product.variants[0].id,
                                        variant_title: product.variants[0].title,
                                        vendor: product.vendor,
                                        total_discount: 0,
                                        final_price: product.price_min,
                                        product_type: product.type, 
                                        quantity: 1
                                      }
                                    });

                                    self.ecommerceDataLayer('search', {search_term, items});
                                })
                            }else {
                              self.ecommerceDataLayer('search', {search_term, items: []});
                            }
                      });
                  });
                }
                else if (requestURL.includes("/cart/add")) {
                  cloneResponse.text().then((text) => {
                    let data = JSON.parse(text);

                    if(data.items && Array.isArray(data.items)) {
                      data.items.forEach(function(item) {
                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
                      })
                    } else {
                      self.ecommerceDataLayer('add_to_cart', {items: [data]});
                    }
                    self.updateCart();
                  });
                }else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
                  
                   cloneResponse.text().then((text) => {
                     
                    let newCart = JSON.parse(text);
                    let newCartItems = newCart.items;
                    let oldCartItems = self.cart.items;

                    for(let i = 0; i < oldCartItems.length; i++) {
                      let item = oldCartItems[i];
                      let newItem = newCartItems.find(newItems => newItems.id === item.id);


                      if(newItem) {

                        if(newItem.quantity > item.quantity) {
                          // cart item increment
                          let quantity = (newItem.quantity - item.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                          self.updateCart(); 

                        }else if(newItem.quantity < item.quantity) {
                          // cart item decrement
                          let quantity = (item.quantity - newItem.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                          self.updateCart(); 
                        }
                        

                      }else {
                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                        self.updateCart(); 
                      }
                    }
                     
                  });
                }
              }
              return response;
            });
          }
          // end fetch 


          //xhr
          var origXMLHttpRequest = XMLHttpRequest;
          XMLHttpRequest = function() {
            var requestURL;
    
            var xhr = new origXMLHttpRequest();
            var origOpen = xhr.open;
            var origSend = xhr.send;
            
            // Override the `open` function.
            xhr.open = function(method, url) {
                requestURL = url;
                return origOpen.apply(this, arguments);
            };
    
    
            xhr.send = function() {
    
                // Only proceed if the request URL matches what we're looking for.
                if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
        
                    xhr.addEventListener('load', function() {
                        if (xhr.readyState === 4) {
                            if (xhr.status >= 200 && xhr.status < 400) { 

                              if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
                                const queryString = requestURL.split('?')[1];
                                const urlParams = new URLSearchParams(queryString);
                                const search_term = urlParams.get("q");

                                debounce(function() {
                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                                      .then(res => res.json())
                                      .then(function(data) {
                                            const products = data.resources.results.products;
                                            if(products.length) {
                                              const fetchRequests = products.map(product =>
                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                                  .then(response => response.json())
                                                  .catch(error => console.error('Error fetching:', error))
                                              );
                
                                              Promise.all(fetchRequests)
                                                .then(products => {
                                                    const items = products.map((product) => {
                                                      return {
                                                        product_id: product.id,
                                                        product_title: product.title,
                                                        variant_id: product.variants[0].id,
                                                        variant_title: product.variants[0].title,
                                                        vendor: product.vendor,
                                                        total_discount: 0,
                                                        final_price: product.price_min,
                                                        product_type: product.type, 
                                                        quantity: 1
                                                      }
                                                    });
                
                                                    self.ecommerceDataLayer('search', {search_term, items});
                                                })
                                            }else {
                                              self.ecommerceDataLayer('search', {search_term, items: []});
                                            }
                                      });
                                  });

                              }

                              else if(requestURL.includes("/cart/add")) {
                                  const data = JSON.parse(xhr.responseText);

                                  if(data.items && Array.isArray(data.items)) {
                                    data.items.forEach(function(item) {
                                        self.ecommerceDataLayer('add_to_cart', {items: [item]});
                                      })
                                  } else {
                                    self.ecommerceDataLayer('add_to_cart', {items: [data]});
                                  }
                                  self.updateCart();
                                 
                               }else if(requestURL.includes("/cart/change")) {
                                 
                                  const newCart = JSON.parse(xhr.responseText);
                                  const newCartItems = newCart.items;
                                  let oldCartItems = self.cart.items;
              
                                  for(let i = 0; i < oldCartItems.length; i++) {
                                    let item = oldCartItems[i];
                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
              
              
                                    if(newItem) {
                                      if(newItem.quantity > item.quantity) {
                                        // cart item increment
                                        let quantity = (newItem.quantity - item.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                                        self.updateCart(); 
              
                                      }else if(newItem.quantity < item.quantity) {
                                        // cart item decrement
                                        let quantity = (item.quantity - newItem.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                                        self.updateCart(); 
                                      }
                                      
              
                                    }else {
                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                                      self.updateCart(); 
                                    }
                                  }
                               }          
                            }
                        }
                    });
                }
    
                return origSend.apply(this, arguments);
            };
    
            return xhr;
          }; 
          //end xhr
        }

        // search event from search page
        searchPageData() {
          const self = this;
          let pageUrl = window.location.href;
          
          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {   
            const queryString = pageUrl.split('?')[1];
            const urlParams = new URLSearchParams(queryString);
            const search_term = urlParams.get("q");
                
            fetch(`https://www.lavantgardiste.com/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
            .then(res => res.json())
            .then(function(data) {
                  const products = data.resources.results.products;
                  if(products.length) {
                    const fetchRequests = products.map(product =>
                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                        .then(response => response.json())
                        .catch(error => console.error('Error fetching:', error))
                    );
                    Promise.all(fetchRequests)
                    .then(products => {
                        const items = products.map((product) => {
                            return {
                            product_id: product.id,
                            product_title: product.title,
                            variant_id: product.variants[0].id,
                            variant_title: product.variants[0].title,
                            vendor: product.vendor,
                            total_discount: 0,
                            final_price: product.price_min,
                            product_type: product.type, 
                            quantity: 1
                            }
                        });

                        self.ecommerceDataLayer('search', {search_term, items});
                    });
                  }else {
                    self.ecommerceDataLayer('search', {search_term, items: []});
                  }
            });
          }
        }

        // view_cart
        miniCartData() {
          if(this.miniCartButton.length) {
            let self = this;
            if(this.miniCartAppersOn === 'hover') {
              this.miniCartAppersOn = 'mouseenter';
            }
            this.miniCartButton.forEach((selector) => {
              let miniCartButtons = document.querySelectorAll(selector);
              miniCartButtons.forEach((miniCartButton) => {
                  miniCartButton.addEventListener(self.miniCartAppersOn, () => {
                    self.ecommerceDataLayer('view_cart', self.cart);
                  });
              })
            });
          }
        }

        // begin_checkout
        beginCheckoutData() {
          let self = this;
          document.addEventListener('pointerdown', (event) => {
            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
            if(targetElement) {
              self.ecommerceDataLayer('begin_checkout', self.cart);
            }
          });
        }

        // view_cart, add_to_cart, remove_from_cart
        viewCartPageData() {
          
          this.ecommerceDataLayer('view_cart', this.cart);

          //if cart quantity chagne reload page 
          if(!this.isAjaxCartIncrementDecrement) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              const target = event.target.closest('a[href*="/cart/change?"]');
              if(target) {
                const linkUrl = target.getAttribute('href');
                const queryString = linkUrl.split("?")[1];
                const urlParams = new URLSearchParams(queryString);
                const newQuantity = urlParams.get("quantity");
                const line = urlParams.get("line");
                const cart_id = urlParams.get("id");
        
                
                if(newQuantity && (line || cart_id)) {
                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
        
                  let event = 'add_to_cart';
                  if(newQuantity < item.quantity) {
                    event = 'remove_from_cart';
                  }
        
                  let quantity = Math.abs(newQuantity - item.quantity);
                  item['quantity'] = quantity;
        
                  self.ecommerceDataLayer(event, {items: [item]});
                }
              }
            });
          }
        }

        productSinglePage() {
        
        }

        collectionsPageData() {
          var ecommerce = {
            'items': [
              
              ]
          };

          ecommerce['item_list_id'] = null
          ecommerce['item_list_name'] = null

          this.ecommerceDataLayer('view_item_list', ecommerce);
        }
        
        
        // add to wishlist
        addToWishListData() {
          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              
              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
                let pageULR = window.location.href.replace(/\?.+/, '');
                let requestURL = undefined;
          
                if(/\/products\/[^/]+$/.test(pageULR)) {
                  requestURL = pageULR;
                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
                  if(itemElement) {
                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector); 
                    if(linkElement) {
                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                      if(link && /\/products\/[^/]+$/.test(link)) {
                        requestURL = link;
                      }
                    }
                  }
                }

                if(requestURL) {
                  fetch(requestURL + '.json')
                    .then(res => res.json())
                    .then(result => {
                      let data = result.product;                    
                      if(data) {
                        let dataLayerData = {
                          product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                          quantity: 1,
                          final_price: parseFloat(data.variants[0].price) * 100,
                          total_discount: 0,
                          product_type: data.product_type,
                          vendor: data.vendor,
                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                          sku: data.variants[0].sku,
                        }

                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
                      }
                    });
                }
              }
            });
          }
        }

        quickViewData() {
          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              if(target.closest(self.quickViewSelector.quickViewElement)) {
                let requestURL = undefined;
                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
                
                if(itemElement) {
                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector); 
                  if(linkElement) {
                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                    if(link && /\/products\/[^/]+$/.test(link)) {
                      requestURL = link;
                    }
                  }
                }   
                
                if(requestURL) {
                    fetch(requestURL + '.json')
                      .then(res => res.json())
                      .then(result => {
                        let data = result.product;                    
                        if(data) {
                          let dataLayerData = {
                            product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                            quantity: 1,
                            final_price: parseFloat(data.variants[0].price) * 100,
                            total_discount: 0,
                            product_type: data.product_type,
                            vendor: data.vendor,
                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                            sku: data.variants[0].sku,
                          }
  
                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
                          self.quickViewVariants = data.variants;
                          self.quickViewedItem = dataLayerData;
                        }
                      });
                  }
              }
            });

            
              if(this.shopifyDirectCheckoutButton.length) {
                let self = this;
                document.addEventListener('pointerdown', (event) => {
                  let target = event.target;
                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
                  
                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {

                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
                    if(checkoutForm) {
                        let quantity = 1;
                        let varientInput = checkoutForm.querySelector('input[name="id"]');
                        let quantitySelector = checkoutForm.getAttribute('id');

                        if(quantitySelector) {
                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
                          if(quentityInput) {
                              quantity = +quentityInput.value;
                          }
                        }

                        if(varientInput) {
                            let variant_id = parseInt(varientInput.value);

                            if(variant_id) {
                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
                                if(variant && self.quickViewedItem) {
                                    self.quickViewedItem['variant_id'] = variant_id;
                                    self.quickViewedItem['variant_title'] = variant.title;
                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
                                    self.quickViewedItem['quantity'] = quantity; 
    
                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
                                }
                            }
                        }
                    }

                  }
                }); 
            }
            
          }
        }

        // all ecommerce events
        ecommerceDataLayer(event, data) {
          const self = this;
          dataLayer.push({ 'ecommerce': null });
          const dataLayerData = {
            "event": this.eventPrefix + event,
            'ecommerce': {
               'currency': this.cart.currency,
               'items': data.items.map((item, index) => {
                 const dataLayerItem = {
                    'index': index,
                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
                    'product_id': item.product_id.toString(),
                    'variant_id': item.variant_id.toString(),
                    'item_name': item.product_title,
                    'quantity': item.quantity,
                    'price': +((item.final_price / 100).toFixed(2)),
                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0 
                }

                if(item.product_type) {
                  dataLayerItem['item_category'] = item.product_type;
                }
                
                if(item.vendor) {
                  dataLayerItem['item_brand'] = item.vendor;
                }
               
                if(item.variant_title && item.variant_title !== 'Default Title') {
                  dataLayerItem['item_variant'] = item.variant_title;
                }
              
                if(item.sku) {
                  dataLayerItem['sku'] = item.sku;
                }

                if(item.item_list_name) {
                  dataLayerItem['item_list_name'] = item.item_list_name;
                }

                if(item.item_list_id) {
                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
                }

                return dataLayerItem;
              })
            }
          }

          if(data.total_price !== undefined) {
            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
          } else {
            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
          }
          
          if(data.item_list_id) {
            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
          }
          
          if(data.item_list_name) {
            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
          }

          if(data.search_term) {
            dataLayerData['search_term'] = data.search_term;
          }

          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
            dataLayer.push({ 'dynamicRemarketing': null });
            dataLayerData['dynamicRemarketing'] = {
                value: dataLayerData.ecommerce.value,
                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
            }
          }

          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
            delete dataLayerData['ecommerce'];
          }

          dataLayer.push(dataLayerData);
          self.eventConsole(self.eventPrefix + event, dataLayerData);
        }

        
        // contact form submit & newsletters signup
        formData() {
          const self = this;
          document.addEventListener('submit', function(event) {

            let targetForm = event.target.closest('form[action^="/contact"]');


            if(targetForm) {
              const formData = {
                form_location: window.location.href,
                form_id: targetForm.getAttribute('id'),
                form_classes: targetForm.getAttribute('class')
              };
                            
              let formType = targetForm.querySelector('input[name="form_type"]');
              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
              
              inputs.forEach(function(input) {
                var inputName = input.name;
                var inputValue = input.value;
                
                if (inputName && inputValue) {
                  var matches = inputName.match(/\[(.*?)\]/);
                  if (matches && matches.length > 1) {
                     var fieldName = matches[1];
                     formData[fieldName] = input.value;
                  }
                }
              });
              
              if(formType && formType.value === 'customer') {
                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
                self.eventConsole(self.eventPrefix + 'newsletter_signup', { event: self.eventPrefix + 'newsletter_signup', ...formData});

              } else if(formType && formType.value === 'contact') {
                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
                self.eventConsole(self.eventPrefix + 'contact_form_submit', { event: self.eventPrefix + 'contact_form_submit', ...formData});
              }
            }
          });

        }

        // phone_number_click event
        phoneClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="tel:"]');
            if(target) {
              let phone_number = target.getAttribute('href').replace('tel:', '');
              let eventData = {
                event: self.eventPrefix + 'phone_number_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                phone_number
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'phone_number_click', eventData);
            }
          });
        }
  
        // email_click event
        emailClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="mailto:"]');
            if(target) {
              let email_address = target.getAttribute('href').replace('mailto:', '');
              let eventData = {
                event: self.eventPrefix + 'email_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                email_address
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'email_click', eventData);
            }
          });
        }
      } 
      // end Ceos_Data_Layer

      document.addEventListener('DOMContentLoaded', function() {
        try{
          new Ceos_Data_Layer();
        }catch(error) {
          console.log(error);
        }
      });
    
  })();
</script>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content="">

    <link rel="preconnect" href="https://cdn.shopify.com" crossorigin><link rel="icon" type="image/png" href="//www.lavantgardiste.com/cdn/shop/files/Nouveau_projet.png?crop=center&height=32&v=1683873752&width=32"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><link rel="alternate" type="text/html" hreflang="fr" href="https://www.lavantgardiste.com/" />
    <link rel="alternate" type="text/html" hreflang="it" href="https://www.lavantgardiste.it/" />
    <link rel="alternate" type="text/html" hreflang="x-default" href="https://www.lavantgardiste.com/" />
 
     
    <!-- Début SEO Pagination -->
     <title>
      L&#39;Avant Gardiste : Boutique de Cadeaux pour Égayer son Quotidien
</title>

    <script>
      document.addEventListener("DOMContentLoaded", function() {
        const urlParams = new URLSearchParams(window.location.search);
        if (urlParams.has("page") && urlParams.get("page") === "1") {
          document.getElementById("dynamic-title").innerText = "Page 1 | L'avant gardiste";
        }
      });
    </script>
      
        <meta name="description" content="Chez L&#39;Avant Gardiste, explorez une sélection unique de produits originaux et cadeaux uniques qui transforment chaque jour avec modernité et gaieté. Joignez-vous à nous pour cultiver un lifestyle décomplexé et accessible à tous.">
      
    <!-- Fin  SEO - Pagination -->

    

<meta property="og:site_name" content="L&#39;avant gardiste">
<meta property="og:url" content="https://www.lavantgardiste.com/">
<meta property="og:title" content="L&#39;Avant Gardiste : Boutique de Cadeaux pour Égayer son Quotidien">
<meta property="og:type" content="website">
<meta property="og:description" content="Chez L&#39;Avant Gardiste, explorez une sélection unique de produits originaux et cadeaux uniques qui transforment chaque jour avec modernité et gaieté. Joignez-vous à nous pour cultiver un lifestyle décomplexé et accessible à tous."><meta property="og:image" content="http://www.lavantgardiste.com/cdn/shop/files/avg_fb.jpg?v=1644482970">
  <meta property="og:image:secure_url" content="https://www.lavantgardiste.com/cdn/shop/files/avg_fb.jpg?v=1644482970">
  <meta property="og:image:width" content="1200">
  <meta property="og:image:height" content="628"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="L&#39;Avant Gardiste : Boutique de Cadeaux pour Égayer son Quotidien">
<meta name="twitter:description" content="Chez L&#39;Avant Gardiste, explorez une sélection unique de produits originaux et cadeaux uniques qui transforment chaque jour avec modernité et gaieté. Joignez-vous à nous pour cultiver un lifestyle décomplexé et accessible à tous.">



    

    <script>
      document.addEventListener('DOMContentLoaded', function () {
        var url = window.location.search;
        if (url.indexOf('?variant=') !== -1 || url.indexOf('?pr_prod_strat=') !== -1 || url.indexOf('?nosto=') !== -1) {
          var meta = document.createElement('meta');
          meta.name = 'robots';
          meta.content = 'noindex';
          document.getElementsByTagName('head')[0].appendChild(meta);
        }
      });
    </script>

    
      <link rel="canonical" href="https://www.lavantgardiste.com/">
    

    

    <script>
      window.deployer_state = window.deployer_state || {};
    </script>

    <script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/constants.js?v=95358004781563950421683872395" defer="defer"></script>
    <script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/pubsub.js?v=2921868252632587581683872394" defer="defer"></script>
    <script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/global.js?v=136437773134761167641748596264" defer="defer"></script>
    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/57366642876/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="68a9b7ae4b195a2e74fc3b652417e54c">
<meta id="in-context-paypal-metadata" data-shop-id="57366642876" data-venmo-supported="false" data-environment="production" data-locale="fr_FR" data-paypal-v4="true" data-currency="EUR">
<script async="async" src="/checkouts/internal/preloads.js?locale=fr-FR"></script>
<script id="shopify-features" type="application/json">{"accessToken":"68a9b7ae4b195a2e74fc3b652417e54c","betas":["rich-media-storefront-analytics"],"domain":"www.lavantgardiste.com","predictiveSearch":true,"shopId":57366642876,"locale":"fr"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "avant-gardiste-prod.myshopify.com";
Shopify.locale = "fr";
Shopify.currency = {"active":"EUR","rate":"1.0"};
Shopify.country = "FR";
Shopify.theme = {"name":"theme-shopify-avantgardiste\/main","id":149237236060,"schema_name":"Dawn","schema_version":"9.0.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "www.lavantgardiste.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<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>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//www.lavantgardiste.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_ChgkhDwU.fr.esm.js"></script>
<script defer="defer" async type="module" src="//www.lavantgardiste.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BJcqwDuF.esm.js"></script>
<script type="module">
  await import("//www.lavantgardiste.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_ChgkhDwU.fr.esm.js");
await import("//www.lavantgardiste.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BJcqwDuF.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/static.klaviyo.com\/onsite\/js\/klaviyo.js?company_id=V4NLab\u0026shop=avant-gardiste-prod.myshopify.com","https:\/\/cdn-loyalty.yotpo.com\/loader\/0sFTKnplAkPJ3M80GXIThw.js?shop=avant-gardiste-prod.myshopify.com","https:\/\/d18eg7dreypte5.cloudfront.net\/browse-abandonment\/smsbump_timer.js?shop=avant-gardiste-prod.myshopify.com","https:\/\/d18eg7dreypte5.cloudfront.net\/scripts\/integrations\/subscription.js?shop=avant-gardiste-prod.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":57366642876,"offset":3600,"reqid":"ef142206-f79d-465c-9345-f843a83234fa-1765380483","pageurl":"www.lavantgardiste.com\/","u":"236b5c4d0c06","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<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:'Protégé par hCaptcha',privacyText:'Confidentialité',termsText:'Conditions'},(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>
<script integrity="sha256-52AcMU7V7pcBOXWImdc/TAGTFKeNjmkeM1Pvks/DTgc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//www.lavantgardiste.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-81c60534.js" crossorigin="anonymous"></script>
<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://www.lavantgardiste.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.fr.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  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);
</script>
<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})}}));
</script>
<script id='scb4127' type='text/javascript' async='' src='https://www.lavantgardiste.com/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script><link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://www.lavantgardiste.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

#shopify-buyer-consent.hidden {
  display: none;
}

#shopify-subscription-policy-button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

#shopify-subscription-policy-button::before {
  box-shadow: none;
}

      </style>
<script id="sections-script" data-sections="header" defer="defer" src="//www.lavantgardiste.com/cdn/shop/t/54/compiled_assets/scripts.js?57109"></script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>


    <style data-shopify>
      @font-face {
        font-family: "Gilroy Regular";
        src: url("//www.lavantgardiste.com/cdn/shop/t/54/assets/gilroy-regular.otf?v=43083481623925600941683877650") format("opentype");
      }

       @font-face {
        font-family: "Gilroy Medium";
        src: url("//www.lavantgardiste.com/cdn/shop/t/54/assets/gilroy-medium.otf?v=128698552846308913481683877649") format("opentype");
      }

      @font-face {
        font-family: "Gilroy Bold";
        src: url("//www.lavantgardiste.com/cdn/shop/t/54/assets/gilroy-bold.otf?v=8618190526865497851683877646") format("opentype");
      }

      @font-face {
        font-family: "Gilroy Extra Bold";
        src: url("//www.lavantgardiste.com/cdn/shop/t/54/assets/gilroy-extrabold.otf?v=72631651454449740061683877646") format("opentype");
      }

      @font-face {
  font-family: Assistant;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2") format("woff2"),
       url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.6e9875ce64e0fefcd3f4446b7ec9036b3ddd2985.woff") format("woff");
}

      @font-face {
  font-family: Assistant;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n7.bf44452348ec8b8efa3aa3068825305886b1c83c.woff2") format("woff2"),
       url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n7.0c887fee83f6b3bda822f1150b912c72da0f7b64.woff") format("woff");
}

      
      
      @font-face {
  font-family: Assistant;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2") format("woff2"),
       url("//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.6e9875ce64e0fefcd3f4446b7ec9036b3ddd2985.woff") format("woff");
}


      :root {
        --font-body-family: "Gilroy Medium", sans-serif;
        --font-body-style: normal;
        --font-body-weight: 400;
        --font-body-weight-bold: 700;

        --font-heading-family: "Gilroy Extra Bold", sans-serif;
        --font-heading-style: normal;
        --font-heading-weight: 400;

        --font-body-scale: 1.0;
        --font-heading-scale: 1.0;

        --color-base-text: 18, 18, 18;
        --color-shadow: 18, 18, 18;
        --color-base-background-1: 255, 255, 255;
        --color-base-background-2: 247, 247, 247;
        --color-base-solid-button-labels: 255, 255, 255;
        --color-base-outline-button-labels: 18, 18, 18;
        --color-base-accent-1: 18, 18, 18;
        --color-base-accent-2: 242, 222, 229;
        --payment-terms-background-color: #ffffff;

        --gradient-base-background-1: #ffffff;
        --gradient-base-background-2: #f7f7f7;
        --gradient-base-accent-1: #121212;
        --gradient-base-accent-2: #f2dee5;

        --media-padding: px;
        --media-border-opacity: 0.05;
        --media-border-width: 0px;
        --media-radius: 12px;
        --media-shadow-opacity: 0.0;
        --media-shadow-horizontal-offset: 0px;
        --media-shadow-vertical-offset: 4px;
        --media-shadow-blur-radius: 5px;
        --media-shadow-visible: 0;

        --page-width: 150rem;
        --page-width-margin: 0rem;

        --product-card-image-padding: 0.0rem;
        --product-card-corner-radius: 1.0rem;
        --product-card-text-alignment: left;
        --product-card-border-width: 0.0rem;
        --product-card-border-opacity: 0.0;
        --product-card-shadow-opacity: 0.0;
        --product-card-shadow-visible: 0;
        --product-card-shadow-horizontal-offset: 0.0rem;
        --product-card-shadow-vertical-offset: 0.0rem;
        --product-card-shadow-blur-radius: 0.0rem;

        --collection-card-image-padding: 0.0rem;
        --collection-card-corner-radius: 1.6rem;
        --collection-card-text-alignment: left;
        --collection-card-border-width: 0.0rem;
        --collection-card-border-opacity: 0.0;
        --collection-card-shadow-opacity: 0.0;
        --collection-card-shadow-visible: 0;
        --collection-card-shadow-horizontal-offset: 0.0rem;
        --collection-card-shadow-vertical-offset: 0.0rem;
        --collection-card-shadow-blur-radius: 0.0rem;

        --blog-card-image-padding: 0.0rem;
        --blog-card-corner-radius: 0.0rem;
        --blog-card-text-alignment: left;
        --blog-card-border-width: 0.0rem;
        --blog-card-border-opacity: 0.1;
        --blog-card-shadow-opacity: 0.0;
        --blog-card-shadow-visible: 0;
        --blog-card-shadow-horizontal-offset: 0.0rem;
        --blog-card-shadow-vertical-offset: 0.4rem;
        --blog-card-shadow-blur-radius: 0.5rem;

        --badge-corner-radius: 4.0rem;

        --popup-border-width: 1px;
        --popup-border-opacity: 0.1;
        --popup-corner-radius: 0px;
        --popup-shadow-opacity: 0.0;
        --popup-shadow-horizontal-offset: 0px;
        --popup-shadow-vertical-offset: 4px;
        --popup-shadow-blur-radius: 5px;

        --drawer-border-width: 1px;
        --drawer-border-opacity: 0.1;
        --drawer-shadow-opacity: 0.0;
        --drawer-shadow-horizontal-offset: 0px;
        --drawer-shadow-vertical-offset: 4px;
        --drawer-shadow-blur-radius: 5px;

        --spacing-sections-desktop: 0px;
        --spacing-sections-mobile: 0px;

        --grid-desktop-vertical-spacing: 12px;
        --grid-desktop-horizontal-spacing: 16px;
        --grid-mobile-vertical-spacing: 6px;
        --grid-mobile-horizontal-spacing: 8px;

        --text-boxes-border-opacity: 0.1;
        --text-boxes-border-width: 0px;
        --text-boxes-radius: 0px;
        --text-boxes-shadow-opacity: 0.0;
        --text-boxes-shadow-visible: 0;
        --text-boxes-shadow-horizontal-offset: 0px;
        --text-boxes-shadow-vertical-offset: 4px;
        --text-boxes-shadow-blur-radius: 5px;

        --buttons-radius: 28px;
        --buttons-radius-outset: 29px;
        --buttons-border-width: 1px;
        --buttons-border-opacity: 1.0;
        --buttons-shadow-opacity: 0.0;
        --buttons-shadow-visible: 0;
        --buttons-shadow-horizontal-offset: 0px;
        --buttons-shadow-vertical-offset: 4px;
        --buttons-shadow-blur-radius: 5px;
        --buttons-border-offset: 0.3px;

        --inputs-radius: 22px;
        --inputs-border-width: 1px;
        --inputs-border-opacity: 0.55;
        --inputs-shadow-opacity: 0.0;
        --inputs-shadow-horizontal-offset: 0px;
        --inputs-margin-offset: 0px;
        --inputs-shadow-vertical-offset: 4px;
        --inputs-shadow-blur-radius: 5px;
        --inputs-radius-outset: 23px;

        --variant-pills-radius: 6px;
        --variant-pills-border-width: 2px;
        --variant-pills-border-opacity: 0.55;
        --variant-pills-shadow-opacity: 0.0;
        --variant-pills-shadow-horizontal-offset: 0px;
        --variant-pills-shadow-vertical-offset: 4px;
        --variant-pills-shadow-blur-radius: 5px;
      }

      *,
      *::before,
      *::after {
        box-sizing: inherit;
      }

      html {
        box-sizing: border-box;
        font-size: calc(var(--font-body-scale) * 62.5%);
        height: 100%;
        scroll-behavior: smooth;
      }

      body {
        display: grid;
        grid-template-rows: auto auto 1fr auto;
        grid-template-columns: 100%;
        min-height: 100%;
        margin: 0;
        font-size: 1.6rem;
        letter-spacing: 0rem;
        line-height: calc(1 + 0.8 / var(--font-body-scale));
        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
        scroll-behavior: smooth;
      }

      @media screen and (min-width: 750px) {
        body {
          font-size: 1.6rem;
        }
      }
    </style>

    <link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/base.css?v=129287464667198024511765351182" rel="stylesheet" type="text/css" media="all" />
    <link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/surcouche-wishlist.css?v=173719298259637459731737465602" rel="stylesheet" type="text/css" media="all" />
<link rel="preload" as="font" href="//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2" type="font/woff2" crossorigin><link rel="preload" as="font" href="//www.lavantgardiste.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2" type="font/woff2" crossorigin><link
        rel="stylesheet"
        href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-predictive-search.css?v=85913294783299393391683872395"
        media="print"
        onload="this.media='all'"
      ><script>
      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
      if (Shopify.designMode) {
        document.documentElement.classList.add('shopify-design-mode');
      }
    </script>

   
    <!-- TAGinstall START -->
    <script>
       (function(w) {  var first = document.getElementsByTagName('script')[0];  var script = document.createElement('script');  script.async = true;  script.src = 'https://gtm.taginstall.com/sites/5119b9918cda032d1e7f323eac91f98942350ebadb7830653c81422c879d5b98/gtm-data-layer-108-210715340.js';  script.addEventListener ("load", function() {  function start() {    var allProducts = [];  var shopCurrency = 'EUR';  var collectionTitle = null;    var customer = {  customerType: 'guest'  };    var pageType = 'Home Page';  var searchPerformed = false;  var cart = {  "items": [],  "total": 0.0,  "currency": "EUR",  };  if (!w.__TAGinstall) {  console.error('Unable to initialize Easy Tag - GTM & Data Layer.');  return;  }  w.__TAGinstall.init({  shopCurrency, allProducts, collectionTitle, searchPerformed, pageType, customer, cartData: cart  });    };  if (w.__TAGinstall && w.__TAGinstall.boot) {  w.__TAGinstall.boot(start);  }  }, false);  first.parentNode.insertBefore(script, first); })(window);
    </script>
    <!-- TAGinstall END -->

    <script>
    /**********************
    * DATALAYER ARCHITECTURE: SHOPIFY
    * DEFINITION: A data layer helps you collect more accurate analytics data, that in turn allows you to better understand what potential buyers are doing on your website and where you can make improvements. It also reduces the time to implement marketing tags on a website, and reduces the need for IT involvement, leaving them to get on with implementing new features and fixing bugs.

    * RESOURCES:
    * http://www.datalayerdoctor.com/a-gentle-introduction-to-the-data-layer-for-digital-marketers/
    * http://www.simoahava.com/analytics/data-layer/

    * EXTERNAL DEPENDENCIES:
    * jQuery
    * jQuery Cookie Plugin v1.4.1 - https://github.com/carhartl/jquery-cookie
    * cartjs - https://github.com/discolabs/cartjs

    * DataLayer Architecture: Shopify v1.2
    * COPYRIGHT 2021
    * LICENSES: MIT ( https://opensource.org/licenses/MIT )
    */

    /**********************
    * PRELOADS
    * load jquery if it doesn't exist
    ***********************/

    if(!window.jQuery){
        var jqueryScript = document.createElement('script');
        jqueryScript.setAttribute('src','https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js');
        document.head.appendChild(jqueryScript);
    }

    __DL__jQueryinterval = setInterval(function(){
        // wait for jQuery to load & run script after jQuery has loaded
        if(window.jQuery){
            // search parameters
            getURLParams = function(name, url){
                if (!url) url = window.location.href;
                name = name.replace(/[\[\]]/g, "\\$&");
                var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
                results = regex.exec(url);
                if (!results) return null;
                if (!results[2]) return '';
                return decodeURIComponent(results[2].replace(/\+/g, " "));
            };

            /**********************
            * DYNAMIC DEPENDENCIES
            ***********************/

            __DL__ = {
                dynamicCart: true,  // if cart is dynamic (meaning no refresh on cart add) set to true
                debug: false, // if true, console messages will be displayed
                cart: null,
                wishlist: null,
                removeCart: null
            };

            customBindings = {
                cartTriggers: [],
                viewCart: [],
                removeCartTrigger: [],
                cartVisableSelector: [],
                promoSubscriptionsSelectors: [],
                promoSuccess: [],
                ctaSelectors: [],
                newsletterSelectors: [],
                newsletterSuccess: [],
                searchPage: [],
                wishlistSelector: [],
                removeWishlist: [],
                wishlistPage: [],
                searchTermQuery: [getURLParams('q')], // replace var with correct query
            };

            /* DO NOT EDIT */
            defaultBindings = {
                cartTriggers: ['form[action="/cart/add"] [type="submit"],.add-to-cart,.cart-btn'],
                viewCart: ['form[action="/cart"],.my-cart,.trigger-cart,#mobileCart'],
                removeCartTrigger: ['[href*="/cart/change"]'],
                cartVisableSelector: ['.inlinecart.is-active,.inline-cart.is-active'],
                promoSubscriptionsSelectors: [],
                promoSuccess: [],
                ctaSelectors: [],
                newsletterSelectors: ['input.contact_email'],
                newsletterSuccess: ['.success_message'],
                searchPage: ['search'],
                wishlistSelector: [],
                removeWishlist: [],
                wishlistPage: []
            };

            // stitch bindings
            objectArray = customBindings;
            outputObject = __DL__;

            applyBindings = function(objectArray, outputObject){
                for (var x in objectArray) {
                    var key = x;
                    var objs = objectArray[x];
                    values = [];
                    if(objs.length > 0){
                        values.push(objs);
                        if(key in outputObject){
                            values.push(outputObject[key]);
                            outputObject[key] = values.join(", ");
                        }else{
                            outputObject[key] = values.join(", ");
                        }
                    }
                }
            };

            applyBindings(customBindings, __DL__);
            applyBindings(defaultBindings, __DL__);

            /**********************
            * PREREQUISITE LIBRARIES
            ***********************/

            clearInterval(__DL__jQueryinterval);

            // jquery-cookies.js
            if(typeof $.cookie!==undefined){(function(a){if(typeof define==='function'&&define.amd){define(['jquery'],a)}else if(typeof exports==='object'){module.exports=a(require('jquery'))}else{a(jQuery)}}(function($){var g=/\+/g;function encode(s){return h.raw?s:encodeURIComponent(s)}function decode(s){return h.raw?s:decodeURIComponent(s)}function stringifyCookieValue(a){return encode(h.json?JSON.stringify(a):String(a))}function parseCookieValue(s){if(s.indexOf('"')===0){s=s.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,'\\')}try{s=decodeURIComponent(s.replace(g,' '));return h.json?JSON.parse(s):s}catch(e){}}function read(s,a){var b=h.raw?s:parseCookieValue(s);return $.isFunction(a)?a(b):b}var h=$.cookie=function(a,b,c){if(arguments.length>1&&!$.isFunction(b)){c=$.extend({},h.defaults,c);if(typeof c.expires==='number'){var d=c.expires,t=c.expires=new Date();t.setMilliseconds(t.getMilliseconds()+d*864e+5)}return(document.cookie=[encode(a),'=',stringifyCookieValue(b),c.expires?'; expires='+c.expires.toUTCString():'',c.path?'; path='+c.path:'',c.domain?'; domain='+c.domain:'',c.secure?'; secure':''].join(''))}var e=a?undefined:{},cookies=document.cookie?document.cookie.split('; '):[],i=0,l=cookies.length;for(;i<l;i++){var f=cookies[i].split('='),name=decode(f.shift()),cookie=f.join('=');if(a===name){e=read(cookie,b);break}if(!a&&(cookie=read(cookie))!==undefined){e[name]=cookie}}return e};h.defaults={};$.removeCookie=function(a,b){$.cookie(a,'',$.extend({},b,{expires:-1}));return!$.cookie(a)}}))}

            /**********************
            * Begin dataLayer Build
            ***********************/

            /**
            * DEBUG
            * Set to true or false to display messages to the console
            */
            if(__DL__.debug){
                console.log('=====================\n| DATALAYER SHOPIFY |\n---------------------');
                console.log('Page Template: index');
            }

            window.dataLayer = window.dataLayer || [];  // init data layer if doesn't already exist
            dataLayer.push({'event': 'Begin DataLayer'}); // begin datalayer

            var template = "index";

            /**
            * Landing Page Cookie
            * 1. Detect if user just landed on the site
            * 2. Only fires if Page Title matches website */

            $.cookie.raw = true;
            if ($.cookie('landingPage') === undefined || $.cookie('landingPage').length === 0) {
                var landingPage = true;
                $.cookie('landingPage', unescape);
                $.removeCookie('landingPage', {path: '/'});
                $.cookie('landingPage', 'landed', {path: '/'});
            } else {
                var landingPage = false;
                $.cookie('landingPage', unescape);
                $.removeCookie('landingPage', {path: '/'});
                $.cookie('landingPage', 'refresh', {path: '/'});
            }
            if (__DL__.debug) {
                console.log('Landing Page: ' + landingPage);
            }

            /**
            * Log State Cookie */

            
            var isLoggedIn = false;
            
            if (!isLoggedIn) {
                $.cookie('logState', unescape);
                $.removeCookie('logState', {path: '/'});
                $.cookie('logState', 'loggedOut', {path: '/'});
            } else {
                if ($.cookie('logState') === 'loggedOut' || $.cookie('logState') === undefined) {
                    $.cookie('logState', unescape);
                    $.removeCookie('logState', {path: '/'});
                    $.cookie('logState', 'firstLog', {path: '/'});
                } else if ($.cookie('logState') === 'firstLog') {
                    $.cookie('logState', unescape);
                    $.removeCookie('logState', {path: '/'});
                    $.cookie('logState', 'refresh', {path: '/'});
                }
            }

            if ($.cookie('logState') === 'firstLog') {
                var firstLog = true;
            } else {
                var firstLog = false;
            }

            /**********************
            * DATALAYER SECTIONS
            ***********************/

            /**
            * DATALAYER: Landing Page
            * Fires any time a user first lands on the site. */

            if ($.cookie('landingPage') === 'landed') {
                dataLayer.push({
                    'pageType': 'Landing',
                    'event': 'Landing'
                });

                if (__DL__.debug) {
                    console.log('DATALAYER: Landing Page fired.');
                }
            }

            /**
            * DATALAYER: Log State
            * 1. Determine if user is logged in or not.
            * 2. Return User specific data. */

            var logState = {
                
                
                'logState' : "Logged Out",
                
                
                'firstLog'      : firstLog,
                'customerEmail' : null,
                'timestamp'     : Date.now(),
                
                'customerType'       : 'New',
                'customerTypeNumber' :'1',
                
                'shippingInfo' : {
                    'fullName'  : null,
                    'firstName' : null,
                    'lastName'  : null,
                    'address1'  : null,
                    'address2'  : null,
                    'street'    : null,
                    'city'      : null,
                    'province'  : null,
                    'zip'       : null,
                    'country'   : null,
                    'phone'     : null,
                },
                'billingInfo' : {
                    'fullName'  : null,
                    'firstName' : null,
                    'lastName'  : null,
                    'address1'  : null,
                    'address2'  : null,
                    'street'    : null,
                    'city'      : null,
                    'province'  : null,
                    'zip'       : null,
                    'country'   : null,
                    'phone'     : null,
                },
                'checkoutEmail' : null,
                'currency'      : "EUR",
                'pageType'      : 'Log State',
                'event'         : 'Log State'
            }

            dataLayer.push(logState);
            if(__DL__.debug){
                console.log("Log State"+" :"+JSON.stringify(logState, null, " "));
            }

            /**
            * DATALAYER: Homepage */

            if(document.location.pathname == "/"){
                var homepage = {
                    'pageType' : 'Homepage',
                    'event'    : 'Homepage'
                };
                dataLayer.push(homepage);
                if(__DL__.debug){
                    console.log("Homepage"+" :"+JSON.stringify(homepage, null, " "));
                }
            }

            /**
            * DATALAYER: Blog Articles
            * Fire on Blog Article Pages */

            

            /** DATALAYER: Product List Page (Collections, Category)
            * Fire on all product listing pages. */

            

                /** DATALAYER: Product Page
                * Fire on all Product View pages. */

                if (template.match(/.*product.*/gi) && !template.match(/.*collection.*/gi)) {

                    sku = '';
                    var product = {
                        'products': [{
                            'id'              : null,
                            'sku'             : null,
                            'variantId'       : null,
                            'productType'     : null,
                            'name'            : null,
                            'price'           : "",
                            'description'     : "",
                            'imageURL'        : "https://www.lavantgardiste.com/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_grande.gif",
                            'productURL'      : 'https://www.lavantgardiste.com',
                            'brand'           : "L\u0026#39;avant gardiste",
                            'comparePrice'    : "",
                            'categories'      : [],
                            'currentCategory' : null,
                            'productOptions'  : {
                                
                            }
                        }]
                    };

                    function productView(){
                        var sku = null;
                        dataLayer.push(product, {
                            'pageType' : 'Product',
                            'event'    : 'Product'});
                            if(__DL__.debug){
                                console.log("Product"+" :"+JSON.stringify(product, null, " "));
                            }
                        }
                        productView();

                        $(__DL__.cartTriggers).click(function(){
                            var skumatch = null;
                            if(sku != skumatch){
                                productView();
                            }
                        });
                    }

                    /** DATALAYER: Cart View
                    * Fire anytime a user views their cart (non-dynamic) */

                    

                    /**
                    * DATALAYER Variable
                    * Checkout & Transaction Data */

                    __DL__products = [];

                    
                    transactionData = {
                        'transactionNumber'      : null,
                        'transactionId'          : null,
                        'transactionAffiliation' : "L\u0026#39;avant gardiste",
                        'transactionTotal'       : "",
                        'transactionTax'         : "",
                        'transactionShipping'    : "",
                        'transactionSubtotal'    : "",
                        

                        'products': __DL__products
                    };

                    if(__DL__.debug == true){

                        /** DATALAYER: Transaction */
                        if(document.location.pathname.match(/.*order.*/g)){
                            dataLayer.push(transactionData,{
                                'pageType' :'Transaction',
                                'event'    :'Transaction'
                            });
                            console.log("Transaction Data"+" :"+JSON.stringify(transactionData, null, " "));
                        }
                    }

                    /** DATALAYER: Checkout */
                    if(Shopify.Checkout){
                        if(Shopify.Checkout.step){
                            if(Shopify.Checkout.step.length > 0){
                                if (Shopify.Checkout.step === 'contact_information'){
                                    dataLayer.push(transactionData,{
                                        'event'    :'Customer Information',
                                        'pageType' :'Customer Information'});
                                    }else if (Shopify.Checkout.step === 'shipping_method'){
                                        dataLayer.push(transactionData,{
                                            'event'    :'Shipping Information',
                                            'pageType' :'Shipping Information'});
                                        }else if( Shopify.Checkout.step === "payment_method" ){
                                            dataLayer.push(transactionData,{
                                                'event'    :'Add Payment Info',
                                                'pageType' :'Add Payment Info'});
                                            }
                                        }

                                        if(__DL__.debug == true){
                                            /** DATALAYER: Transaction */
                                            if(Shopify.Checkout.page == "thank_you"){
                                                dataLayer.push(transactionData,{
                                                    'pageType' :'Transaction',
                                                    'event'    :'Transaction'
                                                });
                                                console.log("Transaction Data"+" :"+JSON.stringify(transactionData, null, " "));
                                            }
                                        }else{
                                            /** DATALAYER: Transaction */
                                            if(Shopify.Checkout.page == "thank_you"){
                                                dataLayer.push(transactionData,{
                                                    'pageType' :'Transaction',
                                                    'event'    :'Transaction'
                                                });
                                            }
                                        }
                                    }
                                }

                                /** DATALAYER: All Pages
                                * Fire all pages trigger after all additional dataLayers have loaded. */

                                dataLayer.push({
                                    'event': 'DataLayer Loaded'
                                });


                                /**********************
                                * DATALAYER EVENT BINDINGS
                                ***********************/

                                /** DATALAYER:
                                * Add to Cart / Dynamic Cart View
                                * Fire all pages trigger after all additional dataLayers have loaded. */

                                $(document).ready(function() {

                                    /** DATALAYER: Search Results */

                                    var searchPage = new RegExp(__DL__.searchPage, "g");
                                    if(document.location.pathname.match(searchPage)){
                                        var search = {
                                            'searchTerm' : __DL__.searchTermQuery,
                                            'pageType'   : "Search",
                                            'event'      : "Search"
                                        };

                                        dataLayer.push(search);
                                        if(__DL__.debug){
                                            console.log("Search"+" :"+JSON.stringify(search, null, " "));
                                        }
                                    }

                                    /** DATALAYER: Cart */

                                    // stage cart data
                                    function mapJSONcartData(){
                                        jQuery.getJSON('/cart.js', function (response) {
                                            // get Json response
                                            __DL__.cart = response;
                                            var cart = {
                                                'products': __DL__.cart.items.map(function (line_item) {
                                                    return {
                                                        'id'       : line_item.id,
                                                        'sku'      : line_item.sku,
                                                        'variant'  : line_item.variant_id,
                                                        'name'     : line_item.title,
                                                        'price'    : (line_item.price/100),
                                                        'quantity' : line_item.quantity
                                                    }
                                                }),
                                                'pageType' : 'Cart',
                                                'event'    : 'Cart'
                                            };
                                            if(cart.products.length > 0){
                                                dataLayer.push(cart);
                                                if (__DL__.debug) {
                                                    console.log("Cart"+" :"+JSON.stringify(cart, null, " "));
                                                }
                                            }
                                        });
                                    }

                                    viewcartfire = 0;

                                    // view cart
                                    $(__DL__.viewCart).on('click', function (event) {
                                        if(viewcartfire !== 1){
                                            viewcartfire = 1;
                                            // if dynamic cart is TRUE
                                            if (__DL__.dynamicCart) {
                                                cartCheck = setInterval(function () {
                                                    // begin check interval
                                                    if ($(__DL__.cartVisableSelector).length > 0) {
                                                        // check visible selectors
                                                        clearInterval(cartCheck);
                                                        mapJSONcartData();
                                                        $(__DL__.removeCartTrigger).on('click', function (event) {
                                                            // remove from cart
                                                            var link = $(this).attr("href");
                                                            jQuery.getJSON(link, function (response) {
                                                                // get Json response
                                                                __DL__.removeCart = response;
                                                                var removeFromCart = {
                                                                    'products': __DL__.removeCart.items.map(function (line_item) {
                                                                        return {
                                                                            'id'       : line_item.id,
                                                                            'sku'      : line_item.sku,
                                                                            'variant'  : line_item.variant_id,
                                                                            'name'     : line_item.title,
                                                                            'price'    : (line_item.price/100),
                                                                            'quantity' : line_item.quantity
                                                                        }
                                                                    }),
                                                                    'pageType' : 'Remove from Cart',
                                                                    'event'    : 'Remove from Cart'
                                                                };
                                                                dataLayer.push(removeFromCart);
                                                                if (__DL__.debug) {
                                                                    console.log("Cart"+" :"+JSON.stringify(removeFromCart, null, " "));
                                                                }
                                                            });
                                                        });
                                                    }
                                                }, 500);
                                            }
                                        }
                                    });

                                    // add to cart
                                    jQuery.getJSON('/cart.js', function (response) {
                                        // get Json response
                                        __DL__.cart = response;
                                        var cart = {
                                            'products': __DL__.cart.items.map(function (line_item) {
                                                return {
                                                    'id'       : line_item.id,
                                                    'sku'      : line_item.sku,
                                                    'variant'  : line_item.variant_id,
                                                    'name'     : line_item.title,
                                                    'price'    : (line_item.price/100),
                                                    'quantity' : line_item.quantity
                                                }
                                            })
                                        }
                                        __DL__.cart = cart;
                                        collection_cartIDs = [];
                                        collection_matchIDs = [];
                                        collection_addtocart = [];
                                        for (var i = __DL__.cart.products.length - 1; i >= 0; i--) {
                                            var x = parseFloat(__DL__.cart.products[i].variant);
                                            collection_cartIDs.push(x);
                                        }
                                    });

                                    function __DL__addtocart(){

                                    

                                        dataLayer.push(product, {
                                            'pageType' : 'Add to Cart',
                                            'event'    : 'Add to Cart'
                                        });

                                        if (__DL__.debug) {
                                            console.log("Add to Cart"+" :"+JSON.stringify(product, null, " "));
                                        }

                                        

                                        // if dynamic cart is TRUE
                                        if (__DL__.dynamicCart) {
                                            var cartCheck = setInterval(function () {
                                                // begin check interval
                                                if ($(__DL__.cartVisableSelector).length > 0) {
                                                    // check visible selectors
                                                    clearInterval(cartCheck);
                                                    mapJSONcartData();
                                                    $(__DL__.removeCartTrigger).on('click', function (event) {
                                                        // remove from cart
                                                        var link = $(this).attr("href");
                                                        jQuery.getJSON(link, function (response) {
                                                            // get Json response
                                                            __DL__.removeCart = response;
                                                            var removeFromCart = {
                                                                'products': __DL__.removeCart.items.map(function (line_item) {
                                                                    return {
                                                                        'id'       : line_item.id,
                                                                        'sku'      : line_item.sku,
                                                                        'variant'  : line_item.variant_id,
                                                                        'name'     : line_item.title,
                                                                        'price'    : (line_item.price/100),
                                                                        'quantity' : line_item.quantity
                                                                    }
                                                                }),
                                                                'pageType' : 'Remove from Cart',
                                                                'event'    : 'Remove from Cart'
                                                            };
                                                            dataLayer.push(removeFromCart);
                                                            if (__DL__.debug) {
                                                                console.log("Cart"+" :"+JSON.stringify(removeFromCart, null, " "));
                                                            }
                                                        });
                                                    });
                                                }
                                            }, 500);
                                        }
                                    }

                                    $(document).on('click', __DL__.cartTriggers, function() {
                                        __DL__addtocart();
                                    });

                                    /**
                                     * DATALAYER: Newsletter Subscription */
                                    __DL__newsletter_fire = 0;
                                    $(document).on('click', __DL__.newsletterSelectors, function () {
                                        if(__DL__newsletter_fire !== 1){
                                            __DL__newsletter_fire = 1;
                                            var newsletterCheck = setInterval(function () {
                                                // begin check interval
                                                if ($(__DL__.newsletterSuccess).length > 0) {
                                                    // check visible selectors
                                                    clearInterval(newsletterCheck);
                                                    dataLayer.push({'event': 'Newsletter Subscription'});
                                                }
                                            },500);
                                        }
                                    });

                                    /** DATALAYER: Wishlist */
                                    setTimeout( function(){

                                        $(__DL__.wishlistSelector).on('click', function () {
                                            dataLayer.push(product,
                                                {'event': 'Add to Wishlist'});
                                                if(__DL__.debug){
                                                    console.log("Wishlist"+" :"+JSON.stringify(product, null, " "));
                                                }
                                            });

                                            if(document.location.pathname == __DL__.wishlistPage){
                                                var __DL__productLinks = $('[href*="product"]');
                                                var __DL__prods        = [];
                                                var __DL__links        = [];
                                                var __DL__count        = 1;

                                                $(__DL__productLinks).each(function(){
                                                    var href = $(this).attr("href");
                                                    if(!__DL__links.includes(href)){
                                                        __DL__links.push(href);
                                                        $(this).attr("dataLayer-wishlist-item",__DL__count++);
                                                        jQuery.getJSON(href, function (response) {
                                                            // get Json response
                                                            __DL__.wishlist = response;
                                                            var wishlistproducts = {
                                                                'id'   : __DL__.wishlist.product.id,
                                                                'name' : __DL__.wishlist.product.title,
                                                            };
                                                            __DL__prods.push(wishlistproducts);
                                                        });
                                                    }
                                                });

                                                dataLayer.push({'products': __DL__prods,
                                                'pageType' : 'Wishlist',
                                                'event'    : 'Wishlist'});
                                            }

                                            var __DL__count = 1;
                                            var wishlistDel  = $(__DL__.removeWishlist);
                                            wishlistDel.each(function(){
                                                $(this).attr("dataLayer-wishlist-item-del",__DL__count++);
                                            });

                                            $(__DL__.removeWishlist).on('click', function(){
                                                var index = $(this).attr("dataLayer-wishlist-item-del");
                                                var link  = $("[dataLayer-wishlist-item="+index+"]").attr("href");
                                                jQuery.getJSON(link, function (response) {
                                                    // get Json response
                                                    __DL__.wishlist     = response;
                                                    var wishlistproducts = {
                                                        'id'   : __DL__.wishlist.product.id,
                                                        'name' : __DL__.wishlist.product.title,
                                                    };

                                                    dataLayer.push({'products': wishlistproducts,
                                                    'pageType' : 'Wishlist',
                                                    'event'    : 'Wishlist Delete Product'});
                                                });
                                            })
                                        }, 3000);

                                        /** DATALAYER: CTAs */
                                        $(__DL__.ctaSelectors).on('click', function () {
                                            var ctaCheck = setInterval(function () {
                                                // begin check interval
                                                if ($(__DL__.ctaSuccess).length > 0) {
                                                    // check visible selectors
                                                    clearInterval(ctaCheck);
                                                    dataLayer.push({'event': 'CTA'});
                                                }
                                            },500);
                                        });

                                        /** DATALAYER: Promo Subscriptions */
                                        $(__DL__.promoSubscriptionsSelectors).on('click', function () {
                                            var ctaCheck = setInterval(function () {
                                                // begin check interval
                                                if ($(__DL__.promoSuccess).length > 0) {
                                                    // check visible selectors
                                                    clearInterval(ctaCheck);
                                                    dataLayer.push({'event': 'Promo Subscription'});
                                                }
                                            },500);
                                        });

                                    }); // document ready
                                }
                            }, 500);
</script>


    <script>
    
    
    
    
    
    
    var gsf_conversion_data = {page_type : 'home', event : 'page_view', data : {product_data : [{variant_id : 54877941039452, product_id : 15078596837724, name : "100 petits canards", price : "10.00", currency : "EUR", sku : "9782017295105", brand : "Hachette Pratique", variant : "Default Title", category : "Jeux"}, {variant_id : 46747048116572, product_id : 8424183726428, name : "365 femmes qui ont changé le monde", price : "19.95", currency : "EUR", sku : "9782019452797", brand : "Hachette Pratique", variant : "Default Title", category : "Livres"}], total_price :"29.95", shop_currency : "EUR"}};
    
    
</script>

    <script>
      window.testSection = false;
      
    </script>
    <script>
      window.Shopify = window.Shopify || {theme: {id: 149237236060, role: 'main' } };
      window._template = {
          directory: "",
          name: "index",
          suffix: ""
      }
    </script>
    <script src="https://cdn.intelligems.io/02272d3b0466.js"></script>
    
    

    
  <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "WebSite",
      "name": "L\u0026#39;avant gardiste",
      "potentialAction": {
        "@type": "SearchAction",
        "target": "https:\/\/www.lavantgardiste.com\/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
      },
      "url": "https:\/\/www.lavantgardiste.com"
    }
  </script>
  <!-- BEGIN app block: shopify://apps/addingwell/blocks/aw-gtm/c8ed21e7-0ac8-4249-8c91-cbdde850b5b8 --><script
  type="module"
>
  setTimeout(async function () {
    const keySessionStorage = 'aw_settings';
    let __AW__settings = JSON.parse(sessionStorage.getItem(keySessionStorage));
    if(!__AW__settings) {
      const awSettings = await fetch(
              "/apps/addingwell-proxy",
              {
                method: "GET",
                redirect: "follow",
                headers: {'Content-Type': 'application/json', 'Access-Control-Allow-Origin': '*'}
              }
      );
      if (awSettings.ok) {
        __AW__settings = await awSettings.json();
        sessionStorage.setItem(keySessionStorage, JSON.stringify(__AW__settings));
      } else {
        console.error('Addingwell - Loading proxy error', awSettings.status);
        return;
      }
    }

    if(__AW__settings.insertGtmTag && __AW__settings.gtmId) {
      let __AW__gtmUrl = 'https://www.googletagmanager.com/gtm.js';
      let __AW__isAddingwellCdn = false;
      if(__AW__settings.insertGtmUrl && __AW__settings.gtmUrl) {
        __AW__gtmUrl = __AW__settings.gtmUrl;
        __AW__isAddingwellCdn = __AW__settings.isAddingwellCdn;
      }

      (function(w,d,s,l,i){
        w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});
        var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
        j.async=true;
        j.src=`${__AW__gtmUrl}?${__AW__isAddingwellCdn ? 'awl' : 'id'}=`+(__AW__isAddingwellCdn ? i.replace(/^GTM-/, '') : i)+dl;f.parentNode.insertBefore(j,f);
      })(window,document,'script',`${__AW__settings.dataLayerVariableName}`,`${__AW__settings.gtmId}`);
    }

    const __AW__getEventNameWithSuffix = (eventName) => {
      return eventName + (__AW__settings.dataLayerEventSuffix ? "_" + __AW__settings.dataLayerEventSuffix : "");
    }

    if(__AW__settings.enableDataLayer) {
      const MAX_ITEMS_BATCH = 10;
      const sendBatchEvents = (items, eventName, eventObject) => {
        let batch = [];
        for(let i  = 0; i < items.length; i++) {
          batch.push(items[i]);
          if(batch.length === MAX_ITEMS_BATCH || i === items.length - 1) {
            const eventClone = {
              ...eventObject,
              ecommerce: {
                ...eventObject.ecommerce,
                items: [...batch]
              }
            };
            window[__AW__settings.dataLayerVariableName].push({ ecommerce: null });
            window[__AW__settings.dataLayerVariableName].push({
              ...{'event': __AW__getEventNameWithSuffix(eventName)},
              ...eventClone
            });

            batch = [];
          }
        }
      }

      function __AW__filterNullOrEmpty(obj) {
        let filteredObj = {};

        for (let key in obj) {
          if (obj.hasOwnProperty(key)) {
            let value = obj[key];

            // If value is an object (and not null), recursively filter sub-elements
            if (typeof value === "object" && value !== null && value !== undefined) {
              let filteredSubObject = __AW__filterNullOrEmpty(value);

              // Add the filtered sub-object only if it's not empty
              if (Object.keys(filteredSubObject).length > 0) {
                filteredObj[key] = filteredSubObject;
              }
            } else {
              // Add the value only if it's neither null nor an empty string
              if (value !== null && value !== "" && value !== undefined) {
                filteredObj[key] = value;
              }
            }
          }
        }
        return filteredObj;
      }

      function getPageType(value) {
        const pageTypeMapping = {
          404: '404',
          article: 'article',
          blog: 'blog',
          cart: 'cart',
          collection: 'collection',
          gift_card: 'gift_card',
          index: 'homepage',
          product: 'product',
          search: 'searchresults',
          'customers/login': 'login',
          'customers/register': 'sign_up'
        };
        return pageTypeMapping[value] || 'other';
      }

      function pushDataLayerEvents() {
        window[__AW__settings.dataLayerVariableName] = window[__AW__settings.dataLayerVariableName] || [];  // init data layer if doesn't already exist
        var template = "index";
        const moneyFormat = "{{amount_with_comma_separator}}€";

        const getFormattedPrice = (price) => {
          let formattedPrice = price;
          if(moneyFormat.indexOf("amount_with_period_and_space_separator") > -1) {
            formattedPrice = price.replace(' ', '');
          } else if(moneyFormat.indexOf("amount_with_space_separator") > -1) {
            formattedPrice = price.replace(' ', '').replace(',', '.');
          } else if(moneyFormat.indexOf("amount_no_decimals_with_space_separator") > -1) {
            formattedPrice = price.replace(' ', '');
          } else if(moneyFormat.indexOf("amount_with_apostrophe_separator") > -1) {
            formattedPrice = price.replace('\'', '');
          } else if(moneyFormat.indexOf("amount_no_decimals_with_comma_separator") > -1) {
            formattedPrice = price.replace('.', '');
          } else if(moneyFormat.indexOf("amount_with_comma_separator") > -1) {
            formattedPrice = price.replace('.', '').replace(',', '.');
          } else if(moneyFormat.indexOf("amount_no_decimals") > -1) {
            formattedPrice = price.replace(',', '');
          } else if(moneyFormat.indexOf("amount") > -1) {
            formattedPrice = price.replace(',', '');
          } else {
            formattedPrice = price.replace('.', '').replace(",", ".");
          }
          return parseFloat(formattedPrice);
        };
        /**********************
         * DATALAYER SECTIONS
         ***********************/
        /**
         * DATALAYER: User Data
         * Build user_data properties.
         */
        let newCustomer = true;
        window.__AW__UserData = {
          user_data: {
            new_customer: newCustomer,
          }
        };

        

        window.__AW__UserData = __AW__filterNullOrEmpty(window.__AW__UserData);
        
        // Ajout du hash SHA256 des champs sensibles de user_data (version robuste)
        async function sha256(str) {
          if (!str) return undefined;
          if (!(window.crypto && window.crypto.subtle)) {
            console.error('Crypto.subtle non supporté, hash impossible pour :', str);
            return undefined;
          }
          try {
            const buf = await window.crypto.subtle.digest('SHA-256', new TextEncoder().encode(str));
            return Array.from(new Uint8Array(buf)).map(x => x.toString(16).padStart(2, '0')).join('');
          } catch (e) {
            console.error('Erreur lors du hash SHA256 pour', str, e);
            return undefined;
          }
        }
        async function getUserDataHash(user_data) {
          const hashObj = {};
          if (!user_data) return hashObj;
          try {
            if (user_data.email_address) hashObj.email_address = await sha256(user_data.email_address);
            if (user_data.phone_number) hashObj.phone_number = await sha256(user_data.phone_number);
            if (user_data.address && typeof user_data.address === 'object') {
              hashObj.address = {};
              if (user_data.address.first_name) hashObj.address.first_name = await sha256(user_data.address.first_name);
              if (user_data.address.last_name) hashObj.address.last_name = await sha256(user_data.address.last_name);
              if (user_data.address.street) hashObj.address.street = await sha256(user_data.address.street);
              if (user_data.address.city) hashObj.address.city = await sha256(user_data.address.city);
              if (user_data.address.region) hashObj.address.region = await sha256(user_data.address.region);
              if (user_data.address.postal_code) hashObj.address.postal_code = await sha256(user_data.address.postal_code);
              if (user_data.address.country) hashObj.address.country = await sha256(user_data.address.country);
            }
          } catch (e) {
            console.error('Erreur lors du hash user_data_hashed', e);
          }
          return __AW__filterNullOrEmpty(hashObj);
        }
        (async function() {
          if (window.__AW__UserData && window.__AW__UserData.user_data) {
            window.__AW__UserData.user_data_hashed = await getUserDataHash(window.__AW__UserData.user_data);
          }
        })();
        
        window.__AW__UserData["page_type"] = getPageType(template);
        window[__AW__settings.dataLayerVariableName].push(window.__AW__UserData);

        window[__AW__settings.dataLayerVariableName].push({"event": __AW__getEventNameWithSuffix("page_view")});


        /**
         * DATALAYER: 404 Pages
         * Fire on 404 Pages */
        


        /**
         * DATALAYER: Blog Articles
         * Fire on Blog Article Pages */
        

        

        

        /** DATALAYER: Product List Page (Collections, Category)
         * Fire on all product listing pages. */

        const __AW__transformNumberToString = (value) => {
          if (value !== null && value !== undefined && typeof value === 'number') {
            return value.toString();
          }
          /** By Default return the current value */
          return value;
        };

        let discountPrice = 0.00;
        


        window.__AW__slaveShopifyCart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"EUR","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
        /** DATALAYER: Product Page
         * Fire on all Product View pages. */
        

        /** DATALAYER: Cart View
         * Fire anytime a user views their cart (non-dynamic) */
        

        let drawerCartAlreadyOpened = false;
        function observeCartDrawerOpen() {
          const cartDrawer = document.querySelector("cart-drawer");
          if (!cartDrawer) return;

          const observer = new MutationObserver(() => {
            const isOpen = cartDrawer.classList.contains("active") || cartDrawer.hasAttribute("open");
            if (isOpen && !drawerCartAlreadyOpened) {
              // Delayed view_cart to ensure to have cart update
              setTimeout(() => {
                drawerCartAlreadyOpened = true;
                const ecommerceDataLayer = {
                  ecommerce: {
                    currency: __AW__slaveShopifyCart.currency,
                    value: __AW__slaveShopifyCart.total_price / 100,
                    items: __AW__slaveShopifyCart.items.map(item => {
                      const price = (item.discounted_price ?? item.price) / 100;
                      const discount = (item.price - (item.discounted_price ?? 0)) / 100;
                      let coupon = "";
                      if (Array.isArray(item?.discounts)) {
                        coupon = item.discounts
                                .filter(discount => typeof discount?.title === 'string')
                                .map(discount => discount.title)
                                .join(', ');
                      }
                      return {
                        item_id: __AW__transformNumberToString(item.product_id),
                        item_variant: item.variant_title,
                        item_variant_title: item.variant_title,
                        item_variant_id: __AW__transformNumberToString(item.variant_id),
                        item_product_id: __AW__transformNumberToString(item.product_id),
                        item_product_title: item.product_title,
                        item_name: item.product_title,
                        price: price,
                        discount: discount,
                        item_brand: item.vendor,
                        item_category: item.product_type,
                        item_list_name: item.collection || '',
                        item_list_id: '',
                        quantity: item.quantity,
                        sku: __AW__transformNumberToString(item.sku),
                        coupon: coupon,
                        url: item.url
                      };
                    })
                  }
                };
                window[__AW__settings.dataLayerVariableName].push({ ecommerce: null });
                window[__AW__settings.dataLayerVariableName].push({
                  ...{'event': __AW__getEventNameWithSuffix('view_cart')},
                  ...ecommerceDataLayer
                });
              }, 1000)

            }

            if (!isOpen) {
              drawerCartAlreadyOpened = false;
            }
          });

          observer.observe(cartDrawer, {
            attributes: true,
            attributeFilter: ['class', 'open']
          });
        }

        observeCartDrawerOpen()


        /** DATALAYER: Search Results */
        var searchPage = new RegExp("search", "g");
        if(document.location.pathname.match(searchPage)){
          var __AW__items = [];
          

          const awEcommerceSearch = {
            search_term: null,
            results_count: null,
            ecommerce: {
              items : []
            }
          };
          sendBatchEvents(__AW__items, "search", awEcommerceSearch);
        }


        const cartRegex = /\/cart\/(add|change|update)(\.js|\.json)?(\?.*)?$/;
        const pendingCartEventName = "aw_pending_cart_event";

        if(sessionStorage.getItem(pendingCartEventName)) {
          scheduleCartSync();
        }

        if (!window.__AW__patchedFetch) {
          window.__AW__patchedFetch = true;
          patchFetch();
        }

        if (!window.__AW__patchedXHR) {
          window.__AW__patchedXHR = true ;
          patchXhr();
        }

        function patchXhr() {
          const Native = window.XMLHttpRequest;

          class WrappedXHR extends Native {
            send(body) {
              this.addEventListener('load', () => {
                try {
                  const abs = this.responseURL || '';
                  const u = new URL(abs, location.origin);
                  const mt = u.pathname + (u.search || '');
                  if (this.status === 200 && cartRegex.test(mt)) {
                    scheduleCartSync();
                  }
                } catch (e) {
                  console.error('[AW] XHR handler error', e);
                }
              });
              return super.send(body);
            }
          }

          Object.setPrototypeOf(WrappedXHR, Native);
          window.XMLHttpRequest = WrappedXHR;
        }

        function patchFetch() {
          const previousFetch = window.fetch;
          window.fetch = async function (...args) {
            const [resource] = args;
            try {
              if (typeof resource !== 'string') {
                console.error('Invalid resource type');
                return previousFetch.apply(this, args);
              }

              if (cartRegex.test(resource)) {
                const response = await previousFetch.apply(this, args);
                if (response.ok) {
                  scheduleCartSync();
                } else {
                  console.warn(`Fetch for ${resource} failed with status: ${response.status}`);
                }
                return response;
              }
            } catch (error) {
              console.error('[AW] Fetch Wrapper Error:', error);
            }

            return previousFetch.apply(this, args);
          };
        }

        let awCartRunning = false;

        function scheduleCartSync() {
          if (awCartRunning) return;
          awCartRunning = true;

          try {
            const snapshot = JSON.stringify(window.__AW__slaveShopifyCart ?? { items: [] });
            sessionStorage.setItem(pendingCartEventName, snapshot);
          } catch (e) {
            console.warn('[AW] snapshot error', e);
          }

          void runCartSyncOnce().finally(() => {
            sessionStorage.removeItem(pendingCartEventName);
            awCartRunning = false;
          });
        }

        async function runCartSyncOnce() {
          try {
            const response = await fetch(`${window.Shopify.routes.root || "/"}cart.js?adw=1`, {
              credentials: 'same-origin',
              headers: { 'Accept': 'application/json' }
            });
            if (!response.ok) throw new Error('HTTP ' + response.status);

            const newCart = await response.json();
            compareCartData(newCart);
          } catch (error) {
            console.error('[AW] Error fetching /cart.js (singleton):', error);
          }
        }

        function compareCartData(newCartData) {
          const oldCartData = sessionStorage.getItem(pendingCartEventName) ? JSON.parse(sessionStorage.getItem(pendingCartEventName)) : { items: [] };
          newCartData = newCartData || {items: []};
          const oldItems = new Map(oldCartData.items.map(item => [item.id, item]));
          const newItems = new Map(newCartData.items.map(item => [item.id, item]));

          newItems.forEach((newItem, key) => {
            const oldItem = oldItems.get(key);
            const eventName = "add_to_cart";
            if (!oldItem) {
              handleCartDataLayer(eventName, newItem.quantity, newItem);
            } else if (newItem.quantity > oldItem.quantity) {
              handleCartDataLayer(eventName, newItem.quantity - oldItem.quantity, newItem);
            }
          });

          oldItems.forEach((oldItem, key) => {
            const newItem = newItems.get(key);
            const eventName = "remove_from_cart";
            if (!newItem) {
              handleCartDataLayer(eventName, oldItem.quantity, oldItem);
            } else if (oldItem.quantity > newItem.quantity) {
              handleCartDataLayer(eventName, oldItem.quantity - newItem.quantity, newItem);
            }
          });
          sessionStorage.removeItem(pendingCartEventName);
          __AW__slaveShopifyCart = newCartData;
        }

        function handleCartDataLayer(eventName, quantity, item) {
          const price = (item.discounted_price ?? item.price) / 100;
          const discount = (item.price - (item.discounted_price ?? 0)) / 100;
          const totalValue = price * quantity;
          let coupon = "";
          if(Array.isArray(item?.discounts)) {
            coupon = item.discounts
                    .filter(discount => typeof discount?.title === 'string')
                    .map(discount => discount.title)
                    .join(', ');
          }

          const ecommerceCart = {
            ecommerce: {
              currency: "EUR",
              value: totalValue,
              items: [{
                item_id: __AW__transformNumberToString(item.product_id),
                item_variant: item.variant_title || "Default Variant",
                item_variant_id: __AW__transformNumberToString(item.variant_id),
                item_variant_title: item.variant_title || "Default Variant",
                item_name: item.product_title,
                item_product_id: __AW__transformNumberToString(item.product_id),
                item_product_title: item.product_title,
                sku: __AW__transformNumberToString(item.sku),
                discount: discount,
                price: price,
                item_brand: item.vendor,
                item_category: item.product_type,
                quantity: quantity,
                coupon: coupon,
                url: item?.url
              }]
            }
          };

          window[__AW__settings.dataLayerVariableName].push({ ecommerce: null });
          window[__AW__settings.dataLayerVariableName].push({
            ...{ 'event': __AW__getEventNameWithSuffix(eventName) },
            ...ecommerceCart
          });

        }
      }

      if (document.readyState === 'loading') {
        // document still loading...
        document.addEventListener('DOMContentLoaded', () => {
          pushDataLayerEvents();
        });
      } else {
        // already loaded, chocs away!
        pushDataLayerEvents();
      }
    }
  }, 0);
</script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/yotpo-loyalty-rewards/blocks/loader-app-embed-block/2f9660df-5018-4e02-9868-ee1fb88d6ccd -->
    <script src="https://cdn-widgetsrepository.yotpo.com/v1/loader/0sFTKnplAkPJ3M80GXIThw" async></script>




<!-- END app block --><!-- BEGIN app block: shopify://apps/microsoft-clarity/blocks/clarity_js/31c3d126-8116-4b4a-8ba1-baeda7c4aeea -->
<script type="text/javascript">
  (function (c, l, a, r, i, t, y) {
    c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments); };
    t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i + "?ref=shopify";
    y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);

    c.Shopify.loadFeatures([{ name: "consent-tracking-api", version: "0.1" }], error => {
      if (error) {
        console.error("Error loading Shopify features:", error);
        return;
      }

      c[a]('consentv2', {
        ad_Storage: c.Shopify.customerPrivacy.marketingAllowed() ? "granted" : "denied",
        analytics_Storage: c.Shopify.customerPrivacy.analyticsProcessingAllowed() ? "granted" : "denied",
      });
    });

    l.addEventListener("visitorConsentCollected", function (e) {
      c[a]('consentv2', {
        ad_Storage: e.detail.marketingAllowed ? "granted" : "denied",
        analytics_Storage: e.detail.analyticsAllowed ? "granted" : "denied",
      });
    });
  })(window, document, "clarity", "script", "uealq6d68l");
</script>



<!-- END app block --><!-- BEGIN app block: shopify://apps/image-sitemap/blocks/google-verify/7f21250b-d915-4143-91b8-090f195e7204 --><!-- Image Sitemap verify --><meta name="google-site-verification" content="XHfA3lv9QElFOpvkmZLtPEx6yj3Xx_6CdsWrOy2hQNA">

<!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->












  <script async src="https://static.klaviyo.com/onsite/js/V4NLab/klaviyo.js?company_id=V4NLab"></script>
  <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>

  




  <script>
    window.klaviyoReviewsProductDesignMode = false
  </script>







<!-- END app block --><!-- BEGIN app block: shopify://apps/microsoft-clarity/blocks/brandAgents_js/31c3d126-8116-4b4a-8ba1-baeda7c4aeea -->





<!-- END app block --><link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 57366642876,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 57366642876,storefrontBaseUrl: "https://www.lavantgardiste.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86"],webPixelsConfigList: [{"id":"3438608732","configuration":"{\"projectId\":\"uealq6d68l\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"737156edc1fafd4538f270df27821f1c","type":"APP","apiClientId":240074326017,"privacyPurposes":[],"capabilities":["advanced_dom_events"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"2859958620","configuration":"{\"account_ID\":\"294273\",\"google_analytics_tracking_tag\":\"1\",\"measurement_id\":\"2\",\"api_secret\":\"3\",\"shop_settings\":\"{\\\"custom_pixel_script\\\":\\\"https:\\\\\\\/\\\\\\\/storage.googleapis.com\\\\\\\/gsf-scripts\\\\\\\/custom-pixels\\\\\\\/avant-gardiste-prod.js\\\"}\"}","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"c6b888297782ed4a1cba19cda43d6625","type":"APP","apiClientId":1558137,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1589477724","configuration":"{\"store\":\"avant-gardiste-prod.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"8450b52b59e80bfb2255f1e069ee1acd","type":"APP","apiClientId":740217,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1423540572","configuration":"{\"endpoint\":\"https:\\\/\\\/api.parcelpanel.com\",\"debugMode\":\"false\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"f2b9a7bfa08fd9028733e48bf62dd9f1","type":"APP","apiClientId":2681387,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"142180700","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Kwanko - Tag1 et Pt transact"},{"id":"234553692","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"addingwell-pixel"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"L'avant gardiste","paymentSettings":{"currencyCode":"EUR"},"myshopifyDomain":"avant-gardiste-prod.myshopify.com","countryCode":"FR","storefrontUrl":"https:\/\/www.lavantgardiste.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://www.lavantgardiste.com/cdn","ae1676cfwd2530674p4253c800m34e853cb",{"modern":"","legacy":""},{"shopId":"57366642876","storefrontBaseUrl":"https:\/\/www.lavantgardiste.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\"]","isMerchantRequest":"false","hashVersion":"ae1676cfwd2530674p4253c800m34e853cb","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'EUR';
  var meta = {"page":{"pageType":"home"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
      var script = document.createElement('script');
      script.type = 'text/javascript';
      script.onerror = function(e) {
        var scriptFallback = document.createElement('script');
        scriptFallback.type = 'text/javascript';
        scriptFallback.onerror = function(error) {
                var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 57366642876,
      theme_id: 149237236060,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//www.lavantgardiste.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js"});

        };
        scriptFallback.async = true;
        scriptFallback.src = '//www.lavantgardiste.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js';
        first.parentNode.insertBefore(scriptFallback, first);
      };
      script.async = true;
      script.src = '//www.lavantgardiste.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js';
      first.parentNode.insertBefore(script, first);
    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":57366642876,"isMerchantRequest":null,"themeId":149237236060,"themeCityHash":"14231248953304830898","contentLanguage":"fr","currency":"EUR"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["f0df213a"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });


        var eventsListenerScript = document.createElement('script');
        eventsListenerScript.async = true;
        eventsListenerScript.src = "//www.lavantgardiste.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);

})();</script>
<script
  defer
 src="https://www.lavantgardiste.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-2.1.2.min.js"
  data-application="storefront-renderer"
  data-shop-id="57366642876"
  data-render-region="gcp-europe-west1"
  data-page-type="index"
  data-theme-instance-id="149237236060"
  data-theme-name="Dawn"
  data-theme-version="9.0.0"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
></script>
</head>

  <body class="gradient"><div id="shopify-section-gift-dispatcher" class="shopify-section"><script>
    window.deployer_state = {
      enable_gift_dispatcher: true,
    };
  </script>
  
  <gift-dispatcher></gift-dispatcher>
  
  <script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/gift-dispatcher.js?v=16118695109468313031725522414" defer></script>
  
  
  
  </div><!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--18922447274332__announcement-bar" class="shopify-section shopify-section-group-header-group announcement-bar-section">

<style>
  #qab_container {
    display: none !important;
  }
</style><announcement-bar
        class="announcement-bar color-accent-1 gradient"
        role="region"
        aria-label="Annonce"
        data-start-date-time=""
        data-end-date-time="2025-12-10T23:59"
        
      ><div class="page-width">
            <p class="announcement-bar__message center h5">
              <span><div class="avg-promo-bar">
  <div class="avg-promo-bar__inner">
    <span class="avg-promo-bar__tag">
      Seulement aujourd'hui
    </span>

    <span class="avg-promo-bar__text">
      -10€ dès 60€ <strong>(Code : GO10)</strong> | -20€ dès 100€ <strong>(Code : GO20)</strong>
    </span>

  <!--  <span class="avg-promo-bar__deadline">
      Jusqu’à ce soir minuit.
    </span>-->
  </div>
</div></span></p>
          </div>
      </announcement-bar>
<style> #shopify-section-sections--18922447274332__announcement-bar .announcement-bar__message span {letter-spacing: 0.02rem; font-size: 1.4rem; line-height: 20px;} #shopify-section-sections--18922447274332__announcement-bar .announcement-bar__message span u {background-image: none; text-decoration: underline;} #shopify-section-sections--18922447274332__announcement-bar .offer {} #shopify-section-sections--18922447274332__announcement-bar .announcement-bar {padding: 8px 0px; background: #000;} #shopify-section-sections--18922447274332__announcement-bar .offer2 {display: block;} #shopify-section-sections--18922447274332__announcement-bar .offer3 {display: inline-block;} #shopify-section-sections--18922447274332__announcement-bar .announcement-bar__link {} @media (max-width: 767px) {#shopify-section-sections--18922447274332__announcement-bar .offer {display: inline; margin: 2px 0; /* Ensures spacing between each offer */ } #shopify-section-sections--18922447274332__announcement-bar .custom-br {display: none; }} </style></div><div id="shopify-section-sections--18922447274332__header" class="shopify-section shopify-section-group-header-group section-header"><link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-list-menu.css?v=78866512638808052541762858259" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-search.css?v=184225813856820874251683872400" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-menu-drawer.css?v=112451343230629441001762859487" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-cart-notification.css?v=108833082844665799571683872399" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-cart-items.css?v=170352021499227780381762108374" media="print" onload="this.media='all'"><link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-price.css?v=170386376850103801761824076" media="print" onload="this.media='all'">
  <link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-loading-overlay.css?v=167310470843593579841683872402" media="print" onload="this.media='all'"><link rel="stylesheet" href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-mega-menu.css?v=135653986978968802801762890150" media="print" onload="this.media='all'">
  <noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-mega-menu.css?v=135653986978968802801762890150" rel="stylesheet" type="text/css" media="all" /></noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-localization-form.css?v=180251819326351856701762859200" rel="stylesheet" type="text/css" media="all" />
<noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-list-menu.css?v=78866512638808052541762858259" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-search.css?v=184225813856820874251683872400" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-menu-drawer.css?v=112451343230629441001762859487" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-cart-notification.css?v=108833082844665799571683872399" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-cart-items.css?v=170352021499227780381762108374" rel="stylesheet" type="text/css" media="all" /></noscript>

<style>
  header-drawer {
    justify-self: start;
  }@media screen and (min-width: 990px) {
      header-drawer {
        display: none;
      }
    }.menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  summary.list-menu__item {
    padding-right: 2.7rem;
  }

  .list-menu__item {
    display: flex;
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }
</style><style data-shopify>.header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-header {
    position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
    margin-bottom: 0px;
  }

  @media screen and (min-width: 750px) {
    .section-header {
      margin-bottom: 0px;
    }
  }

  @media screen and (min-width: 990px) {
    .header {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }</style><script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/details-disclosure.js?v=153497636716254413831683872400" defer="defer"></script>
<script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/details-modal.js?v=4511761896672669691683872399" defer="defer"></script>
<script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/cart-notification.js?v=15932260106500963351745307287" defer="defer"></script>
<script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/search-form.js?v=113639710312857635801683872400" defer="defer"></script><script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/localization-form.js?v=150945236601417889311750836023" defer="defer"></script>

<svg xmlns="http://www.w3.org/2000/svg" class="hidden">
  <symbol id="icon-search" viewbox="0 0 23 23" fill="none">
    <path d="M20 10.5a9.5 9.5 0 11-19 0 9.5 9.5 0 0119 0zM18 18l4 4" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
  </symbol>

  <symbol id="icon-reset" class="icon icon-close"  fill="none" viewbox="0 0 18 18" stroke="currentColor">
    <circle r="8.5" cy="9" cx="9" stroke-opacity="0.2"/>
    <path d="M6.82972 6.82915L1.17193 1.17097" stroke-linecap="round" stroke-linejoin="round" transform="translate(5 5)"/>
    <path d="M1.22896 6.88502L6.77288 1.11523" stroke-linecap="round" stroke-linejoin="round" transform="translate(5 5)"/>
  </symbol>

  <symbol id="icon-close" class="icon icon-close" fill="none" viewbox="0 0 18 17">
    <path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
  </symbol>
</svg><sticky-header data-sticky-type="on-scroll-up" class="header-wrapper color-background-1 gradient header-wrapper--border-bottom">
  <header class="header header--middle-left header--mobile-center page-width header--has-menu">
    <div class="header__icons-left"><header-drawer data-breakpoint="tablet">
          <details id="Details-menu-drawer-container" class="menu-drawer-container">
            <summary class="header__icon header__icon--menu header__icon--summary link focus-inset" aria-label="Menu">
              <span>
                <svg
  xmlns="http://www.w3.org/2000/svg"
  aria-hidden="true"
  focusable="false"
  class="icon icon-hamburger"
  fill="none"
  viewbox="0 0 18 16"
>
  <path d="M1 .5a.5.5 0 100 1h15.71a.5.5 0 000-1H1zM.5 8a.5.5 0 01.5-.5h15.71a.5.5 0 010 1H1A.5.5 0 01.5 8zm0 7a.5.5 0 01.5-.5h15.71a.5.5 0 010 1H1a.5.5 0 01-.5-.5z" fill="currentColor">
</svg>

                <svg
  xmlns="http://www.w3.org/2000/svg"
  aria-hidden="true"
  focusable="false"
  class="icon icon-close icon-close--loading"
  fill="none"
  viewbox="0 0 18 17"
>
  <path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>

              </span>
             
            </summary>
            <div id="menu-drawer" class="gradient menu-drawer motion-reduce" tabindex="-1">
              <div class="menu-drawer__inner-container">
                <div class="menu-drawer__navigation-container">
                  <nav class="menu-drawer__navigation">
                    <ul class="menu-drawer__menu has-submenu list-menu" role="list"><li><a href="/pages/noel" class="menu-drawer__menu-item list-menu__item link link--text focus-inset header__menu-item-highlighted">
                            <span>Noël</span>  
                            </a></li><li><a href="/collections/new" class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                            <span>Nouveau</span>  
                            </a></li><li><a href="/collections/les-tops" class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                            <span>Les tops</span>  
                            </a></li><li><details id="Details-menu-drawer-menu-item-4">
                              <summary class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span>Maison &amp; Déco</span>
                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                              </summary> 
                              <div id="link-maison-deco" class="menu-drawer__submenu has-submenu gradient motion-reduce" tabindex="-1">
                                <div class="menu-drawer__inner-submenu">
                                  <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                    <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                    Maison &amp; Déco
                                  </button>
                                  <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li ><a href="/collections/maison" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                            <span class="activechild">Voir toute la déco</span>
                                          </a></li><li class="list-menu__list-items"><ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                <a href="/collections/vases-et-cache-pots" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Vases &amp; Caches-pots
                                                </a>
                                              </li><li>
                                                <a href="/collections/decoration-lumineuse" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Éclairage décalé
                                                </a>
                                              </li><li>
                                                <a href="/collections/accessoires-de-rangement" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Rangement &amp; Organisation
                                                </a>
                                              </li><li>
                                                <a href="/collections/decoration" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Objets déco
                                                </a>
                                              </li><li>
                                                <a href="/collections/bougies-bougeoirs-allumettes" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Bougies, bougeoirs, allumettes
                                                </a>
                                              </li><li>
                                                <a href="/collections/deco-murale" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Déco murale
                                                </a>
                                              </li><li>
                                                <a href="/collections/bureau" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Pour le bureau
                                                </a>
                                              </li></ul></li></ul>
                                </div>
                              </div>
                            </details></li><li><details id="Details-menu-drawer-menu-item-5">
                              <summary class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span>Food &amp; Cuisine</span>
                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                              </summary> 
                              <div id="link-food-cuisine" class="menu-drawer__submenu has-submenu gradient motion-reduce" tabindex="-1">
                                <div class="menu-drawer__inner-submenu">
                                  <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                    <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                    Food &amp; Cuisine
                                  </button>
                                  <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li ><a href="/collections/food-cuisine" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                            <span class="activechild">Voir tout pour la cuisine</span>
                                          </a></li><li class="list-menu__list-items"><ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                <a href="/collections/arts-de-la-table" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Vaisselle &amp; Table Fun
                                                </a>
                                              </li><li>
                                                <a href="/collections/ustensiles-de-cuisine" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Ustensiles &amp; Cuisson
                                                </a>
                                              </li><li>
                                                <a href="/collections/accessoires-de-bar" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Accessoires de bar
                                                </a>
                                              </li><li>
                                                <a href="/collections/lepicerie" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  L&#39;épicerie 
                                                </a>
                                              </li></ul></li></ul>
                                </div>
                              </div>
                            </details></li><li><details id="Details-menu-drawer-menu-item-6">
                              <summary class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span>Fun &amp; Lifestyle</span>
                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                              </summary> 
                              <div id="link-fun-lifestyle" class="menu-drawer__submenu has-submenu gradient motion-reduce" tabindex="-1">
                                <div class="menu-drawer__inner-submenu">
                                  <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                    <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                    Fun &amp; Lifestyle
                                  </button>
                                  <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li ><a href="/collections/lifestyle-fun" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                            <span class="activechild">Voir tout lifestyle&amp;Fun</span>
                                          </a></li><li class="list-menu__list-items"><ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                <a href="/collections/bien-etre" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Bien-être
                                                </a>
                                              </li><li>
                                                <a href="/collections/cocooning" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Cocooning
                                                </a>
                                              </li><li>
                                                <a href="/collections/livres" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Livres
                                                </a>
                                              </li><li>
                                                <a href="/collections/animaux" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Animaux de compagnie
                                                </a>
                                              </li></ul></li><li class="list-menu__list-items"><ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                <a href="/collections/high-tech" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  High-tech
                                                </a>
                                              </li><li>
                                                <a href="/collections/fun-jeux" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Jeux
                                                </a>
                                              </li><li>
                                                <a href="/collections/do-it-yourself" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Do it yourself
                                                </a>
                                              </li><li>
                                                <a href="/collections/figurines" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                  Peluches &amp; Figurines
                                                </a>
                                              </li></ul></li></ul>
                                </div>
                              </div>
                            </details></li><li><details id="Details-menu-drawer-menu-item-7">
                              <summary class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span>Idées Cadeaux</span>
                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                              </summary> 
                              <div id="link-idees-cadeaux" class="menu-drawer__submenu has-submenu gradient motion-reduce" tabindex="-1">
                                <div class="menu-drawer__inner-submenu">
                                  <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                    <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                    Idées Cadeaux
                                  </button>
                                  <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li ><a href="/collections/idees-cadeaux" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                            <span class="activechild">Voir toutes les idées cadeaux</span>
                                          </a></li><li ><details id="Details-menu-drawer-submenu-2">
                                            <summary class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                              Par destinataire
                                              <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                              <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                                            </summary>
                                            <div id="childlink-par-destinataire" class="menu-drawer__submenu has-submenu gradient motion-reduce">
                                              <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                                Par destinataire
                                              </button>
                                              <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                    <a href="/collections/cadeaux-homme" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Un homme
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeaux-femme" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Une femme
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeaux-enfant" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Les kids
                                                    </a>
                                                  </li></ul>
                                            </div>
                                          </details></li><li ><details id="Details-menu-drawer-submenu-3">
                                            <summary class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                              Par budget
                                              <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                              <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                                            </summary>
                                            <div id="childlink-par-budget" class="menu-drawer__submenu has-submenu gradient motion-reduce">
                                              <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                                Par budget
                                              </button>
                                              <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                    <a href="/collections/cadeau-moins-de-10-euros" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Moins de 10€
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/petites-attentions" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Moins de 25€
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeaux-de-25-a-50-euros" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      De 25 à 50€
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeaux-de-50-a-100-euros" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      De 50 à 100€
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/beaux-cadeaux" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      100€ et +
                                                    </a>
                                                  </li></ul>
                                            </div>
                                          </details></li><li ><details id="Details-menu-drawer-submenu-4">
                                            <summary class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                              Par occasion 
                                              <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                              <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                                            </summary>
                                            <div id="childlink-par-occasion" class="menu-drawer__submenu has-submenu gradient motion-reduce">
                                              <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                                Par occasion 
                                              </button>
                                              <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                    <a href="/pages/noel" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Noël
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/secret-santa" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Secret Santa
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeau-anniversaire" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Anniversaire
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeau-cremaillere" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Crémaillère
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/saint-valentin" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Saint-Valentin
                                                    </a>
                                                  </li></ul>
                                            </div>
                                          </details></li><li ><details id="Details-menu-drawer-submenu-5">
                                            <summary class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                              Par univers
                                              <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                              <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                                            </summary>
                                            <div id="childlink-par-univers" class="menu-drawer__submenu has-submenu gradient motion-reduce">
                                              <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
                                                <svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>

                                                Par univers
                                              </button>
                                              <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li>
                                                    <a href="/collections/oui-oui-baguette" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Brunch &amp; Morning mood
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/spicy" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Spicy
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/boule-disco" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Disco
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/kawaii" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Kawaii
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/nostalgie" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Vintage
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cow-boy-confirme" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Cow-boy
                                                    </a>
                                                  </li><li>
                                                    <a href="/collections/cadeau-insolite-pour-tout-le-monde" class="menu-drawer__menu-item link link--text list-menu__item focus-inset">
                                                      Insolite
                                                    </a>
                                                  </li></ul>
                                            </div>
                                          </details></li></ul>
                                </div>
                              </div>
                            </details></li></ul>
                    
                      
                        <ul class="menu-drawer__menu menu-drawer__secondmenu has-submenu list-menu" role="list"><li><a href="https://www.lavantgardiste.com/account/login" class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span >Mon compte</span>  
                                </a></li><li><a href="/pages/faq" class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span >Aide</span>  
                                </a></li><li><a href="/pages/contact" class="menu-drawer__menu-item list-menu__item link link--text focus-inset">
                                <span >Contact</span>  
                                </a></li></ul>
                      
                    
                      
                    
                      
                    
                  </nav>
                  <div class="menu-drawer__utility-links"><a href="/account/login" class="menu-drawer__account link focus-inset h5 medium-hide large-up-hide">
                        <svg 
  xmlns="http://www.w3.org/2000/svg" 
  viewbox="100 -480 760 1" 
  focusable="false"
  class="icon icon-account"
  fill="#000000">
    <path fill="#000000" d="M240.924-268.307q51-37.846 111.115-59.769Q412.154-349.999 480-349.999t127.961 21.923q60.115 21.923 111.115 59.769 37.308-41 59.116-94.923Q800-417.154 800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 62.846 21.808 116.77 21.808 53.923 59.116 94.923Zm239.088-181.694q-54.781 0-92.396-37.603-37.615-37.604-37.615-92.384 0-54.781 37.603-92.396 37.604-37.615 92.384-37.615 54.781 0 92.396 37.603 37.615 37.604 37.615 92.384 0 54.781-37.603 92.396-37.604 37.615-92.384 37.615Zm-.012 350q-79.154 0-148.499-29.77-69.346-29.769-120.654-81.076-51.307-51.308-81.076-120.654-29.77-69.345-29.77-148.499t29.77-148.499q29.769-69.346 81.076-120.654 51.308-51.307 120.654-81.076 69.345-29.77 148.499-29.77t148.499 29.77q69.346 29.769 120.654 81.076 51.307 51.308 81.076 120.654 29.77 69.345 29.77 148.499t-29.77 148.499q-29.769 69.346-81.076 120.654-51.308 51.307-120.654 81.076-69.345 29.77-148.499 29.77ZM480-160q54.154 0 104.423-17.423 50.27-17.423 89.27-48.731-39-30.154-88.116-47Q536.462-290.001 480-290.001q-56.462 0-105.77 16.654-49.308 16.654-87.923 47.193 39 31.308 89.27 48.731Q425.846-160 480-160Zm0-349.999q29.846 0 49.924-20.077 20.077-20.078 20.077-49.924t-20.077-49.924Q509.846-650.001 480-650.001t-49.924 20.077Q409.999-609.846 409.999-580t20.077 49.924q20.078 20.077 49.924 20.077ZM480-580Zm0 355Z"/>
</svg>
Connexion</a><div class="menu-drawer__localization header__localization">

<localization-form data-flag-selector>
    <flag-selector>
      <div class="disclosure">
        <button
          type="button"
          class="disclosure__button localization-form__select localization-selector link link--text caption-large"
          aria-expanded="false"
          aria-controls="HeaderFlagMobileList"
          aria-describedby="HeaderFlagMobileLabel"
        >
          <span>
            <img
              src="//www.lavantgardiste.com/cdn/shop/files/france_92af995b-a8d3-4ee2-aea9-8f9a63099ac2_100x100.png?v=1750433314"
              alt="France"
              class="flag-selector__image"
            >
            <span class="flag-selector__name">
              fr
            </span>
          </span>
          <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

        </button>
        <div class="disclosure__list-wrapper" hidden>
          <ul id="HeaderFlagMobileList" role="list" class="disclosure__list list-unstyled"><li class="disclosure__item" tabindex="-1">
                <span
                  class="link link--text disclosure__link caption-large focus-inset"
                  
                  
                  data-value="fr"
                >
                  <span class="localization-form__currency">
                    <img
                      src="//www.lavantgardiste.com/cdn/shop/files/france_92af995b-a8d3-4ee2-aea9-8f9a63099ac2_100x100.png?v=1750433314"
                      alt="France"
                      class="flag-selector__image"
                    >
                    <span class="flag-selector__name">
                      France
                    </span>
                  </span>
                </span>
              </li><li class="disclosure__item" tabindex="-1">
                <a
                  class="link link--text disclosure__link caption-large focus-inset"
                  href="https://www.lavantgardiste.it/"
                  
                  data-value="it"
                >
                  <span class="localization-form__currency">
                    <img
                      src="//www.lavantgardiste.com/cdn/shop/files/italy_100x100.png?v=1750433314"
                      alt="Italie"
                      class="flag-selector__image"
                    >
                    <span class="flag-selector__name">
                      Italie
                    </span>
                  </span>
                </a>
              </li></ul>
        </div>
      </div>
    </flag-selector>
  </localization-form></div><ul class="list list-social list-unstyled" role="list"><li class="list-social__item">
                          <a href="https://www.facebook.com/lavantgardiste" target="_blank" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-facebook" viewbox="0 0 18 18">
  <path fill="currentColor" d="M16.42.61c.27 0 .5.1.69.28.19.2.28.42.28.7v15.44c0 .27-.1.5-.28.69a.94.94 0 01-.7.28h-4.39v-6.7h2.25l.31-2.65h-2.56v-1.7c0-.4.1-.72.28-.93.18-.2.5-.32 1-.32h1.37V3.35c-.6-.06-1.27-.1-2.01-.1-1.01 0-1.83.3-2.45.9-.62.6-.93 1.44-.93 2.53v1.97H7.04v2.65h2.24V18H.98c-.28 0-.5-.1-.7-.28a.94.94 0 01-.28-.7V1.59c0-.27.1-.5.28-.69a.94.94 0 01.7-.28h15.44z">
</svg>
<span class="visually-hidden">Facebook</span>
                          </a>
                        </li><li class="list-social__item">
                          <a href="https://www.pinterest.fr/lavantgardiste/" target="_blank" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-pinterest" viewbox="0 0 17 18">
  <path fill="currentColor" d="M8.48.58a8.42 8.42 0 015.9 2.45 8.42 8.42 0 011.33 10.08 8.28 8.28 0 01-7.23 4.16 8.5 8.5 0 01-2.37-.32c.42-.68.7-1.29.85-1.8l.59-2.29c.14.28.41.52.8.73.4.2.8.31 1.24.31.87 0 1.65-.25 2.34-.75a4.87 4.87 0 001.6-2.05 7.3 7.3 0 00.56-2.93c0-1.3-.5-2.41-1.49-3.36a5.27 5.27 0 00-3.8-1.43c-.93 0-1.8.16-2.58.48A5.23 5.23 0 002.85 8.6c0 .75.14 1.41.43 1.98.28.56.7.96 1.27 1.2.1.04.19.04.26 0 .07-.03.12-.1.15-.2l.18-.68c.05-.15.02-.3-.11-.45a2.35 2.35 0 01-.57-1.63A3.96 3.96 0 018.6 4.8c1.09 0 1.94.3 2.54.89.61.6.92 1.37.92 2.32 0 .8-.11 1.54-.33 2.21a3.97 3.97 0 01-.93 1.62c-.4.4-.87.6-1.4.6-.43 0-.78-.15-1.06-.47-.27-.32-.36-.7-.26-1.13a111.14 111.14 0 01.47-1.6l.18-.73c.06-.26.09-.47.09-.65 0-.36-.1-.66-.28-.89-.2-.23-.47-.35-.83-.35-.45 0-.83.2-1.13.62-.3.41-.46.93-.46 1.56a4.1 4.1 0 00.18 1.15l.06.15c-.6 2.58-.95 4.1-1.08 4.54-.12.55-.16 1.2-.13 1.94a8.4 8.4 0 01-5-7.65c0-2.3.81-4.28 2.44-5.9A8.04 8.04 0 018.48.57z">
</svg>
<span class="visually-hidden">Pinterest</span>
                          </a>
                        </li><li class="list-social__item">
                          <a href="https://www.instagram.com/lavantgardiste/" target="_blank" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-instagram" viewbox="0 0 18 18">
  <path fill="currentColor" d="M8.77 1.58c2.34 0 2.62.01 3.54.05.86.04 1.32.18 1.63.3.41.17.7.35 1.01.66.3.3.5.6.65 1 .12.32.27.78.3 1.64.05.92.06 1.2.06 3.54s-.01 2.62-.05 3.54a4.79 4.79 0 01-.3 1.63c-.17.41-.35.7-.66 1.01-.3.3-.6.5-1.01.66-.31.12-.77.26-1.63.3-.92.04-1.2.05-3.54.05s-2.62 0-3.55-.05a4.79 4.79 0 01-1.62-.3c-.42-.16-.7-.35-1.01-.66-.31-.3-.5-.6-.66-1a4.87 4.87 0 01-.3-1.64c-.04-.92-.05-1.2-.05-3.54s0-2.62.05-3.54c.04-.86.18-1.32.3-1.63.16-.41.35-.7.66-1.01.3-.3.6-.5 1-.65.32-.12.78-.27 1.63-.3.93-.05 1.2-.06 3.55-.06zm0-1.58C6.39 0 6.09.01 5.15.05c-.93.04-1.57.2-2.13.4-.57.23-1.06.54-1.55 1.02C1 1.96.7 2.45.46 3.02c-.22.56-.37 1.2-.4 2.13C0 6.1 0 6.4 0 8.77s.01 2.68.05 3.61c.04.94.2 1.57.4 2.13.23.58.54 1.07 1.02 1.56.49.48.98.78 1.55 1.01.56.22 1.2.37 2.13.4.94.05 1.24.06 3.62.06 2.39 0 2.68-.01 3.62-.05.93-.04 1.57-.2 2.13-.41a4.27 4.27 0 001.55-1.01c.49-.49.79-.98 1.01-1.56.22-.55.37-1.19.41-2.13.04-.93.05-1.23.05-3.61 0-2.39 0-2.68-.05-3.62a6.47 6.47 0 00-.4-2.13 4.27 4.27 0 00-1.02-1.55A4.35 4.35 0 0014.52.46a6.43 6.43 0 00-2.13-.41A69 69 0 008.77 0z"/>
  <path fill="currentColor" d="M8.8 4a4.5 4.5 0 100 9 4.5 4.5 0 000-9zm0 7.43a2.92 2.92 0 110-5.85 2.92 2.92 0 010 5.85zM13.43 5a1.05 1.05 0 100-2.1 1.05 1.05 0 000 2.1z">
</svg>
<span class="visually-hidden">Instagram</span>
                          </a>
                        </li><li class="list-social__item">
                          <a href="https://www.tiktok.com/@lavantgardiste?" target="_blank" class="list-social__link link"><svg
  aria-hidden="true"
  focusable="false"
  class="icon icon-tiktok"
  width="16"
  height="18"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path d="M8.02 0H11s-.17 3.82 4.13 4.1v2.95s-2.3.14-4.13-1.26l.03 6.1a5.52 5.52 0 11-5.51-5.52h.77V9.4a2.5 2.5 0 101.76 2.4L8.02 0z" fill="currentColor">
</svg>
<span class="visually-hidden">TikTok</span>
                          </a>
                        </li><li class="list-social__item">
                          <a href="https://www.snapchat.com/@lavantgardist" target="_blank" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-snapchat" viewbox="0 0 392 386">
  <path d="M390.3 282.3a27.2 27.2 0 00-13.8-14.7l-3-1.6-5.4-2.7a117 117 0 01-42.7-36.6 83 83 0 01-7.3-13c-.8-2.4-.8-3.8-.2-5 .6-1 1.4-1.9 2.4-2.5a1073.6 1073.6 0 0117.7-11.7 49.5 49.5 0 0016-17.1 33.6 33.6 0 00-30.8-49.7 44.8 44.8 0 00-11.8 1.6c.1-9 0-18.6-.9-27.9A105 105 0 00257.4 16 122 122 0 00196 .3c-22.5 0-43 5.3-61.3 15.7a104.6 104.6 0 00-53.2 85.4c-.8 9.4-1 19-.8 27.9a44.8 44.8 0 00-12-1.6 33.7 33.7 0 00-30.8 49.7A49.6 49.6 0 0054 194.6l9.1 6 8.3 5.4c1 .7 2 1.6 2.6 2.7.7 1.3.7 2.7-.2 5.3-2 4.5-4.5 8.7-7.3 12.8a116.5 116.5 0 01-41.4 36c-9.5 5-19.3 8.3-23.4 19.5-3.1 8.5-1 18.2 6.9 26.3 2.9 3 6.2 5.6 10 7.6 7.7 4.2 15.9 7.5 24.4 9.8a16 16 0 015 2.2c2.9 2.5 2.4 6.3 6.3 12 2 2.8 4.4 5.3 7.2 7.3 8.1 5.6 17.2 6 26.8 6.3 8.7.3 18.5.7 29.8 4.4 4.7 1.5 9.5 4.5 15.1 8a110 110 0 0062.8 19.6c30.8 0 49.4-11.4 63-19.7a77.9 77.9 0 0114.9-7.9c11.2-3.7 21-4 29.8-4.4 9.6-.4 18.7-.7 26.8-6.3 3.3-2.3 6.2-5.4 8.2-9 2.8-4.7 2.7-8 5.3-10.3 1.4-1 3-1.7 4.6-2.1 8.7-2.3 17-5.6 24.8-9.9A39 39 0 00384 308l.1-.1c7.5-8 9.4-17.4 6.3-25.6zM362.9 297c-16.8 9.2-27.9 8.3-36.5 13.8-7.4 4.8-3 15-8.4 18.6-6.5 4.6-26-.3-51 8-20.6 6.8-33.8 26.5-71 26.5-37.1 0-50-19.6-71-26.6-25-8.2-44.4-3.4-51-8-5.3-3.6-1-13.8-8.3-18.5-8.7-5.6-19.8-4.6-36.5-13.8-10.7-5.9-4.6-9.5-1.1-11.2 60.6-29.4 70.3-74.7 70.7-78 .5-4.1 1.1-7.3-3.4-11.5-4.3-4-23.5-15.8-28.9-19.6-8.8-6.1-12.6-12.3-9.8-19.8 2-5.3 6.9-7.2 12-7.2 1.6 0 3.2.2 4.8.5 9.7 2.1 19.1 7 24.5 8.3l2 .2c3 0 4-1.4 3.8-4.7-.7-10.6-2.2-31.3-.5-50.6a80 80 0 0121-51.3A93.7 93.7 0 01196 22.3c43.8 0 66.8 24.1 71.7 29.7a80 80 0 0121 51.3c1.7 19.3.2 40-.5 50.5-.2 3.5.9 4.8 3.8 4.8.6 0 1.3 0 2-.3 5.4-1.3 14.8-6.1 24.5-8.2a19 19 0 014.8-.5c5.1 0 10 2 12 7.2 2.8 7.5-1 13.7-9.9 19.8-5.3 3.7-24.5 15.6-28.8 19.6-4.5 4.2-4 7.4-3.4 11.4.4 3.5 10 48.8 70.7 78 3.6 1.8 9.6 5.5-1 11.4z" fill="currentColor">
</svg>
<span class="visually-hidden">Snapchat</span>
                          </a>
                        </li><li class="list-social__item">
                          <a href="https://www.youtube.com/channel/UCV2xBcZW1w2tg5I9de0LO2w" target="_blank" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-youtube" viewbox="0 0 100 70">
  <path d="M98 11c2 7.7 2 24 2 24s0 16.3-2 24a12.5 12.5 0 01-9 9c-7.7 2-39 2-39 2s-31.3 0-39-2a12.5 12.5 0 01-9-9c-2-7.7-2-24-2-24s0-16.3 2-24c1.2-4.4 4.6-7.8 9-9 7.7-2 39-2 39-2s31.3 0 39 2c4.4 1.2 7.8 4.6 9 9zM40 50l26-15-26-15v30z" fill="currentColor">
</svg>
<span class="visually-hidden">YouTube</span>
                          </a>
                        </li></ul>
                  </div>
                </div>
              </div>
            </div>
          </details>
        </header-drawer><details-modal class="header__search medium-hide large-up-hide">
        <details>
          <summary class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle" aria-haspopup="dialog" aria-label="Recherche">
            <span>
              <svg class="modal__toggle-open icon icon-search" aria-hidden="true" focusable="false">
                <use href="#icon-search">
              </svg>
              <svg class="modal__toggle-close icon icon-close" aria-hidden="true" focusable="false">
                <use href="#icon-close">
              </svg>
            </span>
          </summary>
          <div class="search-modal modal__content gradient" role="dialog" aria-modal="true" aria-label="Recherche">
            <div class="modal-overlay"></div>
            <div class="search-modal__content search-modal__content-bottom" tabindex="-1"><predictive-search class="search-modal__form" data-loading-text="Chargement en cours..."><form action="/search" method="get" role="search" class="search search-modal__form">
                    <div class="field">
                      <input class="search__input field__input"
                        id="Search-In-Modal"
                        type="search"
                        name="q"
                        value=""
                        placeholder="Recherche">
                      <label class="field__label" for="Search-In-Modal">Recherche</label>
                      <input type="hidden" name="options[prefix]" value="last">
                      <button type="reset" class="reset__button field__button hidden" aria-label="Effacer le terme de recherche">
                        <svg class="icon icon-close" aria-hidden="true" focusable="false">
                          <use xlink:href="#icon-reset">
                        </svg>
                      </button>
                      <button class="search__button field__button" aria-label="Recherche">
                        <svg class="icon icon-search" aria-hidden="true" focusable="false">
                          <use href="#icon-search">
                        </svg>
                      </button>
                    </div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
                        <div class="predictive-search__loading-state">
                          <svg aria-hidden="true" focusable="false" class="spinner" viewbox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
                            <circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
                          </svg>
                        </div>
                      </div>

                      <span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button type="button" class="search-modal__close-button modal__close-button link link--text focus-inset" aria-label="Fermer">
                <svg class="icon icon-close" aria-hidden="true" focusable="false">
                  <use href="#icon-close">
                </svg>
              </button>
            </div>
          </div>
        </details>
      </details-modal>
    </div><a href="/" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper header__heading-logo-wrapper-desktop">
            
            <img src="//www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=600" alt="Logo l&#39;avant gardiste" srcset="//www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=170 170w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=255 255w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=340 340w" width="170" height="39.34081346423562" loading="eager" class="header__heading-logo motion-reduce" sizes="(max-width: 340px) 50vw, 170px">
          </div>
          
            <div class="header__heading-logo-wrapper header__heading-logo-wrapper-mobile">
              
              <img src="//www.lavantgardiste.com/cdn/shop/files/Logo_l_avant_gardiste_V1_dda3b27a-7fca-44b7-b93c-5245a68f86f2.png?v=1645553306&amp;width=600" alt="L&#39;avant gardiste" srcset="//www.lavantgardiste.com/cdn/shop/files/Logo_l_avant_gardiste_V1_dda3b27a-7fca-44b7-b93c-5245a68f86f2.png?v=1645553306&amp;width=170 170w, //www.lavantgardiste.com/cdn/shop/files/Logo_l_avant_gardiste_V1_dda3b27a-7fca-44b7-b93c-5245a68f86f2.png?v=1645553306&amp;width=255 255w, //www.lavantgardiste.com/cdn/shop/files/Logo_l_avant_gardiste_V1_dda3b27a-7fca-44b7-b93c-5245a68f86f2.png?v=1645553306&amp;width=340 340w" width="170" height="39.34081346423562" loading="eager" class="header__heading-logo motion-reduce" sizes="(max-width: 340px) 50vw, 170px">
            </div>
            <style>
              @media screen and (max-width: 750px) {
                .header__heading-logo-wrapper-desktop {
                  display: none;
                }

                .header__heading-logo-wrapper-mobile {
                  display: block;
                }
              }
            </style>
          
</a><nav class="header__inline-menu">
          <ul class="list-menu list-menu--inline" role="list"><li><a href="/pages/noel" class="header__menu-item list-menu__item link link--text focus-inset header__menu-item-highlighted">
                    <span>Noël</span>
                  </a></li><li><a href="/collections/new" class="header__menu-item list-menu__item link link--text focus-inset">
                    <span>Nouveau</span>
                  </a></li><li><a href="/collections/les-tops" class="header__menu-item list-menu__item link link--text focus-inset">
                    <span>Les tops</span>
                  </a></li><li><header-menu>
                    <details id="Details-HeaderMenu-4" class="mega-menu">
                      <summary class="header__menu-item list-menu__item link focus-inset">
                        <span>Maison &amp; Déco</span>
                        <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                      </summary>
                      <div id="MegaMenu-Content-4" class="mega-menu__content gradient motion-reduce global-settings-popup" tabindex="-1" style="background-color: #f7f7f7;">
                        <div class="mega-menu_inner-container page-width mega-menu_inner-container-multiples">
                          <ul class="mega-menu__list mega-menu__list--condensed mega-menu__list--multiples" role="list"><li>
                                  
                                    <a href="/collections/maison" class="mega-menu__link mega-menu__link--level-2 link link--title">
                                      Voir toute la déco
                                    </a>
                                  
</li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link hidden h1">
                                      Titre caché HIDDEN
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/vases-et-cache-pots" class="mega-menu__link mega-menu__link--level-3 link">
                                            Vases &amp; Caches-pots
                                          </a>
                                        </li><li>
                                          <a href="/collections/decoration-lumineuse" class="mega-menu__link mega-menu__link--level-3 link">
                                            Éclairage décalé
                                          </a>
                                        </li><li>
                                          <a href="/collections/accessoires-de-rangement" class="mega-menu__link mega-menu__link--level-3 link">
                                            Rangement &amp; Organisation
                                          </a>
                                        </li><li>
                                          <a href="/collections/decoration" class="mega-menu__link mega-menu__link--level-3 link">
                                            Objets déco
                                          </a>
                                        </li><li>
                                          <a href="/collections/bougies-bougeoirs-allumettes" class="mega-menu__link mega-menu__link--level-3 link">
                                            Bougies, bougeoirs, allumettes
                                          </a>
                                        </li><li>
                                          <a href="/collections/deco-murale" class="mega-menu__link mega-menu__link--level-3 link">
                                            Déco murale
                                          </a>
                                        </li><li>
                                          <a href="/collections/bureau" class="mega-menu__link mega-menu__link--level-3 link">
                                            Pour le bureau
                                          </a>
                                        </li></ul></li></ul>
                

                          
                            <a href="/collections/boule-disco">
                              <div class="mega-menu_banner">
                                <img src="//www.lavantgardiste.com/cdn/shop/files/produits-disco_418ac53f-ceda-499e-882b-0dd19508cb49.jpg?v=1762860641&width=500" width="500" height="auto" loading="lazy" alt="">
                              </div>
                            </a>
                          

                          
                        </div>
                      </div>
                    </details>
                  </header-menu></li><li><header-menu>
                    <details id="Details-HeaderMenu-5" class="mega-menu">
                      <summary class="header__menu-item list-menu__item link focus-inset">
                        <span>Food &amp; Cuisine</span>
                        <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                      </summary>
                      <div id="MegaMenu-Content-5" class="mega-menu__content gradient motion-reduce global-settings-popup" tabindex="-1" style="background-color: #f7f7f7;">
                        <div class="mega-menu_inner-container page-width mega-menu_inner-container-multiples">
                          <ul class="mega-menu__list mega-menu__list--condensed mega-menu__list--multiples" role="list"><li>
                                  
                                    <a href="/collections/food-cuisine" class="mega-menu__link mega-menu__link--level-2 link link--title">
                                      Voir tout pour la cuisine
                                    </a>
                                  
</li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link hidden h1">
                                      Titre caché HIDDEN
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/arts-de-la-table" class="mega-menu__link mega-menu__link--level-3 link">
                                            Vaisselle &amp; Table Fun
                                          </a>
                                        </li><li>
                                          <a href="/collections/ustensiles-de-cuisine" class="mega-menu__link mega-menu__link--level-3 link">
                                            Ustensiles &amp; Cuisson
                                          </a>
                                        </li><li>
                                          <a href="/collections/accessoires-de-bar" class="mega-menu__link mega-menu__link--level-3 link">
                                            Accessoires de bar
                                          </a>
                                        </li><li>
                                          <a href="/collections/lepicerie" class="mega-menu__link mega-menu__link--level-3 link">
                                            L&#39;épicerie 
                                          </a>
                                        </li></ul></li></ul>
                

                          

                          
                            <a href="/collections/pour-lapero">
                              <div class="mega-menu_banner">
                                <img src="//www.lavantgardiste.com/cdn/shop/files/cadeau-apero.jpg?v=1762860966&width=500" width="500" height="auto" loading="lazy" alt="">
                              </div>
                            </a>
                          
                        </div>
                      </div>
                    </details>
                  </header-menu></li><li><header-menu>
                    <details id="Details-HeaderMenu-6" class="mega-menu">
                      <summary class="header__menu-item list-menu__item link focus-inset">
                        <span>Fun &amp; Lifestyle</span>
                        <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                      </summary>
                      <div id="MegaMenu-Content-6" class="mega-menu__content gradient motion-reduce global-settings-popup" tabindex="-1" style="background-color: #f7f7f7;">
                        <div class="mega-menu_inner-container page-width mega-menu_inner-container-multiples">
                          <ul class="mega-menu__list mega-menu__list--condensed mega-menu__list--multiples" role="list"><li>
                                  
                                    <a href="/collections/lifestyle-fun" class="mega-menu__link mega-menu__link--level-2 link link--title">
                                      Voir tout lifestyle&amp;Fun
                                    </a>
                                  
</li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link hidden h1">
                                      Titre caché HIDDEN
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/bien-etre" class="mega-menu__link mega-menu__link--level-3 link">
                                            Bien-être
                                          </a>
                                        </li><li>
                                          <a href="/collections/cocooning" class="mega-menu__link mega-menu__link--level-3 link">
                                            Cocooning
                                          </a>
                                        </li><li>
                                          <a href="/collections/livres" class="mega-menu__link mega-menu__link--level-3 link">
                                            Livres
                                          </a>
                                        </li><li>
                                          <a href="/collections/animaux" class="mega-menu__link mega-menu__link--level-3 link">
                                            Animaux de compagnie
                                          </a>
                                        </li></ul></li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link hidden h1">
                                      Titre caché HIDDEN
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/high-tech" class="mega-menu__link mega-menu__link--level-3 link">
                                            High-tech
                                          </a>
                                        </li><li>
                                          <a href="/collections/fun-jeux" class="mega-menu__link mega-menu__link--level-3 link">
                                            Jeux
                                          </a>
                                        </li><li>
                                          <a href="/collections/do-it-yourself" class="mega-menu__link mega-menu__link--level-3 link">
                                            Do it yourself
                                          </a>
                                        </li><li>
                                          <a href="/collections/figurines" class="mega-menu__link mega-menu__link--level-3 link">
                                            Peluches &amp; Figurines
                                          </a>
                                        </li></ul></li></ul>
                

                          

                          
                        </div>
                      </div>
                    </details>
                  </header-menu></li><li><header-menu>
                    <details id="Details-HeaderMenu-7" class="mega-menu">
                      <summary class="header__menu-item list-menu__item link focus-inset">
                        <span>Idées Cadeaux</span>
                        <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

                      </summary>
                      <div id="MegaMenu-Content-7" class="mega-menu__content gradient motion-reduce global-settings-popup" tabindex="-1" style="background-color: #f7f7f7;">
                        <div class="mega-menu_inner-container page-width mega-menu_inner-container-multiples">
                          <ul class="mega-menu__list mega-menu__list--condensed mega-menu__list--multiples" role="list"><li>
                                  
                                    <a href="/collections/idees-cadeaux" class="mega-menu__link mega-menu__link--level-2 link link--title">
                                      Voir toutes les idées cadeaux
                                    </a>
                                  
</li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link h1">
                                      Par destinataire
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/cadeaux-homme" class="mega-menu__link mega-menu__link--level-3 link">
                                            Un homme
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeaux-femme" class="mega-menu__link mega-menu__link--level-3 link">
                                            Une femme
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeaux-enfant" class="mega-menu__link mega-menu__link--level-3 link">
                                            Les kids
                                          </a>
                                        </li></ul></li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link h1">
                                      Par budget
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/cadeau-moins-de-10-euros" class="mega-menu__link mega-menu__link--level-3 link">
                                            Moins de 10€
                                          </a>
                                        </li><li>
                                          <a href="/collections/petites-attentions" class="mega-menu__link mega-menu__link--level-3 link">
                                            Moins de 25€
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeaux-de-25-a-50-euros" class="mega-menu__link mega-menu__link--level-3 link">
                                            De 25 à 50€
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeaux-de-50-a-100-euros" class="mega-menu__link mega-menu__link--level-3 link">
                                            De 50 à 100€
                                          </a>
                                        </li><li>
                                          <a href="/collections/beaux-cadeaux" class="mega-menu__link mega-menu__link--level-3 link">
                                            100€ et +
                                          </a>
                                        </li></ul></li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link h1">
                                      Par occasion 
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/pages/noel" class="mega-menu__link mega-menu__link--level-3 link">
                                            Noël
                                          </a>
                                        </li><li>
                                          <a href="/collections/secret-santa" class="mega-menu__link mega-menu__link--level-3 link">
                                            Secret Santa
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeau-anniversaire" class="mega-menu__link mega-menu__link--level-3 link">
                                            Anniversaire
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeau-cremaillere" class="mega-menu__link mega-menu__link--level-3 link">
                                            Crémaillère
                                          </a>
                                        </li><li>
                                          <a href="/collections/saint-valentin" class="mega-menu__link mega-menu__link--level-3 link">
                                            Saint-Valentin
                                          </a>
                                        </li></ul></li><li>
                                  
                                    <span class="mega-menu__link mega-menu__link--level-2 link h1">
                                      Par univers
                                    </span>
                                  
<ul class="list-unstyled" role="list"><li>
                                          <a href="/collections/oui-oui-baguette" class="mega-menu__link mega-menu__link--level-3 link">
                                            Brunch &amp; Morning mood
                                          </a>
                                        </li><li>
                                          <a href="/collections/spicy" class="mega-menu__link mega-menu__link--level-3 link">
                                            Spicy
                                          </a>
                                        </li><li>
                                          <a href="/collections/boule-disco" class="mega-menu__link mega-menu__link--level-3 link">
                                            Disco
                                          </a>
                                        </li><li>
                                          <a href="/collections/kawaii" class="mega-menu__link mega-menu__link--level-3 link">
                                            Kawaii
                                          </a>
                                        </li><li>
                                          <a href="/collections/nostalgie" class="mega-menu__link mega-menu__link--level-3 link">
                                            Vintage
                                          </a>
                                        </li><li>
                                          <a href="/collections/cow-boy-confirme" class="mega-menu__link mega-menu__link--level-3 link">
                                            Cow-boy
                                          </a>
                                        </li><li>
                                          <a href="/collections/cadeau-insolite-pour-tout-le-monde" class="mega-menu__link mega-menu__link--level-3 link">
                                            Insolite
                                          </a>
                                        </li></ul></li></ul>
                

                          

                          
                        </div>
                      </div>
                    </details>
                  </header-menu></li></ul>
        </nav><div class="header__icons header__icons--localization header__localization">
      <div class="desktop-localization-wrapper">

<localization-form data-flag-selector>
    <flag-selector>
      <div class="disclosure">
        <button
          type="button"
          class="disclosure__button localization-form__select localization-selector link link--text caption-large"
          aria-expanded="false"
          aria-controls="HeaderFlagList"
          aria-describedby="HeaderFlagLabel"
        >
          <span>
            <img
              src="//www.lavantgardiste.com/cdn/shop/files/france_92af995b-a8d3-4ee2-aea9-8f9a63099ac2_100x100.png?v=1750433314"
              alt="France"
              class="flag-selector__image"
            >
            <span class="flag-selector__name">
              fr
            </span>
          </span>
          <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

        </button>
        <div class="disclosure__list-wrapper" hidden>
          <ul id="HeaderFlagList" role="list" class="disclosure__list list-unstyled"><li class="disclosure__item" tabindex="-1">
                <span
                  class="link link--text disclosure__link caption-large focus-inset"
                  
                  
                  data-value="fr"
                >
                  <span class="localization-form__currency">
                    <img
                      src="//www.lavantgardiste.com/cdn/shop/files/france_92af995b-a8d3-4ee2-aea9-8f9a63099ac2_100x100.png?v=1750433314"
                      alt="France"
                      class="flag-selector__image"
                    >
                    <span class="flag-selector__name">
                      France
                    </span>
                  </span>
                </span>
              </li><li class="disclosure__item" tabindex="-1">
                <a
                  class="link link--text disclosure__link caption-large focus-inset"
                  href="https://www.lavantgardiste.it/"
                  
                  data-value="it"
                >
                  <span class="localization-form__currency">
                    <img
                      src="//www.lavantgardiste.com/cdn/shop/files/italy_100x100.png?v=1750433314"
                      alt="Italie"
                      class="flag-selector__image"
                    >
                    <span class="flag-selector__name">
                      Italie
                    </span>
                  </span>
                </a>
              </li></ul>
        </div>
      </div>
    </flag-selector>
  </localization-form></div>
      <details-modal class="header__search small-hide">
        <details>
          <summary class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle" aria-haspopup="dialog" aria-label="Recherche">
            <span>
              <svg class="modal__toggle-open icon icon-search" aria-hidden="true" focusable="false">
                <use href="#icon-search">
              </svg>
              <svg class="modal__toggle-close icon icon-close" aria-hidden="true" focusable="false">
                <use href="#icon-close">
              </svg>
            </span>
          </summary>
          <div class="search-modal modal__content gradient" role="dialog" aria-modal="true" aria-label="Recherche">
            <div class="modal-overlay"></div>
            <div class="search-modal__content search-modal__content-bottom" tabindex="-1"><predictive-search class="search-modal__form" data-loading-text="Chargement en cours..."><form action="/search" method="get" role="search" class="search search-modal__form">
                    <div class="field">
                      <input class="search__input field__input"
                        id="Search-In-Modal"
                        type="search"
                        name="q"
                        value=""
                        placeholder="Recherche">
                      <label class="field__label" for="Search-In-Modal">Recherche</label>
                      <input type="hidden" name="options[prefix]" value="last">
                      <button type="reset" class="reset__button field__button hidden" aria-label="Effacer le terme de recherche">
                        <svg class="icon icon-close" aria-hidden="true" focusable="false">
                          <use xlink:href="#icon-reset">
                        </svg>
                      </button>
                      <button class="search__button field__button" aria-label="Recherche">
                        <svg class="icon icon-search" aria-hidden="true" focusable="false">
                          <use href="#icon-search">
                        </svg>
                      </button>
                    </div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
                        <div class="predictive-search__loading-state">
                          <svg aria-hidden="true" focusable="false" class="spinner" viewbox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
                            <circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
                          </svg>
                        </div>
                      </div>

                      <span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button type="button" class="search-modal__close-button modal__close-button link link--text focus-inset" aria-label="Fermer">
                <svg class="icon icon-close" aria-hidden="true" focusable="false">
                  <use href="#icon-close">
                </svg>
              </button>
            </div>
          </div>
        </details>
      </details-modal><a href="/account/login" class="header__icon header__icon--account link focus-inset small-hide">
          <svg 
  xmlns="http://www.w3.org/2000/svg" 
  viewbox="100 -480 760 1" 
  focusable="false"
  class="icon icon-account"
  fill="#000000">
    <path fill="#000000" d="M240.924-268.307q51-37.846 111.115-59.769Q412.154-349.999 480-349.999t127.961 21.923q60.115 21.923 111.115 59.769 37.308-41 59.116-94.923Q800-417.154 800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 62.846 21.808 116.77 21.808 53.923 59.116 94.923Zm239.088-181.694q-54.781 0-92.396-37.603-37.615-37.604-37.615-92.384 0-54.781 37.603-92.396 37.604-37.615 92.384-37.615 54.781 0 92.396 37.603 37.615 37.604 37.615 92.384 0 54.781-37.603 92.396-37.604 37.615-92.384 37.615Zm-.012 350q-79.154 0-148.499-29.77-69.346-29.769-120.654-81.076-51.307-51.308-81.076-120.654-29.77-69.345-29.77-148.499t29.77-148.499q29.769-69.346 81.076-120.654 51.308-51.307 120.654-81.076 69.345-29.77 148.499-29.77t148.499 29.77q69.346 29.769 120.654 81.076 51.307 51.308 81.076 120.654 29.77 69.345 29.77 148.499t-29.77 148.499q-29.769 69.346-81.076 120.654-51.308 51.307-120.654 81.076-69.345 29.77-148.499 29.77ZM480-160q54.154 0 104.423-17.423 50.27-17.423 89.27-48.731-39-30.154-88.116-47Q536.462-290.001 480-290.001q-56.462 0-105.77 16.654-49.308 16.654-87.923 47.193 39 31.308 89.27 48.731Q425.846-160 480-160Zm0-349.999q29.846 0 49.924-20.077 20.077-20.078 20.077-49.924t-20.077-49.924Q509.846-650.001 480-650.001t-49.924 20.077Q409.999-609.846 409.999-580t20.077 49.924q20.078 20.077 49.924 20.077ZM480-580Zm0 355Z"/>
</svg>
          <span class="visually-hidden">Connexion</span>
        </a><div class="wishlist-header-link">
        <a href="/pages/wishlist" class="header__icon wkh-button header__icon--wishlist link focus-inset">
            <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" class="icon icon-account" fill="none" viewbox="0 0 24 24">
  <path d="M11.413 3.997C7.881.429.513 1.442 1.123 8.667 1.733 15.89 11.413 21 11.413 21s9.68-5.11 10.29-12.334c.61-7.224-6.758-8.237-10.29-4.67" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
            <div class="wishlist-count-bubble" style="display: none">
              <span class="wkh-counter">0</span>
          </div>
        </a>
      </div><a href="/cart" class="header__icon header__icon--cart link focus-inset" id="cart-icon-bubble"><svg class="icon icon-cart-empty" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24" fill="none">
  <path d="M22 22H1V7h21v15z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M7 10V5.91C7 4.682 7 1 11.501 1 16 1 16 4.683 16 5.91V10" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg><span class="visually-hidden">Panier</span></a>
    </div>
  </header>
</sticky-header>

<cart-notification>
  <div class="cart-notification-wrapper page-width">
    <div
      id="cart-notification"
      class="cart-notification focus-inset color-background-1 gradient"
      aria-modal="true"
      aria-label="Article ajouté au panier"
      role="dialog"
      tabindex="-1"
    >
      <div class="cart-notification__header">
        <p class="cart-notification__heading caption-large text-body"><svg
  class="icon icon-checkmark color-foreground-accent-1"
  aria-hidden="true"
  focusable="false"
  xmlns="http://www.w3.org/2000/svg"
  viewbox="0 0 12 9"
  fill="none"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
Article ajouté au panier
        </p>
        <button
          type="button"
          class="cart-notification__close modal__close-button link link--text focus-inset"
          aria-label="Fermer"
        >
          <svg class="icon icon-close" aria-hidden="true" focusable="false">
            <use href="#icon-close">
          </svg>
        </button>
      </div>
      <div id="cart-notification-product" class="cart-notification-product"></div>
      <div class="cart-notification__links">
        <a
          href="/cart"
          id="cart-notification-button"
          class="button button--primary button--full-width"
        >Voir le panier</a>
        <form action="/cart" method="post" id="cart-notification-form">

          
          
        </form>
        <button type="button" class="link button-label">Continuer les achats</button>
      </div>
    </div>
  </div>
</cart-notification>
<style data-shopify>
  .cart-notification {
    display: none;
  }
</style>




</div>
<!-- END sections: header-group -->

    <main id="MainContent" class="content-for-layout focus-none" role="main">
      <section id="shopify-section-template--18922447405404__multicolumn_J4PCWd" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-multicolumn.css?v=105118039624421999891684480678" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__multicolumn_J4PCWd-padding {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__multicolumn_J4PCWd-padding {
      padding-top: 0px;
      padding-bottom: 0px;
    }
  }</style><div class="multicolumn color-background-1 gradient background-none no-heading">
  <div class="page-width section-template--18922447405404__multicolumn_J4PCWd-padding isolate"><slider-component class="slider-mobile-gutter">
      <ul
        class="multicolumn-list contains-content-container grid grid--1-col-tablet-down grid--3-col-desktop slider slider--mobile grid--peek"
        id="Slider-template--18922447405404__multicolumn_J4PCWd"
        role="list"
      ><li
            id="Slide-template--18922447405404__multicolumn_J4PCWd-1"
            class="multicolumn-list__item grid__item slider__slide center"
            
          >
            <div class="multicolumn-card content-container">

                <div class="multicolumn-card__image-wrapper multicolumn-card__image-wrapper--full-width">
                  <div
                    class="media media--transparent media--portrait"
                    
                  >

<a style="opacity: 0; z-index: 3" class="img-click"

href="/pages/noel"
>img link</a>
                    <img src="//www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=3200" alt="" srcset="//www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=50 50w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=75 75w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=100 100w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=150 150w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=200 200w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=300 300w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=400 400w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=500 500w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=750 750w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=1000 1000w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=1250 1250w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=1500 1500w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=1750 1750w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=2000 2000w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=2250 2250w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=2500 2500w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=2750 2750w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=3000 3000w, //www.lavantgardiste.com/cdn/shop/files/noel-magique_f0357a31-0a17-4840-80e2-d28c4807389e.jpg?v=1762071770&amp;width=3200 3200w" width="3200" height="4800" loading="lazy" sizes="                      (min-width: 1500px) calc((1500px - 132px) * 1 /  3),                      (min-width: 990px) calc((100vw - 132px) * 1 / 3),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)                    " class="multicolumn-card__image">
                  </div>
                </div><div class="multicolumn-card__info"><a
                    class="link animate-arrow"
                    
                      href="/pages/noel"
                    
                  >Des cadeaux qui font WAOUH<span class="icon-wrap">&nbsp;<svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span></a
></div>
            </div>
          </li><li
            id="Slide-template--18922447405404__multicolumn_J4PCWd-2"
            class="multicolumn-list__item grid__item slider__slide center"
            
          >
            <div class="multicolumn-card content-container">

                <div class="multicolumn-card__image-wrapper multicolumn-card__image-wrapper--full-width">
                  <div
                    class="media media--transparent media--portrait"
                    
                  >

<a style="opacity: 0; z-index: 3" class="img-click"

href="/collections/fetards"
>img link</a>
                    <img src="//www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=3200" alt="" srcset="//www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=50 50w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=75 75w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=100 100w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=150 150w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=200 200w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=300 300w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=400 400w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=500 500w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=750 750w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=1000 1000w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=1250 1250w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=1500 1500w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=1750 1750w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=2000 2000w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=2250 2250w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=2500 2500w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=2750 2750w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=3000 3000w, //www.lavantgardiste.com/cdn/shop/files/fetes.jpg?v=1764584847&amp;width=3200 3200w" width="3200" height="4800" loading="lazy" sizes="                      (min-width: 1500px) calc((1500px - 132px) * 1 /  3),                      (min-width: 990px) calc((100vw - 132px) * 1 / 3),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)                    " class="multicolumn-card__image">
                  </div>
                </div><div class="multicolumn-card__info"><a
                    class="link animate-arrow"
                    
                      href="/collections/fetards"
                    
                  >Ambiance Party garantie<span class="icon-wrap">&nbsp;<svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span></a
></div>
            </div>
          </li><li
            id="Slide-template--18922447405404__multicolumn_J4PCWd-3"
            class="multicolumn-list__item grid__item slider__slide center"
            
          >
            <div class="multicolumn-card content-container">

                <div class="multicolumn-card__image-wrapper multicolumn-card__image-wrapper--full-width">
                  <div
                    class="media media--transparent media--portrait"
                    
                  >

<a style="opacity: 0; z-index: 3" class="img-click"

href="/collections/secret-santa"
>img link</a>
                    <img src="//www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=3200" alt="" srcset="//www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=50 50w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=75 75w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=100 100w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=150 150w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=200 200w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=300 300w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=400 400w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=500 500w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=750 750w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=1000 1000w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=1250 1250w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=1500 1500w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=1750 1750w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=2000 2000w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=2250 2250w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=2500 2500w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=2750 2750w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=3000 3000w, //www.lavantgardiste.com/cdn/shop/files/secret-santa-cadeaux.jpg?v=1764583709&amp;width=3200 3200w" width="3200" height="4800" loading="lazy" sizes="                      (min-width: 1500px) calc((1500px - 132px) * 1 /  3),                      (min-width: 990px) calc((100vw - 132px) * 1 / 3),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)                    " class="multicolumn-card__image">
                  </div>
                </div><div class="multicolumn-card__info"><a
                    class="link animate-arrow"
                    
                      href="/collections/secret-santa"
                    
                  >Offrir un Secret Santa<span class="icon-wrap">&nbsp;<svg
  viewbox="0 0 14 10"
  fill="none"
  aria-hidden="true"
  focusable="false"
  class="icon icon-arrow"
  xmlns="http://www.w3.org/2000/svg"
>
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span></a
></div>
            </div>
          </li></ul><div class="slider-buttons no-js-hidden medium-hide">
          <button
            type="button"
            class="slider-button slider-button--prev"
            name="previous"
            aria-label="Faire glisser vers la gauche"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
          <div class="slider-counter caption">
            <span class="slider-counter--current">1</span>
            <span aria-hidden="true"> / </span>
            <span class="visually-hidden">de</span>
            <span class="slider-counter--total">3</span>
          </div>
          <button
            type="button"
            class="slider-button slider-button--next"
            name="next"
            aria-label="Faire glisser vers la droite"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
        </div></slider-component>
    <div class="center small-hide medium-hide"></div>
  </div>
</div>


<style> #shopify-section-template--18922447405404__multicolumn_J4PCWd .multicolumn-card__info {position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%); text-align: center; border-radius: 5px; white-space: nowrap;} #shopify-section-template--18922447405404__multicolumn_J4PCWd .multicolumn-card__info .link {background: #fff; padding: 5px 23px; border-radius: 30px; font-family: "Gilroy Extra Bold";} #shopify-section-template--18922447405404__multicolumn_J4PCWd .multicolumn-card__image-wrapper {margin: 0;} #shopify-section-template--18922447405404__multicolumn_J4PCWd .slider__slide {margin-left: 0;} #shopify-section-template--18922447405404__multicolumn_J4PCWd .slider-buttons {display: none;} #shopify-section-template--18922447405404__multicolumn_J4PCWd .multicolumn div {max-width: 100%; padding-left: 0; padding-right: 0;} @media screen and (max-width: 480px) {#shopify-section-template--18922447405404__multicolumn_J4PCWd .media--square {padding-bottom: 125%; }} </style></section><section id="shopify-section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-rich-text.css?v=149751641068996374431715084926" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/readmore.css?v=63023279629272971751683896285" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08-padding {
    padding-top: 18px;
    padding-bottom: 21px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08-padding {
      padding-top: 24px;
      padding-bottom: 28px;
    }
  }</style><div id="" class="isolate">
  <div class="rich-text content-container color-background-2 gradient rich-text--full-width content-container--full-width section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08-padding">
    <div class="rich-text__wrapper rich-text__wrapper--center page-width">
      <div class="rich-text__blocks center"><h2
                class="rich-text__heading rte inline-richtext h2"
                
              >
                L’art de surprendre et de cultiver la légèreté au quotidien depuis 2010.
              </h2></div>
    </div>
  </div>
</div>


<style> #shopify-section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08 .color-background-2 {background: #fbf5f8;} #shopify-section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08 h2 {font-size: 1.8rem;} @media screen and (max-width: 480px) {#shopify-section-template--18922447405404__397ce959-b439-41e0-ab1e-bceffd657b08 h2 {font-size: 1.5rem; }} </style></section><section id="shopify-section-template--18922447405404__featured_collection" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-card.css?v=32021878178270997841762856249" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-variant-color-swatch.css?v=5315004800656105901762419824" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-price.css?v=170386376850103801761824076" rel="stylesheet" type="text/css" media="all" />

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/template-collection.css?v=145944865380958730931683872397" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__featured_collection-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__featured_collection-padding {
      padding-top: 48px;
      padding-bottom: 48px;
    }
  }</style><div class="color-background-1 isolate gradient">
  <div class="collection section-template--18922447405404__featured_collection-padding">
    <div class="collection__title title-wrapper title-wrapper--no-top-margin page-width title-wrapper--self-padded-tablet-down"><p class="title inline-richtext text-align-center h2">Amour, surprises et fous rires.</p><div class="collection__description body rte"><p>Ces cadeaux assurent un match parfait</p>
        </div></div>

    <slider-component class="slider-mobile-gutter page-width-desktop">
      <ul
        id="Slider-template--18922447405404__featured_collection"
        class="grid product-grid contains-card contains-card--product contains-card--standard grid--4-col-desktop grid--2-col-tablet-down slider slider--tablet grid--peek"
        role="list"
        aria-label="Carrousel"
      ><li
            id="Slide-template--18922447405404__featured_collection-1"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse.jpg?v=1696607445&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="La Fabuleuse poêle 8 en 1 - Cookut Méteore - Noir "
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/poele-la-fabuleuse-7.jpg?v=1763740954&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  🔥 +12 000 foyers conquis </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-8542521753948"
            
          >
            <a
              href="/products/la-fabuleuse-poele-8-en-1-cookut-la-poele-pratique"
              id="CardLink-template--18922447405404__featured_collection-8542521753948"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-8542521753948 Badge-template--18922447405404__featured_collection-8542521753948"
            >
              La Fabuleuse poêle 8 en 1 - Cookut
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        149,90€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        149,90€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            
              
 
                    
                    
                    <a href="/products/la-fabuleuse-poele-8-en-1-cookut-la-poele-pratique" class="colorSwatch-mini" style="background-color: #76333f"></a>
                  












            
              




 
                    
                    
                    <a href="/products/la-fabuleuse-poele-8-en-1-cookut-la-poele-pratique" class="colorSwatch-mini" style="background-color: #2f5b45"></a>
                  








            
              








 
                    
                    
                    <a href="/products/la-fabuleuse-poele-8-en-1-cookut-la-poele-pratique" class="colorSwatch-mini" style="background-color: #333133"></a>
                  




            
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-2"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante.jpg?v=1692889685&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Coffret de 15 sauces piquantes du monde "
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/coffret-15-sauces-piquante-2.jpg?v=1692889685&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              <span class="badge badge--top-left color-transparent2"> -17%</span>
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
                <span class="badge badge--top-left color-transparent">
                  Exclusivité
                </span>
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  💛 acheté plus de 4000 fois </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-7382187933884"
            
          >
            <a
              href="/products/coffret-de-15-sauces-piquantes-du-monde"
              id="CardLink-template--18922447405404__featured_collection-7382187933884"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-7382187933884 Badge-template--18922447405404__featured_collection-7382187933884"
            >
              Coffret de 15 sauces piquantes du monde
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price  price--on-sale">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        32,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              39,95€
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        32,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"><span
              id="Badge-template--18922447405404__featured_collection-7382187933884"
              class="badge badge--bottom-left color-background-2"
            >En vente</span></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-3"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-4.jpg?v=1745500962&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Lampe disco champignon  L&#39;expressionist"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/lampe-disco-champignon-7.jpg?v=1749205481&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
                <span class="badge badge--top-left color-transparent">
                  Exclusivité
                </span>
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  🎥 Vu sur TikTok + Instagram! </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-9384527003996"
            
          >
            <a
              href="/products/lampe-disco-champignon"
              id="CardLink-template--18922447405404__featured_collection-9384527003996"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-9384527003996 Badge-template--18922447405404__featured_collection-9384527003996"
            >
              Lampe disco champignon
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        59,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        59,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-4"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-3.jpg?v=1728635683&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Vase Farfalle"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/vase-farfalle-pasta-fluid-4.jpg?v=1728635766&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  💛 acheté plus de 1500 fois </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-9583969763676"
            
          >
            <a
              href="/products/vase-farfalle"
              id="CardLink-template--18922447405404__featured_collection-9583969763676"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-9583969763676 Badge-template--18922447405404__featured_collection-9583969763676"
            >
              Vase Farfalle
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        48,00€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        48,00€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-5"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-2.jpg?v=1752830698&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Coffret challenge Pimenté : 10 Sauces Extrêmes"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/coffret-challenge-pimente-10-sauces-extremes-8.jpg?v=1752830698&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              <span class="badge badge--top-left color-transparent2"> -17%</span>
              
              
            
              
              
            
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  ⚡+80 acheteurs en 24h </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-15071524258140"
            
          >
            <a
              href="/products/coffret-challenge-pimente-10-sauces-extremes"
              id="CardLink-template--18922447405404__featured_collection-15071524258140"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-15071524258140 Badge-template--18922447405404__featured_collection-15071524258140"
            >
              Coffret challenge Pimenté : 10 sauces Extrêmes
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price  price--on-sale">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        32,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              39,95€
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        32,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"><span
              id="Badge-template--18922447405404__featured_collection-15071524258140"
              class="badge badge--bottom-left color-background-2"
            >En vente</span></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-6"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-2.jpg?v=1750237451&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Appareil photo numérique sans écran campsnap"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/appareil-photo-numerique-sans-ecran-lenscape-21.jpg?v=1760608345&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              <span class="badge badge--top-left color-transparent2"> -14%</span>
              
              
            
              
              
            
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
                <span class="badge badge--top-left color-transparent">
                  Exclusivité
                </span>
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  👀 Très demandé  </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-15041627160924"
            
          >
            <a
              href="/products/appareil-photo-numerique-sans-ecran-lenscape"
              id="CardLink-template--18922447405404__featured_collection-15041627160924"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-15041627160924 Badge-template--18922447405404__featured_collection-15041627160924"
            >
              Appareil photo numérique sans écran - Lenscape
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price  price--on-sale">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        59,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              69,95€
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        59,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"><span
              id="Badge-template--18922447405404__featured_collection-15041627160924"
              class="badge badge--bottom-left color-background-2"
            >En vente</span></div>
      </div>
      
      <div class="card__colorSwatch">
            
              
 
                    
                    
                    <a href="/products/appareil-photo-numerique-sans-ecran-lenscape" class="colorSwatch-mini" style="background-color: #597354"></a>
                  


            
              

 
                    
                    
                    <a href="/products/appareil-photo-numerique-sans-ecran-lenscape" class="colorSwatch-mini" style="background-color: #c96300"></a>
                  
</div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-7"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/cheminee-table-portable-hofats-ethanol-2.jpg?v=1715864670&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Cheminée de table portable Argenté  hofats"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <video playsinline="playsinline" autoplay="autoplay" loop="loop" preload="none" muted="muted" aria-label="Cheminée de table portable SPIN 900 &amp; 1200" poster="//www.lavantgardiste.com/cdn/shop/files/preview_images/0dfbf00c386c46d6b8edcc65dd25c260.thumbnail.0000000000_2048x.jpg?v=1749111613"><source src="//www.lavantgardiste.com/cdn/shop/videos/c/vp/0dfbf00c386c46d6b8edcc65dd25c260/0dfbf00c386c46d6b8edcc65dd25c260.SD-480p-0.9Mbps-48860329.mp4?v=0" type="video/mp4"><img alt="Cheminée de table portable SPIN 900 &amp; 1200" src="//www.lavantgardiste.com/cdn/shop/files/preview_images/0dfbf00c386c46d6b8edcc65dd25c260.thumbnail.0000000000_2048x.jpg?v=1749111613"></video>
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  🔥 +4000 foyers conquis </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-9665287291228"
            
          >
            <a
              href="/products/cheminee-de-table-portable"
              id="CardLink-template--18922447405404__featured_collection-9665287291228"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-9665287291228 Badge-template--18922447405404__featured_collection-9665287291228"
            >
              Cheminée de table portable SPIN 900 &amp; 1200
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        139,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        139,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            
            
            
            
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__featured_collection-8"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 125.0%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 125.0%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/MG_1090.jpg?v=1745504404&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Veilleuse méduse flottante"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/11_7dc314d3-8091-4a24-aab3-d677c1cc5400.jpg?v=1764667295&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
                <span class="badge badge--top-left color-transparent">
                  Best Seller
                </span>
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
                <span class="badge badge--top-left color-transparent">
                  Exclusivité
                </span>
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><div class="avg-meta-above-title">
               <span>  💨 Ça part en un éclair </span>
             </div><p
            class="card__heading h4"
            
              id="title-template--18922447405404__featured_collection-14830068728156"
            
          >
            <a
              href="/products/veilleuse-meduse-flottante"
              id="CardLink-template--18922447405404__featured_collection-14830068728156"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__featured_collection-14830068728156 Badge-template--18922447405404__featured_collection-14830068728156"
            >
              Veilleuse méduse flottante
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        29,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        29,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li></ul><div class="slider-buttons no-js-hidden">
          <button
            type="button"
            class="slider-button slider-button--prev"
            name="previous"
            aria-label="Faire glisser vers la gauche"
            aria-controls="Slider-template--18922447405404__featured_collection"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
          <div class="slider-counter caption">
            <span class="slider-counter--current">1</span>
            <span aria-hidden="true"> / </span>
            <span class="visually-hidden">de</span>
            <span class="slider-counter--total">8</span>
          </div>
          <button
            type="button"
            class="slider-button slider-button--next"
            name="next"
            aria-label="Faire glisser vers la droite"
            aria-controls="Slider-template--18922447405404__featured_collection"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
        </div></slider-component><div class="center collection__view-all">
        <a
          href="/collections/les-tops"
          class="button button--secondary"
          aria-label="Afficher tous les produits de la collection Les tops"
        >
          Voir tout.
        </a>
      </div></div>
</div>


<style> #shopify-section-template--18922447405404__featured_collection .card__badge {display: none;} #shopify-section-template--18922447405404__featured_collection .collection__description p {text-align: center; color: #888;} #shopify-section-template--18922447405404__featured_collection .slider-buttons {display: none;} #shopify-section-template--18922447405404__featured_collection .collection__title .title {margin-bottom: 0 !important;} </style></section><section id="shopify-section-template--18922447405404__gift_engine_NXKghw" class="shopify-section section section-gift-engine"><script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-gift-engine.js?v=129587463174220988881713195844" defer="defer"></script>
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/template-collection.css?v=145944865380958730931683872397" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-gift-engine.css?v=135829323679286937121741705228" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__gift_engine_NXKghw-padding {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__gift_engine_NXKghw-padding {
      padding-top: 24px;
      padding-bottom: 64px;
    }
  }</style><div class="color-background-2 isolate gradient">
  <div class="collection section-template--18922447405404__gift_engine_NXKghw-padding page-width">
    <div class="collection__title title-wrapper title-wrapper--no-top-margin page-width"><p class="title inline-richtext text-align-center h2">
          Moteur à cadeaux.
        </p></div>
    <gift-engine class="gift-engine-container">
      <div class="gift-engine-wrapper">
        <div class="gift-engine">
          
            <div class="gift-engine-filter">
              <p>Pour qui ?</p>
              <div class="gift-engine-item">
  <custom-select data-name="target" id="gift-engine-select--target" class="gift-engine-select">
    
      
        <div
          id="gift-engine"
          class="selected-option"
          data-tag=""
          data-collection="/collections/cadeaux-femme"
        >
          
            <span class="selected-option-text">Elle</span>
          
          <div class="arrow-down-container"><span class="arrow-down"></span></div>
        </div>
        
    <div class="options">
      
      
        
          <div
            class="option selected"
            data-tag=""
            data-collection="/collections/cadeaux-femme"
          >
            
              <span class="selected-option-text">Elle</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/cadeaux-homme"
          >
            
              <span class="selected-option-text">Lui</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/cadeaux-maman"
          >
            
              <span class="selected-option-text">La mamma</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/cadeaux-papa"
          >
            
              <span class="selected-option-text">Le padre</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/cadeaux-enfant"
          >
            
              <span class="selected-option-text">Un enfant</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/idees-de-cadeaux-ado"
          >
            
              <span class="selected-option-text">Un ado</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/idees-cadeaux-grands-parents"
          >
            
              <span class="selected-option-text">Papi / Mamie</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag=""
            data-collection="/collections/cadeau-couple"
          >
            
              <span class="selected-option-text">Un couple</span>
            
          </div>
          
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
    </div>
  </custom-select>
</div>

            </div>
          
          
          
            <div class="gift-engine-filter">
              <p>Pour quel profil ?</p>
              <div class="gift-engine-item">
  <custom-select data-name="profil" id="gift-engine-select--profil" class="gift-engine-select">
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
    
      
        <div
          id="gift-engine"
          class="selected-option"
          data-tag="Créatif"
          data-collection=""
        >
          
            <span class="selected-option-text">🎨 Créatif</span>
          
          <div class="arrow-down-container"><span class="arrow-down"></span></div>
        </div>
        
    <div class="options">
      
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
          <div
            class="option selected"
            data-tag="Créatif"
            data-collection=""
          >
            
              <span class="selected-option-text">🎨 Créatif</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Joueur"
            data-collection=""
          >
            
              <span class="selected-option-text">🎲 Joueur</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Geek"
            data-collection=""
          >
            
              <span class="selected-option-text">🎮 Geek</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Beauty addict"
            data-collection=""
          >
            
              <span class="selected-option-text">💅 Beauty addict</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Bosseur"
            data-collection=""
          >
            
              <span class="selected-option-text">💼 Bosseur</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Cuisinier"
            data-collection=""
          >
            
              <span class="selected-option-text">👨‍🍳 Cuisinier</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Déco addict"
            data-collection=""
          >
            
              <span class="selected-option-text">🖼️ Déco addict</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Fétard"
            data-collection=""
          >
            
              <span class="selected-option-text">🍾 Fétard</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Food lover"
            data-collection=""
          >
            
              <span class="selected-option-text">🍔 Food lover</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Lecteur passionné"
            data-collection=""
          >
            
              <span class="selected-option-text">📚 Lecteur passionné</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Main verte"
            data-collection=""
          >
            
              <span class="selected-option-text">🪴 Main verte</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Nostalgique"
            data-collection=""
          >
            
              <span class="selected-option-text">💿 Nostalgique</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Relax / Cocooning"
            data-collection=""
          >
            
              <span class="selected-option-text">🛁 Relax / Cocooning</span>
            
          </div>
          
        
      
        
          <div
            class="option"
            data-tag="Voyageur"
            data-collection=""
          >
            
              <span class="selected-option-text">✈️ Voyageur</span>
            
          </div>
          
        
      
    </div>
  </custom-select>
</div>

            </div>
          
          
            <div class="gift-engine-filter">
              <p class="center">Pour quel budget ?</p>
              <div class="jauge-container">
                <budget-gauge class="jauge" id="jauge">
                  <div class="marqueur-container" style="left: 2%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value active" data-value="0">0€</div>
                  </div>
                  <div class="marqueur-container" style="left: 20%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value" data-value="10">10€</div>
                  </div>
                  <div class="marqueur-container" style="left: 40%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value" data-value="20">20€</div>
                  </div>
                  <div class="marqueur-container" style="left: 60%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value" data-value="50">50€</div>
                  </div>
                  <div class="marqueur-container" style="left: 80%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value" data-value="100">100€</div>
                  </div>
                  <div class="marqueur-container" style="left: 98%;">
                    <div class="marqueur"></div>
                    <div class="marqueur-value active" data-value="null">∞</div>
                  </div>
                  <div class="jauge-overlay" id="overlayBas"></div>
                  <div class="jauge-overlay" id="overlayHaut"></div>
                  <div class="curseur curseur-bas" id="curseurBas" data-value="0"></div>
                  <div class="curseur curseur-haut" id="curseurHaut" data-value="null"></div>
                </budget-gauge>
              </div>
            </div>
          
               <div class="gift-engine-button--container">
          <button data-collection="" class="gift-engine-button button">
            <span class="gift-engine-button--text">Lancer la recherche</span>
          </button>
        </div>
        </div>
   
      </div>
    </gift-engine>
  </div>
</div>


</section><section id="shopify-section-template--18922447405404__c44c5861-a162-4fb1-80fd-61ba8bb85ac9" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-rich-text.css?v=149751641068996374431715084926" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/readmore.css?v=63023279629272971751683896285" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__c44c5861-a162-4fb1-80fd-61ba8bb85ac9-padding {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__c44c5861-a162-4fb1-80fd-61ba8bb85ac9-padding {
      padding-top: 36px;
      padding-bottom: 36px;
    }
  }</style><div id="" class="isolate">
  <div class="rich-text content-container color-background-1 gradient rich-text--full-width content-container--full-width section-template--18922447405404__c44c5861-a162-4fb1-80fd-61ba8bb85ac9-padding">
    <div class="rich-text__wrapper rich-text__wrapper--center page-width">
      <div class="rich-text__blocks center"><h1
                class="rich-text__heading rte inline-richtext h1"
                
              >
                Explorez nos idées cadeaux pleines d'originalité, d'humour et de good vibes pour répandre la bonne humeur autour de vous.
              </h1>
              <img class="rich-text__image" src="//www.lavantgardiste.com/cdn/shop/files/etoile.jpg?v=1684219659&width=220" alt="" width="110" height="auto" loading="lazy">

              <div class="rich-text__text rte" >
                <p><strong>Note de 4,6/5. </strong><a href="https://www.avis-verifies.com/avis-clients/lavantgardiste.com?p=2bffb" target="_blank" title="https://www.avis-verifies.com/avis-clients/lavantgardiste.com?p=2bffb"><strong>Déjà  25 893 avis-vérifiés</strong></a></p>
              </div>

              
<div
                class="rich-text__buttons"
                
              ><a
                    
                      href="https://www.avis-verifies.com/avis-clients/lavantgardiste.com"
                    
                    class="button button--secondary"
                  >Voir tous les avis</a></div></div>
    </div>
  </div>
</div>


<style> @media (min-width: 720px) {#shopify-section-template--18922447405404__c44c5861-a162-4fb1-80fd-61ba8bb85ac9 h1 {padding: 0 220px; }} </style></section><section id="shopify-section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9" class="shopify-section section section-collection-list"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-collection-list.css?v=70863279319435850561683872393" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-card.css?v=32021878178270997841762856249" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-variant-color-swatch.css?v=5315004800656105901762419824" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-padding {
      padding-top: 48px;
      padding-bottom: 48px;
    }
  }</style><div class="color-background-1 gradient">
  <div class="collection-list-wrapper page-width isolate no-mobile-link section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-padding"><div class="title-wrapper-with-link title-wrapper--self-padded-mobile title-wrapper--no-top-margin">
        <p id="SectionHeading-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9" class="collection-list-title inline-richtext h2">
          Inspirations du moment.
        </p></div><slider-component class="slider-mobile-gutter">
      <ul
        class="collection-list contains-card contains-card--collection contains-card--standard grid grid--3-col-desktop grid--2-col-tablet-down collection-list--6-items"
        id="Slider-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9"
        role="list"
      ><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-1"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780 800w              "
              src="//www.lavantgardiste.com/cdn/shop/files/kawai-monchichi.jpg?v=1745498780&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Blind box Nommi - Série 100% Sweetness"
              height="900"
              width="800"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/kawaii"
              
              class="full-unstyled-link"
            >Kawaii
            </a>
          </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/kawaii"
              
              class="full-unstyled-link"
            >
              
Kawaii ➔
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-2"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=1000 1000w,//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127 1200w              "
              src="//www.lavantgardiste.com/cdn/shop/files/disco-theme.jpg?v=1752656127&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Lampe disco champignon  L'expressionist"
              height="1798"
              width="1200"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/boule-disco"
              
              class="full-unstyled-link"
            >Boule disco
            </a>
          </p><p class="card__caption">La magie du disco Préparez-vous à faire scintiller vos soirées avec notre...
            </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/boule-disco"
              
              class="full-unstyled-link"
            >
              
Disco ➔
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-3"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098 800w              "
              src="//www.lavantgardiste.com/cdn/shop/files/lampe-tomate_8c8bbdc2-3a6b-4683-9425-e0b66fd84e57.jpg?v=1745499098&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Lampe disco champignon  L'expressionist"
              height="900"
              width="800"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/decoration-lumineuse"
              
              class="full-unstyled-link"
            >Décoration lumineuse
            </a>
          </p><p class="card__caption">Cette collection va vous en mettre plein la vue. Des lampes décoratives,...
            </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/decoration-lumineuse"
              
              class="full-unstyled-link"
            >
              
Éclairage décalé ➔
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-4"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=1000 1000w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=1500 1500w,//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908 1600w              "
              src="//www.lavantgardiste.com/cdn/shop/files/cow-boy.jpg?v=1745500908&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Cow-Boy Confirmé"
              height="2400"
              width="1600"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/cow-boy-confirme"
              
              class="full-unstyled-link"
            >Cow-Boy Confirmé
            </a>
          </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/cow-boy-confirme"
              
              class="full-unstyled-link"
            >
              
Cow boy ➔
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-5"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066 800w              "
              src="//www.lavantgardiste.com/cdn/shop/files/plaid-a-oreilles-d-ours-5.jpg?v=1760542066&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Plaid à oreilles d’ours"
              height="900"
              width="800"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/chill-relax"
              
              class="full-unstyled-link"
            >Chill &amp; Relax
            </a>
          </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/chill-relax"
              
              class="full-unstyled-link"
            >
              
Chill →
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li><li
            id="Slide-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9-6"
            class="collection-list__item grid__item"
            
          >
            
<div class="card-wrapper card-wrapper__second-style animate-arrow collection-card-wrapper">
  <div
    class="card      card--standard       card--media"
    style="--ratio-percent: 125.0%;"
  >
    <div
      class="card__inner color-background-2 gradient ratio"
      style="--ratio-percent: 125.0%;"
    ><div class="card__media">
          <div class="media media--transparent media--hover-effect">
            
            
            <img
              srcset="//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055&width=330 330w,//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055&width=535 535w,//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055&width=750 750w,//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055 800w              "
              src="//www.lavantgardiste.com/cdn/shop/files/horloge-chat-kit-cat-made-in-usa.webp?v=1730887055&width=1500"
              sizes="                (min-width: 1500px) 466px,                (min-width: 750px) calc((100vw - 10rem) / 2),                calc(100vw - 3rem)              "
              alt="Bouillotte Sriracha"
              height="900"
              width="800"
              loading="lazy"
              class="motion-reduce"
            >
          </div>
        </div><div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/cadeau-insolite-pour-tout-le-monde"
              
              class="full-unstyled-link"
            >Cadeaux insolites
            </a>
          </p><p class="card__caption">Quel cadeau insolite offrir sans se tromper ? Trouver un cadeau qui...
            </p></div>
      </div>
    </div>
    
      <div class="card__content card__content-second-style">
        <div class="card__information">
          <p class="card__heading h3">
            <a
              
                href="/collections/cadeau-insolite-pour-tout-le-monde"
              
              class="full-unstyled-link"
            >
              
Insolites ➔
              
            </a>
          </p></div>
      </div>
    
  </div>
</div>

          </li></ul></slider-component></div>
</div>


<style> #shopify-section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9 .full-unstyled-link {font-size: 25px;} @media screen and (max-width: 490px) {#shopify-section-template--18922447405404__a30f5c52-e858-465c-911d-32f7934eb3b9 .full-unstyled-link {font-size: 2rem; }} </style></section><section id="shopify-section-template--18922447405404__navigation_9QE8En" class="shopify-section section section-navigation--bubble"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/template-collection.css?v=145944865380958730931683872397" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-navigation.css?v=48639302201618530931710176011" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__navigation_9QE8En-padding {
    padding-top: 33px;
    padding-bottom: 54px;
  }
  .navigation-bubble-img{
      width: 91px;
      height: 91px;;
    }

  @media screen and (min-width: 750px) {
    .navigation-bubble-img{
      width: 85px;
      height: 85px;;
    }
    .section-template--18922447405404__navigation_9QE8En-padding {
      padding-top: 44px;
      padding-bottom: 72px;
    }
  }</style><div class="color-background-1 isolate gradient">
  <div class="collection section-template--18922447405404__navigation_9QE8En-padding page-width">
    <div class="collection__title title-wrapper title-wrapper--no-top-margin page-width title-wrapper--self-padded-tablet-down"><p class="title inline-richtext text-align-center h2">
          Trouve le cadeau parfait pour…
        </p></div>

    <slider-component class="slider-mobile-gutter">
      <ul
        id="Slider-template--18922447405404__navigation_9QE8En"
        class="grid product-grid contains-bubbles grid--9-col-desktop grid--3-col-tablet-down  slider slider--tablet"
        role="list"
        aria-label="Carrousel"
      ><li
            id="Slide-template--18922447405404__navigation_9QE8En-1"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeaux-homme" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/Plan_de_travail_5_2x-100.jpg?v=1709830745&width=500" width="200" height="200" loading="lazy" alt="Idée cadeau homme">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Un homme</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-2"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeaux-femme" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/Plan_de_travail_5_1_2x-100.jpg?v=1709830746&width=500" width="200" height="200" loading="lazy" alt="Idée cadeau femme">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Une femme</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-3"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeaux-maman" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/Plan_de_travail_5_2_2x-100.jpg?v=1709831229&width=500" width="200" height="200" loading="lazy" alt="Cadeaux Maman">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">La mamma</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-4"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeaux-papa" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/Plan_de_travail_5_4_2x-100.jpg?v=1709831229&width=500" width="200" height="200" loading="lazy" alt="Cadeaux Papa">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Le padre</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-5"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeaux-enfant" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/Plan_de_travail_5_3_2x-100.jpg?v=1709831063&width=500" width="200" height="200" loading="lazy" alt="Idées cadeaux enfant">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Les kids</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-6"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/cadeau-grand-mere" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/icones_AG-10.png?v=1628692981&width=500" width="200" height="200" loading="lazy" alt="Idées cadeaux grand-mère">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Grand-mère</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-7"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/idees-cadeaux-grand-pere" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/icones_AG-06.png?v=1628692981&width=500" width="200" height="200" loading="lazy" alt="Idées cadeaux Grand-Père">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Grand-père</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-8"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/idee-cadeau-frere" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/icones_AG-11.png?v=1628693300&width=500" width="200" height="200" loading="lazy" alt="Idée cadeau frère">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Un frère</p>
    </div>
</a>
          </li><li
            id="Slide-template--18922447405404__navigation_9QE8En-9"
            class="grid__item grid__item-bubble  slider__slide"
          >
            <a href="/collections/idee-cadeau-soeur" class="navigation-bubble--container">
    <div class="navigation-bubble-img">
        <img src="//www.lavantgardiste.com/cdn/shop/files/icones_AG-12.png?v=1628693300&width=500" width="200" height="200" loading="lazy" alt="Cadeau soeur">
    </div>
    <div class="navigation-bubble-content">
        <p class="navigation-bubble-title">Une sœur</p>
    </div>
</a>
          </li></ul><div class="slider-buttons no-js-hidden">
          <button
            type="button"
            class="slider-button slider-button--prev"
            name="previous"
            aria-label="Faire glisser vers la gauche"
            aria-controls="Slider-template--18922447405404__navigation_9QE8En"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
          <div class="slider-counter caption">
            <span class="slider-counter--current">1</span>
            <span aria-hidden="true"> / </span>
            <span class="visually-hidden">de</span>
            <span class="slider-counter--total">9</span>
          </div>
          <button
            type="button"
            class="slider-button slider-button--next"
            name="next"
            aria-label="Faire glisser vers la droite"
            aria-controls="Slider-template--18922447405404__navigation_9QE8En"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
        </div></slider-component>
  </div>
</div>


</section><section id="shopify-section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-card.css?v=32021878178270997841762856249" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-variant-color-swatch.css?v=5315004800656105901762419824" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-price.css?v=170386376850103801761824076" rel="stylesheet" type="text/css" media="all" />

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/template-collection.css?v=145944865380958730931683872397" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-padding {
      padding-top: 48px;
      padding-bottom: 48px;
    }
  }</style><div class="color-background-2 isolate gradient">
  <div class="collection section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-padding">
    <div class="collection__title title-wrapper title-wrapper--no-top-margin page-width title-wrapper--self-padded-tablet-down"><p class="title inline-richtext text-align-center h2">Tout nouveau, tout chaud.</p></div>

    <slider-component class="slider-mobile-gutter page-width-desktop">
      <ul
        id="Slider-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806"
        class="grid product-grid contains-card contains-card--product contains-card--standard grid--4-col-desktop grid--2-col-tablet-down slider slider--tablet grid--peek"
        role="list"
        aria-label="Carrousel"
      ><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-1"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-1.jpg?v=1764956985&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Figurine Sonny angel - Série Santa’s Little Helper"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/figurine-sonny-angel-serie-santa-s-little-helper-2.jpg?v=1764956984&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15321048744284"
            
          >
            <a
              href="/products/figurine-sonny-angel-serie-santa-s-little-helper"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15321048744284"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15321048744284 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15321048744284"
            >
              Figurine Sonny angel - Série Santa’s Little Helper
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        16,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        16,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-2"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases.jpg?v=1764834609&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Surprise box mini vase blind box"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/Surprise-box-food-mini-vases-2.jpg?v=1764834705&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15318422225244"
            
          >
            <a
              href="/products/mini-vase-surprise-mini-vase-mystere-a-collectionner"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15318422225244"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15318422225244 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15318422225244"
            >
              Surprise box - mini vase surprise à collectionner
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        14,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        14,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-3"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable.jpg?v=1764777118&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Light Soy, Lampe Portable"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/soy-sauce-lampe-portable-2.jpg?v=1764777118&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15319952327004"
            
          >
            <a
              href="/products/light-soy-lampe-portable"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15319952327004"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15319952327004 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15319952327004"
            >
              Light Soy, Lampe Portable
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        199,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        199,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-4"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/boule-de-noel-vibro-1.jpg?v=1762354528&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Boule de Noël - vibro"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/sattie-la-boule-de-noel-conversation-starter-12.jpg?v=1764176182&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15282310283612"
            
          >
            <a
              href="/products/sattie-la-boule-de-noel-conversation-starter"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15282310283612"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15282310283612 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15282310283612"
            >
              Sattie - La boule de Noël conversation starter
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        14,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        14,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-5"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-3_ec4fed17-e002-47aa-853b-ee2e9f4c005b.jpg?v=1764770440&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Tasse Nuage &amp; Soucoupe"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/tasse-soucoupe-nuage-4.jpg?v=1764770440&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
                <span class="badge badge--top-left color-transparent">
                  Exclusivité
                </span>
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15228848734556"
            
          >
            <a
              href="/products/set-tasse-et-soucoupe-nuage"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15228848734556"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15228848734556 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15228848734556"
            >
              Tasse Nuage &amp; Soucoupe
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        19,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        19,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-6"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-1.jpg?v=1764947570&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Blind box Nommi - Série Sweetheart Bunny"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-sweetheart-bunny-2.jpg?v=1764947570&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252518236"
            
          >
            <a
              href="/products/blind-box-nommi-serie-sweetheart-bunny"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252518236"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252518236 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252518236"
            >
              Blind box Nommi - Série Sweetheart Bunny
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        24,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        24,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-7"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-2.jpg?v=1764949999&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Blind box Nommi - Série 100% Sweetness"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-100-sweetness-1.jpg?v=1764949999&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252256092"
            
          >
            <a
              href="/products/blind-box-nommi-serie-100-sweetness"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252256092"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252256092 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325252256092"
            >
              Blind box Nommi - Série 100% Sweetness
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        17,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        17,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li><li
            id="Slide-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-8"
            class="grid__item slider__slide"
          >
            

<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-rating.css?v=24573085263941240431683872399" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
    <div
      class="card        card--standard         card--media"
      style="--ratio-percent: 112.50000000000001%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 112.50000000000001%;"
      ><div class="card__media">
            <div class="media media--transparent media--hover-effect">
              
                <img
                  srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743 800w                  "
                  src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-4.jpg?v=1764782743&width=533"
                  sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                  alt="Blind box Nommi - Série Puppy Diary V5"
                  class="motion-reduce"
                  
                    loading="lazy"
                  
                  width="800"
                  height="900"
                >
              

                  <img
                    srcset="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743&width=165 165w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743&width=360 360w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743&width=533 533w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743&width=720 720w,//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743 800w                    "
                    src="//www.lavantgardiste.com/cdn/shop/files/blind-box-nommi-serie-puppy-diary-v5-1.jpg?v=1764782743&width=533"
                    sizes="(min-width: 1500px) 342px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                    alt=""
                    class="motion-reduce"
                    loading="lazy"
                    width="800"
                    height="900"
                  >
                
</div>
          </div><div class="card__content">
          
          <div class="card__badge top left">
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
              
              
            
          </div>
        </div></div>
      <div class="card__content">
        <div class="card__information"><p
            class="card__heading h4"
            
              id="title-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325255336284"
            
          >
            <a
              href="/products/blind-box-nommi-serie-puppy-diary-v5"
              id="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325255336284"
              class="full-unstyled-link"
              aria-labelledby="CardLink-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325255336284 Badge-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806-15325255336284"
            >
              Blind box Nommi - Série Puppy Diary V5
            </a>
          </p>
          <div class="card-information"><span class="caption-large light"></span>
<div class="price">
  <div class="price__container"><div class="price__regular">
      <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
      <span class="price-item price-item--regular">
        24,95€
      </span>
    </div>
    <div class="price__sale">
        <span class="visually-hidden visually-hidden--inline">Prix habituel</span>
        <span>
          <s class="price-item price-item--regular">
            
              
            
          </s>
        </span><span class="visually-hidden visually-hidden--inline">Prix promotionnel</span>
      <span class="price-item price-item--sale price-item--last">
        24,95€
      </span>
    </div>
    <small class="unit-price caption hidden">
      <span class="visually-hidden">Prix unitaire</span>
      <span class="price-item price-item--last">
        <span></span>
        <span aria-hidden="true">/</span>
        <span class="visually-hidden">&nbsp;par&nbsp;</span>
        <span>
        </span>
      </span>
    </small>
  </div>
<br></div>

            
          </div>
        </div>
        
        <div class="card__badge top left"></div>
      </div>
      
      <div class="card__colorSwatch">
            </div>
    </div>
  </div>
          </li></ul><div class="slider-buttons no-js-hidden">
          <button
            type="button"
            class="slider-button slider-button--prev"
            name="previous"
            aria-label="Faire glisser vers la gauche"
            aria-controls="Slider-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
          <div class="slider-counter caption">
            <span class="slider-counter--current">1</span>
            <span aria-hidden="true"> / </span>
            <span class="visually-hidden">de</span>
            <span class="slider-counter--total">8</span>
          </div>
          <button
            type="button"
            class="slider-button slider-button--next"
            name="next"
            aria-label="Faire glisser vers la droite"
            aria-controls="Slider-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806"
          >
            <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

          </button>
        </div></slider-component><div class="center collection__view-all">
        <a
          href="/collections/new"
          class="button"
          aria-label="Afficher tous les produits de la collection Tout nouveau, tout chaud."
        >
          Voir tout.
        </a>
      </div></div>
</div>


<style> #shopify-section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806 .card__badge {display: none;} #shopify-section-template--18922447405404__63e7ccad-742e-4e26-b45b-355f2e778806 .slider-buttons {display: none;} </style></section><section id="shopify-section-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3" class="shopify-section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-card.css?v=32021878178270997841762856249" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-variant-color-swatch.css?v=5315004800656105901762419824" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-article-card.css?v=79693003082375453281684225208" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-featured-blog.css?v=108777918545266943811684225569" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-padding {
      padding-top: 48px;
      padding-bottom: 48px;
    }
  }</style><div class="blog color-background-1 gradient">
  <div class="page-width-desktop isolate section-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-padding">
    <div class="featured-bloc__row-mode"><div class="title-wrapper-with-link title-wrapper--self-padded-tablet-down title-wrapper--no-top-margin">
          <p id="SectionHeading-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3" class="blog__title inline-richtext h2">
            L'hebdromadaire.
          </p>

          
            <div class="blog__mini-description">
              <p>Récemment publié sur le blog</p>
            </div>
          
<div class="blog__view-all center">
              <a
                href="/blogs/blog"
                id="ViewAll-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3"
                class="blog__button button button--tertiary color-accent-2"
                aria-labelledby="ViewAll-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3 SectionHeading-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3"
              >
                Tout afficher
              </a>
            </div></div><slider-component class="slider-mobile-gutter">
          <ul
            id="Slider-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3"
            class="blog__posts articles-wrapper contains-card contains-card--article contains-card--standard grid grid--peek grid--2-col-tablet grid--3-col-desktop slider slider--tablet"
            role="list"
          ><li
                id="Slide-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-1"
                class="blog__post grid__item article slider__slide slider__slide--full-width"
              >
                
<div class="article-card-wrapper card-wrapper underline-links-hover">
    
    <div
      class="card article-card        card--standard                 card--media"
      style="--ratio-percent: 60.24096385542169%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 60.24096385542169%;"
      ><div class="article-card__image-wrapper card__media">
            <div
              class="article-card__image media media--hover-effect"
              
            >
              
              <img
                srcset="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618&width=165 165w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618&width=360 360w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618&width=533 533w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618&width=720 720w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618 784w                "
                src="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_02122025_a57c43c5-d2a8-4df8-8d19-f18f8c510a6e.jpg?v=1765191618&width=533"
                sizes="(min-width: 1500px) 700px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
                alt="Top 5 des meilleurs Cocktail de Noël sans alcool"
                class="motion-reduce"
                
                  loading="lazy"
                
                width="784"
                height="475"
              >
              
            </div>
          </div><div class="card__content">
          <div class="card__information">
            <p class="card__heading">
              <a href="/blogs/blog/top-5-des-meilleurs-cocktail-de-noel-sans-alcool" class="full-unstyled-link">
                Top 5 des meilleurs Cocktail de Noël sans alcool
              </a>
            </p>
            <div class="article-card__info caption-with-letter-spacing h5"><span class="circle-divider"><time datetime="2025-12-08T11:00:15Z">8 décembre 2025</time></span></div></div></div>
      </div>
      <div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a href="/blogs/blog/top-5-des-meilleurs-cocktail-de-noel-sans-alcool" class="full-unstyled-link">
              Top 5 des meilleurs Cocktail de Noël sans alcool
            </a>
          </p>
          <div class="article-card__info caption-with-letter-spacing h5">
            
<span class="circle-divider article-date"><time datetime="2025-12-08T11:00:15Z">8 décembre 2025</time></span></div>
          
        </div></div>
    </div>
  </div>
              </li><li
                id="Slide-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-2"
                class="blog__post grid__item article slider__slide slider__slide--full-width"
              >
                
<div class="article-card-wrapper card-wrapper underline-links-hover">
    
    <div
      class="card article-card        card--standard                 card--media"
      style="--ratio-percent: 60.24096385542169%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 60.24096385542169%;"
      ><div class="article-card__image-wrapper card__media">
            <div
              class="article-card__image media media--hover-effect"
              
            >
              
              <img
                srcset="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535&width=165 165w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535&width=360 360w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535&width=533 533w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535&width=720 720w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535 784w                "
                src="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_04122025_92c8cccb-c3fc-423d-a8b1-d9de30931641.jpg?v=1765191535&width=533"
                sizes="(min-width: 1500px) 700px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
                alt="Les meilleurs DIY deco Noël"
                class="motion-reduce"
                
                  loading="lazy"
                
                width="784"
                height="475"
              >
              
            </div>
          </div><div class="card__content">
          <div class="card__information">
            <p class="card__heading">
              <a href="/blogs/blog/les-meilleurs-diy-deco-noel" class="full-unstyled-link">
                Les meilleurs DIY deco Noël
              </a>
            </p>
            <div class="article-card__info caption-with-letter-spacing h5"><span class="circle-divider"><time datetime="2025-12-08T10:58:52Z">8 décembre 2025</time></span></div></div></div>
      </div>
      <div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a href="/blogs/blog/les-meilleurs-diy-deco-noel" class="full-unstyled-link">
              Les meilleurs DIY deco Noël
            </a>
          </p>
          <div class="article-card__info caption-with-letter-spacing h5">
            
<span class="circle-divider article-date"><time datetime="2025-12-08T10:58:52Z">8 décembre 2025</time></span></div>
          
        </div></div>
    </div>
  </div>
              </li><li
                id="Slide-template--18922447405404__2a0ab04f-a120-4ef9-adde-b85ed7d8f3b3-3"
                class="blog__post grid__item article slider__slide slider__slide--full-width"
              >
                
<div class="article-card-wrapper card-wrapper underline-links-hover">
    
    <div
      class="card article-card        card--standard                 card--media"
      style="--ratio-percent: 60.24096385542169%;"
    >
      <div
        class="card__inner  color-background-2 gradient ratio"
        style="--ratio-percent: 60.24096385542169%;"
      ><div class="article-card__image-wrapper card__media">
            <div
              class="article-card__image media media--hover-effect"
              
            >
              
              <img
                srcset="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440&width=165 165w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440&width=360 360w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440&width=533 533w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440&width=720 720w,//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440 784w                "
                src="//www.lavantgardiste.com/cdn/shop/articles/blog_encart_08122025.jpg?v=1765191440&width=533"
                sizes="(min-width: 1500px) 700px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
                alt="Les meilleures musiques de Noël à ajouter à ta playlist"
                class="motion-reduce"
                
                  loading="lazy"
                
                width="784"
                height="475"
              >
              
            </div>
          </div><div class="card__content">
          <div class="card__information">
            <p class="card__heading">
              <a href="/blogs/blog/les-meilleures-musiques-de-noel-a-ajouter-a-ta-playlist" class="full-unstyled-link">
                Les meilleures musiques de Noël à ajouter à ta ...
              </a>
            </p>
            <div class="article-card__info caption-with-letter-spacing h5"><span class="circle-divider"><time datetime="2025-12-08T10:57:18Z">8 décembre 2025</time></span></div></div></div>
      </div>
      <div class="card__content">
        <div class="card__information">
          <p class="card__heading h3">
            <a href="/blogs/blog/les-meilleures-musiques-de-noel-a-ajouter-a-ta-playlist" class="full-unstyled-link">
              Les meilleures musiques de Noël à ajouter à ta ...
            </a>
          </p>
          <div class="article-card__info caption-with-letter-spacing h5">
            
<span class="circle-divider article-date"><time datetime="2025-12-08T10:57:18Z">8 décembre 2025</time></span></div>
          
        </div></div>
    </div>
  </div>
              </li></ul><div class="slider-buttons no-js-hidden">
              <button
                type="button"
                class="slider-button slider-button--prev"
                name="previous"
                aria-label="Faire glisser vers la gauche"
              >
                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

              </button>
              <div class="slider-counter caption">
                <span class="slider-counter--current">1</span>
                <span aria-hidden="true"> / </span>
                <span class="visually-hidden">de</span>
                <span class="slider-counter--total">3</span>
              </div>
              <button
                type="button"
                class="slider-button slider-button--next"
                name="next"
                aria-label="Faire glisser vers la droite"
              >
                <svg aria-hidden="true" focusable="false" class="icon icon-caret" viewbox="0 0 10 6">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>

              </button>
            </div></slider-component></div>
  </div>
</div>


</section><section id="shopify-section-template--18922447405404__fe010934-5849-4bb5-be6b-168528db0121" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-rich-text.css?v=149751641068996374431715084926" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/readmore.css?v=63023279629272971751683896285" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--18922447405404__fe010934-5849-4bb5-be6b-168528db0121-padding {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  @media screen and (min-width: 750px) {
    .section-template--18922447405404__fe010934-5849-4bb5-be6b-168528db0121-padding {
      padding-top: 36px;
      padding-bottom: 36px;
    }
  }</style><div id="" class="isolate">
  <div class="rich-text content-container color-background-1 gradient rich-text--full-width content-container--full-width section-template--18922447405404__fe010934-5849-4bb5-be6b-168528db0121-padding">
    <div class="rich-text__wrapper rich-text__wrapper--left page-width">
      <div class="rich-text__blocks left"><p
                class="rich-text__heading rte inline-richtext h2"
                
              >
                Exprimez votre personnalité 👀
              </p>

              <div class="rich-text__text rte" >
                <p>Chez l'avant gardiste, nous sommes convaincus que la vie est trop courte pour ne pas s'amuser, pour ne pas prendre de risques et pour ne pas oser être différent. Nous croyons que la créativité, l'originalité et l'audace sont des qualités à encourager et à cultiver.</p><p>Depuis 2010, notre mission est d'inspirer toutes les personnes à sortir des sentiers battus et de leur offrir des <a href="/collections/idees-cadeaux" title="Idées cadeaux">idées cadeaux originaux</a> disponibles sur notre boutique cadeaux : produits innovants, <a href="/collections/cadeau-insolite-pour-tout-le-monde" title="Cadeaux insolites">cadeaux insolites</a>, décalés et inattendus, pour qu'ils puissent exprimer leur personnalité, leur originalité et leur créativité. <br/><br/>Que vous cherchiez un <a href="/collections/cadeaux-homme" title="Cadeau homme">cadeau homme</a>, un <a href="/collections/cadeaux-femme" title="Cadeaux femme">cadeau pour femme</a>, ou simplement de <a href="/collections/beaux-cadeaux" title="Idées de beaux et gros cadeaux">beaux et gros cadeaux</a>, nous avons de quoi surprendre pour toutes les occasions : <a href="/pages/noel" title="Noël">Noël</a>, <a href="/collections/cadeau-fete-des-peres" title="Cadeaux fête des pères">fête des pères</a>, <a href="/collections/cadeau-fete-des-meres" title="Idées cadeaux fête des mères">fête des mères</a>, <a href="/collections/cadeau-anniversaire" title="Idées cadeaux anniversaire">anniversaire</a>, <a href="/collections/saint-valentin" title="Idées cadeaux Saint Valentin">Saint-Valentin </a>ou même la célèbre <a href="/collections/cadeau-cremaillere" title="Cadeau crémaillère">pendaison de crémaillère</a>. Le bon cadeau n’attend pas, il se trouve ici.<br/><br/></p><p></p><p></p>
              </div>

              
</div>
    </div>
  </div>
</div>


</section>
    </main>

    <section id="shopify-section-multicolumn" class="shopify-section section"><link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-multicolumn.css?v=105118039624421999891684480678" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-slider.css?v=1947997952264646531742482878" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-multicolumn-padding {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  @media screen and (min-width: 750px) {
    .section-multicolumn-padding {
      padding-top: 72px;
      padding-bottom: 72px;
    }
  }</style><div class="multicolumn color-background-1 gradient background-none no-heading">
  <div class="page-width section-multicolumn-padding isolate"><slider-component class="slider-mobile-gutter">
      <ul
        class="multicolumn-list contains-content-container grid grid--2-col-tablet-down grid--4-col-desktop"
        id="Slider-multicolumn"
        role="list"
      ><li
            id="Slide-multicolumn-1"
            class="multicolumn-list__item grid__item center"
            
          >
            <div class="multicolumn-card content-container"><div class="multicolumn-card__image-wrapper multicolumn-card__svg-wrapper">
                  <div
                    class="media media--transparent media--adapt media-svg-icon"
                  >
                    <svg class="icon" fill="none">
    <path d="M16.386 28.384c.355 2.133.113 4.826-1.665 7.884C22.853 33.217 24.76 27.916 24 23.691M13.577 13.267c-4.226-.76-9.526 1.148-12.577 9.28 3.057-1.779 5.751-2.02 7.884-1.665m15.119-7.618a3.374 3.374 0 010-4.769 3.372 3.372 0 110 4.769zm-10.01 15.984c8.434-3.92 24.28-13.672 22.065-28.038C21.69-1.007 11.94 14.841 8.018 23.274l5.975 5.974z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
                  </div>
                </div>
              
<div class="multicolumn-card__info"><p class="inline-richtext h3">Livraison rapide & gratuite</p><div class="rte"><p>En 24h à 72h, dès 59€ d'achat (🇫🇷/🇧🇪)</p></div></div>
            </div>
          </li><li
            id="Slide-multicolumn-2"
            class="multicolumn-list__item grid__item center"
            
          >
            <div class="multicolumn-card content-container"><div class="multicolumn-card__image-wrapper multicolumn-card__svg-wrapper">
                  <div
                    class="media media--transparent media--adapt media-svg-icon"
                  >
                    <svg class="icon" fill="none">
  <path d="M22.219 16.421l-.7.715.7-.715zm-6.012-.029l-.693.722.692.663.693-.663-.692-.722zm-6.01.029l.699.715-.7-.715zm-.081 5.826l.733-.68-.008-.008-.007-.008-.718.696zm5.426 5.85l.733-.68-.733.68zm1.283.049l.678.735.007-.007-.685-.728zm.048-.049l.73.684.003-.004-.733-.68zm5.426-5.85l-.718-.696-.008.008-.008.008.734.68zM16.207 6.585l-.052.999a.996.996 0 00.104 0l-.052-.999zM29.416 36H2.999v2h26.417v-2zM2.999 36A.999.999 0 012 35.001H0a2.999 2.999 0 002.999 3v-2zM2 35.001V8.583H0v26.418h2zM2 8.583c0-.55.447-.998.999-.998v-2A2.999 2.999 0 000 8.583h2zm.999-.998h26.417v-2H2.999v2zm26.417 0c.552 0 .999.448.999.998h2a2.999 2.999 0 00-2.999-2.998v2zm.999.998v26.418h2V8.583h-2zm0 26.418a.999.999 0 01-.999 1v2a2.999 2.999 0 002.999-3h-2zm-7.497-19.295c-2.045-2-5.344-2.01-7.403-.036l1.384 1.444c1.282-1.23 3.35-1.222 4.62.022l1.399-1.43zm-6.019-.036c-2.059-1.975-5.357-1.964-7.402.036l1.399 1.43a3.34 3.34 0 014.618-.022L16.9 15.67zm-7.401.036a5.11 5.11 0 00-.1 7.237l1.436-1.392a3.11 3.11 0 01.062-4.415l-1.398-1.43zm-.115 7.221l5.426 5.85 1.466-1.36-5.426-5.85-1.466 1.36zm5.425 5.85a1.908 1.908 0 002.695.104l-1.357-1.47a.092.092 0 01.13.006l-1.468 1.36zm2.702.097c.043-.04.08-.08.092-.093l-1.459-1.368-.008.009-.004.003.008-.007 1.371 1.456zm.096-.097l5.426-5.85-1.466-1.36-5.426 5.85 1.466 1.36zm5.41-5.834a5.11 5.11 0 00-.098-7.237l-1.398 1.43a3.11 3.11 0 01.06 4.415l1.437 1.392zM16.207 6.585a242.753 242.753 0 01.052-.999h-.015a7.397 7.397 0 01-.285-.021 20.09 20.09 0 01-.833-.088 18.39 18.39 0 01-2.514-.487c-.917-.253-1.75-.588-2.333-1.009-.57-.412-.792-.817-.792-1.247h-2c0 1.296.743 2.235 1.62 2.868.865.625 1.962 1.037 2.975 1.316 1.026.282 2.042.448 2.793.543a22.096 22.096 0 001.28.123l.052-.999zm-6.72-3.85c0-.237.062-.358.117-.427.06-.077.172-.165.382-.23.446-.136 1.175-.109 2.011.203 1.667.622 3.21 2.148 3.21 4.304h2c0-3.235-2.317-5.36-4.51-6.178C11.603 0 10.402-.14 9.4.167c-.513.157-1.004.443-1.366.901-.368.466-.547 1.04-.547 1.666h2zm6.72 3.85l.052.999h.001a.206.206 0 01.008 0 4.872 4.872 0 00.092-.006l.262-.02c.223-.019.539-.05.917-.097.752-.095 1.767-.26 2.794-.543 1.013-.279 2.11-.691 2.974-1.316.878-.633 1.621-1.572 1.621-2.868h-2c0 .43-.222.835-.792 1.247-.583.421-1.416.756-2.334 1.009-.904.248-1.818.399-2.514.487a20.08 20.08 0 01-1.118.109h-.013-.002l.052 1zm8.721-3.85c0-.628-.18-1.201-.547-1.667-.362-.458-.853-.744-1.366-.902C22.013-.14 20.812 0 19.718.407c-2.193.819-4.511 2.943-4.511 6.178h2c0-2.156 1.543-3.682 3.21-4.304.836-.312 1.566-.34 2.011-.203.21.065.323.153.383.23.055.069.117.19.117.426h2z" fill="#000"></path>
</svg>
                  </div>
                </div>
              
<div class="multicolumn-card__info"><p class="inline-richtext h3">20,000+ avis 5 étoiles</p><div class="rte"><p>Une note de 4,5/5 sur avis-verifiés</p></div></div>
            </div>
          </li><li
            id="Slide-multicolumn-3"
            class="multicolumn-list__item grid__item center"
            
          >
            <div class="multicolumn-card content-container"><div class="multicolumn-card__image-wrapper multicolumn-card__svg-wrapper">
                  <div
                    class="media media--transparent media--adapt media-svg-icon"
                  >
                    <svg class="icon" fill="none">
    <path clip-rule="evenodd" d="M37 19c0 9.941-8.059 18-18 18S1 28.941 1 19 9.059 1 19 1s18 8.059 18 18z" stroke="#000" stroke-width="2"></path>
    <path d="M30.781 19c0 6.48-5.302 11.782-11.782 11.782S7.22 25.48 7.22 19" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
    <path clip-rule="evenodd" d="M12.127 16.055a2.946 2.946 0 10-.001-5.892 2.946 2.946 0 00.001 5.892z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
    <path d="M28.818 14.184a2.945 2.945 0 10-5.89 0" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
                  </div>
                </div>
              
<div class="multicolumn-card__info"><p class="inline-richtext h3">Retour easy sous 30 jours</p><div class="rte"><p>30 jours pour changer d'avis</p></div></div>
            </div>
          </li><li
            id="Slide-multicolumn-4"
            class="multicolumn-list__item grid__item center"
            
          >
            <div class="multicolumn-card content-container"><div class="multicolumn-card__image-wrapper multicolumn-card__svg-wrapper">
                  <div
                    class="media media--transparent media--adapt media-svg-icon"
                  >
                    <svg class="icon  icon--xxl  u-marg-b-xs u-transition">
    <use xlink:href="#icon-ag-cook" x="0" y="0"></use>
<symbol id="icon-ag-cook" viewbox="0 0 43 38" fill="none">
            <title>Reinssurance Cook</title>
            <path clip-rule="evenodd" d="M35.494 11.455l-4.54 15.458s-6.378-3.217-4.991-7.937c1.666-5.669 8.427-3.762 9.531-7.52z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path clip-rule="evenodd" d="M35.494 11.455l-4.54 15.458s7.103.743 8.49-3.978c1.665-5.668-5.054-7.72-3.95-11.48z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M30.954 26.913S35.16 25.75 36.261 22M29.146 19.91c1.027-3.495 4.83-3.284 6.349-8.455" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path clip-rule="evenodd" d="M14.129 1l6.297 14.829s-6.97 1.56-8.893-2.969C9.224 7.421 15.66 4.606 14.129 1z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path clip-rule="evenodd" d="M14.129 1l6.297 14.829s5.963-3.932 4.04-8.461C22.156 1.93 15.66 4.606 14.129 1z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M21.411 8.665C19.987 5.311 16.235 5.96 14.13 1M20.426 15.83s-4.312-.67-5.84-4.267" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path clip-rule="evenodd" d="M12.532 31.827h28.73a4.908 4.908 0 01-4.909 4.907H17.438a4.906 4.906 0 01-4.906-4.907z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M2 31.827h5.486" stroke="#000" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M6.125 31.827h6.407" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
        </symbol>

  </svg>
                  </div>
                </div>
              
<div class="multicolumn-card__info"><p class="inline-richtext h3">Un SAV aux petits oignons</p><div class="rte"><p>Du lundi au vendredi, de 9h à 18h</p></div></div>
            </div>
          </li></ul></slider-component>
    <div class="center"></div>
  </div>
</div>


</section>

    <!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--18922447307100__footer" class="shopify-section shopify-section-group-footer-group">
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/section-footer.css?v=87856406732716098401739282369" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-newsletter.css?v=11956526508595530651683878492" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-list-menu.css?v=78866512638808052541762858259" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-list-payment.css?v=69253961410771838501683872399" rel="stylesheet" type="text/css" media="all" />
<link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/component-list-social.css?v=86546914481796147261683895421" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.footer {
    margin-top: 0px;
  }

  .section-sections--18922447307100__footer-padding {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  @media screen and (min-width: 750px) {
    .footer {
      margin-top: 0px;
    }

    .section-sections--18922447307100__footer-padding {
      padding-top: 36px;
      padding-bottom: 36px;
    }
  }</style><div class="color-background-2">
  <div class="footer-block--newsletter page-width"><div class="footer-block__newsletter"><p class="footer-block__heading inline-richtext h2">Rejoignez +250.000 avant-gardistes, et recevez une dose hebdomadaire de fun.</p><form method="post" action="/contact#ContactFooter" id="ContactFooter" accept-charset="UTF-8" class="footer__newsletter newsletter-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="contact[tags]" value="newsletter">
          <div class="newsletter-form__field-wrapper">
            <div class="field">
              <input
                id="NewsletterForm--sections--18922447307100__footer"
                type="email"
                name="contact[email]"
                class="field__input"
                value=""
                aria-required="true"
                autocorrect="off"
                autocapitalize="off"
                autocomplete="email"
                
                placeholder="E-mail"
                required
>
              <label class="field__label" for="NewsletterForm--sections--18922447307100__footer">
                E-mail
              </label>
              <button
                type="submit"
                class="button button--primary newsletter-form__button field__button"
                name="commit"
                id="Subscribe"
                aria-label="S&#39;inscrire"
              >

                S'inscrire
              </button>
            </div></div></form></div><div class="newsletter-social-container">
        
          <p class="h3">Suivez-nous @lavantgardiste</p>
        
<ul class="footer__list-social list-unstyled list-social"><li class="list-social__item">
      <a href="https://www.facebook.com/lavantgardiste" target="_blank" class="link list-social__link" ><svg aria-hidden="true" focusable="false" class="icon icon-facebook" viewbox="0 0 18 18">
  <path fill="currentColor" d="M16.42.61c.27 0 .5.1.69.28.19.2.28.42.28.7v15.44c0 .27-.1.5-.28.69a.94.94 0 01-.7.28h-4.39v-6.7h2.25l.31-2.65h-2.56v-1.7c0-.4.1-.72.28-.93.18-.2.5-.32 1-.32h1.37V3.35c-.6-.06-1.27-.1-2.01-.1-1.01 0-1.83.3-2.45.9-.62.6-.93 1.44-.93 2.53v1.97H7.04v2.65h2.24V18H.98c-.28 0-.5-.1-.7-.28a.94.94 0 01-.28-.7V1.59c0-.27.1-.5.28-.69a.94.94 0 01.7-.28h15.44z">
</svg>
<span class="visually-hidden">Facebook</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.instagram.com/lavantgardiste/" target="_blank" class="link list-social__link" ><svg aria-hidden="true" focusable="false" class="icon icon-instagram" viewbox="0 0 18 18">
  <path fill="currentColor" d="M8.77 1.58c2.34 0 2.62.01 3.54.05.86.04 1.32.18 1.63.3.41.17.7.35 1.01.66.3.3.5.6.65 1 .12.32.27.78.3 1.64.05.92.06 1.2.06 3.54s-.01 2.62-.05 3.54a4.79 4.79 0 01-.3 1.63c-.17.41-.35.7-.66 1.01-.3.3-.6.5-1.01.66-.31.12-.77.26-1.63.3-.92.04-1.2.05-3.54.05s-2.62 0-3.55-.05a4.79 4.79 0 01-1.62-.3c-.42-.16-.7-.35-1.01-.66-.31-.3-.5-.6-.66-1a4.87 4.87 0 01-.3-1.64c-.04-.92-.05-1.2-.05-3.54s0-2.62.05-3.54c.04-.86.18-1.32.3-1.63.16-.41.35-.7.66-1.01.3-.3.6-.5 1-.65.32-.12.78-.27 1.63-.3.93-.05 1.2-.06 3.55-.06zm0-1.58C6.39 0 6.09.01 5.15.05c-.93.04-1.57.2-2.13.4-.57.23-1.06.54-1.55 1.02C1 1.96.7 2.45.46 3.02c-.22.56-.37 1.2-.4 2.13C0 6.1 0 6.4 0 8.77s.01 2.68.05 3.61c.04.94.2 1.57.4 2.13.23.58.54 1.07 1.02 1.56.49.48.98.78 1.55 1.01.56.22 1.2.37 2.13.4.94.05 1.24.06 3.62.06 2.39 0 2.68-.01 3.62-.05.93-.04 1.57-.2 2.13-.41a4.27 4.27 0 001.55-1.01c.49-.49.79-.98 1.01-1.56.22-.55.37-1.19.41-2.13.04-.93.05-1.23.05-3.61 0-2.39 0-2.68-.05-3.62a6.47 6.47 0 00-.4-2.13 4.27 4.27 0 00-1.02-1.55A4.35 4.35 0 0014.52.46a6.43 6.43 0 00-2.13-.41A69 69 0 008.77 0z"/>
  <path fill="currentColor" d="M8.8 4a4.5 4.5 0 100 9 4.5 4.5 0 000-9zm0 7.43a2.92 2.92 0 110-5.85 2.92 2.92 0 010 5.85zM13.43 5a1.05 1.05 0 100-2.1 1.05 1.05 0 000 2.1z">
</svg>
<span class="visually-hidden">Instagram</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.youtube.com/channel/UCV2xBcZW1w2tg5I9de0LO2w" target="_blank" class="link list-social__link" ><svg aria-hidden="true" focusable="false" class="icon icon-youtube" viewbox="0 0 100 70">
  <path d="M98 11c2 7.7 2 24 2 24s0 16.3-2 24a12.5 12.5 0 01-9 9c-7.7 2-39 2-39 2s-31.3 0-39-2a12.5 12.5 0 01-9-9c-2-7.7-2-24-2-24s0-16.3 2-24c1.2-4.4 4.6-7.8 9-9 7.7-2 39-2 39-2s31.3 0 39 2c4.4 1.2 7.8 4.6 9 9zM40 50l26-15-26-15v30z" fill="currentColor">
</svg>
<span class="visually-hidden">YouTube</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.tiktok.com/@lavantgardiste?" target="_blank" class="link list-social__link" ><svg
  aria-hidden="true"
  focusable="false"
  class="icon icon-tiktok"
  width="16"
  height="18"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path d="M8.02 0H11s-.17 3.82 4.13 4.1v2.95s-2.3.14-4.13-1.26l.03 6.1a5.52 5.52 0 11-5.51-5.52h.77V9.4a2.5 2.5 0 101.76 2.4L8.02 0z" fill="currentColor">
</svg>
<span class="visually-hidden">TikTok</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.pinterest.fr/lavantgardiste/" target="_blank" class="link list-social__link" ><svg aria-hidden="true" focusable="false" class="icon icon-pinterest" viewbox="0 0 17 18">
  <path fill="currentColor" d="M8.48.58a8.42 8.42 0 015.9 2.45 8.42 8.42 0 011.33 10.08 8.28 8.28 0 01-7.23 4.16 8.5 8.5 0 01-2.37-.32c.42-.68.7-1.29.85-1.8l.59-2.29c.14.28.41.52.8.73.4.2.8.31 1.24.31.87 0 1.65-.25 2.34-.75a4.87 4.87 0 001.6-2.05 7.3 7.3 0 00.56-2.93c0-1.3-.5-2.41-1.49-3.36a5.27 5.27 0 00-3.8-1.43c-.93 0-1.8.16-2.58.48A5.23 5.23 0 002.85 8.6c0 .75.14 1.41.43 1.98.28.56.7.96 1.27 1.2.1.04.19.04.26 0 .07-.03.12-.1.15-.2l.18-.68c.05-.15.02-.3-.11-.45a2.35 2.35 0 01-.57-1.63A3.96 3.96 0 018.6 4.8c1.09 0 1.94.3 2.54.89.61.6.92 1.37.92 2.32 0 .8-.11 1.54-.33 2.21a3.97 3.97 0 01-.93 1.62c-.4.4-.87.6-1.4.6-.43 0-.78-.15-1.06-.47-.27-.32-.36-.7-.26-1.13a111.14 111.14 0 01.47-1.6l.18-.73c.06-.26.09-.47.09-.65 0-.36-.1-.66-.28-.89-.2-.23-.47-.35-.83-.35-.45 0-.83.2-1.13.62-.3.41-.46.93-.46 1.56a4.1 4.1 0 00.18 1.15l.06.15c-.6 2.58-.95 4.1-1.08 4.54-.12.55-.16 1.2-.13 1.94a8.4 8.4 0 01-5-7.65c0-2.3.81-4.28 2.44-5.9A8.04 8.04 0 018.48.57z">
</svg>
<span class="visually-hidden">Pinterest</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.snapchat.com/@lavantgardist" target="_blank" class="link list-social__link" ><svg aria-hidden="true" focusable="false" class="icon icon-snapchat" viewbox="0 0 392 386">
  <path d="M390.3 282.3a27.2 27.2 0 00-13.8-14.7l-3-1.6-5.4-2.7a117 117 0 01-42.7-36.6 83 83 0 01-7.3-13c-.8-2.4-.8-3.8-.2-5 .6-1 1.4-1.9 2.4-2.5a1073.6 1073.6 0 0117.7-11.7 49.5 49.5 0 0016-17.1 33.6 33.6 0 00-30.8-49.7 44.8 44.8 0 00-11.8 1.6c.1-9 0-18.6-.9-27.9A105 105 0 00257.4 16 122 122 0 00196 .3c-22.5 0-43 5.3-61.3 15.7a104.6 104.6 0 00-53.2 85.4c-.8 9.4-1 19-.8 27.9a44.8 44.8 0 00-12-1.6 33.7 33.7 0 00-30.8 49.7A49.6 49.6 0 0054 194.6l9.1 6 8.3 5.4c1 .7 2 1.6 2.6 2.7.7 1.3.7 2.7-.2 5.3-2 4.5-4.5 8.7-7.3 12.8a116.5 116.5 0 01-41.4 36c-9.5 5-19.3 8.3-23.4 19.5-3.1 8.5-1 18.2 6.9 26.3 2.9 3 6.2 5.6 10 7.6 7.7 4.2 15.9 7.5 24.4 9.8a16 16 0 015 2.2c2.9 2.5 2.4 6.3 6.3 12 2 2.8 4.4 5.3 7.2 7.3 8.1 5.6 17.2 6 26.8 6.3 8.7.3 18.5.7 29.8 4.4 4.7 1.5 9.5 4.5 15.1 8a110 110 0 0062.8 19.6c30.8 0 49.4-11.4 63-19.7a77.9 77.9 0 0114.9-7.9c11.2-3.7 21-4 29.8-4.4 9.6-.4 18.7-.7 26.8-6.3 3.3-2.3 6.2-5.4 8.2-9 2.8-4.7 2.7-8 5.3-10.3 1.4-1 3-1.7 4.6-2.1 8.7-2.3 17-5.6 24.8-9.9A39 39 0 00384 308l.1-.1c7.5-8 9.4-17.4 6.3-25.6zM362.9 297c-16.8 9.2-27.9 8.3-36.5 13.8-7.4 4.8-3 15-8.4 18.6-6.5 4.6-26-.3-51 8-20.6 6.8-33.8 26.5-71 26.5-37.1 0-50-19.6-71-26.6-25-8.2-44.4-3.4-51-8-5.3-3.6-1-13.8-8.3-18.5-8.7-5.6-19.8-4.6-36.5-13.8-10.7-5.9-4.6-9.5-1.1-11.2 60.6-29.4 70.3-74.7 70.7-78 .5-4.1 1.1-7.3-3.4-11.5-4.3-4-23.5-15.8-28.9-19.6-8.8-6.1-12.6-12.3-9.8-19.8 2-5.3 6.9-7.2 12-7.2 1.6 0 3.2.2 4.8.5 9.7 2.1 19.1 7 24.5 8.3l2 .2c3 0 4-1.4 3.8-4.7-.7-10.6-2.2-31.3-.5-50.6a80 80 0 0121-51.3A93.7 93.7 0 01196 22.3c43.8 0 66.8 24.1 71.7 29.7a80 80 0 0121 51.3c1.7 19.3.2 40-.5 50.5-.2 3.5.9 4.8 3.8 4.8.6 0 1.3 0 2-.3 5.4-1.3 14.8-6.1 24.5-8.2a19 19 0 014.8-.5c5.1 0 10 2 12 7.2 2.8 7.5-1 13.7-9.9 19.8-5.3 3.7-24.5 15.6-28.8 19.6-4.5 4.2-4 7.4-3.4 11.4.4 3.5 10 48.8 70.7 78 3.6 1.8 9.6 5.5-1 11.4z" fill="currentColor">
</svg>
<span class="visually-hidden">Snapchat</span>
      </a>
    </li></ul></div></div>
</div>

<footer class="footer color-background-1 gradient section-sections--18922447307100__footer-padding"><div class="footer__content-top page-width"><div class="footer__blocks-wrapper grid grid--1-col grid--2-col grid--4-col-tablet grid--3-col-tablet"><div
                class="footer-block grid__item"
                
              ><div class="footer-block__brand-info"><div
                          class="footer-block__image-wrapper global-media-settings"
                          style="max-width: min(100%, 160px);"
                        >
                          <img src="//www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=1100" alt="Logo l&#39;avant gardiste" srcset="//www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=50 50w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=100 100w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=150 150w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=200 200w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=300 300w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=400 400w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=550 550w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=800 800w, //www.lavantgardiste.com/cdn/shop/files/image_1.png?v=1683881527&amp;width=1100 1100w" width="160" height="37.02664796633941" loading="lazy">
                        </div><div class="skeepers_carousel_container" data-slides-count="1"></div>
                        <script async charset="utf-8" src="//widgets.rr.skeepers.io/carousel/60f3c319-ca2d-f444-cd09-11994c2ee9f6/cbc5d77c-21c5-4ba3-8066-d2b8d55a7e1c.js"></script></div></div><div
                class="footer-block grid__item footer-block--menu"
                
              ><p class="footer-block__heading inline-richtext h2">L'avant gardiste</p><ul class="footer-block__details-content list-unstyled"><li>
                            <a
                              href="/pages/a-propos"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Le concept
                            </a>
                          </li><li>
                            <a
                              href="/pages/recrutement"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              On recrute!
                            </a>
                          </li><li>
                            <a
                              href="https://lexpressionist.com/"
                              class="link link--text list-menu__item list-menu__item--link"
                              target="_blank"
                            >
                              Devenir revendeur
                            </a>
                          </li><li>
                            <a
                              href="/collections/cadeau-d-entreprise-original"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Cadeaux d'entreprise
                            </a>
                          </li><li>
                            <a
                              href="/blogs/blog"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Le blog
                            </a>
                          </li></ul></div><div
                class="footer-block grid__item footer-block--menu"
                
              ><p class="footer-block__heading inline-richtext h2">Aide</p><ul class="footer-block__details-content list-unstyled"><li>
                            <a
                              href="/pages/livraisons-et-retours"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Livraison et retours
                            </a>
                          </li><li>
                            <a
                              href="/pages/faq"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              FAQ
                            </a>
                          </li><li>
                            <a
                              href="https://www.avis-verifies.com/avis-clients/lavantgardiste.com"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Nos avis-vérifiés
                            </a>
                          </li><li>
                            <a
                              href="/pages/paiement-securise"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Paiement sécurisé
                            </a>
                          </li><li>
                            <a
                              href="/pages/contact"
                              class="link link--text list-menu__item list-menu__item--link"
                              
                            >
                              Nous contacter
                            </a>
                          </li></ul></div><div
                class="footer-block grid__item"
                
              ></div><div
                class="footer-block grid__item"
                
              ></div><div
                class="footer-block grid__item"
                
              ></div></div></div><div class="footer__content-bottom">
    <div class="footer__content-bottom-wrapper page-width">
      <div class="footer__column footer__localization isolate"></div>
      <div class="footer__column footer__column--info"><div class="footer__payment">
            <span class="visually-hidden">Moyens de paiement</span>
            <ul class="list list-payment" role="list">
             
          
                <li class="list-payment__item">
                  <svg class="icon icon--full-color" 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>
                </li>
                <li class="list-payment__item">
                  <svg class="icon icon--full-color" 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>
                </li>
                <li class="list-payment__item">
                  <svg class="icon icon--full-color" 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>

                </li>
                <li class="list-payment__item">
                  <svg class="icon icon--full-color" 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>
                </li>
                <li class="list-payment__item">
                  <svg class="icon icon--full-color" xmlns="http://www.w3.org/2000/svg" aria-labelledby="pi-bancontact" role="img" viewbox="0 0 38 24" width="38" height="24"><title id="pi-bancontact">Bancontact</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 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="M4.703 3.077h28.594c.139 0 .276.023.405.068.128.045.244.11.343.194a.9.9 0 0 1 .229.29c.053.107.08.223.08.34V20.03a.829.829 0 0 1-.31.631 1.164 1.164 0 0 1-.747.262H4.703a1.23 1.23 0 0 1-.405-.068 1.09 1.09 0 0 1-.343-.194.9.9 0 0 1-.229-.29.773.773 0 0 1-.08-.34V3.97c0-.118.027-.234.08-.342a.899.899 0 0 1 .23-.29c.098-.082.214-.148.342-.193a1.23 1.23 0 0 1 .405-.068Z" fill="#fff"/><path d="M6.38 18.562v-3.077h1.125c.818 0 1.344.259 1.344.795 0 .304-.167.515-.401.638.338.132.536.387.536.734 0 .62-.536.91-1.37.91H6.38Zm.724-1.798h.537c.328 0 .468-.136.468-.387 0-.268-.255-.356-.599-.356h-.406v.743Zm0 1.262h.448c.438 0 .693-.093.693-.383 0-.286-.219-.404-.63-.404h-.51v.787Zm3.284.589c-.713 0-1.073-.295-1.073-.69 0-.436.422-.69 1.047-.695.156.002.31.014.464.035v-.105c0-.269-.183-.396-.531-.396a2.128 2.128 0 0 0-.688.105l-.13-.474a3.01 3.01 0 0 1 .9-.132c.767 0 1.147.343 1.147.936v1.222c-.214.093-.615.194-1.136.194Zm.438-.497v-.47a2.06 2.06 0 0 0-.37-.036c-.24 0-.427.08-.427.286 0 .185.156.281.432.281a.947.947 0 0 0 .365-.061Zm1.204.444v-2.106a3.699 3.699 0 0 1 1.177-.193c.76 0 1.198.316 1.198.9v1.399h-.719v-1.354c0-.303-.167-.444-.484-.444a1.267 1.267 0 0 0-.459.079v1.719h-.713Zm4.886-2.167-.135.479a1.834 1.834 0 0 0-.588-.11c-.422 0-.652.25-.652.664 0 .453.24.685.688.685.2-.004.397-.043.578-.114l.115.488a2.035 2.035 0 0 1-.75.128c-.865 0-1.365-.453-1.365-1.17 0-.712.495-1.182 1.323-1.182.27-.001.538.043.787.132Zm1.553 2.22c-.802 0-1.302-.47-1.302-1.178 0-.704.5-1.174 1.302-1.174.807 0 1.297.47 1.297 1.173 0 .708-.49 1.179-1.297 1.179Zm0-.502c.37 0 .563-.259.563-.677 0-.413-.193-.672-.563-.672-.364 0-.568.26-.568.672 0 .418.204.677.568.677Zm1.713.449v-2.106a3.699 3.699 0 0 1 1.177-.193c.76 0 1.198.316 1.198.9v1.399h-.719v-1.354c0-.303-.166-.444-.484-.444a1.268 1.268 0 0 0-.459.079v1.719h-.713Zm3.996.053c-.62 0-.938-.286-.938-.866v-.95h-.354v-.484h.355v-.488l.718-.03v.518h.578v.484h-.578v.94c0 .256.125.374.36.374.093 0 .185-.008.276-.026l.036.488c-.149.028-.3.041-.453.04Zm1.814 0c-.713 0-1.073-.295-1.073-.69 0-.436.422-.69 1.047-.695.155.002.31.014.464.035v-.105c0-.269-.183-.396-.532-.396a2.128 2.128 0 0 0-.687.105l-.13-.474a3.01 3.01 0 0 1 .9-.132c.766 0 1.146.343 1.146.936v1.222c-.213.093-.614.194-1.135.194Zm.438-.497v-.47a2.06 2.06 0 0 0-.37-.036c-.24 0-.427.08-.427.286 0 .185.156.281.432.281a.946.946 0 0 0 .365-.061Zm3.157-1.723-.136.479a1.834 1.834 0 0 0-.588-.11c-.422 0-.651.25-.651.664 0 .453.24.685.687.685.2-.004.397-.043.578-.114l.115.488a2.035 2.035 0 0 1-.75.128c-.865 0-1.365-.453-1.365-1.17 0-.712.495-1.182 1.323-1.182.27-.001.538.043.787.132Zm1.58 2.22c-.62 0-.938-.286-.938-.866v-.95h-.354v-.484h.354v-.488l.72-.03v.518h.577v.484h-.578v.94c0 .256.125.374.36.374.092 0 .185-.008.276-.026l.036.488c-.149.028-.3.041-.453.04Z" fill="#1E3764"/><path d="M11.394 13.946c3.803 0 5.705-2.14 7.606-4.28H6.38v4.28h5.014Z" fill="url(#pi-bancontact-a)"/><path d="M26.607 5.385c-3.804 0-5.705 2.14-7.607 4.28h12.62v-4.28h-5.013Z" fill="url(#pi-bancontact-b)"/><defs><lineargradient id="pi-bancontact-a" x1="8.933" y1="12.003" x2="17.734" y2="8.13" gradientunits="userSpaceOnUse"><stop stop-color="#005AB9"/><stop offset="1" stop-color="#1E3764"/></lineargradient><lineargradient id="pi-bancontact-b" x1="19.764" y1="10.037" x2="29.171" y2="6.235" gradientunits="userSpaceOnUse"><stop stop-color="#FBA900"/><stop offset="1" stop-color="#FFD800"/></lineargradient></defs></svg>
                </li></ul>
          </div></div>
    </div>
    <div class="footer__content-bottom-wrapper page-width footer__content-bottom-wrapper--center">
      <div class="footer__copyright caption">
      <small class="copyright__content"
          >  2010-2025&copy;
        </small> 
        <small class="copyright__content"
          >L&#39;avant gardiste</small>
        
<ul class="policies list-unstyled">
          
            
          
            
          
            
          
            
              <li>
                <small class="copyright__content">
                  <a href="/policies/privacy-policy">Confidentialité</a>
                </small>
              </li>
            
          
            
              <li>
                <small class="copyright__content">
                  <a href="/policies/terms-of-sale">CGV</a>
                </small>
              </li>
            
          
            
              <li>
                <small class="copyright__content">
                  <a href="/policies/legal-notice">Mentions légales</a>
                </small>
              </li>
            
          
        </ul>
      </div>
    </div>
  </div>
</footer>
</div>
<!-- END sections: footer-group -->

    <ul hidden>
      <li id="a11y-refresh-page-message">Le choix d&#39;une sélection entraîne l&#39;actualisation de la page entière.</li>
      <li id="a11y-new-window-message">S&#39;ouvre dans une nouvelle fenêtre.</li>
    </ul>

    <script>
      window.shopUrl = 'https://www.lavantgardiste.com';
      window.routes = {
        cart_add_url: '/cart/add',
        cart_change_url: '/cart/change',
        cart_update_url: '/cart/update',
        cart_url: '/cart',
        predictive_search_url: '/search/suggest',
      };

      window.cartStrings = {
        error: `Une erreur est survenue lors de l’actualisation de votre panier. Veuillez réessayer.`,
        quantityError: `Vous ne pouvez pas ajouter plus de [quantity] de ce produit à votre panier.`,
      };

      window.variantStrings = {
        addToCart: `Ajouter au panier`,
        maxQuantity: `Limite atteinte`,
        soldOut: `😱 Victime de son succès`,
        unavailable: `Non disponible`,
        unavailable_with_option: `[value] – indisponible`,
      };

      window.accessibilityStrings = {
        imageAvailable: `L&#39;image [index] est maintenant disponible dans la galerie`,
        shareSuccess: `Lien copié dans le presse-papiers`,
        pauseSlideshow: `Interrompre le diaporama`,
        playSlideshow: `Lire le diaporama`,
      };
    </script><script src="//www.lavantgardiste.com/cdn/shop/t/54/assets/predictive-search.js?v=16985596534672189881683872400" defer="defer"></script><!-- Skeepers (Avis vérifiés) -->
    <script
      async
 charset="utf-8"
      src="https://widgets.rr.skeepers.io/product/60f3c319-ca2d-f444-cd09-11994c2ee9f6/d8f26495-8a8c-4407-9eec-92c7b9a59d22.js"
    ></script>
    <link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/surcouche-avis-skeepers.css?v=71519760443448001251760956913" rel="stylesheet" type="text/css" media="all" />
    <!-- End Skeepers (Avis vérifiés) -->

    <link href="//www.lavantgardiste.com/cdn/shop/t/54/assets/surcouche-fbt.css?v=50457438443639647451685544296" rel="stylesheet" type="text/css" media="all" />

    <!-- Klaviyo + Back in Stock -->
    <script src="https://a.klaviyo.com/media/js/onsite/onsite.js"></script>
    <script>
      var klaviyo = klaviyo || [];
      klaviyo.init({
        account: 'V4NLab',
        platform: 'shopify',
      });
      klaviyo.enable('backinstock', {
        trigger: {
          product_page_text: "Prévenez-moi lorsque c'est disponible",
          product_page_class: 'btn',
          product_page_text_align: 'center',
          product_page_margin: '0px',
          replace_anchor: false,
        },
        modal: {
          headline: '{product_name}',
          body_content: 'Inscrivez-vous pour recevoir une notification lorsque cet article sera de nouveau en stock.',
          email_field_label: 'Email',
          button_label: 'Informez-moi',
          subscription_success_label: 'Vous y êtes! Nous vous ferons savoir quand il sera de retour.',
          footer_content: '',
          additional_styles: "@import url('https://fonts.googleapis.com/css?family=Helvetica+Neue');",
          drop_background_color: '#000',
          background_color: '#fff',
          text_color: '#222',
          button_text_color: '#fff',
          button_background_color: '#439fdb',
          close_button_color: '#ccc',
          error_background_color: '#fcd6d7',
          error_text_color: '#C72E2F',
          success_background_color: '#d3efcd',
          success_text_color: '#1B9500',
        },
      });
    </script>
    <!-- END Klaviyo + Back in Stock -->

    <!-- Start hide order by sort mobile -->
    <script>
      var valuesToRemove = ['best-selling', 'title-ascending', 'title-descending', 'created-ascending'];

      valuesToRemove.forEach(function (value) {
        var optionToRemove = document.querySelector('option[value="' + value + '"]');
        if (optionToRemove) {
          optionToRemove.parentNode.removeChild(optionToRemove);
        }
      });
    </script>

    <!-- END hide order by sort mobile -->
  <div id="shopify-block-ANE4wZWpEQU9nQkpJY__6680288666557934739" class="shopify-block shopify-app-block"><script id="wkWishlistPage" type="application/json">
  {
    "showVendor": false,
    "showProductTitle": true,
    "showPrice": true,
    "showShareButton": true,
    "showBuyAllButton": false,
    "showClearButton": false,
    "moveToCart": true,
    "ctaButton": "add-to-cart",
    "productOptions": "swatches",
    "wishlistEmptyLink": "\/collections\/all",
    "removeButtonStyle": "icon"
  }
</script>

  <script type="module" src="https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/block-wishlist-page.js"></script>

<style>
  wishlist-page {
    --text-color: var(--wk-color-text);
    --page-max-width: 1400px;
    --page-padding-top: 60px;
    --page-padding-bottom: 30px;
    --button-min-height: var(--wk-button-min-height);
    --button-border-width: var(--wk-button-border-width);
    --button-border-radius: var(--wk-button-border-radius);
    --input-min-height: var(--wk-input-min-height);
    --input-border-width: var(--wk-input-border-width);
    --input-border-radius: var(--wk-input-border-radius);

    --grid-columns-xs: 1;
    --grid-columns-sm: 2;
    --grid-columns-md: 2;
    --grid-columns-lg: 3;
    --grid-columns-xl: 4;

    --cta-button-background: rgb(var(--wk-color-accent-1));
    --cta-button-border: solid var(--button-border-width) rgb(var(--wk-color-accent-1));
    --cta-button-color: rgb(var(--wk-color-solid-button-label));

    --variant-input-background: rgb(var(--wk-color-background-1));
    --variant-input-border: solid var(--input-border-width) rgba(var(--wk-color-text));
    --variant-input-color: rgb(var(--wk-color-text));
    --variant-input-selected-background: var(--variant-input-background);
    --variant-input-selected-border: solid var(--input-border-width) rgba(var(--wk-color-text));
    --variant-input-selected-color: var(--variant-input-color);
    --variant-input-selected-shadow: 0 0 0 var(--input-border-width) rgb(var(--wk-color-text));

    --price-justify-content: flex-start;

    

    --image-aspect-ratio: 3/4;
    --image-object-fit: cover;
    --meta-text-align: left;
  }
</style>

</div><div id="shopify-block-ASFd4aGtkL1V1dGtKa__13655089695959051254" class="shopify-block shopify-app-block"><script id="wkThemeCode" type="application/json">
  {
    "customIconsUrl": null,
    "addToCartJsUrl": null,
    "productCardJsUrl": null,
    "wishlistPageJsUrl": null,
    "eventSubscribersJsUrl": null,
    "localeJsonUrl": "https:\/\/cdn.appmate.io\/themecode\/avant-gardiste-prod\/staging-1\/locale-fr.json?v=1684476551661826",
    "customCssUrl": null,
    "collectionButtonsJsUrl": null,
    "productPageButtonsJsUrl": null,
    "headerLinkJsUrl": null,
    "wishlistLinkHeadlessJsUrl": "https:\/\/cdn.appmate.io\/themecode\/avant-gardiste-prod\/staging-1\/wishlist-link-headless.js?v=1708337807007199",
    "wishlistButtonHeadlessJsUrl": null,
    "saveForLaterJsUrl": null,
    "customDataUrl": null,
    "addWishlistToCartJsUrl": null,
    "accountDialogUrl": null
  }
</script>

  <script type="module" src="https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/block-code-access.js"></script>


</div><div id="shopify-block-AMUNrV3pyVWZIS3hHN__3915993389370480168" class="shopify-block shopify-app-block">
  <script type="module" src="https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/block-wishlist-link-floating.js"></script>

<wishlist-link-floating
  class="wk-hidden"
  
  
    show-counter
 counter-placement="bottom-end"
  counter-offset="-8"
></wishlist-link-floating>
<style>
  wishlist-link-floating {
    --button-border-width: 2px;
    --counter-border-width: 1px;

    --button-background: rgb(var(--wk-color-accent-1));
    --button-border: solid var(--button-border-width) rgb(var(--wk-color-accent-1));
    --icon-stroke: rgb(var(--wk-color-solid-button-label));

    --counter-background: rgb(var(--wk-color-background-1));
    --counter-border: solid var(--counter-border-width) rgb(var(--wk-color-accent-1));
    --counter-color: rgb(var(--wk-color-accent-1));

    --icon-size: 24px;
    --icon-stroke-width: 2px;
    --counter-size: 16px;
    --counter-offset-vertical: -5px;
    --counter-offset-horizontal: 0px;

    --button-offset-bottom: 20px;
    --button-offset-right: 10px;

    --button-box-shadow: var(--wk-shadow-horizontal-offset) var(--wk-shadow-vertical-offset) var(--wk-shadow-blur) 0 rgba(0, 0, 0, var(--wk-shadow-opacity));
    --button-size: 56px;
    --button-border-radius: 40px;
  }
</style>

</div><div id="shopify-block-Ad3BsTFFLOTdHUW5IT__14197025361042770389" class="shopify-block shopify-app-block">

  <script>
    window.WishlistKingAppLoaderURL = "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/app-loader.js";
  </script>
  <script id="wkAppSettings" type="application/json">
    {
      "assets": {
        "themeCssFile": null,
        "localeJsonFile": "locale-fr.json",
        "appBaseCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/app-base.css",
        "componentWishlistButtonBlockJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-button-block.js",
        "componentWishlistLinkJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-link.js",
        "componentWishlistLinkCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-link.css",
        "componentWishlistLinkBlockJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-link-block.js",
        "componentWishlistPageBundleJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-page-bundle.js",
        "componentWishlistPageBundleCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-page-bundle.css",
        "componentWishlistLinkFloatingJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-link-floating.js",
        "componentWishlistLinkFloatingCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-link-floating.css",
        "componentWishlistButtonCollectionJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-button-collection.js",
        "componentWishlistButtonCollectionCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-button-collection.css",
        "componentWishlistButtonProductJs": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-button-product.js",
        "componentWishlistButtonProductCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-wishlist-button-product.css",
        "componentSaveForLaterCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-save-for-later.css",
        "componentAccountDialogCss": "https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/component-account-dialog.css"
      },
      "config": {
        "apiHost": "https:\/\/api.appmate.io\/v2",
        "customerId": null,
        "customerEmail": null,
        "customerTags": null,
        "customerName": null,
        "shopName": "L\u0026#39;avant gardiste",
        "shopDomain": "www.lavantgardiste.com",
        "shopPermanentDomain": "avant-gardiste-prod.myshopify.com",
        "shopMoneyFormat": "{{amount_with_comma_separator}}€",
        "shopMoneyFormatWithCurrency": "{{amount_with_comma_separator}}€",
        "shopCustomerAccountsEnabled": true,
        "fileUrl": "\/\/www.lavantgardiste.com\/cdn\/shop\/files\/?57109",
        "storefrontAccessToken": "f5808c6bfc7be617f14602a48e9788ee",
        "storefrontVersion": "2024-10",
        "localeIsoCode": "fr",
        "token": "adf1384bc070ab8095bd8a42f5fe90641e38570684215311b150b5446dd72e04"
      },
      "settings": {
        "general": {
          "appLoading": "LAZY",
          "wishlistPath": "\/pages\/wishlist",
          "wishlistAccessMode": "UNRESTRICTED",
          "wishlistMode": "PRODUCT"
        },
        "money": {
          "withCurrency": false
        },
        "integrations": {
          "wishlistAnalytics": {
            "enabled": true
          },
          "klaviyo": {
            "enabled": false
          },
          "metaPixel": {
            "enabled": true
          },
          "googleAnalytics": {
            "enabled": true
          }
        }
      },
      "collectionButtons": {
        "productLinkSelector": ".card \u003e div:not(.card__inner) .card__heading \u003e .full-unstyled-link[href*=\"\/products\/\"]",
        "injectMethod": "insertAfter",
        "injectReferenceJs": "(target, app) => target",
        "floatingReferenceJs": "(target, app) => target.closest(\".card\").find(\".card__media\")",
        "productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
        "productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)"
      }
    }
  </script>
  
    <script type="module" src="https://cdn.shopify.com/extensions/019a6435-2700-705e-910c-5eafab3282ce/swish-app-216/assets/block-app-settings.js"></script>
  
  <style>
    :root {
      --wk-color-solid-button-label: 18, 18, 18;
      --wk-color-accent-1: 242, 222, 229;
      --wk-color-accent-2: 0, 0, 0;
      --wk-color-outline-button-label: 0, 0, 0;
      --wk-color-background-1: 255, 255, 255;
      --wk-color-background-2: 255, 255, 255;
      --wk-color-text: 0, 0, 0;
      --wk-button-min-height: 45px;
      --wk-button-border-width: 0px;
      --wk-button-border-radius: 40px;
      --wk-input-min-height: 45px;
      --wk-input-border-width: 2px;
      --wk-input-border-radius: 40px;
      --wk-shadow-opacity: 0%;
      --wk-shadow-horizontal-offset: 0px;
      --wk-shadow-vertical-offset: 2px;
      --wk-shadow-blur: 4px;
      --wk-font-text-scale: 1.0;
    }
  </style>


</div></body>
</html>