Outiref
<!doctype html>

<html lang="en" dir="ltr">
  <head>
  



<!-- 🚀 STEP 0: Pre-render hiding to prevent FOUC -->
<style id="abboost-prerender-hide">
  html { visibility: hidden; opacity: 0; }
</style>
<script async crossorigin fetchpriority="high" src="/cdn/shopifycloud/importmap-polyfill/es-modules-shim.2.4.0.js"></script>
<script>
  // Auto-show after max 200ms (safety timeout)
  setTimeout(function() {
    var hideStyle = document.getElementById('abboost-prerender-hide');
    if (hideStyle) {
      hideStyle.remove();
      document.documentElement.style.visibility = 'visible';
      document.documentElement.style.opacity = '1';
    }
  }, 200);
</script>

<!-- 🔥 STEP 1: Embed test data from Shopify Metafield (INSTANT - 0ms!) -->
<script>
  
  
    window.__ABBOOST_EMBEDDED_TESTS__ = {"tests":[],"expires_at":1805367884333,"updated_at":1773831884333,"version":"2.0.0"};
  

  // Configuration
  window.BoostABConfig = {
    apiUrl: 'https://ab.cartsparks.com',
    shopDomain: '3778e7-42.myshopify.com',
    
    productId: '14797823803715',
    productHandle: 'poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en',
    
    shopId: '89786319171',
    // 🎨 CRITICAL: Current theme ID for Theme A/B Tests
    currentThemeId: '175220883779',
    currentPage: {
      type: 'product',
      path: '/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en',
      productId: '14797823803715'
    }
  };
</script>

<!-- 🚀 CRITICAL REDIRECT LOGIC - INLINE () -->
<script>
(function() {
  'use strict';
  
  const API_URL = window.BoostABConfig?.apiUrl || 'https://ab.cartsparks.com';
  const CACHE_DURATION = 5 * 60 * 1000;
  
  // 🤖 Bot Detection - Skip tracking for search engines and crawlers
  function isBot() {
    const ua = navigator.userAgent.toLowerCase();
    const botPatterns = [
      'googlebot', 'bingbot', 'slurp', 'duckduckbot', 'baiduspider',
      'yandexbot', 'sogou', 'exabot', 'facebot', 'facebookexternalhit',
      'ia_archiver', 'mj12bot', 'semrushbot', 'ahrefsbot', 'dotbot',
      'rogerbot', 'seznambot', 'petalbot', 'uptimerobot', 'pingdom',
      'bot', 'spider', 'crawler', 'scraper', 'headless', 'phantom',
      'selenium', 'puppeteer', 'playwright', 'lighthouse', 'pagespeed',
      'gtmetrix', 'webpagetest', 'chrome-lighthouse'
    ];
    return botPatterns.some(pattern => ua.includes(pattern));
  }
  
  // 🚫 Skip everything for bots
  if (isBot()) {
    return;
  }
  
  function getSessionId() {
    try {
      let sessionId = sessionStorage.getItem('boost_ab_session');
      if (!sessionId) {
        sessionId = 'sess_' + Date.now() + '_' + Math.random().toString(36).substr(2, 9);
        sessionStorage.setItem('boost_ab_session', sessionId);
      }
      return sessionId;
    } catch (e) {
      return 'sess_temp_' + Date.now() + '_' + Math.random().toString(36).substr(2, 9);
    }
  }
  
  // 🎯 Hash-based assignment for consistent A/B testing
  // Same user (sessionId) always gets the same variant
  function hashString(str) {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
      const char = str.charCodeAt(i);
      hash = ((hash << 5) - hash) + char;
      hash = hash & hash; // Convert to 32bit integer
    }
    return Math.abs(hash);
  }
  
  function getConsistentAssignment(sessionId, testId, trafficSplit) {
    // Combine sessionId + testId for unique hash per test
    const combined = sessionId + '_' + testId;
    const hash = hashString(combined);
    
    // Normalize to 0-99 range
    const bucket = hash % 100;
    
    // trafficSplit% go to 'original', rest go to 'test'
    return bucket < trafficSplit ? 'original' : 'test';
  }

  function getShopDomain() {
    if (window.BoostABConfig?.shopDomain) return window.BoostABConfig.shopDomain;
    if (window.Shopify?.shop) return window.Shopify.shop;
    return '3778e7-42.myshopify.com';
  }

  function getProductId() {
    // 🎯 PRIORITY 1: Get from Liquid context (most reliable!)
    if (window.BoostABConfig && window.BoostABConfig.productId) {
      return window.BoostABConfig.productId;
    }
    
    // 🎯 PRIORITY 2: Get from ShopifyAnalytics (available after page load)
    if (window.ShopifyAnalytics && window.ShopifyAnalytics.meta && window.ShopifyAnalytics.meta.product) {
      return window.ShopifyAnalytics.meta.product.id.toString();
    }
    
    // 🎯 PRIORITY 3: Try to get product ID from Shopify meta tag
    const productMeta = document.querySelector('meta[property="product:retailer_item_id"], meta[property="og:product:retailer_item_id"]');
    if (productMeta) return productMeta.getAttribute('content');
    
    // 🎯 PRIORITY 4: Try to get from meta.product JSON (Shopify theme standard)
    const metaProduct = document.querySelector('[data-section-type="product"], [data-product-id]');
    if (metaProduct) {
      const productId = metaProduct.getAttribute('data-product-id');
      if (productId) return productId;
    }
    
    return null;
  }
  
  function normalizeProductId(productId) {
    if (!productId) return null;
    // Convert GID format to numeric ID: "gid://shopify/Product/123" → "123"
    if (typeof productId === 'string' && productId.includes('gid://shopify/Product/')) {
      return productId.replace('gid://shopify/Product/', '');
    }
    return String(productId);
  }
  
  function checkTriggerConditions(test, currentPath, currentProductId) {
    // Normalize product IDs for comparison (handle both "123" and "gid://shopify/Product/123")
    const normalizedCurrentId = normalizeProductId(currentProductId);
    const normalizedOriginalId = normalizeProductId(test.originalProductId);
    const normalizedDuplicatedId = normalizeProductId(test.duplicatedProductId);
    
    // 🎯 PRIORITY 1: Check if we're on the test product (track but DON'T redirect!)
    if (normalizedCurrentId && normalizedDuplicatedId) {
      if (normalizedCurrentId === normalizedDuplicatedId) {
        return { shouldTrack: true, shouldRedirect: false, variant: 'test' };
      }
    }
    
    // 🎯 PRIORITY 2: Match by Product ID (should redirect!)
    if (normalizedCurrentId && normalizedOriginalId) {
      if (normalizedCurrentId === normalizedOriginalId) {
        return { shouldTrack: true, shouldRedirect: true };
      }
    }
    
    // 🎯 PRIORITY 3: Check triggerConditions (for URL Redirect tests)
    if (test.triggerConditions && test.triggerConditions.length > 0) {
      const conditions = typeof test.triggerConditions === 'string' ? JSON.parse(test.triggerConditions) : test.triggerConditions;
      for (const condition of conditions) {
        if (condition.field === 'url') {
          const value = condition.value;
          let matched = false;
          switch (condition.operator) {
            case 'matches_exactly': matched = currentPath === value; break;
            case 'ends_with': matched = currentPath.endsWith(value); break;
            case 'starts_with': matched = currentPath.startsWith(value); break;
            case 'contains': matched = currentPath.includes(value); break;
          }
          if (matched) return { shouldTrack: true, shouldRedirect: true };
        }
      }
    }
    
    // ❌ NO MATCH: Test does not apply to this page/product
    return { shouldTrack: false, shouldRedirect: false };
  }

  async function getCachedTests(shop) {
    try {
      if (window.__ABBOOST_EMBEDDED_TESTS__) {
        const embeddedData = window.__ABBOOST_EMBEDDED_TESTS__;
        
        // 🔧 FIX: Always use tests if they exist - NEVER ignore active tests!
        if (embeddedData.tests && embeddedData.tests.length > 0) {
          const cacheKey = 'abboost_redirect_tests_' + shop;
          localStorage.setItem(cacheKey, JSON.stringify({ tests: embeddedData.tests || [], timestamp: embeddedData.updated_at || Date.now() }));
          
          // 📡 If expired, trigger background sync (but still use existing data!)
          if (embeddedData.expires_at && Date.now() >= embeddedData.expires_at) {
            // Fire and forget - don't wait for response
            fetch(API_URL + '/api/metafield/sync-auto?shop=' + encodeURIComponent(shop), {
              method: 'POST',
              headers: { 'Content-Type': 'application/json' }
            }).catch(function() { /* ignore errors */ });
          }
          
          return embeddedData.tests || [];
        }
      }
      const cacheKey = 'abboost_redirect_tests_' + shop;
      const cached = localStorage.getItem(cacheKey);
      if (cached) {
        const data = JSON.parse(cached);
        if (Date.now() - data.timestamp < CACHE_DURATION) return data.tests;
      }
      return null;
    } catch (error) {
      return null;
    }
  }

  function showPage() {
    const hideStyle = document.getElementById('abboost-prerender-hide');
    if (hideStyle) {
      hideStyle.remove();
      document.documentElement.style.visibility = 'visible';
      document.documentElement.style.opacity = '1';
    }
  }

  // 🎨 Theme Test Handler - redirects to different theme using preview_theme_id
  function handleThemeTest(test, currentPath) {
    // 🔥 FIX: Check if we're already on the test theme using 175220883779
    // This is MORE RELIABLE than checking URL because preview_theme_id can be stripped
    const currentThemeId = window.BoostABConfig?.currentThemeId;
    const testThemeId = String(test.testThemeId);
    const originalThemeId = String(test.originalThemeId);
    
    // If current theme IS the test theme - we're already on it!
    if (currentThemeId && currentThemeId === testThemeId) {
      
      // Remove Shopify preview bar if configured
      if (test.removePreviewBar) {
        removePreviewBar();
      }
      
      const sessionId = getSessionId();
      
      // 🔧 FIX v2.9.2: Track pageview for EACH page, not just the first
      // Use page-specific key to allow tracking multiple pages in same session
      const pageTrackKey = 'abboost_theme_pageview_' + test.id + '_' + currentPath;
      const alreadyTrackedThisPage = sessionStorage.getItem(pageTrackKey);
      
      if (!alreadyTrackedThisPage) {
        // Track pageview for this specific page
        trackThemeTestEvent(test.id, 'test', 'pageview', currentPath, sessionId);
        sessionStorage.setItem(pageTrackKey, '1');
      }
      
      // 🛒 Set cart attributes and setup Add to Cart tracking
      setThemeTestCartAttributes(test.id, 'test', test.name);
      setupThemeTestAddToCartTracking(test.id, 'test', sessionId);
      setupThemeTestEngagementTracking(test.id, 'test', sessionId);
      
      showPage();
      return;
    }
    
    // Also check URL param as fallback - but ONLY if it's the TEST theme!
    const urlParams = new URLSearchParams(window.location.search);
    const currentPreviewTheme = urlParams.get('preview_theme_id');
    
    if (currentPreviewTheme && currentPreviewTheme === testThemeId) {
      console.log('🎨 ABboost: Already on TEST theme (via URL preview_theme_id):', currentPreviewTheme);
      
      if (test.removePreviewBar) {
        removePreviewBar();
      }
      
      const sessionId = getSessionId();
      
      // 🔧 FIX v2.9.2: Track pageview for EACH page, not just the first
      const pageTrackKey = 'abboost_theme_pageview_' + test.id + '_' + currentPath;
      const alreadyTrackedThisPage = sessionStorage.getItem(pageTrackKey);
      
      if (!alreadyTrackedThisPage) {
        trackThemeTestEvent(test.id, 'test', 'pageview', currentPath, sessionId);
        sessionStorage.setItem(pageTrackKey, '1');
      } else {
        console.log('✅ ABboost: Theme test - Page already tracked this session');
      }
      
      // 🛒 Set cart attributes and setup Add to Cart tracking
      setThemeTestCartAttributes(test.id, 'test', test.name);
      setupThemeTestAddToCartTracking(test.id, 'test', sessionId);
      setupThemeTestEngagementTracking(test.id, 'test', sessionId);
      
      showPage();
      return;
    }
    
    // 🔥 FIX: If we're on the ORIGINAL theme, track as original and don't redirect!
    if (currentThemeId && currentThemeId === originalThemeId && !currentPreviewTheme) {
      console.log('🎨 ABboost: On ORIGINAL theme (detected via theme.id)');
      // Continue to assignment logic - user might need to be redirected to test
    }
    
    // Check new/returning visitor targeting
    const isReturningVisitor = localStorage.getItem('abboost_returning_visitor') === 'true';
    
    // If only targeting new visitors and this is a returning visitor - skip
    if (test.targetNewVisitors === true && test.targetReturning === false && isReturningVisitor) {
      console.log('⚠️ ABboost: Theme test targets NEW visitors only, but this is a returning visitor');
      showPage();
      return;
    }
    
    // If only targeting returning visitors and this is a new visitor - skip
    if (test.targetNewVisitors === false && test.targetReturning === true && !isReturningVisitor) {
      console.log('⚠️ ABboost: Theme test targets RETURNING visitors only, but this is a new visitor');
      showPage();
      return;
    }
    
    // Check advanced audience targeting (JSON array)
    if (test.audienceTargeting) {
      try {
        const targeting = JSON.parse(test.audienceTargeting);
        const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
        const isDesktop = !isMobile;
        
        // Check device targeting (must match at least one selected device, or no device filter)
        const hasDeviceTargeting = targeting.includes('mobile') || targeting.includes('desktop');
        const matchesDevice = !hasDeviceTargeting || 
          (targeting.includes('mobile') && isMobile) || 
          (targeting.includes('desktop') && isDesktop);
        
        // Check visitor type targeting (must match at least one selected visitor type, or no visitor filter)
        const hasVisitorTargeting = targeting.includes('new_visitors') || targeting.includes('returning');
        const matchesVisitorType = !hasVisitorTargeting ||
          (targeting.includes('new_visitors') && !isReturningVisitor) || 
          (targeting.includes('returning') && isReturningVisitor);
        
        // Must match ALL criteria: device AND visitor type
        const shouldTarget = matchesDevice && matchesVisitorType;
        
        if (!shouldTarget) {
          console.log('⚠️ ABboost: User does not match theme test audience targeting');
          showPage();
          return;
        }
      } catch (error) {
        console.error('❌ ABboost: Error parsing audience targeting:', error);
      }
    }
    
    // Mark as returning visitor
    if (localStorage.getItem('abboost_returning_visitor') !== 'true') {
      localStorage.setItem('abboost_returning_visitor', 'true');
    }
    
    // Get session ID for consistent assignment
    const sessionId = getSessionId();
    
    // Check for existing assignment (theme tests are session-persistent)
    const storageKey = 'abboost_theme_test_' + test.id;
    let assignment = localStorage.getItem(storageKey);
    
    if (!assignment) {
      // New user - assign variant using hash-based consistent assignment
      console.log('🎨 ABboost: Calculating assignment - trafficSplit:', test.trafficSplit, '% for original');
      assignment = getConsistentAssignment(sessionId, test.id, test.trafficSplit);
      localStorage.setItem(storageKey, assignment);
      console.log('🎨 ABboost: NEW assignment:', assignment);
    } else {
      console.log('🎨 ABboost: EXISTING assignment from localStorage:', assignment);
    }
    
    if (assignment === 'test') {
      // User assigned to test variant - redirect to test theme
      console.log('🎨 ABboost: Redirecting to test theme:', test.testThemeId);
      
      const redirectUrl = new URL(window.location.href);
      redirectUrl.searchParams.set('preview_theme_id', test.testThemeId);
      
      // 🔧 FIX v2.9.2: Track pageview BEFORE redirect using page-specific key
      // This allows tracking subsequent pages after redirect
      const pageTrackKey = 'abboost_theme_pageview_' + test.id + '_' + currentPath;
      const alreadyTrackedThisPage = sessionStorage.getItem(pageTrackKey);
      
      if (!alreadyTrackedThisPage) {
        // Track pageview before redirect - this counts the visitor
        trackThemeTestEvent(test.id, 'test', 'pageview', currentPath, sessionId);
        sessionStorage.setItem(pageTrackKey, '1');
      }
      
      window.location.replace(redirectUrl.toString());
      return; // Stop execution - we're redirecting
    } else {
      // User assigned to original variant - stay on current theme
      console.log('🎨 ABboost: Staying on original theme');
      
      // 🔧 FIX v2.9.2: Track pageview for EACH page with deduplication
      const pageTrackKey = 'abboost_theme_pageview_' + test.id + '_' + currentPath;
      const alreadyTrackedThisPage = sessionStorage.getItem(pageTrackKey);
      
      if (!alreadyTrackedThisPage) {
        trackThemeTestEvent(test.id, 'original', 'pageview', currentPath, sessionId);
        sessionStorage.setItem(pageTrackKey, '1');
      }
      
      // 🛒 Set cart attributes and setup Add to Cart tracking for original variant too
      setThemeTestCartAttributes(test.id, 'original', test.name);
      setupThemeTestAddToCartTracking(test.id, 'original', sessionId);
      setupThemeTestEngagementTracking(test.id, 'original', sessionId);
      
      showPage();
      return;
    }
  }
  
  // Remove Shopify preview bar (for theme test visitors)
  function removePreviewBar() {
    const PREVIEW_BAR_IDS = ['preview-bar-iframe', 'PBarNextFrameWrapper'];
    
    function removeElements() {
      PREVIEW_BAR_IDS.forEach(function(id) {
        const el = document.getElementById(id);
        if (el) {
          el.remove();
          console.log('🎨 ABboost: Removed preview bar:', id);
        }
      });
    }
    
    // Try immediately
    removeElements();
    
    // Also after DOM ready
    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', function() {
        removeElements();
        
        // Observe for late-added preview bars
        var observer = new MutationObserver(function(mutations) {
          mutations.forEach(function(mutation) {
            mutation.addedNodes.forEach(function(node) {
              if (node.nodeType === 1 && PREVIEW_BAR_IDS.includes(node.id)) {
                node.remove();
                console.log('🎨 ABboost: Removed late-added preview bar:', node.id);
              }
            });
          });
        });
        
        if (document.body) {
          observer.observe(document.body, { childList: true, subtree: true });
        }
      });
    }
  }
  
  // Track theme test events
  function trackThemeTestEvent(testId, variant, eventType, pageUrl, sessionId) {
    try {
      var data = {
        testId: testId,
        variant: variant,
        eventType: eventType,
        pageUrl: pageUrl,
        sessionId: sessionId,
        deviceType: /Android|webOS|iPhone|iPad|iPod/i.test(navigator.userAgent) ? 'mobile' : 'desktop',
        userAgent: navigator.userAgent.substring(0, 200)
      };
      
      console.log('📊 ABboost: Tracking theme test event:', eventType, variant);
      
      // Use sendBeacon with Blob for proper Content-Type (like other tests!)
      if (navigator.sendBeacon) {
        var blob = new Blob([JSON.stringify(data)], { type: 'application/json' });
        navigator.sendBeacon(API_URL + '/api/theme-test/track', blob);
      } else {
        fetch(API_URL + '/api/theme-test/track', {
          method: 'POST',
          headers: { 'Content-Type': 'application/json' },
          body: JSON.stringify(data),
          keepalive: true
        }).catch(function() {});
      }
    } catch (e) {
      console.error('❌ ABboost: Theme test tracking error:', e);
    }
  }

  // 🛒 Set cart attributes for theme test tracking (enables purchase tracking via webhooks)
  function setThemeTestCartAttributes(testId, variant, testName) {
    try {
      var attributes = {
        abboost_theme_test_id: testId,
        abboost_theme_variant: variant,
        abboost_theme_test_name: testName
      };
      
      fetch('/cart/update.js', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ attributes: attributes }),
        credentials: 'same-origin'
      }).then(function() {
        console.log('🛒 ABboost: Cart attributes set for theme test:', variant);
      }).catch(function(err) {
        console.error('❌ ABboost: Failed to set cart attributes:', err);
      });
    } catch (e) {
      console.error('❌ ABboost: Error setting cart attributes:', e);
    }
  }

  // 🛒 Track Add to Cart events for theme tests
  function setupThemeTestAddToCartTracking(testId, variant, sessionId) {
    // Flag to prevent duplicate setup
    if (window.__abboost_theme_atc_setup) return;
    window.__abboost_theme_atc_setup = true;
    
    console.log('🛒 ABboost: Setting up Add to Cart tracking for theme test');
    
    // 🔧 Deduplication: Prevent multiple add_to_cart events for the same action
    var lastAddToCartTime = 0;
    var ADD_TO_CART_DEBOUNCE_MS = 2000; // 2 seconds debounce
    
    function trackAddToCartOnce(source) {
      var now = Date.now();
      if (now - lastAddToCartTime < ADD_TO_CART_DEBOUNCE_MS) {
        console.log('🛒 ABboost: Add to Cart skipped (debounce) - source:', source);
        return;
      }
      lastAddToCartTime = now;
      console.log('🛒 ABboost: Add to Cart tracked - source:', source);
      trackThemeTestEvent(testId, variant, 'add_to_cart', window.location.pathname, sessionId);
    }
    
    // Method 1: Intercept form submissions to /cart/add
    document.addEventListener('submit', function(e) {
      var form = e.target;
      if (form && form.action && form.action.includes('/cart/add')) {
        trackAddToCartOnce('form submit');
      }
    }, true);
    
    // Method 2: Intercept fetch/XHR to /cart/add.js
    var originalFetch = window.fetch;
    window.fetch = function(url, options) {
      var urlStr = typeof url === 'string' ? url : (url.url || '');
      if (urlStr.includes('/cart/add')) {
        trackAddToCartOnce('fetch');
      }
      return originalFetch.apply(this, arguments);
    };
    
    // Method 3: Listen for Shopify's cart events (if available)
    if (window.Shopify && window.Shopify.onCartUpdate) {
      var originalOnCartUpdate = window.Shopify.onCartUpdate;
      window.Shopify.onCartUpdate = function(cart) {
        trackAddToCartOnce('Shopify event');
        if (originalOnCartUpdate) originalOnCartUpdate(cart);
      };
    }
    
    // Method 4: Listen for common add-to-cart button clicks
    document.addEventListener('click', function(e) {
      var target = e.target;
      // Check if clicked element or its parents have add-to-cart related attributes
      while (target && target !== document.body) {
        var name = (target.name || '').toLowerCase();
        var id = (target.id || '').toLowerCase();
        var className = (target.className || '').toLowerCase();
        var type = (target.type || '').toLowerCase();
        
        if (name.includes('add') || id.includes('addtocart') || id.includes('add-to-cart') ||
            className.includes('add-to-cart') || className.includes('addtocart') ||
            (type === 'submit' && target.form && target.form.action && target.form.action.includes('/cart'))) {
          // Small delay to let the form submit
          setTimeout(function() {
            trackAddToCartOnce('button click');
          }, 100);
          break;
        }
        target = target.parentElement;
      }
    }, true);
  }

  // 🎯 Track Engagement events for Theme Tests (scroll, click)
  // This enables accurate bounce rate calculation
  function setupThemeTestEngagementTracking(testId, variant, sessionId) {
    // Flag to prevent duplicate setup
    if (window.__abboost_theme_engagement_setup) return;
    window.__abboost_theme_engagement_setup = true;
    
    // Check if already engaged this session
    var engagementKey = 'abboost_theme_engaged_' + testId + '_' + sessionId;
    if (sessionStorage.getItem(engagementKey)) {
      console.log('✅ ABboost: User already engaged this session');
      return;
    }
    
    var hasEngaged = false;
    
    function markEngaged(source) {
      if (hasEngaged) return;
      hasEngaged = true;
      sessionStorage.setItem(engagementKey, 'true');
      
      // Send engagement event to server
      trackThemeTestEvent(testId, variant, 'engaged', window.location.pathname, sessionId);
      console.log('✅ ABboost: User engaged via ' + source);
    }
    
    // 1️⃣ Scroll tracking - user scrolled more than 100px
    var scrollTracked = false;
    window.addEventListener('scroll', function() {
      if (!scrollTracked && window.scrollY > 100) {
        scrollTracked = true;
        markEngaged('scroll');
      }
    }, { passive: true });
    
    // 2️⃣ Click tracking - user clicked anywhere on the page
    document.addEventListener('click', function() {
      markEngaged('click');
    }, { once: true });
    
    // 3️⃣ Keyboard interaction - user pressed a key (typing, navigation)
    document.addEventListener('keydown', function(e) {
      // Ignore modifier keys alone
      if (['Shift', 'Control', 'Alt', 'Meta'].includes(e.key)) return;
      markEngaged('keyboard');
    }, { once: true });
    
    console.log('🎯 ABboost: Engagement tracking setup for theme test');
  }

  function handleSplitURLTest(test, currentPath) {
    // console.log('🎯 ABboost: Handling Split URL Test:', test.name);
    
    // Check audience targeting
    if (test.audienceTargeting) {
      try {
        const targeting = JSON.parse(test.audienceTargeting);
        // console.log('🎯 ABboost: Audience targeting:', targeting);
        
        const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
        const isDesktop = !isMobile;
        const isReturning = localStorage.getItem('abboost_returning_visitor') === 'true';
        
        // Check device targeting (must match at least one selected device, or no device filter)
        const hasDeviceTargeting = targeting.includes('mobile') || targeting.includes('desktop');
        const matchesDevice = !hasDeviceTargeting || 
          (targeting.includes('mobile') && isMobile) || 
          (targeting.includes('desktop') && isDesktop);
        
        // Check visitor type targeting (must match at least one selected visitor type, or no visitor filter)
        const hasVisitorTargeting = targeting.includes('new_visitors') || targeting.includes('returning');
        const matchesVisitorType = !hasVisitorTargeting ||
          (targeting.includes('new_visitors') && !isReturning) || 
          (targeting.includes('returning') && isReturning);
        
        // Must match ALL criteria: device AND visitor type
        const shouldTarget = matchesDevice && matchesVisitorType;
        
        if (!shouldTarget) {
          // console.log('⚠️ ABboost: User does not match audience targeting');
          showPage();
          return;
        }
        
        // console.log('✅ ABboost: User matches audience targeting');
      } catch (error) {
        // console.error('❌ ABboost: Error parsing audience targeting:', error);
      }
    }
    
    // Mark as returning visitor
    if (localStorage.getItem('abboost_returning_visitor') !== 'true') {
      localStorage.setItem('abboost_returning_visitor', 'true');
    }
    
    // Get session ID
    const sessionId = getSessionId();
    
    // Get or create assignment based on redirectBehavior
    let assignment;
    const storageKey = 'abboost_split_url_' + test.id;
    
    if (test.alwaysTrigger) {
      // "Redirect every time" - use sessionStorage (per session)
      assignment = sessionStorage.getItem(storageKey);
      if (!assignment) {
        assignment = getConsistentAssignment(sessionId, test.id, test.trafficSplit);
        sessionStorage.setItem(storageKey, assignment);
        // console.log('📊 ABboost: Assignment (every_time):', assignment);
      } else {
        // console.log('📊 ABboost: Using existing assignment (every_time):', assignment);
      }
    } else {
      // "Redirect once" - use hash-based (permanent across sessions)
      assignment = getConsistentAssignment(sessionId, test.id, test.trafficSplit);
      // console.log('📊 ABboost: Assignment (once):', assignment);
    }
    
    // Check if redirect is needed (using 'test'/'original' like other tests)
    // 🔧 FIX: Decode URLs for comparison (handles special chars like ®, ™, etc.)
    let decodedControl = test.controlURL || '';
    let decodedVariant = test.variantURL || '';
    try { decodedControl = decodeURIComponent(decodedControl); } catch(e) {}
    try { decodedVariant = decodeURIComponent(decodedVariant); } catch(e) {}
    
    // 🔧 FIX v2.9.6: Check if user is on variant page directly (from email, direct link, etc.)
    // If user lands directly on variant page, they MUST be counted as 'test' variant
    // because they're seeing the test content regardless of their random assignment
    const isOnVariantPage = currentPath === decodedVariant || currentPath.endsWith(decodedVariant);
    if (isOnVariantPage && assignment === 'original') {
      console.log('🔄 ABboost: User on variant page with original assignment - overriding to test');
      assignment = 'test';
      // Update storage to maintain consistency
      if (test.alwaysTrigger) {
        sessionStorage.setItem(storageKey, 'test');
      }
    }
    
    // 🔧 FIX v2.3: Only redirect from control→variant, NEVER from variant→control!
    // If someone visits the variant URL directly (from email, bookmark, etc.), 
    // let them see it regardless of their assignment.
    // This prevents redirect loops that cause double counting.
    // 🔧 FIX v2.9.5: Also match collection paths (/collections/X/products/Y matches /products/Y)
    const isOnControlPage = currentPath === decodedControl || currentPath.endsWith(decodedControl);
    const shouldRedirectToVariant = assignment === 'test' && isOnControlPage;
    // ❌ REMOVED: shouldRedirectToControl - causes redirect loops and double pageview counting
    
    if (shouldRedirectToVariant) {
      let redirectURL = test.variantURL;
      if (test.preserveQueryString && window.location.search) {
        redirectURL += window.location.search;
      }
      
      // console.log('🔀 ABboost: Redirecting to variant:', redirectURL);
      
      // 🔧 FIX v2.7.6: Deduplication for Split URL redirect case
      const splitRedirectKey = 'abboost_split_redirect_' + test.id;
      const alreadyTrackedSplitRedirect = sessionStorage.getItem(splitRedirectKey);
      
      if (!alreadyTrackedSplitRedirect) {
        // Track redirect - only once per session
        const trackData = {
          testId: test.id,
          variant: assignment,
          eventType: 'pageview',
          sessionId: sessionId,
          fromURL: currentPath,
          toURL: redirectURL,
          timestamp: Date.now()
        };
        
        if (navigator.sendBeacon) {
          const blob = new Blob([JSON.stringify(trackData)], { type: 'application/json' });
          navigator.sendBeacon(API_URL + '/api/split-url/track', blob);
        }
        
        sessionStorage.setItem(splitRedirectKey, '1');
      }
      
      window.location.replace(redirectURL);
    } else {
      // No redirect needed - track view and show page
      // console.log('✅ ABboost: No redirect needed - showing page');
      
      // 🔧 FIX v2.7.8: First check if already tracked during redirect (same session)
      const splitRedirectKey = 'abboost_split_redirect_' + test.id;
      const alreadyTrackedRedirect = sessionStorage.getItem(splitRedirectKey);
      
      if (alreadyTrackedRedirect) {
        // Already tracked during redirect - just show page, don't track again
        console.log('✅ ABboost: Split URL - Already tracked during redirect - skipping duplicate');
        setupUniversalTracking(test.id, assignment, sessionId, 'SPLIT_URL', null);
        showPage();
        return;
      }
      
      // 🔧 FIX v2.3: Prevent duplicate pageview tracking per session/path
      const pageviewKey = 'abboost_split_pv_' + test.id + '_' + currentPath;
      const alreadyTracked = sessionStorage.getItem(pageviewKey);
      
      if (!alreadyTracked) {
        const viewTrackData = {
          testId: test.id,
          variant: assignment,
          eventType: 'pageview',
          sessionId: sessionId,
          fromURL: currentPath,
          timestamp: Date.now()
        };
        
        if (navigator.sendBeacon) {
          const blob = new Blob([JSON.stringify(viewTrackData)], { type: 'application/json' });
          navigator.sendBeacon(API_URL + '/api/split-url/track', blob);
        }
        
        // Mark as tracked for this session/path
        sessionStorage.setItem(pageviewKey, '1');
      }
      
      // Setup event tracking for this page
      setupUniversalTracking(test.id, assignment, sessionId, 'SPLIT_URL', null);
      
      showPage();
    }
  }

  function setupUniversalTracking(testId, variant, sessionId, testType, productId) {
    console.log('📊 ABboost: Setting up universal tracking (variant: ' + variant + ', type: ' + testType + ', productId: ' + productId + ')');
    
    // Determine tracking endpoint based on test type
    var trackingEndpoint;
    if (testType === 'SPLIT_URL') {
      trackingEndpoint = '/api/split-url/track';
    } else if (testType === 'DESCRIPTION') {
      trackingEndpoint = '/api/description-test/track';
    } else if (testType === 'PRODUCT_TITLE') {
      trackingEndpoint = '/api/product-title-test/track';
    } else if (testType === 'PRICE') {
      trackingEndpoint = '/api/price-test/track';
    } else {
      trackingEndpoint = '/api/url-redirect/track';
    }
    
    // 🔥 Store active test for thank-you page tracking
    try {
      var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
      var existingIndex = activeTests.findIndex(function(t) { return t.testId === testId; });
      var testInfo = {
        testId: testId,
        variant: variant,
        sessionId: sessionId,
        testType: testType,
        trackingEndpoint: trackingEndpoint,
        productId: productId || null, // 🎯 Store productId for purchase attribution
        timestamp: Date.now()
      };
      if (existingIndex >= 0) {
        activeTests[existingIndex] = testInfo;
      } else {
        activeTests.push(testInfo);
      }
      // Keep only tests from last 24 hours
      activeTests = activeTests.filter(function(t) { return Date.now() - t.timestamp < 86400000; });
      localStorage.setItem('abboost_active_tests', JSON.stringify(activeTests));
    } catch (e) {}
    
    // 🔧 FIX: Use global dedupe map to prevent duplicate tracking
    if (!window.__abboost_addtocart_dedupe) {
      window.__abboost_addtocart_dedupe = {};
    }
    
    // Track add to cart (form submission) - only add listener ONCE
    if (!window.__abboost_submit_patched) {
      window.__abboost_submit_patched = true;
      document.addEventListener('submit', function(e) {
        var form = e.target;
        if (form && form.action && form.action.indexOf('/cart/add') !== -1) {
          // Track for all active tests
          try {
            var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
            activeTests.forEach(function(t) {
              trackAddToCart(t.testId, t.variant, t.sessionId, t.trackingEndpoint, window.__abboost_addtocart_dedupe, t.productId);
            });
          } catch (e) {}
        }
      });
    }
    
    // 🆕 Track add to cart (AJAX - intercept fetch)
    if (!window.__abboost_fetch_patched) {
      window.__abboost_fetch_patched = true;
      var originalFetch = window.fetch;
      window.fetch = function(url, options) {
        var result = originalFetch.apply(this, arguments);
        
        // Check if this is an add-to-cart request
        if (url && (url.indexOf('/cart/add') !== -1 || url.indexOf('cart/add') !== -1)) {
          result.then(function(response) {
            if (response.ok) {
              // Get active tests from storage
              try {
                var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
                activeTests.forEach(function(t) {
                  trackAddToCart(t.testId, t.variant, t.sessionId, t.trackingEndpoint, window.__abboost_addtocart_dedupe, t.productId);
                });
              } catch (e) {}
            }
          }).catch(function() {});
        }
        
        return result;
      };
    }
    
    // 🆕 Track add to cart (AJAX - intercept XMLHttpRequest)
    if (!window.__abboost_xhr_patched) {
      window.__abboost_xhr_patched = true;
      var originalXHROpen = XMLHttpRequest.prototype.open;
      var originalXHRSend = XMLHttpRequest.prototype.send;
      
      XMLHttpRequest.prototype.open = function(method, url) {
        this._abboost_url = url;
        return originalXHROpen.apply(this, arguments);
      };
      
      XMLHttpRequest.prototype.send = function() {
        var xhr = this;
        if (xhr._abboost_url && (xhr._abboost_url.indexOf('/cart/add') !== -1 || xhr._abboost_url.indexOf('cart/add') !== -1)) {
          xhr.addEventListener('load', function() {
            if (xhr.status >= 200 && xhr.status < 300) {
              try {
                var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
                activeTests.forEach(function(t) {
                  trackAddToCart(t.testId, t.variant, t.sessionId, t.trackingEndpoint, window.__abboost_addtocart_dedupe, t.productId);
                });
              } catch (e) {}
            }
          });
        }
        return originalXHRSend.apply(this, arguments);
      };
    }
    
    // 🆕 Track Bundle Builder / Custom Add-to-Cart buttons
    // These apps don't use standard /cart/add - they have custom buttons
    if (!window.__abboost_bundle_patched) {
      window.__abboost_bundle_patched = true;
      
      // Common Bundle Builder button selectors
      var bundleSelectors = [
        '.ai-bundle__cta-trwidget',           // AI Bundle Builder
        '.bundle-add-to-cart',                // Generic bundle
        '.bold-bundle-add-to-cart',           // Bold Bundle
        '[data-bundle-add-to-cart]',          // Data attribute pattern
        '.rebuy-cart__flyout-item-add-button', // Rebuy
        '.monster-upsell-add-to-cart',        // Monster Upsells
        '.frequently-bought-add-all',         // Frequently Bought Together
        '.upsell-add-to-cart'                 // Generic upsell
      ];
      
      document.addEventListener('click', function(e) {
        var target = e.target;
        var isBundle = false;
        
        // Check if clicked element or its parents match bundle selectors
        for (var i = 0; i < bundleSelectors.length; i++) {
          if (target.matches && target.matches(bundleSelectors[i])) {
            isBundle = true;
            break;
          }
          // Check parent elements (for nested buttons)
          var parent = target.parentElement;
          var depth = 0;
          while (parent && depth < 5) {
            if (parent.matches && parent.matches(bundleSelectors[i])) {
              isBundle = true;
              break;
            }
            parent = parent.parentElement;
            depth++;
          }
          if (isBundle) break;
        }
        
        if (isBundle) {
          console.log('🎁 ABboost: Bundle/Custom Add-to-Cart detected!');
          try {
            var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
            activeTests.forEach(function(t) {
              trackAddToCart(t.testId, t.variant, t.sessionId, t.trackingEndpoint, window.__abboost_addtocart_dedupe, t.productId);
            });
          } catch (e) {}
        }
      });
    }
  }
  
  function trackAddToCart(testId, variant, sessionId, trackingEndpoint, dedupeMap, productId) {
    // Prevent duplicate tracking within 2 seconds (debounce for multiple detection methods)
    var now = Date.now();
    if (dedupeMap[testId] && now - dedupeMap[testId] < 2000) {
      console.log('🛒 ABboost: Add to Cart skipped (debounce) for test ' + testId);
      return;
    }
    dedupeMap[testId] = now;
    
    console.log('🛒 ABboost: Add to cart detected for test ' + testId + ' (product: ' + productId + ')');
    
    var trackData = {
      testId: testId,
      variant: variant,
      eventType: 'add_to_cart',
      sessionId: sessionId,
      fromURL: window.location.pathname,
      productId: productId || null,
      timestamp: Date.now()
    };
    
    if (navigator.sendBeacon) {
      var blob = new Blob([JSON.stringify(trackData)], { type: 'application/json' });
      navigator.sendBeacon(API_URL + trackingEndpoint, blob);
    }
    
    // 🔥 Save test info to cart note attributes for webhook tracking
    saveTestToCartNotes();
  }
  
  // 🔥 Save active test assignments to cart note attributes
  // This allows the orders/create webhook to attribute conversions correctly
  function saveTestToCartNotes() {
    try {
      var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
      if (activeTests.length === 0) return;
      
      // Filter to recent tests only (last 24h)
      var now = Date.now();
      activeTests = activeTests.filter(function(t) {
        return t && t.timestamp && (now - t.timestamp < 86400000);
      });
      
      if (activeTests.length === 0) return;
      
      // Build array with essential data for webhook
      // Format: [{ testId, variant, sessionId, testType }]
      var testsArray = activeTests.map(function(t) {
        return {
          testId: t.testId,
          variant: t.variant,
          sessionId: t.sessionId,
          testType: t.testType
        };
      });
      
      // Update cart with note attributes (Shopify Cart API)
      fetch('/cart/update.js', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({
          attributes: {
            '_abboost_tests': JSON.stringify(testsArray)
          }
        })
      }).then(function() {
        console.log('📝 ABboost: Test assignments saved to cart notes (' + testsArray.length + ' tests)');
      }).catch(function(e) {
        console.log('⚠️ ABboost: Failed to save cart notes:', e);
      });
    } catch (e) {}
  }
  
  // 🔥 GLOBAL: Track purchases on thank-you page (runs on ANY page)
  function checkThankYouPage() {
    var currentPath = window.location.pathname;
    if (currentPath.indexOf('/thank') === -1 && 
        currentPath.indexOf('/orders/') === -1 && 
        currentPath.indexOf('/checkouts/') === -1) {
      return; // Not a thank-you page
    }
    
    // Check if already tracked this order
    var orderKey = 'abboost_order_tracked_' + currentPath;
    if (sessionStorage.getItem(orderKey)) {
      return; // Already tracked
    }
    sessionStorage.setItem(orderKey, 'true');
    
    console.log('✅ ABboost: Thank you page detected - checking for active tests');
    
    try {
      var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
      if (activeTests.length === 0) {
        console.log('⚠️ ABboost: No active tests to track purchase for');
        return;
      }
      
      // Get order details from Shopify checkout object
      var checkout = window.Shopify && window.Shopify.checkout;
      var orderValue = checkout && checkout.total_price ? parseFloat(checkout.total_price) / 100 : null;
      
      // Get purchased product IDs from line items
      var purchasedProductIds = [];
      if (checkout && checkout.line_items) {
        checkout.line_items.forEach(function(item) {
          if (item.product_id) {
            purchasedProductIds.push(String(item.product_id));
          }
        });
      }
      console.log('📦 ABboost: Purchased product IDs:', purchasedProductIds);
      
      // Track purchase for relevant tests only
      activeTests.forEach(function(t) {
        var shouldTrack = false;
        var productValue = orderValue; // Default to total order value
        
        // 🎯 SPLIT_URL tests: Track ALL purchases (page-level test)
        if (t.testType === 'SPLIT_URL') {
          shouldTrack = true;
          console.log('📊 Split URL test - tracking full order');
        }
        // 🎯 Product tests: Only track if the test product was purchased
        else if (t.productId && purchasedProductIds.length > 0) {
          var normalizedTestProductId = String(t.productId).replace('gid://shopify/Product/', '');
          shouldTrack = purchasedProductIds.some(function(pid) {
            return pid === normalizedTestProductId;
          });
          
          if (shouldTrack && checkout && checkout.line_items) {
            // Calculate value for just this product
            productValue = 0;
            checkout.line_items.forEach(function(item) {
              if (String(item.product_id) === normalizedTestProductId) {
                productValue += parseFloat(item.line_price || item.price || 0) / 100;
              }
            });
            console.log('📊 Product test - product found in order, value: ' + productValue);
          }
        }
        // 🎯 Product tests without checkout data: Track (fallback)
        else if (t.productId && purchasedProductIds.length === 0) {
          // Can't verify - track anyway as fallback (better than missing conversions)
          shouldTrack = true;
          console.log('⚠️ Product test - no checkout data, tracking anyway');
        }
        
        if (!shouldTrack) {
          console.log('⏭️ ABboost: Skipping test ' + t.testId + ' - product not in order');
          return;
        }
        
        console.log('💰 ABboost: Tracking purchase for test ' + t.testId + ' (' + t.variant + '), value: ' + productValue);
        
        var trackData = {
          testId: t.testId,
          variant: t.variant,
          eventType: 'purchase',
          sessionId: t.sessionId,
          fromURL: currentPath,
          value: productValue,
          productId: t.productId,
          timestamp: Date.now()
        };
        
        if (navigator.sendBeacon) {
          var blob = new Blob([JSON.stringify(trackData)], { type: 'application/json' });
          navigator.sendBeacon(API_URL + t.trackingEndpoint, blob);
        }
      });
      
      // Clear active tests after purchase tracking
      localStorage.removeItem('abboost_active_tests');
      
    } catch (e) {
      console.error('❌ ABboost: Error tracking purchase:', e);
    }
  }
  
  // Run thank-you page check immediately
  checkThankYouPage();

  async function initFastRedirect() {
    const currentPath = window.location.pathname;
    const shop = getShopDomain();
    const currentProductId = getProductId();
    
    // 👁️ Check for skip/preview mode - MUST BE FIRST CHECK!
    const urlParams = new URLSearchParams(window.location.search);
    const skipMode = urlParams.get('_ab_skip');
    const previewMode = urlParams.get('abboost_preview');
    
    if (skipMode === '1' || previewMode) {
      console.log('👁️ ABboost: Skip mode active - showing page without any redirects');
      showPage();
      return;
    }
    
    // 🛡️ Skip tracking for Shopify Admin - Don't count admin visits!
    if (window.location.href.includes('admin.shopify.com') || 
        (document.referrer && document.referrer.includes('admin.shopify.com')) ||
        (window.Shopify && window.Shopify.designMode)) {
      console.log('🛡️ ABboost: Admin/Design mode detected - skipping tracking');
      showPage();
      return;
    }
    
    console.log('🔍 ABboost: Current Product ID:', currentProductId || 'not found');
    console.log('🔍 ABboost: Current Path:', currentPath);
    
    if (!shop) {
      showPage();
      return;
    }
    
    try {
      const tests = await getCachedTests(shop);
      if (!tests || tests.length === 0) {
        showPage();
        return;
      }
      
      // 🎯 PRIORITY 0: Check Theme Tests (HIGHEST PRIORITY - affects entire site!)
      for (const test of tests) {
        if (test.type === 'THEME') {
          return handleThemeTest(test, currentPath);
        }
      }
      
      // 🎯 PRIORITY 1: Check Split URL Tests (ANY page)
      // 🔧 FIX: Decode paths for comparison (handles special chars like ®, ™, etc.)
      let decodedPath = currentPath;
      try { decodedPath = decodeURIComponent(currentPath); } catch(e) {}
      for (const test of tests) {
        if (test.type === 'SPLIT_URL') {
          let decodedControl = test.controlURL || '';
          let decodedVariant = test.variantURL || '';
          try { decodedControl = decodeURIComponent(decodedControl); } catch(e) {}
          try { decodedVariant = decodeURIComponent(decodedVariant); } catch(e) {}
          // 🔧 FIX v2.9.5: Match collection paths too!
          // /collections/X/products/Y should match /products/Y
          const matchesControl = decodedPath === decodedControl || decodedPath.endsWith(decodedControl);
          const matchesVariant = decodedPath === decodedVariant || decodedPath.endsWith(decodedVariant);
          if (matchesControl || matchesVariant) {
            return handleSplitURLTest(test, decodedPath);
          }
        }
      }
      
      // 🎯 PRIORITY 2: Check Product Tests (only /products/ pages)
      if (!currentPath.includes('/products/')) {
        showPage();
        return;
      }
      
      let matchedTest = null;
      let triggerResult = null;
      for (const test of tests) {
        const result = checkTriggerConditions(test, currentPath, currentProductId);
        if (result.shouldTrack) {
          matchedTest = test;
          triggerResult = result;
          break;
        }
      }
      
      if (!matchedTest || !triggerResult) {
        showPage();
        return;
      }
      
      const test = matchedTest;
      const isReturningVisitor = localStorage.getItem('abboost_returning_visitor') === 'true';
      
      if (!test.targetNewVisitors && !isReturningVisitor) {
        showPage();
        return;
      }
      if (!test.targetReturning && isReturningVisitor) {
        showPage();
        return;
      }
      
      if (!isReturningVisitor) {
        localStorage.setItem('abboost_returning_visitor', 'true');
      }
      
      const storageKey = 'abboost_url_redirect_' + test.id;
      let assignment = localStorage.getItem(storageKey);
      
      // 🔧 FIX v2.7.5: Handle direct traffic to test product properly
      // If user arrives at test product without going through assignment flow:
      // - No assignment = came directly (Google, direct link) → redirect to original
      // - assignment = 'original' = should be on original → redirect to original  
      // - assignment = 'test' = legitimate → count them
      if (triggerResult.variant === 'test') {
        if (!assignment) {
          // 🚫 User arrived directly at test product without assignment
          // Redirect them to original product to go through proper flow
          console.log('🔄 ABboost: Direct traffic to test product - redirecting to original for proper assignment');
          if (test.originalURL) {
            window.location.replace(test.originalURL);
            return;
          }
          // If no originalURL, just show page without tracking
          showPage();
          return;
        } else if (assignment === 'original') {
          // 🔄 User was assigned to original but somehow on test product
          // Redirect back to original
          console.log('🔄 ABboost: User assigned to original but on test product - redirecting back');
          if (test.originalURL) {
            window.location.replace(test.originalURL);
            return;
          }
          showPage();
          return;
        }
        // assignment === 'test' - legitimate visitor, continue
      }
      
      if (!test.alwaysTrigger) {
        const hasTriggeredKey = 'abboost_url_redirect_triggered_' + test.id;
        const hasTriggered = localStorage.getItem(hasTriggeredKey);
        if (hasTriggered && assignment === 'test' && !triggerResult.shouldRedirect) {
          // User is on test product after redirect - check if already tracked
          const sessionId = getSessionId();
          
          // 🔧 FIX v2.7.8: Use SAME key as redirect to prevent double counting!
          // If user was already counted during redirect, don't count again on test product
          const redirectViewKey = 'abboost_redirect_view_' + test.id;
          const alreadyTrackedRedirect = sessionStorage.getItem(redirectViewKey);
          
          if (alreadyTrackedRedirect) {
            // Already tracked during redirect - just show page, don't track again
            console.log('✅ ABboost: Already tracked during redirect - skipping duplicate');
            var testProductId = test.originalProductId || test.duplicatedProductId || currentProductId;
            setupUniversalTracking(test.id, assignment, sessionId, test.type, testProductId);
            showPage();
            return;
          }
          
          // Fallback: check path-based key for edge cases
          const viewKey = 'abboost_view_' + test.id + '_' + currentPath;
          const alreadyTracked = sessionStorage.getItem(viewKey);
          
          if (!alreadyTracked) {
            const trackData = {
              testId: test.id,
              variant: assignment,
              eventType: test.type === 'SPLIT_URL' ? 'pageview' : 'view',
              sessionId: sessionId,
              fromURL: currentPath,
              productId: currentProductId,
              timestamp: Date.now()
            };
            
            // Determine tracking endpoint based on test type
            let trackingEndpoint;
            if (test.type === 'SPLIT_URL') {
              trackingEndpoint = '/api/split-url/track';
            } else if (test.type === 'DESCRIPTION') {
              trackingEndpoint = '/api/description-test/track';
            } else if (test.type === 'PRODUCT_TITLE') {
              trackingEndpoint = '/api/product-title-test/track';
            } else if (test.type === 'PRICE') {
              trackingEndpoint = '/api/price-test/track';
            } else {
              trackingEndpoint = '/api/url-redirect/track';
            }
            
            if (navigator.sendBeacon) {
              const blob = new Blob([JSON.stringify(trackData)], { type: 'application/json' });
              navigator.sendBeacon(API_URL + trackingEndpoint, blob);
            }
            
            // Mark as tracked for this session/path
            sessionStorage.setItem(viewKey, '1');
          }
          
          // 🔧 FIX: Setup add_to_cart & purchase tracking even for returning visitors!
          var testProductId = test.originalProductId || test.duplicatedProductId || currentProductId;
          setupUniversalTracking(test.id, assignment, sessionId, test.type, testProductId);
          
          showPage();
          return;
        }
      }
      
      if (!assignment) {
        // 🎯 Use consistent hash-based assignment
        // Same sessionId always gets the same variant
        const sessionId = getSessionId();
        assignment = getConsistentAssignment(sessionId, test.id, test.trafficSplit);
        
        console.log('🎲 ABboost: Hash-based assignment:', {
          sessionId: sessionId.substring(0, 20) + '...',
          testId: test.id.substring(0, 10) + '...',
          trafficSplit: test.trafficSplit,
          result: assignment
        });
        
        localStorage.setItem(storageKey, assignment);
      }
      
      const shouldRedirect = assignment === 'test' && triggerResult.shouldRedirect && currentPath !== test.testURL;
      const sessionId = getSessionId();
      
      if (shouldRedirect) {
        let redirectURL = test.testURL;
        if (test.preserveQueryString && window.location.search) {
          redirectURL += window.location.search;
        }
        
        if (!test.alwaysTrigger) {
          localStorage.setItem('abboost_url_redirect_triggered_' + test.id, 'true');
        }
        
        // 🔧 FIX v2.7.6: Deduplication for redirect case too!
        // Only count ONE pageview per session, even if user visits original multiple times
        const redirectViewKey = 'abboost_redirect_view_' + test.id;
        const alreadyTrackedRedirect = sessionStorage.getItem(redirectViewKey);
        
        if (!alreadyTrackedRedirect) {
          const trackData = {
            testId: test.id,
            variant: assignment,
            eventType: 'pageview',
            sessionId: sessionId,
            fromURL: currentPath,
            toURL: redirectURL,
            productId: currentProductId,
            timestamp: Date.now()
          };
          
          // 🚨 CRITICAL: Send as Blob with application/json Content-Type
          // Determine tracking endpoint based on test type
          let trackingEndpoint;
          if (test.type === 'SPLIT_URL') {
            trackingEndpoint = '/api/split-url/track';
          } else if (test.type === 'DESCRIPTION') {
            trackingEndpoint = '/api/description-test/track';
          } else if (test.type === 'PRODUCT_TITLE') {
            trackingEndpoint = '/api/product-title-test/track';
          } else if (test.type === 'PRICE') {
            trackingEndpoint = '/api/price-test/track';
          } else {
            trackingEndpoint = '/api/url-redirect/track';
          }
          
          if (navigator.sendBeacon) {
            const blob = new Blob([JSON.stringify(trackData)], { type: 'application/json' });
            navigator.sendBeacon(API_URL + trackingEndpoint, blob);
          }
          
          // Mark as tracked for this session
          sessionStorage.setItem(redirectViewKey, '1');
        }
        
        window.location.replace(redirectURL);
      } else {
        // Track VIEW event (no redirect) - but only once per session/path!
        // 🔧 FIX v2.4: Prevent duplicate view tracking for Price Tests
        const viewKey = 'abboost_view_' + test.id + '_' + currentPath;
        const alreadyTracked = sessionStorage.getItem(viewKey);
        
        if (!alreadyTracked) {
          const viewTrackData = {
            testId: test.id,
            variant: assignment,
            eventType: test.type === 'SPLIT_URL' ? 'pageview' : 'view',
            sessionId: sessionId,
            fromURL: currentPath,
            productId: currentProductId,
            timestamp: Date.now()
          };
          
          // 🚨 CRITICAL: Send as Blob with application/json Content-Type
          // Determine tracking endpoint based on test type
          let trackingEndpoint;
          if (test.type === 'SPLIT_URL') {
            trackingEndpoint = '/api/split-url/track';
          } else if (test.type === 'DESCRIPTION') {
            trackingEndpoint = '/api/description-test/track';
          } else if (test.type === 'PRODUCT_TITLE') {
            trackingEndpoint = '/api/product-title-test/track';
          } else if (test.type === 'PRICE') {
            trackingEndpoint = '/api/price-test/track';
          } else {
            trackingEndpoint = '/api/url-redirect/track';
          }
          
          if (navigator.sendBeacon) {
            const blob = new Blob([JSON.stringify(viewTrackData)], { type: 'application/json' });
            navigator.sendBeacon(API_URL + trackingEndpoint, blob);
          }
          
          // Mark as tracked for this session/path
          sessionStorage.setItem(viewKey, '1');
        }
        
        // Setup event tracking for this page (add to cart + purchase)
        // Pass productId for product-level tests (originalProductId or duplicatedProductId)
        var testProductId = test.originalProductId || test.duplicatedProductId || currentProductId;
        setupUniversalTracking(test.id, assignment, sessionId, test.type, testProductId);
        
        showPage();
      }
      
    } catch (error) {
      showPage();
    }
  }

  initFastRedirect();
  
  // 🔥 GLOBAL LISTENERS: Set up add-to-cart tracking for existing tests
  // This ensures tracking works on product pages when user came from a tested landing page
  // (e.g., Split URL test on /pages/motywacja -> user navigates to /products/xyz)
  (function setupGlobalListenersForExistingTests() {
    try {
      var activeTests = JSON.parse(localStorage.getItem('abboost_active_tests') || '[]');
      
      // Filter to only recent tests (last 24 hours)
      var now = Date.now();
      activeTests = activeTests.filter(function(t) { 
        return t && t.timestamp && (now - t.timestamp < 86400000); 
      });
      
      if (activeTests.length === 0) return;
      
      // Check if listeners are already set up (by initFastRedirect or previous run)
      if (window.__abboost_global_listeners_setup) return;
      window.__abboost_global_listeners_setup = true;
      
      console.log('📊 ABboost: Found ' + activeTests.length + ' active test(s) in localStorage, ensuring listeners are set up');
      
      // Use the first test to initialize listeners (they handle ALL tests via localStorage)
      var t = activeTests[0];
      if (t && t.testId && t.variant && t.sessionId && t.testType) {
        // Only set up if listeners aren't already patched
        if (!window.__abboost_submit_patched || !window.__abboost_fetch_patched) {
          setupUniversalTracking(t.testId, t.variant, t.sessionId, t.testType, t.productId);
          console.log('✅ ABboost: Global listeners initialized for existing tests');
        }
      }
    } catch (e) {
      console.warn('⚠️ ABboost: Error setting up global listeners:', e);
    }
  })();
  
  window.ABboostCriticalRedirectLoaded = true;
  window.__ABBOOST_SNIPPET_LOADED__ = true; // Flag for ScriptTag fallback
  
})();
</script>

<!-- 🎨 STEP 3: Description Test Logic (URL Redirect - same as Product Split!) -->
<script>
(function() {
  'use strict';
  
  // Description Tests work EXACTLY like URL Redirect Tests!
  // They redirect to a duplicated product with different description.
  // So we just include them in the same redirect logic above.
  
  // The only difference is the tracking endpoint, but that's handled by
  // the unified metafield structure (type: 'DESCRIPTION' vs 'URL_REDIRECT')
  
  // console.log('🎨 ABboost: Description Tests handled by URL Redirect logic');
  
})();
</script>

<!-- ✅ All tracking is now handled inline (no external tracking.js needed) -->
<!-- Variant tests + Product cards will be added in future versions if needed -->


	<!-- Added by AVADA SEO Suite -->
	

	<!-- /Added by AVADA SEO Suite -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height, minimum-scale=1.0, maximum-scale=5.0">

    <title>POSEIDON2 Pot 28x31cm abyss blue Provencelia 49.90</title><meta name="description" content="Harmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute"><link rel="canonical" href="https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en"><link rel="shortcut icon" href="//provencelia.com/cdn/shop/files/Untitled_design_ba416179-442d-4904-9b7c-502bc7243f28.png?v=1769099706&width=96">
      <link rel="apple-touch-icon" href="//provencelia.com/cdn/shop/files/Untitled_design_ba416179-442d-4904-9b7c-502bc7243f28.png?v=1769099706&width=180"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><link rel="preload" href="//provencelia.com/cdn/fonts/jost/jost_n5.7c8497861ffd15f4e1284cd221f14658b0e95d61.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="//provencelia.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2" as="font" type="font/woff2" crossorigin><meta property="og:type" content="product">
  <meta property="og:title" content="POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant">
  <meta property="product:price:amount" content="34,90">
  <meta property="product:price:currency" content="EUR"><meta property="og:image" content="https://provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&width=1200">
  <meta property="og:image:secure_url" content="https://provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&width=1200">
  <meta property="og:image:width" content="2000">
  <meta property="og:image:height" content="2000"><meta property="og:description" content="Harmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute"><meta property="og:url" content="https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<meta property="og:site_name" content="Provencelia"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant">
  <meta name="twitter:description" content="Harmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.Deep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.Each pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces."><meta name="twitter:image" content="https://provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?crop=center&height=600&v=1769101695&width=600">
  <meta name="twitter:image:alt" content=""><script type="application/ld+json">
    {
      "@context": "http://schema.org/",
      "@id": "/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en#product",
      "@type": "Product","brand": {
          "@type": "Brand",
          "name": "Provencelia"
        },"description": "Harmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\n\nDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\nEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.","gtin": "3701726207717","image": "https:\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695\u0026width=1920","name": "POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant","offers": {
          "@id": "/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?variant=52631343923523#offer",
          "@type": "Offer","availability": "http://schema.org/OutOfStock","price": 34.9,
          "priceCurrency": "EUR",
          "url": "https:\/\/provencelia.com\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?variant=52631343923523"
        },"sku": "POSEIDON2831-32","url": "https:\/\/provencelia.com\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en"
    }
  </script><script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [{
        "@type": "ListItem",
        "position": 1,
        "name": "Home",
        "item": "https://provencelia.com"
      },{
            "@type": "ListItem",
            "position": 2,
            "name": "POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant",
            "item": "https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en"
          }]
  }
</script><style>/* Typography (heading) */
  @font-face {
  font-family: Jost;
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_n5.7c8497861ffd15f4e1284cd221f14658b0e95d61.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_n5.fb6a06896db583cc2df5ba1b30d9c04383119dd9.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_i5.a6c7dbde35f2b89f8461eacda9350127566e5d51.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_i5.2b58baee736487eede6bcdb523ca85eea2418357.woff") format("woff");
}

/* Typography (body) */
  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_n4.791c46290e672b3f85c3d1c651ef2efa3819eadd.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_i4.b690098389649750ada222b9763d55796c5283a5.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_i4.fd766415a47e50b9e391ae7ec04e2ae25e7e28b0.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_n7.cbfc16c98c1e195f46c536e775e4e959c5f2f22b.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: italic;
  font-display: fallback;
  src: url("//provencelia.com/cdn/fonts/jost/jost_i7.d8201b854e41e19d7ed9b1a31fe4fe71deea6d3f.woff2") format("woff2"),
       url("//provencelia.com/cdn/fonts/jost/jost_i7.eae515c34e26b6c853efddc3fc0c552e0de63757.woff") format("woff");
}

:root {
    /* Container */
    --container-max-width: 100%;
    --container-xxs-max-width: 27.5rem; /* 440px */
    --container-xs-max-width: 42.5rem; /* 680px */
    --container-sm-max-width: 61.25rem; /* 980px */
    --container-md-max-width: 71.875rem; /* 1150px */
    --container-lg-max-width: 78.75rem; /* 1260px */
    --container-xl-max-width: 85rem; /* 1360px */
    --container-gutter: 1.25rem;

    --section-vertical-spacing: 4rem;
    --section-vertical-spacing-tight:2.5rem;

    --section-stack-gap:2.5rem;
    --section-stack-gap-tight:2.25rem;

    /* Form settings */
    --form-gap: 1.25rem; /* Gap between fieldset and submit button */
    --fieldset-gap: 1rem; /* Gap between each form input within a fieldset */
    --form-control-gap: 0.625rem; /* Gap between input and label (ignored for floating label) */
    --checkbox-control-gap: 0.75rem; /* Horizontal gap between checkbox and its associated label */
    --input-padding-block: 0.65rem; /* Vertical padding for input, textarea and native select */
    --input-padding-inline: 0.8rem; /* Horizontal padding for input, textarea and native select */
    --checkbox-size: 0.875rem; /* Size (width and height) for checkbox */

    /* Other sizes */
    --sticky-area-height: calc(var(--announcement-bar-is-sticky, 0) * var(--announcement-bar-height, 0px) + var(--header-is-sticky, 0) * var(--header-is-visible, 1) * var(--header-height, 0px));

    /* RTL support */
    --transform-logical-flip: 1;
    --transform-origin-start: left;
    --transform-origin-end: right;

    /**
     * ---------------------------------------------------------------------
     * TYPOGRAPHY
     * ---------------------------------------------------------------------
     */

    /* Font properties */
    --heading-font-family: Jost, sans-serif;
    --heading-font-weight: 500;
    --heading-font-style: normal;
    --heading-text-transform: normal;
    --heading-letter-spacing: -0.04em;
    --text-font-family: Jost, sans-serif;
    --text-font-weight: 400;
    --text-font-style: normal;
    --text-letter-spacing: -0.01em;
    --button-font: var(--text-font-style) var(--text-font-weight) var(--text-sm) / 1.65 var(--text-font-family);
    --button-text-transform: uppercase;
    --button-letter-spacing: 0.18em;

    /* Font sizes */--text-heading-size-factor: 1;
    --text-h1: max(0.6875rem, clamp(1.375rem, 1.146341463414634rem + 0.975609756097561vw, 2rem) * var(--text-heading-size-factor));
    --text-h2: max(0.6875rem, clamp(1.25rem, 1.0670731707317074rem + 0.7804878048780488vw, 1.75rem) * var(--text-heading-size-factor));
    --text-h3: max(0.6875rem, clamp(1.125rem, 1.0335365853658536rem + 0.3902439024390244vw, 1.375rem) * var(--text-heading-size-factor));
    --text-h4: max(0.6875rem, clamp(1rem, 0.9542682926829268rem + 0.1951219512195122vw, 1.125rem) * var(--text-heading-size-factor));
    --text-h5: calc(0.875rem * var(--text-heading-size-factor));
    --text-h6: calc(0.75rem * var(--text-heading-size-factor));

    --text-xs: 0.9375rem;
    --text-sm: 1.0rem;
    --text-base: 1.0625rem;
    --text-lg: 1.1875rem;
    --text-xl: 1.25rem;

    /* Rounded variables (used for border radius) */
    --rounded-full: 9999px;
    --button-border-radius: 0.0rem;
    --input-border-radius: 0.0rem;

    /* Box shadow */
    --shadow-sm: 0 2px 8px rgb(0 0 0 / 0.05);
    --shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    --shadow-md: 0 5px 30px rgb(0 0 0 / 0.05);
    --shadow-block: px px px rgb(var(--text-primary) / 0.0);

    /**
     * ---------------------------------------------------------------------
     * OTHER
     * ---------------------------------------------------------------------
     */

    --checkmark-svg-url: url(//provencelia.com/cdn/shop/t/4/assets/checkmark.svg?v=26339725606011361691733501587);
    --cursor-zoom-in-svg-url: url(//provencelia.com/cdn/shop/t/4/assets/cursor-zoom-in.svg?v=162733587123064763741733501587);
  }

  [dir="rtl"]:root {
    /* RTL support */
    --transform-logical-flip: -1;
    --transform-origin-start: right;
    --transform-origin-end: left;
  }

  @media screen and (min-width: 700px) {
    :root {
      /* Typography (font size) */
      --text-xs: 0.9375rem;
      --text-sm: 1.0rem;
      --text-base: 1.0625rem;
      --text-lg: 1.1875rem;
      --text-xl: 1.375rem;

      /* Spacing settings */
      --container-gutter: 2rem;
    }
  }

  @media screen and (min-width: 1000px) {
    :root {
      /* Spacing settings */
      --container-gutter: 3rem;

      --section-vertical-spacing: 7rem;
      --section-vertical-spacing-tight: 4rem;

      --section-stack-gap:4rem;
      --section-stack-gap-tight:4rem;
    }
  }:root {/* Overlay used for modal */
    --page-overlay: 0 0 0 / 0.4;

    /* We use the first scheme background as default */
    --page-background: ;

    /* Product colors */
    --on-sale-text: 255 164 34;
    --on-sale-badge-background: 255 164 34;
    --on-sale-badge-text: 0 0 0 / 0.65;
    --sold-out-badge-background: 239 239 239;
    --sold-out-badge-text: 0 0 0 / 0.65;
    --custom-badge-background: 127 184 0;
    --custom-badge-text: 255 255 255;
    --star-color: 28 28 28;

    /* Status colors */
    --success-background: 228 240 201;
    --success-text: 127 184 0;
    --warning-background: 255 244 228;
    --warning-text: 255 164 34;
    --error-background: 238 201 201;
    --error-text: 185 28 28;
  }.color-scheme--scheme-1 {
      /* Color settings */--accent: 47 77 54;
      --text-color: 2 6 23;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 217 218 220;/* Button colors */
      --button-background: 47 77 54;
      --button-text-color: 249 250 251;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-262da8014d7d6e3c30cd4b6a9bb7a338) + .shopify-section:has(.section-spacing.color-scheme--bg-262da8014d7d6e3c30cd4b6a9bb7a338:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-2 {
      /* Color settings */--accent: 28 28 28;
      --text-color: 28 28 28;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 221 221 221;/* Button colors */
      --button-background: 28 28 28;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673) + .shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-3 {
      /* Color settings */--accent: 255 255 255;
      --text-color: 255 255 255;
      --background: 0 0 0 / 1.0;
      --background-without-opacity: 0 0 0;
      --background-gradient: ;--border-color: 38 38 38;/* Button colors */
      --button-background: 255 255 255;
      --button-text-color: 28 28 28;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-77e774e6cc4d94d6a32f6256f02d9552) + .shopify-section:has(.section-spacing.color-scheme--bg-77e774e6cc4d94d6a32f6256f02d9552:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-4 {
      /* Color settings */--accent: 47 77 54;
      --text-color: 2 6 23;
      --background: 246 246 240 / 1.0;
      --background-without-opacity: 246 246 240;
      --background-gradient: ;--border-color: 209 210 207;/* Button colors */
      --button-background: 47 77 54;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-507cd7970d7dae35a77a0e63cbf75a96) + .shopify-section:has(.section-spacing.color-scheme--bg-507cd7970d7dae35a77a0e63cbf75a96:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--dialog {
      /* Color settings */--accent: 28 28 28;
      --text-color: 28 28 28;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 221 221 221;/* Button colors */
      --button-background: 28 28 28;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }
</style><script>
  // This allows to expose several variables to the global scope, to be used in scripts
  window.themeVariables = {
    settings: {
      showPageTransition: null,
      pageType: "product",
      moneyFormat: "{{ amount_with_space_separator }}€",
      moneyWithCurrencyFormat: "{{ amount_with_space_separator }}€",
      currencyCodeEnabled: false,
      cartType: "drawer",
      staggerMenuApparition: true
    },

    strings: {
      addedToCart: "Product added to cart!",
      closeGallery: "Close the gallery",
      zoomGallery: "Zoom in on the image",
      errorGallery: "The image cannot be loaded",
      shippingEstimatorNoResults: "We do not deliver to your address.",
      shippingEstimatorOneResult: "There is one result for your address:",
      shippingEstimatorMultipleResults: "There are several results for your address:",
      shippingEstimatorError: "Unable to estimate shipping fees:",
      next: "Next",
      previous: "Previous"
    },

    mediaQueries: {
      'sm': 'screen and (min-width: 700px)',
      'md': 'screen and (min-width: 1000px)',
      'lg': 'screen and (min-width: 1150px)',
      'xl': 'screen and (min-width: 1400px)',
      '2xl': 'screen and (min-width: 1600px)',
      'sm-max': 'screen and (max-width: 699px)',
      'md-max': 'screen and (max-width: 999px)',
      'lg-max': 'screen and (max-width: 1149px)',
      'xl-max': 'screen and (max-width: 1399px)',
      '2xl-max': 'screen and (max-width: 1599px)',
      'motion-safe': '(prefers-reduced-motion: no-preference)',
      'motion-reduce': '(prefers-reduced-motion: reduce)',
      'supports-hover': 'screen and (pointer: fine)',
      'supports-touch': 'screen and (hover: none)'
    }
  };</script><script>
      if (!(HTMLScriptElement.supports && HTMLScriptElement.supports('importmap'))) {
        const importMapPolyfill = document.createElement('script');
        importMapPolyfill.async = true;
        importMapPolyfill.src = "//provencelia.com/cdn/shop/t/4/assets/es-module-shims.min.js?v=140375185335194536761733501579";

        document.head.appendChild(importMapPolyfill);
      }
    </script>

    <script type="importmap">{
        "imports": {
          "vendor": "//provencelia.com/cdn/shop/t/4/assets/vendor.min.js?v=97444456987200009421733501578",
          "theme": "//provencelia.com/cdn/shop/t/4/assets/theme.js?v=56628137624371119631744829033",
          "photoswipe": "//provencelia.com/cdn/shop/t/4/assets/photoswipe.min.js?v=13374349288281597431733501580"
        }
      }
    </script>

    <script type="module" src="//provencelia.com/cdn/shop/t/4/assets/vendor.min.js?v=97444456987200009421733501578"></script>
    <script type="module" src="//provencelia.com/cdn/shop/t/4/assets/theme.js?v=56628137624371119631744829033"></script>

    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="clfr83652sho2ebdlk7r1r5me9bxsi">
<meta name="google-site-verification" content="WdX4yvkhXQwjSbNvbw_m_Z9Ygh8-hIroCSQ-TFBUuds">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/89786319171/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="4f5f8ed5e61207d4078b1cf299749590">
<meta id="in-context-paypal-metadata" data-shop-id="89786319171" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="EUR">
<link rel="alternate" hreflang="x-default" href="https://provencelia.com/fr-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue">
<link rel="alternate" hreflang="fr" href="https://provencelia.com/fr-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue">
<link rel="alternate" hreflang="en" href="https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="fr-BE" href="https://provencelia.com/fr-be/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue">
<link rel="alternate" hreflang="en-BE" href="https://provencelia.com/en-be/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="nl-BE" href="https://provencelia.com/nl-be/products/poseidon2-28x31cm-grote-handgemaakte-buitenpot-in-geglazuurd-terracotta-vorstbestendig-afgrondblauw">
<link rel="alternate" hreflang="it-IT" href="https://provencelia.com/it-it/products/poseidon2-28x31cm-grande-vaso-da-esterno-fatto-a-mano-in-terracotta-smaltata-resistente-al-gelo-blu-abissale">
<link rel="alternate" hreflang="en-IT" href="https://provencelia.com/en-it/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="fr-LU" href="https://provencelia.com/fr-lu/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue">
<link rel="alternate" hreflang="en-LU" href="https://provencelia.com/en-lu/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="nl-NL" href="https://provencelia.com/nl-nl/products/poseidon2-28x31cm-grote-handgemaakte-buitenpot-in-geglazuurd-terracotta-vorstbestendig-afgrondblauw">
<link rel="alternate" hreflang="en-NL" href="https://provencelia.com/en-nl/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="es-ES" href="https://provencelia.com/es-es/products/poseidon2-28x31cm-maceta-grande-hecha-a-mano-para-exteriores-en-terracota-esmaltada-resistente-a-las-heladas-azul-abismo">
<link rel="alternate" hreflang="en-ES" href="https://provencelia.com/en-es/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" hreflang="fr-MC" href="https://provencelia.com/fr-mc/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue">
<link rel="alternate" hreflang="en-MC" href="https://provencelia.com/en-mc/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">
<link rel="alternate" type="application/json+oembed" href="https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en.oembed">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-FR"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-FR&shop_id=89786319171" crossorigin="anonymous"></script>
<script id="shopify-features" type="application/json">{"accessToken":"4f5f8ed5e61207d4078b1cf299749590","betas":["rich-media-storefront-analytics"],"domain":"provencelia.com","predictiveSearch":true,"shopId":89786319171,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "3778e7-42.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"EUR","rate":"1.0"};
Shopify.country = "FR";
Shopify.theme = {"name":"Main theme","id":175220883779,"schema_name":"Prestige","schema_version":"10.3.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "provencelia.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/en-fr/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";</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>
  window.ShopifyPay = window.ShopifyPay || {};
  window.ShopifyPay.apiHost = "shop.app\/pay";
  window.ShopifyPay.redirectState = null;
</script>
<script>
  window.Shopify = window.Shopify || {};
  window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
  window.Shopify.SignInWithShop.eligible = true;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"product"}</script>
<script defer="defer" async type="module" src="//provencelia.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//provencelia.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");

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

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/cdn-bundler.nice-team.net\/app\/js\/bundler.js?shop=3778e7-42.myshopify.com","\/\/cdn.shopify.com\/proxy\/2fefb91d71fcf6b57ab07d409d230a85cac6b3fc1141ecdc03d2c6d3e18890fc\/cdn.bogos.io\/script_tag\/secomapp.scripttag.js?shop=3778e7-42.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","https:\/\/ab.cartsparks.com\/tracking-disabled.js?shop=3778e7-42.myshopify.com","https:\/\/ab.cartsparks.com\/abboost-fallback.js?shop=3778e7-42.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":89786319171,"offset":7200,"reqid":"a688e889-0002-4e2f-8171-bb61c9d69b03-1778122978","pageurl":"provencelia.com\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1\u0026_sid=b867d9fbb\u0026_ss=r","u":"e45992183540","p":"product","rtyp":"product","rid":14797823803715};</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:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//provencelia.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//provencelia.com/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-bf1cdb70.js?v=20250812"></script>
<script id='scb4127' type='text/javascript' async='' src='https://provencelia.com/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<link href="//provencelia.com/cdn/shop/t/4/assets/theme.css?v=162578887813518623141733501579" rel="stylesheet" type="text/css" media="all" /><link href="//provencelia.com/cdn/shop/t/4/assets/custom.css?v=81006577747167820601755089229" rel="stylesheet" type="text/css" media="all" /><!-- BEGIN app block: shopify://apps/microsoft-clarity/blocks/brandAgents_js/31c3d126-8116-4b4a-8ba1-baeda7c4aeea -->





<!-- 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",
        source: 101,
      });
    });

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



<!-- 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/RU4w2u/klaviyo.js?company_id=RU4w2u"></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 id="viewed_product">
      if (item == null) {
        var _learnq = _learnq || [];

        var MetafieldReviews = null
        var MetafieldYotpoRating = null
        var MetafieldYotpoCount = null
        var MetafieldLooxRating = null
        var MetafieldLooxCount = null
        var okendoProduct = null
        var okendoProductReviewCount = null
        var okendoProductReviewAverageValue = null
        try {
          // The following fields are used for Customer Hub recently viewed in order to add reviews.
          // This information is not part of __kla_viewed. Instead, it is part of __kla_viewed_reviewed_items
          MetafieldReviews = {};
          MetafieldYotpoRating = null
          MetafieldYotpoCount = null
          MetafieldLooxRating = null
          MetafieldLooxCount = null

          okendoProduct = null
          // If the okendo metafield is not legacy, it will error, which then requires the new json formatted data
          if (okendoProduct && 'error' in okendoProduct) {
            okendoProduct = null
          }
          okendoProductReviewCount = okendoProduct ? okendoProduct.reviewCount : null
          okendoProductReviewAverageValue = okendoProduct ? okendoProduct.reviewAverageValue : null
        } catch (error) {
          console.error('Error in Klaviyo onsite reviews tracking:', error);
        }

        var item = {
          Name: "POSEIDON2 Pot 28x31cm abyss blue",
          ProductID: 14797823803715,
          Categories: ["Ceramic flower pots","Product model: Poseidon2","Round flower pots"],
          ImageURL: "https://provencelia.com/cdn/shop/files/POSEIDON32-C_grande.jpg?v=1769101695",
          URL: "https://provencelia.com/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en",
          Brand: "Provencelia",
          Price: "34,90€",
          Value: "34,90",
          CompareAtPrice: "99,90€"
        };
        _learnq.push(['track', 'Viewed Product', item]);
        _learnq.push(['trackViewedItem', {
          Title: item.Name,
          ItemId: item.ProductID,
          Categories: item.Categories,
          ImageUrl: item.ImageURL,
          Url: item.URL,
          Metadata: {
            Brand: item.Brand,
            Price: item.Price,
            Value: item.Value,
            CompareAtPrice: item.CompareAtPrice
          },
          metafields:{
            reviews: MetafieldReviews,
            yotpo:{
              rating: MetafieldYotpoRating,
              count: MetafieldYotpoCount,
            },
            loox:{
              rating: MetafieldLooxRating,
              count: MetafieldLooxCount,
            },
            okendo: {
              rating: okendoProductReviewAverageValue,
              count: okendoProductReviewCount,
            }
          }
        }]);
      }
    </script>
  




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









<!-- END app block --><!-- BEGIN app block: shopify://apps/infinseo-seo-image-optimizer/blocks/infin-seo/47e20352-7646-4dac-a9ac-fd48272d18a6 -->
















<script>
  var infin_seo_template_name = "product"
</script>
<script class="infin-seo-extension-content" type="module" defer>
import {initInfinSeoExtScript} from "https://cdn.shopify.com/extensions/019bb296-0379-7dca-8239-e6ebe2215251/ultimate-seo-tool-13/assets/main.js";

const fallbackBrokenLinks = {"enable":false,"links":{"product":"","collection":"","article":"","others":""}};

if (fallbackBrokenLinks?.enable) {
  const links = fallbackBrokenLinks?.links;

  initInfinSeoExtScript({
    pages: links?.page ? `/${links.page}` : '/',
    collections: links?.collection ? `/${links.collection}` : '/',
    products: links?.product ? `/${links.product}` : '/',
    others: links?.others ? `/${links.others}` : '/',
  });
}

</script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/transcy/blocks/switcher_embed_block/bce4f1c0-c18c-43b0-b0b2-a1aefaa44573 --><!-- BEGIN app snippet: fa_translate_core --><script>
    (function () {
        console.log("transcy ignore convert TC value",typeof transcy_ignoreConvertPrice != "undefined");
        
        function addMoneyTag(mutations, observer) {
            let currencyCookie = getCookieCore("transcy_currency");
            
            let shopifyCurrencyRegex = buildXPathQuery(
                window.ShopifyTC.shopifyCurrency.price_currency
            );

            const patterns = Array.from(new Set([
                ...buildCurrencyRegex(window.ShopifyTC.shopifyCurrency.price_currency),
                ...buildCurrencyRegex(window.ShopifyTC.shopifyCurrency.price)
            ]));
            
            let currencyRegex = new RegExp(`(${patterns.join("|")})`, "g");
            let tempTranscy = document.evaluate(shopifyCurrencyRegex, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
            for (let iTranscy = 0; iTranscy < tempTranscy.snapshotLength; iTranscy++) {
                let elTranscy = tempTranscy.snapshotItem(iTranscy);
                if (elTranscy.innerHTML &&
                !elTranscy.classList.contains('transcy-money') && (typeof transcy_ignoreConvertPrice == "undefined" ||
                !transcy_ignoreConvertPrice?.some(className => elTranscy.classList?.contains(className))) && elTranscy?.childNodes?.length == 1) {
                    if (!window.ShopifyTC?.shopifyCurrency?.price_currency || currencyCookie == window.ShopifyTC?.currency?.active || !currencyCookie) {
                        addClassIfNotExists(elTranscy, 'notranslate');
                        continue;
                    }

                    elTranscy.classList.add('transcy-money');
                    let innerHTML = replaceMatches(elTranscy?.textContent, currencyRegex);
                    elTranscy.innerHTML = innerHTML;
                    if (!innerHTML.includes("tc-money")) {
                        addClassIfNotExists(elTranscy, 'notranslate');
                    }
                } 
                if (elTranscy.classList.contains('transcy-money') && !elTranscy?.innerHTML?.includes("tc-money")) {
                    addClassIfNotExists(elTranscy, 'notranslate');
                }
            }
        }
    
        function logChangesTranscy(mutations, observer) {
            const xpathQuery = `
                //*[text()[contains(.,"•tc")]] |
                //*[text()[contains(.,"tc")]] |
                //*[text()[contains(.,"transcy")]] |
                //textarea[@placeholder[contains(.,"transcy")]] |
                //textarea[@placeholder[contains(.,"tc")]] |
                //select[@placeholder[contains(.,"transcy")]] |
                //select[@placeholder[contains(.,"tc")]] |
                //input[@placeholder[contains(.,"tc")]] |
                //input[@value[contains(.,"tc")]] |
                //input[@value[contains(.,"transcy")]] |
                //*[text()[contains(.,"TC")]] |
                //textarea[@placeholder[contains(.,"TC")]] |
                //select[@placeholder[contains(.,"TC")]] |
                //input[@placeholder[contains(.,"TC")]] |
                //input[@value[contains(.,"TC")]]
            `;
            let tempTranscy = document.evaluate(xpathQuery, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
            for (let iTranscy = 0; iTranscy < tempTranscy.snapshotLength; iTranscy++) {
                let elTranscy = tempTranscy.snapshotItem(iTranscy);
                let innerHtmlTranscy = elTranscy?.innerHTML ? elTranscy.innerHTML : "";
                if (innerHtmlTranscy && !["SCRIPT", "LINK", "STYLE"].includes(elTranscy.nodeName)) {
                    const textToReplace = [
                        '&lt;•tc&gt;', '&lt;/•tc&gt;', '&lt;tc&gt;', '&lt;/tc&gt;',
                        '&lt;transcy&gt;', '&lt;/transcy&gt;', '&amp;lt;tc&amp;gt;',
                        '&amp;lt;/tc&amp;gt;', '&lt;TRANSCY&gt;', '&lt;/TRANSCY&gt;',
                        '&lt;TC&gt;', '&lt;/TC&gt;'
                    ];
                    let containsTag = textToReplace.some(tag => innerHtmlTranscy.includes(tag));
                    if (containsTag) {
                        textToReplace.forEach(tag => {
                            innerHtmlTranscy = innerHtmlTranscy.replaceAll(tag, '');
                        });
                        elTranscy.innerHTML = innerHtmlTranscy;
                        elTranscy.setAttribute('translate', 'no');
                    }
    
                    const tagsToReplace = ['<•tc>', '</•tc>', '<tc>', '</tc>', '<transcy>', '</transcy>', '<TC>', '</TC>', '<TRANSCY>', '</TRANSCY>'];
                    if (tagsToReplace.some(tag => innerHtmlTranscy.includes(tag))) {
                        innerHtmlTranscy = innerHtmlTranscy.replace(/<(|\/)transcy>|<(|\/)tc>|<(|\/)•tc>/gi, "");
                        elTranscy.innerHTML = innerHtmlTranscy;
                        elTranscy.setAttribute('translate', 'no');
                    }
                }
                if (["INPUT"].includes(elTranscy.nodeName)) {
                    let valueInputTranscy = elTranscy.value.replaceAll("&lt;tc&gt;", "").replaceAll("&lt;/tc&gt;", "").replace(/<(|\/)transcy>|<(|\/)tc>/gi, "");
                    elTranscy.value = valueInputTranscy
                }
    
                if (["INPUT", "SELECT", "TEXTAREA"].includes(elTranscy.nodeName)) {
                    elTranscy.placeholder = elTranscy.placeholder.replaceAll("&lt;tc&gt;", "").replaceAll("&lt;/tc&gt;", "").replace(/<(|\/)transcy>|<(|\/)tc>/gi, "");
                }
            }
            addMoneyTag(mutations, observer)
        }
        const observerOptionsTranscy = {
            subtree: true,
            childList: true
        };
        let logChangesTranscyTimer = null;
        const observerTranscy = new MutationObserver(function(mutations, observer) {
            if (logChangesTranscyTimer !== null) clearTimeout(logChangesTranscyTimer);
            logChangesTranscyTimer = setTimeout(function() {
                logChangesTranscyTimer = null;
                logChangesTranscy(mutations, observer);
            }, 100);
        });
        observerTranscy.observe(document.documentElement, observerOptionsTranscy);
    })();

    const addClassIfNotExists = (element, className) => {
        if (!element.classList.contains(className)) {
            element.classList.add(className);
        }
    };
    
    const replaceMatches = (content, currencyRegex) => {
        let arrCurrencies = content.match(currencyRegex);
    
        if (arrCurrencies?.length && content === arrCurrencies[0]) {
            return content;
        }
        return (
            arrCurrencies?.reduce((string, oldVal, index) => {
                const hasSpaceBefore = string.match(new RegExp(`\\s${oldVal}`));
                const hasSpaceAfter = string.match(new RegExp(`${oldVal}\\s`));
                let eleCurrencyConvert = `<tc-money translate="no">${arrCurrencies[index]}</tc-money>`;
                if (hasSpaceBefore) eleCurrencyConvert = ` ${eleCurrencyConvert}`;
                if (hasSpaceAfter) eleCurrencyConvert = `${eleCurrencyConvert} `;
                if (string.includes("tc-money")) {
                    return string;
                }
                return string?.replaceAll(oldVal, eleCurrencyConvert);
            }, content) || content
        );
        return result;
    };
    
    const unwrapCurrencySpan = (text) => {
        return text.replace(/<span[^>]*>(.*?)<\/span>/gi, "$1");
    };


    const getSymbolsAndCodes = (text) => {
        if (!text || typeof text !== "string") return [];
        let numberPattern = "\\d+(?:[.,]\\d+)*(?:[.,]\\d+)?(?:\\s?\\d+)?"; // Chỉ tối đa 1 khoảng trắng
        let textWithoutCurrencySpan = unwrapCurrencySpan(text);
        let symbolsAndCodes = textWithoutCurrencySpan
            .trim()
            .replace(new RegExp(numberPattern, "g"), "")
            .split(/\s+/) // Loại bỏ khoảng trắng dư thừa
            .filter((el) => el);
        if (!Array.isArray(symbolsAndCodes) || symbolsAndCodes.length === 0) {
            return [];
        }
        return symbolsAndCodes;
    }

    const buildCurrencyRegex = (text) => {
        const symbolsAndCodes = getSymbolsAndCodes(text);
        if (!Array.isArray(symbolsAndCodes) || symbolsAndCodes.length === 0) {
            return [];
        }
        let patterns = createCurrencyRegex(symbolsAndCodes);
        return patterns;
    };

    const createCurrencyRegex = (symbolsAndCodes)=>{
        if (symbolsAndCodes.length === 0) {
            return [];
        }
        const escape = (str) => str.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&");
        const [s1, s2] = [escape(symbolsAndCodes[0]), escape(symbolsAndCodes[1] || "")];
        const space = "\\s?";
        const numberPattern = "\\d+(?:[.,]\\d+)*(?:[.,]\\d+)?(?:\\s?\\d+)?"; 
        const patterns = [];
        if (s1 && s2) {
            patterns.push(
                `${s1}${space}${numberPattern}${space}${s2}`,
                `${s2}${space}${numberPattern}${space}${s1}`,
                `${s2}${space}${s1}${space}${numberPattern}`,
                `${s1}${space}${s2}${space}${numberPattern}`
            );
        }
        if (s1) {
            patterns.push(`${s1}${space}${numberPattern}`);
            patterns.push(`${numberPattern}${space}${s1}`);
        }

        if (s2) {
            patterns.push(`${s2}${space}${numberPattern}`);
            patterns.push(`${numberPattern}${space}${s2}`);
        }
        return patterns;
    }
    
    const getCookieCore = function (name) {
        var nameEQ = name + "=";
        var ca = document.cookie.split(';');
        for (var i = 0; i < ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == ' ') c = c.substring(1, c.length);
            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }
        return null;
    };
    
    const buildXPathQuery = (text) => {
        let numberPattern = "\\d+(?:[.,]\\d+)*"; // Bỏ `matches()`
        let symbolAndCodes = text.replace(/<span[^>]*>(.*?)<\/span>/gi, "$1")
            .trim()
            .replace(new RegExp(numberPattern, "g"), "")
            .split(" ")
            ?.filter((el) => el);
    
        if (!symbolAndCodes || !Array.isArray(symbolAndCodes) || symbolAndCodes.length === 0) {
            throw new Error("symbolAndCodes must be a non-empty array.");
        }
    
        // Escape ký tự đặc biệt trong XPath
        const escapeXPath = (str) => str.replace(/(["'])/g, "\\$1");
    
        // Danh sách thẻ HTML cần tìm
        const allowedTags = ["div", "span", "p", "strong", "b", "h1", "h2", "h3", "h4", "h5", "h6", "td", "li", "font", "dd", 'a', 'font', 's'];
    
        // Tạo điều kiện contains() cho từng symbol hoặc code
        const conditions = symbolAndCodes
            .map((symbol) =>
                `(contains(text(), "${escapeXPath(symbol)}") and (contains(text(), "0") or contains(text(), "1") or contains(text(), "2") or contains(text(), "3") or contains(text(), "4") or contains(text(), "5") or contains(text(), "6") or contains(text(), "7") or contains(text(), "8") or contains(text(), "9")) )`
            )
            .join(" or ");
    
        // Tạo XPath Query (Chỉ tìm trong các thẻ HTML, không tìm trong input)
        const xpathQuery = allowedTags
            .map((tag) => `//${tag}[${conditions}]`)
            .join(" | ");
    
        return xpathQuery;
    };
    
    window.ShopifyTC = {};
    ShopifyTC.shop = "provencelia.com";
    ShopifyTC.locale = "en";
    ShopifyTC.currency = {"active":"EUR", "rate":""};
    ShopifyTC.country = "FR";
    ShopifyTC.designMode = false;
    ShopifyTC.theme = {};
    ShopifyTC.cdnHost = "";
    ShopifyTC.routes = {};
    ShopifyTC.routes.root = "/en-fr";
    ShopifyTC.store_id = 89786319171;
    ShopifyTC.page_type = "product";
    ShopifyTC.resource_id = "";
    ShopifyTC.resource_description = "";
    ShopifyTC.market_id = 86864953667;
    switch (ShopifyTC.page_type) {
        case "product":
            ShopifyTC.resource_id = 14797823803715;
            ShopifyTC.resource_description = "\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e"
            break;
        case "article":
            ShopifyTC.resource_id = null;
            ShopifyTC.resource_description = null
            break;
        case "blog":
            ShopifyTC.resource_id = null;
            break;
        case "collection":
            ShopifyTC.resource_id = null;
            ShopifyTC.resource_description = null
            break;
        case "policy":
            ShopifyTC.resource_id = null;
            ShopifyTC.resource_description = null
            break;
        case "page":
            ShopifyTC.resource_id = null;
            ShopifyTC.resource_description = null
            break;
        default:
            break;
    }

    window.ShopifyTC.shopifyCurrency={
        "price": "0,01€",
        "price_currency": "0,01€",
        "currency": "EUR"
    }


    if(typeof(transcy_appEmbed) == 'undefined'){
        transcy_switcherVersion = "1775717886";
        transcy_productMediaVersion = "";
        transcy_collectionMediaVersion = "";
        transcy_otherMediaVersion = "";
        transcy_productId = "14797823803715";
        transcy_shopName = "Provencelia";
        transcy_currenciesPaymentPublish = [];
        transcy_curencyDefault = "EUR";transcy_currenciesPaymentPublish.push("EUR");
        transcy_shopifyLocales = [{"shop_locale":{"locale":"fr","enabled":true,"primary":true,"published":true}},{"shop_locale":{"locale":"en","enabled":true,"primary":false,"published":true}}];
        transcy_moneyFormat = "{{ amount_with_space_separator }}€";

        function domLoadedTranscy () {
            let cdnScriptTC = typeof(transcy_cdn) != 'undefined' ? (transcy_cdn+'/transcy.js') : "https://cdn.shopify.com/extensions/019d8b04-dc16-72dc-a957-0e51fcce6fee/transcy-ext-308/assets/transcy.js";
            let cdnLinkTC = typeof(transcy_cdn) != 'undefined' ? (transcy_cdn+'/transcy.css') :  "https://cdn.shopify.com/extensions/019d8b04-dc16-72dc-a957-0e51fcce6fee/transcy-ext-308/assets/transcy.css";
            let scriptTC = document.createElement('script');
            scriptTC.type = 'text/javascript';
            scriptTC.defer = true;
            scriptTC.src = cdnScriptTC;
            scriptTC.id = "transcy-script";
            document.head.appendChild(scriptTC);

            let linkTC = document.createElement('link');
            linkTC.rel = 'stylesheet'; 
            linkTC.type = 'text/css';
            linkTC.href = cdnLinkTC;
            linkTC.id = "transcy-style";
            document.head.appendChild(linkTC); 
        }


        if (document.readyState === 'interactive' || document.readyState === 'complete') {
            domLoadedTranscy();
        } else {
            document.addEventListener("DOMContentLoaded", function () {
                domLoadedTranscy();
            });
        }
    }
</script>
<!-- END app snippet -->


<!-- END app block --><!-- BEGIN app block: shopify://apps/bundler/blocks/bundler-script-append/7a6ae1b8-3b16-449b-8429-8bb89a62c664 --><script defer="defer">
	/**	Bundler script loader, version number: 2.0 */
	(function(){
		var loadScript=function(a,b){var c=document.createElement("script");c.type="text/javascript",c.readyState?c.onreadystatechange=function(){("loaded"==c.readyState||"complete"==c.readyState)&&(c.onreadystatechange=null,b())}:c.onload=function(){b()},c.src=a,document.getElementsByTagName("head")[0].appendChild(c)};
		appendScriptUrl('3778e7-42.myshopify.com');

		// get script url and append timestamp of last change
		function appendScriptUrl(shop) {

			var timeStamp = Math.floor(Date.now() / (1000*1*1));
			var timestampUrl = 'https://bundler.nice-team.net/app/shop/status/'+shop+'.js?'+timeStamp;

			loadScript(timestampUrl, function() {
				// append app script
				if (typeof bundler_settings_updated == 'undefined') {
					console.log('settings are undefined');
					bundler_settings_updated = 'default-by-script';
				}
				var scriptUrl = "https://cdn-bundler.nice-team.net/app/js/bundler-script.js?shop="+shop+"&"+bundler_settings_updated;
				loadScript(scriptUrl, function(){});
			});
		}
	})();

	var BndlrScriptAppended = true;
	
</script>

<!-- END app block --><link href="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/modal.css" rel="stylesheet" type="text/css" media="all">
<script src="https://cdn.shopify.com/extensions/a91f9cd9-7693-4b55-b0f8-a47f69a8cb0c/inbox-1267/assets/inbox-chat-loader.js" type="text/javascript" defer="defer"></script>
<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: 89786319171,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "product"};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>
  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script id="web-pixels-manager-setup">(function(){var wpmLoader=function(){"use strict";return function(e,d,r,n){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(!Boolean(null==(i=null==(a=window.Shopify)?void 0:a.analytics)?void 0:i.replayQueue)){var a,i;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,u,c,m,p,f,h,g,y,w,v,b,S,P=(u=(l={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+|)/}).modern,c=l.legacy,(m=navigator.userAgent).match(u)?"modern":m.match(c)?"legacy":"unknown"),C="modern"===P?"modern":"legacy",_=(null!=n?n:{modern:"",legacy:""})[C],O=[(p={baseUrl:d,hashVersion:r,buildTarget:C}).baseUrl,"/wpm","/b",p.hashVersion,"modern"===p.buildTarget?"m":"l",".js"].join(""),U=(f={version:r,bundleTarget:P,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint},h=f.version,g=f.bundleTarget,y=f.surface,w=f.pageUrl,v=f.monorailEndpoint,{emit:function(e){var d=e.status,r=e.errorMsg,n=(new Date).getTime(),o=JSON.stringify({metadata:{event_sent_at_ms:n},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:h,bundle_target:g,page_url:w,status:d,surface:y,error_msg:r},metadata:{event_created_at_ms:n}}]});if(!v)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(v,o)}catch(e){}var a=new XMLHttpRequest;try{return a.open("POST",v,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}});try{o.browserTarget=P,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,a=e.onerror,i=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,i&&(l.integrity=i,l.crossOrigin="anonymous"),s)for(var m in s)if(Object.prototype.hasOwnProperty.call(s,m))try{l.dataset[m]=s[m]}catch(e){}if(o&&l.addEventListener("load",o),a&&l.addEventListener("error",a),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:O,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null==(d=null==(e=window.Shopify)?void 0:e.analytics)?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 U.emit({status:"failed",errorMsg:"".concat(O," has failed to load")})},sri:(b=_,S=/^sha384-[A-Za-z0-9+/=]+$/,"string"==typeof b&&S.test(b)?_:""),scriptDataAttributes:o}),U.emit({status:"loading"})}catch(e){U.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}}}();wpmLoader({shopId: 89786319171,storefrontBaseUrl: "https://provencelia.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","d5bdd5d0","5476ea20","5acaffe6"],webPixelsConfigList: [{"id":"2693595459","configuration":"{\"projectId\":\"vfa94jrfph\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"ee6b6e3b9753873d6a9bf4fb40951aba","type":"APP","apiClientId":240074326017,"privacyPurposes":[],"capabilities":["advanced_dom_events"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"2664038723","configuration":"{\"shop\":\"3778e7-42.myshopify.com\",\"collect_url\":\"https:\\\/\\\/collect.bogos.io\\\/collect\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"3e41d63cd5ce800ba1fe97b89f532437","type":"APP","apiClientId":177733,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"2600567107","configuration":"{\"accountID\":\"3778e7-42.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5759672e7cde57b66acfb16697e8a212","type":"APP","apiClientId":36115447809,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"2450653507","configuration":"{\"accountID\":\"RU4w2u\",\"webPixelConfig\":\"eyJlbmFibGVBZGRlZFRvQ2FydEV2ZW50cyI6IHRydWV9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"524f6c1ee37bacdca7657a665bdca589","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"2319548739","configuration":"{\"accountID\":\"3778e7-42\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4145bba204614a4373da8642b9614157","type":"APP","apiClientId":12388204545,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"1854472515","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\",\\\"GT-MJW4XZZV\\\"],\\\"target_country\\\":\\\"FR\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/aTvtCILJksYaEIjgrf8-\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/HwvOCL7SksYaEIjgrf8-\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/259kCLvSksYaEIjgrf8-\\\",\\\"MC-5PJ28YX3TJ\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/-nVSCP_IksYaEIjgrf8-\\\",\\\"MC-5PJ28YX3TJ\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/H8weCLjSksYaEIjgrf8-\\\",\\\"MC-5PJ28YX3TJ\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/TI_rCMHSksYaEIjgrf8-\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-MNQ9NMY9KT\\\",\\\"AW-16910086152\\\/luqDCLXSksYaEIjgrf8-\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"5a723296a9ab7d2cddda5d574ded9c79","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"1804992835","configuration":"{\"pixel_id\":\"677906791417394\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"d72ab942028ee4f6bccc581083be605e","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"1804140867","configuration":"{\"tagID\":\"2612377977234\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"18031546ee651571ed29edbe71a3550b","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Provencelia","paymentSettings":{"currencyCode":"EUR"},"myshopifyDomain":"3778e7-42.myshopify.com","countryCode":"FR","storefrontUrl":"https:\/\/provencelia.com\/en-fr"},"customer":null,"cart":null,"checkout":null,"productVariants":[{"price":{"amount":34.9,"currencyCode":"EUR"},"product":{"title":"POSEIDON2 Pot 28x31cm abyss blue","vendor":"Provencelia","id":"14797823803715","untranslatedTitle":"POSEIDON2 Pot 28x31cm abyss blue","url":"\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","type":"Pot"},"id":"52631343923523","image":{"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695"},"sku":"POSEIDON2831-32","title":"Default Title","untranslatedTitle":"Default Title"}],"products":null,"purchasingCompany":null,"page":null},},"https://provencelia.com/cdn","03acfcf2w0af7eda4pd1156192m56eba1ce",{"modern":"","legacy":""},{"trekkieShim":true,"pageType":"product","resourceId":"14797823803715","shopId":"89786319171","storefrontBaseUrl":"https:\/\/provencelia.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"5476ea20\", \"5acaffe6\"]","isMerchantRequest":"false","hashVersion":"03acfcf2w0af7eda4pd1156192m56eba1ce","publish":"custom","events":"[[\"page_viewed\",{}],[\"product_viewed\",{\"productVariant\":{\"price\":{\"amount\":34.9,\"currencyCode\":\"EUR\"},\"product\":{\"title\":\"POSEIDON2 Pot 28x31cm abyss blue\",\"vendor\":\"Provencelia\",\"id\":\"14797823803715\",\"untranslatedTitle\":\"POSEIDON2 Pot 28x31cm abyss blue\",\"url\":\"\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en\",\"type\":\"Pot\"},\"id\":\"52631343923523\",\"image\":{\"src\":\"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695\"},\"sku\":\"POSEIDON2831-32\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"}}]]"});})();</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'EUR';
  var meta = {"product":{"id":14797823803715,"gid":"gid:\/\/shopify\/Product\/14797823803715","vendor":"Provencelia","type":"Pot","handle":"poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","variants":[{"id":52631343923523,"price":3490,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"sku":"POSEIDON2831-32"}],"remote":false},"page":{"pageType":"product","resourceType":"product","resourceId":14797823803715,"requestId":"a688e889-0002-4e2f-8171-bb61c9d69b03-1778122978"}};
  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 || [];
    window.ShopifyAnalytics.lib.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);
        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
          try {
            window.__TREKKIE_SHIM_QUEUE.push({
              from: 'trekkie-stub',
              method: method,
              args: args.slice(1)
            });
          } catch (e) {
            // no-op
          }
        }
        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: 89786319171,
      theme_id: 175220883779,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//provencelia.com/cdn/s/trekkie.storefront.f004f70532a80935fbc1843785865c9096eb1816.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//provencelia.com/cdn/s/trekkie.storefront.f004f70532a80935fbc1843785865c9096eb1816.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//provencelia.com/cdn/s/trekkie.storefront.f004f70532a80935fbc1843785865c9096eb1816.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":89786319171,"isMerchantRequest":null,"themeId":175220883779,"themeCityHash":"2609056057417927599","contentLanguage":"en","currency":"EUR","eventMetadataId":"f51e337e-e940-4b0a-a1b8-4dd13434bdb0"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"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":"product","resourceType":"product","resourceId":14797823803715,"requestId":"a688e889-0002-4e2f-8171-bb61c9d69b03-1778122978","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        window.ShopifyAnalytics.lib.track("Viewed Product",{"currency":"EUR","variantId":52631343923523,"productId":14797823803715,"productGid":"gid:\/\/shopify\/Product\/14797823803715","name":"POSEIDON2 Pot 28x31cm abyss blue","price":"34.90","sku":"POSEIDON2831-32","brand":"Provencelia","variant":null,"category":"Pot","nonInteraction":true,"remote":false},undefined,undefined,{"shopifyEmitted":true});
      window.ShopifyAnalytics.lib.track("monorail:\/\/trekkie_storefront_viewed_product\/1.1",{"currency":"EUR","variantId":52631343923523,"productId":14797823803715,"productGid":"gid:\/\/shopify\/Product\/14797823803715","name":"POSEIDON2 Pot 28x31cm abyss blue","price":"34.90","sku":"POSEIDON2831-32","brand":"Provencelia","variant":null,"category":"Pot","nonInteraction":true,"remote":false,"referer":"https:\/\/provencelia.com\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1\u0026_sid=b867d9fbb\u0026_ss=r"});
      }
    });

    var eventsListenerScript = document.createElement('script');
    eventsListenerScript.async = true;
    eventsListenerScript.src = "//provencelia.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
  defer
 src="https://provencelia.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.3.1.min.js"
  data-application="storefront-renderer"
  data-shop-id="89786319171"
  data-render-region="gcp-europe-west1"
  data-page-type="product"
  data-theme-instance-id="175220883779"
  data-theme-name="Prestige"
  data-theme-version="10.3.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"
  data-shs-beacon-endpoint="https://provencelia.com/api/collect"
></script>
<script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};window.ShopifyAnalytics.performance = window.ShopifyAnalytics.performance || {};(function () {const LONG_FRAME_THRESHOLD = 50;const longAnimationFrames = [];let activeRafId = null;function collectLongFrames() {let previousTime = null;function rafMonitor(now) {if (activeRafId === null) {return;}const delta = now - previousTime;if (delta > LONG_FRAME_THRESHOLD) {longAnimationFrames.push({startTime: previousTime,endTime: now,});}previousTime = now;activeRafId = requestAnimationFrame(rafMonitor);}previousTime = performance.now();activeRafId = requestAnimationFrame(rafMonitor);}if (!PerformanceObserver.supportedEntryTypes.includes('long-animation-frame')) {collectLongFrames();const timeoutId = setTimeout(() => {cancelAnimationFrame(activeRafId);}, 10_000);window.ShopifyAnalytics.performance.getLongAnimationFrames = function(stopCollection = false) {if (stopCollection) {clearTimeout(timeoutId);cancelAnimationFrame(activeRafId);}return longAnimationFrames;};}})();</script></head>

  

  <body class="features--button-transition features--zoom-image  color-scheme color-scheme--scheme-1"><template id="drawer-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <dialog-close-button style="display: contents">
          <button type="button" part="close-button tap-area" aria-label="Close"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
        </dialog-close-button>
      </header>

      <div part="body">
        <slot></slot>
      </div>

      <footer part="footer">
        <slot name="footer"></slot>
      </footer>
    </div>
  </div>
</template><template id="modal-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <dialog-close-button style="display: contents">
          <button type="button" part="close-button tap-area" aria-label="Close"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
        </dialog-close-button>
      </header>

      <div part="body">
        <slot></slot>
      </div>
    </div>
  </div>
</template><template id="popover-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <dialog-close-button style="display: contents">
          <button type="button" part="close-button tap-area" aria-label="Close"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
        </dialog-close-button>
      </header>

      <div part="body">
        <slot></slot>
      </div>
    </div>
  </div>
</template><template id="header-search-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <slot></slot>
    </div>
  </div>
</template><template id="video-media-default-template">
  <slot></slot>

  <svg part="play-button" fill="none" width="48" height="48" viewbox="0 0 48 48">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M48 24c0 13.255-10.745 24-24 24S0 37.255 0 24 10.745 0 24 0s24 10.745 24 24Zm-18 0-9-6.6v13.2l9-6.6Z" fill="var(--play-button-background, #FFFFFF)"/>
  </svg>
</template><loading-bar class="loading-bar" aria-hidden="true"></loading-bar>
    <a href="#main" allow-hash-change class="skip-to-content sr-only">Skip to content</a>

    <span id="header-scroll-tracker" style="position: absolute; width: 1px; height: 1px; top: var(--header-scroll-tracker-offset, 10px); left: 0;"></span><!-- BEGIN sections: header-group -->
<aside id="shopify-section-sections--24055303274819__announcement-bar" class="shopify-section shopify-section-group-header-group shopify-section--announcement-bar"><style>
    :root {
      --announcement-bar-is-sticky: 0;--header-scroll-tracker-offset: var(--announcement-bar-height);}#shopify-section-sections--24055303274819__announcement-bar {
      --announcement-bar-font-size: 0.75rem;
    }

    @media screen and (min-width: 999px) {
      #shopify-section-sections--24055303274819__announcement-bar {
        --announcement-bar-font-size: 0.8125rem;
      }
    }
  </style>

  <height-observer variable="announcement-bar">
    <div class="announcement-bar color-scheme color-scheme--scheme-1"><carousel-prev-button aria-controls="carousel-sections--24055303274819__announcement-bar" class="contents">
          <button type="button" class="tap-area">
            <span class="sr-only">Previous</span><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-arrow-left  icon--direction-aware" viewbox="0 0 16 18">
      <path d="M11 1 3 9l8 8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
        </carousel-prev-button><announcement-bar-carousel allow-swipe autoplay="5" id="carousel-sections--24055303274819__announcement-bar" class="announcement-bar__carousel"><p class="prose heading is-selected" ><strong>FRENCH DAYS: 15% off</strong> on pots and saucers when you spend €400 or more using the code <strong>FRENCHDAYS</strong> 🐓</p><p class="prose heading" >🌿 <strong>NEW</strong>: Discover our <a href="https://provencelia.com/fr-fr/collections/lot-pot-de-fleurs-olivier">stylish Olivier & Pot sets</a></p></announcement-bar-carousel><carousel-next-button aria-controls="carousel-sections--24055303274819__announcement-bar" class="contents">
          <button type="button" class="tap-area">
            <span class="sr-only">Next</span><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-arrow-right  icon--direction-aware" viewbox="0 0 16 18">
      <path d="m5 17 8-8-8-8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
        </carousel-next-button></div>
  </height-observer>

  <script>
    document.documentElement.style.setProperty('--announcement-bar-height', `${document.getElementById('shopify-section-sections--24055303274819__announcement-bar').clientHeight.toFixed(2)}px`);
  </script><style> #shopify-section-sections--24055303274819__announcement-bar .heading {font-family: var(--text-font-family); font-weight: normal;} </style></aside><header id="shopify-section-sections--24055303274819__header" class="shopify-section shopify-section-group-header-group shopify-section--header"><style>
  :root {
    --header-is-sticky: 1;
  }

  #shopify-section-sections--24055303274819__header {
    --header-grid: "primary-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
    --header-padding-block: 1rem;
    --header-transparent-header-text-color: 255 255 255;
    --header-separation-border-color: 0 0 0 / 0;

    position: relative;
    z-index: 4;
  }

  @media screen and (min-width: 700px) {
    #shopify-section-sections--24055303274819__header {
      --header-padding-block: 1.2rem;
    }
  }

  @media screen and (min-width: 1000px) {
    #shopify-section-sections--24055303274819__header {--header-grid: "logo primary-nav secondary-nav" / minmax(max-content, 1fr) auto minmax(max-content, 1fr);}
  }#shopify-section-sections--24055303274819__header {
      position: sticky;
      top: 0;
    }

    .shopify-section--announcement-bar ~ #shopify-section-sections--24055303274819__header {
      top: calc(var(--announcement-bar-is-sticky, 0) * var(--announcement-bar-height, 0px));
    }#shopify-section-sections--24055303274819__header {
      --header-logo-width: 100px;
    }

    @media screen and (min-width: 700px) {
      #shopify-section-sections--24055303274819__header {
        --header-logo-width: 145px;
      }
    }</style>

<height-observer variable="header">
  <x-header  class="header color-scheme color-scheme--scheme-4">
      <a href="/en-fr" class="header__logo"><span class="sr-only">Provencelia</span><img src="//provencelia.com/cdn/shop/files/Provencelia-Dark.png?v=1769100198&amp;width=600" alt="" srcset="//provencelia.com/cdn/shop/files/Provencelia-Dark.png?v=1769100198&amp;width=290 290w, //provencelia.com/cdn/shop/files/Provencelia-Dark.png?v=1769100198&amp;width=435 435w" width="600" height="147" sizes="145px" class="header__logo-image"></a>
    
<nav class="header__primary-nav header__primary-nav--center" aria-label="Main navigation">
        <button type="button" aria-controls="sidebar-menu" class="md:hidden">
          <span class="sr-only">Menu</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-hamburger" viewbox="0 0 24 24">
      <path d="M1 19h22M1 12h22M1 5h22" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/>
    </svg></button><ul class="contents unstyled-list md-max:hidden">

              <li class="header__primary-nav-item" data-title="Flower pots"><dropdown-menu-disclosure follow-summary-link trigger="hover"><details class="header__menu-disclosure">
                      <summary data-follow-link="/en-fr/collections/pots-de-fleurs" >Flower pots</summary><ul class="header__dropdown-menu  unstyled-list" role="list"><li><dropdown-menu-disclosure follow-summary-link trigger="hover" class="contents">
                                  <details class="header__menu-disclosure">
                                    <summary data-follow-link="/en-fr/collections/ceramic-flower-pots" class="link-faded-reverse">
                                      <div class="h-stack gap-4 justify-between">Ceramic pots<svg aria-hidden="true" focusable="false" fill="none" width="8" class="icon icon-arrow-right  icon--direction-aware" viewbox="0 0 16 18">
      <path d="m5 17 8-8-8-8" stroke="currentColor" stroke-linecap="square"/>
    </svg></div>
                                    </summary>

                                    <ul class="header__dropdown-menu unstyled-list" role="list"><li>
                                          <a href="/en-fr/collections/ceramic-flower-pots" class="link-faded-reverse" >Ceramic pots</a>
                                        </li><li>
                                          <a href="/en-fr/collections/xxl-flower-pots" class="link-faded-reverse" >XXL Pots</a>
                                        </li></ul>
                                  </details>
                                </dropdown-menu-disclosure></li><li><a href="/en-fr/collections/pots-de-fleur-en-beton-fibre" class="link-faded-reverse" >Fiber-reinforced concrete pots</a></li><li><a href="/en-fr/collections/pots-de-fleurs-en-acier-inoxydable" class="link-faded-reverse" >Stainless steel pots</a></li><li><a href="/en-fr/collections/pots-en-acier-galvanise-1" class="link-faded-reverse" >Pots en métal</a></li><li><a href="/en-fr/collections/lot-pot-de-fleurs-olivier" class="link-faded-reverse" >Duo Olivier & Pot design</a></li><li><a href="/en-fr/collections/cache-pots" class="link-faded-reverse" >Planters</a></li><li><a href="/en-fr/collections/jardinieres" class="link-faded-reverse" >Planters</a></li><li><a href="/en-fr/collections/all-saucers" class="link-faded-reverse" >Saucers</a></li><li><a href="/en-fr/collections/pieds-pour-pots-de-fleurs" class="link-faded-reverse" >Pieds pour pots</a></li><li><a href="/en-fr/collections/all-soil" class="link-faded-reverse" >Soils</a></li></ul></details></dropdown-menu-disclosure></li>

              <li class="header__primary-nav-item" data-title="🌿Duo Olivier &amp; Pot Design"><a href="/en-fr/collections/lot-pot-de-fleurs-olivier" class="block" >🌿Duo Olivier & Pot Design</a></li>

              <li class="header__primary-nav-item" data-title="Garden furniture"><dropdown-menu-disclosure follow-summary-link trigger="hover"><details class="header__menu-disclosure">
                      <summary data-follow-link="/en-fr/collections/mobilier-de-jardin" >Garden furniture</summary><ul class="header__dropdown-menu header__dropdown-menu--restrictable unstyled-list" role="list"><li><a href="/en-fr/collections/abris-de-jardin" class="link-faded-reverse" >Garden sheds</a></li></ul></details></dropdown-menu-disclosure></li>

              <li class="header__primary-nav-item" data-title="New Arrivals"><dropdown-menu-disclosure follow-summary-link trigger="hover"><details class="header__menu-disclosure">
                      <summary data-follow-link="/en-fr/collections/nouveautes-maison-jardin" >New Arrivals</summary><ul class="header__dropdown-menu header__dropdown-menu--restrictable unstyled-list" role="list"><li><a href="/en-fr/collections/nouveautes-maison-jardin" class="link-faded-reverse" >New Arrivals</a></li><li><a href="/en-fr/products/e-carte-cadeau-provencelia" class="link-faded-reverse" >E-gift card</a></li></ul></details></dropdown-menu-disclosure></li>

              <li class="header__primary-nav-item" data-title="Gardening tips"><a href="/en-fr/blogs/conseils-jardinage" class="block" >Gardening tips</a></li>

              <li class="header__primary-nav-item" data-title="Contact"><a href="/en-fr/pages/contact" class="block" >Contact</a></li></ul></nav><nav class="header__secondary-nav" aria-label="Secondary navigation"><ul class="contents unstyled-list"><li class="localization-selectors md-max:hidden"><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization-header-nav-sections--24055303274819__header-country" aria-label="Change country or currency" aria-expanded="false"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" class="country-flag"><span>EUR €</span><svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization-header-nav-sections--24055303274819__header-country" initial-focus="[aria-selected='true']" class="popover popover--bottom-end color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Country</p><form method="post" action="/en-fr/localization" id="localization-form-header-nav-sections--24055303274819__header-country" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="BE" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60" alt="Belgium" srcset="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Belgium (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="FR" aria-selected="true"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>France (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="IT" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60" alt="Italy" srcset="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Italy (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="LU" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60" alt="Luxembourg" srcset="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Luxembourg (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="MC" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60" alt="Monaco" srcset="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Monaco (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="NL" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60" alt="Netherlands" srcset="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Netherlands (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="ES" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60" alt="Spain" srcset="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Spain (EUR €)</span>
              </button></x-listbox></form></x-popover>
    </div><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization-header-nav-sections--24055303274819__header-locale" aria-label="Change language" aria-expanded="false">English<svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization-header-nav-sections--24055303274819__header-locale" initial-focus="[aria-selected='true']" class="popover popover--bottom-end color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Language</p><form method="post" action="/en-fr/localization" id="localization-form-header-nav-sections--24055303274819__header-locale" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="locale_code" class="popover__value-option" role="option" value="fr" aria-selected="false">Français</button><button type="submit" name="locale_code" class="popover__value-option" role="option" value="en" aria-selected="true">English</button></x-listbox></form></x-popover>
    </div></li><li class="header__account-link sm-max:hidden">
            <a href="https://provencelia.com/customer_authentication/redirect?locale=en&region_country=FR">
              <span class="sr-only">Login</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-account" viewbox="0 0 24 24">
      <path d="M16.125 8.75c-.184 2.478-2.063 4.5-4.125 4.5s-3.944-2.021-4.125-4.5c-.187-2.578 1.64-4.5 4.125-4.5 2.484 0 4.313 1.969 4.125 4.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M3.017 20.747C3.783 16.5 7.922 14.25 12 14.25s8.217 2.25 8.984 6.497" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
    </svg></a>
          </li><li class="header__search-link">
            <a href="/en-fr/search" aria-controls="header-search-sections--24055303274819__header">
              <span class="sr-only">Search</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-search" viewbox="0 0 24 24">
      <path d="M10.364 3a7.364 7.364 0 1 0 0 14.727 7.364 7.364 0 0 0 0-14.727Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
      <path d="M15.857 15.858 21 21.001" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
    </svg></a>
          </li><li class="relative header__cart-link">
          <a href="/en-fr/cart" aria-controls="cart-drawer" data-no-instant>
            <span class="sr-only">Cart</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-cart" viewbox="0 0 24 24"><path d="M10 7h13l-4 9H7.5L5 3H1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
          <circle cx="9" cy="20" r="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
          <circle cx="17" cy="20" r="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg><cart-dot class="header__cart-dot"></cart-dot>
          </a>
        </li>
      </ul>
    </nav><header-search id="header-search-sections--24055303274819__header" class="header-search">
  <div class="container">
    <form id="predictive-search-form" action="/en-fr/search" method="GET" aria-owns="header-predictive-search" class="header-search__form" role="search">
      <div class="header-search__form-control"><svg aria-hidden="true" fill="none" focusable="false" width="20" class="icon icon-search" viewbox="0 0 24 24">
      <path d="M10.364 3a7.364 7.364 0 1 0 0 14.727 7.364 7.364 0 0 0 0-14.727Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
      <path d="M15.857 15.858 21 21.001" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
    </svg><input type="search" name="q" spellcheck="false" class="header-search__input h5 sm:h4" aria-label="Search" placeholder="Search...">

        <dialog-close-button class="contents">
          <button type="button">
            <span class="sr-only">Close</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
        </dialog-close-button>
      </div>
    </form>

    <predictive-search id="header-predictive-search" class="predictive-search">
      <div class="predictive-search__content" slot="results"></div>
    </predictive-search>
  </div>
</header-search><template id="header-sidebar-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <dialog-close-button class="contents">
          <button type="button" part="close-button tap-area" aria-label="Close"><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
        </dialog-close-button>
      </header>

      <div part="panel-list">
        <slot name="main-panel"></slot><slot name="collapsible-panel"></slot></div>
    </div>
  </div>
</template>

<header-sidebar id="sidebar-menu" class="header-sidebar drawer drawer--sm color-scheme color-scheme--scheme-2" template="header-sidebar-template" open-from="left"><div class="header-sidebar__main-panel" slot="main-panel">
    <div class="header-sidebar__scroller">
      <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><div class="header-sidebar__linklist-button h6" style="display: flex; align-items: center; justify-content: space-between; width: 100%;">
                
                <a href="/en-fr/collections/pots-de-fleurs" style="text-decoration: none; color: inherit; flex-grow: 1;">Flower pots</a>
                
                <button type="button" aria-controls="header-panel-1" aria-expanded="false" style="background: transparent; border: none; cursor: pointer; padding: 10px; margin-right: -10px; display: flex;"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewbox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
                
              </div></li><li><a href="/en-fr/collections/lot-pot-de-fleurs-olivier" class="header-sidebar__linklist-button h6">🌿Duo Olivier & Pot Design</a></li><li><div class="header-sidebar__linklist-button h6" style="display: flex; align-items: center; justify-content: space-between; width: 100%;">
                
                <a href="/en-fr/collections/mobilier-de-jardin" style="text-decoration: none; color: inherit; flex-grow: 1;">Garden furniture</a>
                
                <button type="button" aria-controls="header-panel-3" aria-expanded="false" style="background: transparent; border: none; cursor: pointer; padding: 10px; margin-right: -10px; display: flex;"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewbox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
                
              </div></li><li><div class="header-sidebar__linklist-button h6" style="display: flex; align-items: center; justify-content: space-between; width: 100%;">
                
                <a href="/en-fr/collections/nouveautes-maison-jardin" style="text-decoration: none; color: inherit; flex-grow: 1;">New Arrivals</a>
                
                <button type="button" aria-controls="header-panel-4" aria-expanded="false" style="background: transparent; border: none; cursor: pointer; padding: 10px; margin-right: -10px; display: flex;"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewbox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
                
              </div></li><li><a href="/en-fr/blogs/conseils-jardinage" class="header-sidebar__linklist-button h6">Gardening tips</a></li><li><a href="/en-fr/pages/contact" class="header-sidebar__linklist-button h6">Contact</a></li></ul>
    </div><div class="header-sidebar__footer"><a href="https://provencelia.com/customer_authentication/redirect?locale=en&region_country=FR" class="text-with-icon smallcaps sm:hidden"><svg aria-hidden="true" fill="none" focusable="false" width="20" class="icon icon-account" viewbox="0 0 24 24">
      <path d="M16.125 8.75c-.184 2.478-2.063 4.5-4.125 4.5s-3.944-2.021-4.125-4.5c-.187-2.578 1.64-4.5 4.125-4.5 2.484 0 4.313 1.969 4.125 4.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M3.017 20.747C3.783 16.5 7.922 14.25 12 14.25s8.217 2.25 8.984 6.497" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
    </svg>Login</a><div class="localization-selectors"><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization-header-sidebar-sections--24055303274819__header-country" aria-label="Change country or currency" aria-expanded="false"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" class="country-flag"><span>EUR €</span><svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization-header-sidebar-sections--24055303274819__header-country" initial-focus="[aria-selected='true']" class="popover popover--top-start color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Country</p><form method="post" action="/en-fr/localization" id="localization-form-header-sidebar-sections--24055303274819__header-country" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="BE" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60" alt="Belgium" srcset="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Belgium (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="FR" aria-selected="true"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>France (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="IT" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60" alt="Italy" srcset="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Italy (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="LU" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60" alt="Luxembourg" srcset="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Luxembourg (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="MC" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60" alt="Monaco" srcset="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Monaco (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="NL" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60" alt="Netherlands" srcset="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Netherlands (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="ES" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60" alt="Spain" srcset="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Spain (EUR €)</span>
              </button></x-listbox></form></x-popover>
    </div><span class="localization-selectors__separator" aria-hidden="true"></span><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization-header-sidebar-sections--24055303274819__header-locale" aria-label="Change language" aria-expanded="false">English<svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization-header-sidebar-sections--24055303274819__header-locale" initial-focus="[aria-selected='true']" class="popover popover--top-start color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Language</p><form method="post" action="/en-fr/localization" id="localization-form-header-sidebar-sections--24055303274819__header-locale" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="locale_code" class="popover__value-option" role="option" value="fr" aria-selected="false">Français</button><button type="submit" name="locale_code" class="popover__value-option" role="option" value="en" aria-selected="true">English</button></x-listbox></form></x-popover>
    </div></div></div></div><header-sidebar-collapsible-panel class="header-sidebar__collapsible-panel" slot="collapsible-panel">
      <div class="header-sidebar__scroller"><div id="header-panel-1" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewbox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>Flower pots</button>

          <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><accordion-disclosure>
                    <details class="accordion__disclosure group" >
                      <summary class="header-sidebar__linklist-button h6">
                        
                        <a href="/en-fr/collections/ceramic-flower-pots" onclick="event.stopPropagation();" style="text-decoration: none; color: inherit;">Ceramic pots</a>
                        <span class="animated-plus group-expanded:rotate" aria-hidden="true"></span> 
                      </summary>

                      <div class="header-sidebar__nested-linklist"><a href="/en-fr/collections/ceramic-flower-pots" class="link-faded-reverse">Ceramic pots</a><a href="/en-fr/collections/xxl-flower-pots" class="link-faded-reverse">XXL Pots</a></div>
                    </details>
                  </accordion-disclosure></li><li><a href="/en-fr/collections/pots-de-fleur-en-beton-fibre" class="header-sidebar__linklist-button h6">Fiber-reinforced concrete pots</a></li><li><a href="/en-fr/collections/pots-de-fleurs-en-acier-inoxydable" class="header-sidebar__linklist-button h6">Stainless steel pots</a></li><li><a href="/en-fr/collections/pots-en-acier-galvanise-1" class="header-sidebar__linklist-button h6">Pots en métal</a></li><li><a href="/en-fr/collections/lot-pot-de-fleurs-olivier" class="header-sidebar__linklist-button h6">Duo Olivier & Pot design</a></li><li><a href="/en-fr/collections/cache-pots" class="header-sidebar__linklist-button h6">Planters</a></li><li><a href="/en-fr/collections/jardinieres" class="header-sidebar__linklist-button h6">Planters</a></li><li><a href="/en-fr/collections/all-saucers" class="header-sidebar__linklist-button h6">Saucers</a></li><li><a href="/en-fr/collections/pieds-pour-pots-de-fleurs" class="header-sidebar__linklist-button h6">Pieds pour pots</a></li><li><a href="/en-fr/collections/all-soil" class="header-sidebar__linklist-button h6">Soils</a></li></ul></div><div id="header-panel-3" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewbox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>Garden furniture</button>

          <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><a href="/en-fr/collections/abris-de-jardin" class="header-sidebar__linklist-button h6">Garden sheds</a></li></ul></div><div id="header-panel-4" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewbox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>New Arrivals</button>

          <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><a href="/en-fr/collections/nouveautes-maison-jardin" class="header-sidebar__linklist-button h6">New Arrivals</a></li><li><a href="/en-fr/products/e-carte-cadeau-provencelia" class="header-sidebar__linklist-button h6">E-gift card</a></li></ul></div></div>
    </header-sidebar-collapsible-panel></header-sidebar></x-header>
</height-observer>

<script>
  document.documentElement.style.setProperty('--header-height', `${document.getElementById('shopify-section-sections--24055303274819__header').clientHeight.toFixed(2)}px`);
</script>


<style> #shopify-section-sections--24055303274819__header .header__primary-nav {font-size: var(--text-h4);} #shopify-section-sections--24055303274819__header .mega-menu {--mega-menu-gap: 4.5rem;} </style></header>
<!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
<section id="shopify-section-sections--24055303340355__cart-drawer" class="shopify-section shopify-section-group-overlay-group shopify-section--cart-drawer"><cart-drawer id="cart-drawer" class="cart-drawer drawer drawer--center-body color-scheme color-scheme--scheme-1" initial-focus="false" handle-editor-events>
  <p class="h4" slot="header">Cart</p><p class="h5 text-center">Your cart is empty</p></cart-drawer>

</section>
<!-- END sections: overlay-group --><main id="main" class="anchor">
      <section id="shopify-section-template--24104113733955__main" class="shopify-section shopify-section--main-product"><style>
  #shopify-section-template--24104113733955__main {
    --product-grid: "product-gallery" "product-info" "product-content" / minmax(0, 1fr);
  }

  @media screen and (min-width: 1000px) {
    #shopify-section-template--24104113733955__main {--product-grid: "product-gallery product-info" auto "product-content product-info" minmax(0, 1fr) / minmax(0, 0.5fr) minmax(0, 0.5fr);}
  }
</style><div class="section-spacing section-spacing--tight color-scheme color-scheme--scheme-1 color-scheme--bg-262da8014d7d6e3c30cd4b6a9bb7a338">
  <div class="container container--lg">
    <product-rerender id="product-info-14797823803715-template--24104113733955__main" observe-form="product-form-main-14797823803715-template--24104113733955__main" allow-partial-rerender>
      <div class="product"><style>@media screen and (max-width: 999px) {
      #shopify-section-template--24104113733955__main {
        --product-gallery-carousel-grid: auto / auto-flow min(28rem, 75vw);
        --product-gallery-carousel-gap: 0.125rem;
        --product-gallery-carousel-scroll-snap-type: none;
      }
    }@media screen and (min-width: 1000px) {
    #shopify-section-template--24104113733955__main {/* Thumbnails on the left */
        --product-gallery-flex-direction: row-reverse;
        --product-gallery-thumbnail-list-grid-auto-flow: row;--product-gallery-thumbnail-list-max-height: 45rem;}}
</style>

<product-gallery class="product-gallery" form="product-form-main-14797823803715-template--24104113733955__main" filtered-indexes="[]"  allow-zoom="3"><open-lightbox-button class="contents">
      <button class="product-gallery__zoom-button circle-button circle-button--sm md:hidden">
        <span class="sr-only">Zoom in on the image</span><svg aria-hidden="true" focusable="false" width="14" class="icon icon-zoom" viewbox="0 0 14 14">
      <path d="M9.432 9.432a4.94 4.94 0 1 1-6.985-6.985 4.94 4.94 0 0 1 6.985 6.985Zm0 0L13 13" fill="none" stroke="currentColor" stroke-linecap="square"/>
      <path d="M6 3.5V6m0 2.5V6m0 0H3.5h5" fill="none" stroke="currentColor" />
    </svg></button>
    </open-lightbox-button><div class="product-gallery__image-list"><div class="contents"><scroll-carousel adaptive-height id="product-gallery-carousel-14797823803715-template--24104113733955__main" class="product-gallery__carousel scroll-area full-bleed md:unbleed" role="region"><div class="product-gallery__media snap-center is-initial" data-media-type="image" data-media-id="57568777863491" role="group" aria-label="Item 1 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=2000 2000w" width="2000" height="2000" loading="eager" fetchpriority="high" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="57568777929027" role="group" aria-label="Item 2 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=2000 2000w" width="2000" height="2000" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="52933488148803" role="group" aria-label="Item 3 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1500" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1400 1400w" width="1500" height="1500" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="58539757994307" role="group" aria-label="Item 4 of 4" ><img src="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=200 200w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=300 300w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=400 400w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=500 500w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=600 600w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=700 700w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=800 800w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=2000 2000w" width="2000" height="2000" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div></scroll-carousel></div></div><safe-sticky class="product-gallery__thumbnail-list hidden md:block">
        <product-gallery-navigation align-selected aria-controls="product-gallery-carousel-14797823803715-template--24104113733955__main" class="product-gallery__thumbnail-scroller bleed md:unbleed"><button type="button" class="product-gallery__thumbnail"  data-media-type="image" data-media-position="1" data-media-id="57568777863491" aria-current="true" aria-label="Go to item 1"><img src="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=56 56w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=112 112w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=168 168w" width="2000" height="2000" sizes="56px" class="object-contain">
              </button><button type="button" class="product-gallery__thumbnail"  data-media-type="image" data-media-position="2" data-media-id="57568777929027" aria-current="false" aria-label="Go to item 2"><img src="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=56 56w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=112 112w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=168 168w" width="2000" height="2000" sizes="56px" class="object-contain">
              </button><button type="button" class="product-gallery__thumbnail"  data-media-type="image" data-media-position="3" data-media-id="52933488148803" aria-current="false" aria-label="Go to item 3"><img src="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1500" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=56 56w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=112 112w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=168 168w" width="1500" height="1500" sizes="56px" class="object-contain">
              </button><button type="button" class="product-gallery__thumbnail"  data-media-type="image" data-media-position="4" data-media-id="58539757994307" aria-current="false" aria-label="Go to item 4"><img src="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=56 56w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=112 112w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=168 168w" width="2000" height="2000" sizes="56px" class="object-contain">
              </button></product-gallery-navigation>
      </safe-sticky></product-gallery>
<safe-sticky class="product-info">
  <div class="product-info__block-list"><div class="product-info__block-item" data-block-id="badges_Hxexaj" data-block-type="badges" ><badge-list class="badge-list"><on-sale-badge class="badge badge--on-sale">Save 65,00€</on-sale-badge></badge-list></div><div class="product-info__block-item" data-block-id="title" data-block-type="title" ><h1 class="product-title h2">POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant</h1></div><div class="product-info__block-item" data-block-id="price" data-block-type="price" ><div class="v-stack"><price-list class="price-list price-list--product"><sale-price class="h4 text-on-sale">
      <span class="sr-only">Sale price</span>34,90€</sale-price><compare-at-price class="h5 text-subdued line-through">
        <span class="sr-only">Regular price</span>99,90€</compare-at-price></price-list></div></div><div class="product-info__block-item" data-block-id="AckdHckRRUkduYzNWW__klaviyo_reviews_average_rating_MeMfQr-1" data-block-type="@app" ><div id="shopify-block-AckdHckRRUkduYzNWW__klaviyo_reviews_average_rating_MeMfQr" class="shopify-block shopify-app-block">




<span class="klaviyo-star-rating-widget" data-id="14797823803715" data-product-title="POSEIDON2 Pot 28x31cm abyss blue" data-product-type="Pot" style="display: block;"></span>

<span id="fulfilled-style"/>


</div></div><div class="product-info__block-item" data-block-id="text_3VeqxQ" data-block-type="text" ><div class="prose"><div class="metafield-rich_text_field"><p>Discover the authenticity of the Poseidon2 collection with this hand-crafted glazed terracotta pot. Each piece is unique, showcasing exceptional artisanal expertise. Designed to withstand outdoor elements, this pot combines durability and aesthetics. Offer your plants an exceptional setting, the result of meticulous and passionate craftsmanship. The Poseidon collection, an invitation to celebrate the beauty of artisanal creations.</p><p>Evoking the depths of the ocean, abyss blue brings elegance and character to your plants and your decor.</p><p>Each pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.</p></div><p></p></div></div><div class="product-info__block-item" data-block-id="product_variations_color" data-block-type="product-variations-color" ><div class="variant-picker v-stack gap-4">
    <div class="variant-picker__option v-stack gap-2"><div class="h-stack gap-1">
          <p class="text-subdued">Color:</p>
          <span>Abyss Blue</span>
        </div><div class="variant-picker__option-values h-stack gap-2.5 wrap"><a href="/en-fr/products/poseidon-pot-28x31cm-sky-blue" class="color-swatch  rounded-full border" data-tooltip="Sky Blue" style="--swatch-background: linear-gradient(to right, #89d3f5, #89d3f5)">
    <span class="sr-only">Sky Blue</span>
  </a><a href="/en-fr/products/pot-poseidon-28x31cm-majorelle-blue" class="color-swatch  rounded-full border" data-tooltip="Majorelle Blue" style="--swatch-background: linear-gradient(to right, #005BD3, #005BD3)">
    <span class="sr-only">Majorelle Blue</span>
  </a><a href="/en-fr/products/poseidon-pot-28x31cm-cream" class="color-swatch  rounded-full border" data-tooltip="Cream" style="--swatch-background: linear-gradient(to right, #e9e9cb, #e9e9cb)">
    <span class="sr-only">Cream</span>
  </a><a href="/en-fr/products/pot-poseidon-28x31cm-jade-en" class="color-swatch  rounded-full border" data-tooltip="Jade" style="--swatch-background: linear-gradient(to right, #2F6036, #2F6036)">
    <span class="sr-only">Jade</span>
  </a><a href="/en-fr/products/pot-poseidon-28x31cm-yellow-sahara" class="color-swatch  rounded-full border" data-tooltip="Sahara Yellow" style="--swatch-background: linear-gradient(to right, #d59a48, #d59a48)">
    <span class="sr-only">Sahara Yellow</span>
  </a><a href="/en-fr/products/pot-poseidon-28x31cm-tropical-orange" class="color-swatch  rounded-full border" data-tooltip="Orange tropical" style="--swatch-background: linear-gradient(to right, #D15A1A, #D15A1A)">
    <span class="sr-only">Orange tropical</span>
  </a><a href="/en-fr/products/pot-poseidon-28x31cm-tropical-green" class="color-swatch  rounded-full border" data-tooltip="Tropical Green" style="--swatch-background: linear-gradient(to right, #606f2d, #606f2d)">
    <span class="sr-only">Tropical Green</span>
  </a><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en" class="color-swatch is-selected rounded-full border" data-tooltip="Abyss Blue" style="--swatch-background: linear-gradient(to right, #0c2e31, #0c2e31)">
    <span class="sr-only">Abyss Blue</span>
  </a><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-steel-blue" class="color-swatch  rounded-full border" data-tooltip="Iron Blue" style="--swatch-background: linear-gradient(to right, #4c7577, #4c7577)">
    <span class="sr-only">Iron Blue</span>
  </a><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-ultramarine-blue-en" class="color-swatch  rounded-full border" data-tooltip="Ultramarine Blue" style="--swatch-background: linear-gradient(to right, #2e5081, #2e5081)">
    <span class="sr-only">Ultramarine Blue</span>
  </a><a href="/en-fr/products/poseidon2-28x31-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-black" class="color-swatch  rounded-full border" data-tooltip="Black" style="--swatch-background: linear-gradient(to right, #000000, #000000)">
    <span class="sr-only">Black</span>
  </a><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-brick-red" class="color-swatch  rounded-full border" data-tooltip="Brick Red" style="--swatch-background: linear-gradient(to right, #861111, #861111)">
    <span class="sr-only">Brick Red</span>
  </a><a href="/en-fr/products/poseidon2-28x31-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-tropical-red-en" class="color-swatch  rounded-full border" data-tooltip="Tropical Red" style="--swatch-background: linear-gradient(to right, #991b1b, #991b1b)">
    <span class="sr-only">Tropical Red</span>
  </a><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-lake-green-en" class="color-swatch  rounded-full border" data-tooltip="Lake Green" style="--swatch-background: linear-gradient(to right, #a2934b, #a2934b)">
    <span class="sr-only">Lake Green</span>
  </a></div>
    </div>
  </div>
</div><div class="product-info__block-item" data-block-id="product_variations_size" data-block-type="product-variations-size" ><div class="variant-picker v-stack gap-4">
    <div class="variant-picker__option v-stack gap-2">
      <div class="variant-picker__option-info h-stack justify-between gap-2">
        <div class="h-stack gap-1"><p class="text-subdued">Size:</p>
            <span>M (28 x 31 cm)</span></div></div>

      <div class="variant-picker__option-values h-stack gap-2.5 wrap"><a class="block-swatch  is-selected" href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en" 
><span>M (28 x 31 cm)</span>
    </a><a class="block-swatch" href="/en-fr/products/poseidon2-36x43cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en" 
><span>L (36 x 43 cm)</span>
    </a></div>
    </div>
  </div>

          
</div><div class="product-info__block-item" data-block-id="variant_picker" data-block-type="variant-picker" >
</div><div class="product-info__block-item" data-block-id="inventory_zUM7z6" data-block-type="inventory" ><variant-inventory class="inventory text-error"><span>Out of stock</span><progress-bar class="progress-bar" animate-on-scroll aria-valuenow="0" aria-valuemax="50"></progress-bar></variant-inventory></div><div class="product-info__block-item" data-block-id="AR2ZJSkp0V0krNmpEW__stok_back_in_stock_alert_app_block_zjFMUV-1" data-block-type="@app" ><div id="shopify-block-AR2ZJSkp0V0krNmpEW__stok_back_in_stock_alert_app_block_zjFMUV" class="shopify-block shopify-app-block"><link href="//cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/modal.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/css/intlTelInput.css">

<!-- YOUR SIZE NOT AVAILABLE? CLICK HERE -->
<div class="box-3 bis_template_product" id="bis_notify_me_btn" style="display:none">
  <span id="shopeetech_pre_order_before" style="display:none;"></span>
  <p id="shopeetech_restock_date_before" style="display:none;"></p>
  <button id="bis-myBtn" type="button" class="bis_ui_button"></button>
  <p id="shopeetech_restock_date_after" style="display:none;"></p>
  <p id="bis-customer" style="display:none;"></p>
  <p id="bis-customer-name" style="display:none;"></p>
  <p id="bis-customer-email" style="display:none;"></p>
  
</div>
<div id="bis-myModal" class="bis_app_block bis_modal bis_template_product">
  <!-- Modal content -->
  <div class="bis_modal-content">
    <div id="SIModal" class="stockNotification">
      <div id="bis_container" class="">
        <div hidden id="bis_spinner"></div>
        <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
        
        
          <div class="bis-product-img-container">
            <img
              src="//provencelia.com/cdn/shop/files/POSEIDON32-C_medium.jpg?v=1769101695"
              alt="POSEIDON2 Pot 28x31cm abyss blue"
              class="bis-product-img"
            >
          </div>
        

        <p id="shopeetech-bis-modal-title" class="modal-title bis-modal-title">Alert me if this item is restocked.</p>
        <p id="shopeetech-bis-sub-header">
          We often restock popular items or they may be returned by the other customers. If you would like to be
          notified when this happens just enter your details below.
        </p>
        <hr>
        <p class="product-name" id="bis_product_title">POSEIDON2 Pot 28x31cm abyss blue</p>
        <!-- End Tabs -->
        <form class="form-horizontal clearfix">
          <div id="variant-select-container" class="bis_form_grp">
            <div class="form-group">
              <div class="col-xs-12">
                
                  <select id="ap__variants" class="selectpicker input-lg" style="display:none">
                    <option class="select-option" value="52631343923523">
                      Select option
                    </option>
                  </select>
                
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-size-warning">Please select variant</small>
              </div>
            </div>
          </div>
          <!-- Name Field -->
          <div id="customer-name-container" class="bis_form_grp">
            <div id="name-address" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-name"
                  name="name"
                  type="text"
                  placeholder="Enter name"
                  value=""
                  class="form-control input-lg"
                >
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-name-warning">Please enter name</small>
              </div>
            </div>
          </div>
          <!-- Email Field -->
          <div id="customer-address-container" class="bis_form_grp">
            <div id="email-address" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-email"
                  type="email"
                  placeholder="Email address"
                  value=""
                  class="form-control input-lg"
                >
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-email-warning">Invalid email address</small>
              </div>
            </div>
          </div>
          <!-- Mobile Field -->
          <div id="customer-mobile-container" class="bis_form_grp">
            <div id="mobile" class="form-group">
              <div id="mobile-group" class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-mobile"
                  type="tel"
                  placeholder="Enter mobile number"
                  value=""
                  class="form-control input-lg"
                  onkeypress="handleKeyPress(event)"
                >
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-mobile-warning">Required mobile number</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-number-warning">Invalid number</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-country-code-warning">Invalid country code</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-short-warning">Too short</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-long-warning">Too long</small>
                <span class="shopeetech-bis-form-success-msg hide" id="valid-msg"
                  >✓Valid</span>
              </div>
            </div>
          </div>
          <!-- Amount Field -->
          <div id="customer-amount-container" class="bis_form_grp">
            <div id="amount" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-amount"
                  type="number"
                  placeholder="Enter quantity"
                  value=""
                  class="form-control input-lg show"
                  min="0"
                  onkeypress="handleKeyPress(event)"
                >
              </div>
            </div>
          </div>

          <!-- customMessage Field -->
          <div id="customer-customMessage-container" class="bis_form_grp">
            <div id="customMessage" class="form-group">
              <div class="col-xs-12">
                <textarea
                  id="shopeetech-bis-popup-form-customMessage"
                  placeholder="Enter Custom message"
                  class="form-control input-lg show"
                  rows="3"
                ></textarea>
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-custom-message-warning">Only plain are not allowed in the message</small>
                <small
                  class="shopeetech-bis-form-hide-warning"
                  id="shopeetech-bis-form-too-long-custom-message-warning"
                >Message length must be 250 characters allowed</small>
              </div>
            </div>
          </div>

          <!-- Country Field -->
          <div id="customer-country-container" class="bis_form_grp">
            <div id="country" class="form-group">
              <div class="col-xs-12">
                <select
                  id="shopeetech-bis-popup-form-country"
                  name="country"
                  class="form-control input-lg"
                >
                  <option value="">Select country</option>
                </select>
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-country-warning">Country is required</small>
              </div>
            </div>
          </div>

          <div id="bis_checkbox_grp">
            <div id="bis_box_email" class="bis_box">
              <label for="bis_email_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_email_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="email"
                  onchange="handleCheckbox('email')"
                >
                <span class="bis-custom-checkbox-style"></span>
                Email
              </label>
            </div>
            <div id="bis_box_sms" class="bis_box">
              <label for="bis_sms_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_sms_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="sms"
                  onchange="handleCheckbox('sms')"
                >
                <span class="bis-custom-checkbox-style"></span>
                SMS
              </label>
            </div>
            <div id="bis_box_whatsApp" class="bis_box">
              <label for="bis_whatsApp_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_whatsApp_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="whatsApp"
                  onchange="handleCheckbox('whatsApp')"
                >
                <span class="bis-custom-checkbox-style"></span>
                WhatsApp
              </label>
            </div>
          </div>

          <div class="form-group bis_form_grp">
            <div class="col-xs-12">
              <button type="button" id="submit-btn__bis" class="black-btn  btn btn-success btn-lg btn-block"></button>
            </div>
          </div>
          <div class="alert alert-success hide" id="success_message">
            Your notification has been registered.
            <a href="#" class="action-close" onclick="bisCloseModal()">Close</a>
          </div>

          <div class="alert alert-danger hide" id="error_message">
            <span id="bis-error_message" class="error_message">Looks like you already have notifications active for this size!</span>
          </div>
        </form>

        <p id="shopeetech-bis-privacy" class="bis_privacy">
          We respect your privacy and don&#39;t share your email with anybody.
        </p>
        
      </div>
      <div id="thank-you-section" class="hide">
        <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
        <p id="thank-you-title" class="modal-title bis-modal-title">Alert me if this item is restocked</p>
        <hr>
        <div id="request-message" class="">
          <span id="thank-you-description">
            <p>
              <font id="variant_label"></font>
            </p>
          </span>
          <!--
            <span>
              <small>
                <a href="javascript:cancelRequest();">Cancel request</a>
              </small>
            </span>
          -->
        </div>
        <div id="cancel-request-message" style="font-family:inherit;" class="hide">
          <p>We have cancelled your request.</p>
        </div>
        <form class="form-horizontal clearfix">
          <div class="form-group">
            <div class="bis-thank-you-btns">
              <div id="bis-cancel-request-btn-container" class="raw">
                <button
                  id="bis-cancel-request-btn"
                  type="button"
                  onclick="cancelRequest()"
                  class="black-btn btn  btn-success btn-lg btn-block"
                >
                  Cancel request
                </button>
              </div>
              <div id="bis-close-btn-container" class="col-xs-12">
                <button
                  id="bis-close-btn"
                  type="button"
                  onclick="bisCloseModal()"
                  class="black-btn btn  btn-success btn-lg btn-block"
                >
                  Close
                </button>
              </div>
            </div>
          </div>
        </form>
        <div id="bis-upsell-products" class="hide">
          <p id="bis-upsell-heading"></p>
          <div id="bis-upsell-grid"></div>
        </div>
        
        
      </div>
    </div>
  </div>
</div>
<input type="hidden" name="product_id" id="product_id" value="14797823803715">
<input type="hidden" value="3778e7-42.myshopify.com" id="app_shop_permanent_domain">
<!-- Honeypot: hidden from real users, bots will fill this -->
<div style="position:absolute;left:-9999px;top:-9999px;" aria-hidden="true">
  <input type="text" name="bis_website" id="bis_hp_field" tabindex="-1" autocomplete="off" value="">
</div>
<input type="hidden" value="52631343923523" id="selected_variant">
<input type="hidden" value="https://bis.test" id="shopeetech_bis_url">
<input type="hidden" value="" id="variant_json">
<input type="hidden" value="product" id="bis_current_template">

<!-- mobile validator -->
<script defer src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/js/intlTelInput.min.js"></script>
<script>
  

  document.getElementById('selected_variant').value = document.querySelector('[name="id"]')?.value || ''
</script>


  
  <script id="bis-configuration" type="application/json" data-bis="metaobject">
    {
      "ui_settings": {"id":2158,"user_id":2257,"header":{"en_text":"Be the first to know when this product is back in stock.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo sarà disponibile.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"This product is currently being restocked. If you’d like to be notified when it’s available again, simply enter your details below.","es_text":"A menudo reponemos artículos populares o es posible que otros clientes los devuelvan. Si desea recibir una notificación cuando esto suceda, simplemente ingrese sus datos a continuación.","fr_text":"Nous réapprovisionnons souvent les articles populaires. Si vous souhaitez être averti lorsque cela se produit, entrez simplement vos coordonnées ci-dessous.","it_text":"Spesso riassortiamo gli articoli più richiesti oppure potrebbero essere restituiti da altri clienti. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dati qui sotto.","nl_text":"Vaak vullen we populaire artikelen aan, anders kunnen ze door andere klanten worden geretourneerd. Als u op de hoogte wilt worden gesteld wanneer dit gebeurt, vult u hieronder uw gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"show_variant":true,"privacy":{"en_text":"Your privacy matters to us – your information stays safe and confidential.","es_text":"Valoramos su privacidad y mantenemos la confidencialidad de sus datos =\u003e es nuestra promesa para usted.","fr_text":"Nous accordons une grande importance à votre vie privée et gardons vos informations confidentielles.","it_text":"Apprezziamo la tua privacy e manteniamo riservati i tuoi dati =\u003e è la nostra promessa a te.","nl_text":"Wij waarderen uw privacy en houden uw gegevens vertrouwelijk; dat is onze belofte aan u.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"error":{"en_text":"It looks like you’ve already subscribed to notifications for this item.","es_text":"¡Parece que ya tienes notificaciones activas para este artículo!","fr_text":"Il semble que vous ayez déjà des notifications actives pour cet article !","it_text":"Sembra che tu abbia già attive le notifiche per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen actief hebt voor dit item!","bg_color":"#d24325","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit request","es_text":"Enviar solicitud","fr_text":"Soumettre la demande","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"close_btn":null,"thank_you":{"header":{"en_text":"Notify me when this item restocks.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo verrà rifornito.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you, we received your request, We will notify you once this item restocks.","es_text":"Gracias, recibimos su solicitud. Le notificaremos una vez que este artículo se reponga.","fr_text":"Merci, nous avons reçu votre demande, nous vous informerons une fois cet article réapprovisionné.","it_text":"Grazie, abbiamo ricevuto la tua richiesta. Ti informeremo non appena l'articolo verrà rifornito.","nl_text":"Bedankt, we hebben uw verzoek ontvangen. We zullen u op de hoogte stellen zodra dit artikel weer op voorraad is.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","fr_text":"Fermer","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar petición","fr_text":"Annuler ma demande","it_text":"Richiesta cancellata","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"notify_me":{"en_text":"Notify me when in stock","es_text":"Notificarme","fr_text":"Prévenez-moi une fois en stock","it_text":"Avvisami","nl_text":"Breng mij op de hoogte","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit","pre_order_label":{"en_preOrder_text":"{{requested_counter}} Customers requested for this product.","es_preOrder_text":"{{requested_counter}} Clientes solicitados por este producto.","fr_preOrder_text":"{{requested_counter}} Clients demandés pour ce produit.","it_preOrder_text":"{{requested_counter}} I clienti hanno richiesto questo prodotto.","nl_preOrder_text":"{{requested_counter}} Klanten hebben om dit product gevraagd.","preOrder_placement":"Before","preOrder_text_size":"12","preOrder_is_visible":"0","preOrder_text_color":"#000000","preOrder_text_family":"inherit"},"restock_date_style":{"en_restock_text":"Our popular product will be restocked around {{date}}","es_restock_text":"Nuestro popular producto se reabastecerá alrededor {{date}} ","fr_restock_text":"Notre produit populaire sera réapprovisionné autour du {{date}}","it_restock_text":"Il nostro popolare prodotto verrà riassortito {{date}} ","nl_restock_text":"Ons populaire product wordt rond de voorraad aangevuld {{date}} ","restock_placement":"After","restock_text_size":"12","restock_is_visible":false,"restock_text_color":"#000000","restock_text_family":"inherit"},"sold_out_button_setting":"1","notify_me_button_setting":"out_of_stock"},"collection_notify_me":{"coll_btn_pos":null,"product_eval":null,"collection_eval":null,"product_btn_pos":null,"product_element":null,"pdp_get_pid_eval":null,"pdp_get_vid_eval":null,"coll_get_pid_eval":null,"coll_get_vid_eval":null,"collection_status":"1","collection_element":null},"extra":{"sms":{"en_text":"Hi, The product you requested is now back in stock, be first to buy it now  {{short_product_link}}","es_text":"Hola, el producto que solicitaste ya está disponible nuevamente, sé el primero en comprarlo ahora. {{short_product_link}}","fr_text":"Bonjour, Le produit que vous avez demandé est maintenant de nouveau en stock, soyez le premier à l'acheter maintenant {{short_product_link}}","it_text":"Ciao, il prodotto che hai richiesto è ora di nuovo disponibile, sii il primo ad acquistarlo adesso {{short_product_link}}","nl_text":"Hallo, het door u aangevraagde product is nu weer op voorraad, koop het nu als eerste {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":true,"show_image_mobile":0,"is_allowed_message":false,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"pre_extra":{"sms":{"nl_text":"Bedankt voor je aanmelding! We laten het je weten zodra het product weer op voorraad is.  {{short_product_link}}","is_enable":1},"whatsApp":{"is_enable":1},"is_enable_pre":0},"pre_email_template":{"logo":"","style":{"button_accent":"#ffffff","button_primary":"#007B5C"},"nl_text":{"body_":"\u003cp\u003eHoi {{customer_name}},\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eBedankt voor je aanmelding! 🙌 \u003cbr\u003e Je bent succesvol geabonneerd om updates over productbeschikbaarheid te ontvangen.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eWanneer het product dat je wilt weer op voorraad is, laten we het je meteen weten — zodat je het niet misloopt.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eIn de tussentijd kun je gerust meer producten ontdekken in onze winkel.\u003c\/p\u003e\u003cp\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;{{collection_page_link}}\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eNogmaals bedankt,\u003c\/p\u003e\u003cp\u003eHet {{shop_name}} team\u003c\/p\u003e","button_":"Klik om te bekijken\/te kopen","subject_":"Je staat op de lijst! - {{product_title}} 🎉"},"is_signup_email_enable":1},"selecetd_products":null,"selected_collections":null,"code_block_setting":{"bis_js":null,"bis_css":null},"whatsapp_template":"en_default","pre_whatsapp_template":"en_default","created_at":"2025-04-13T09:31:15.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
      "pd_settings": {"id":1391,"user_id":2257,"price_drop":{"en_text":"Price drop alert","es_text":"Alerta de bajada de precio","it_text":"Avviso di abbassamento del prezzo","nl_text":"Prijsdaling melding","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit","showPriceDrop":"0","price_drop_button_setting":"price_drop"},"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"We occasionally reduce prices on popular items. If you would like to be notified when this happens, just enter your details below.","es_text":"Ocasionalmente reducimos los precios de los artículos populares. Si deseas ser notificado cuando esto ocurra, simplemente ingresa tus datos a continuación.","it_text":"Occasionalmente riduciamo i prezzi su articoli popolari. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dettagli qui sotto.","nl_text":"Af en toe verlagen we de prijzen van populaire artikelen. Als je op de hoogte wilt worden gesteld wanneer dit gebeurt, vul dan hieronder je gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit Request","es_text":"Enviar solicitud","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"error":{"en_text":"Looks like you already have notifications active for this item!","es_text":"¡Parece que ya tienes activadas las notificaciones para este artículo!","it_text":"Sembra che tu abbia già una notifica attiva per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen hebt ingeschakeld voor dit artikel!","bg_color":"#ff6347","text_size":"12","text_color":"#000000","text_family":"inherit"},"privacy":{"en_text":"We respect your privacy and will only use your email for this notification.","es_text":"Respetamos tu privacidad y solo utilizaremos tu correo electrónico para esta notificación.","it_text":"Rispettiamo la tua privacy e utilizzeremo la tua email solo per questa notifica.","nl_text":"We respecteren je privacy en zullen je e-mail alleen gebruiken voor deze melding.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"thank_you":{"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#ffffff","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you! We have recorded your request to be notified about price drops. We will only use your email for this purpose.","es_text":"¡Gracias! Hemos registrado tu solicitud para notificarte sobre bajadas de precio. Solo utilizaremos tu correo electrónico para este propósito.","it_text":"Grazie! Abbiamo registrato la tua richiesta di essere avvisato quando il prezzo scende. Utilizzeremo la tua email solo per questo scopo.","nl_text":"Bedankt! We hebben je verzoek om een melding te ontvangen wanneer de prijs daalt geregistreerd. We zullen je e-mail alleen voor dit doel gebruiken.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar solicitud","it_text":"Annulla richiesta","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"extra":{"sms":{"en_text":"Hi, Great news! The product you were interested in is now available at a lower price. Don’t miss out: {{short_product_link}}","es_text":"¡Hola! ¡Buenas noticias! El producto que te interesaba ahora está disponible a un precio más bajo. No lo dejes pasar: {{short_product_link}}","it_text":"Ciao! Ottime notizie! Il prodotto che ti interessava è ora disponibile a un prezzo più basso. Non perdertelo: {{short_product_link}}","nl_text":"Hallo! Goed nieuws! Het product waarin je geïnteresseerd was, is nu beschikbaar voor een lagere prijs. Mis het niet: {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":0,"show_image_mobile":0,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"code_block_setting":null,"custom_setting":{"product_eval":"","product_btn_pos":"","product_element":"","pdp_get_pid_eval":"","pdp_get_vid_eval":""},"whatsapp_template":"en_default","price_drop_selected_products":null,"created_at":"2025-05-06T15:17:19.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
      "pre_order_counter": null,
      "restock_variants": null,
      "langauge": {"primary":"en","limit":true},
      "plan": {"plan_id":3},
      "_sf": {"k":"5d2bdbf7db62b6140ecb1706fad6054776cd25e085d156328a20061c754628af"}
    }
  </script>


<script type="application/json" id="bis-variant-data">
  [
  
    {
      "id": 52631343923523,
      "title": "Default Title",
      "sku": "POSEIDON2831-32",
      "barcode": "3701726207717",
      "price": 3490,
      "compare_at_price": 9990,
      "available": false,
      "inventory_quantity": 0,
      "inventory_management": "shopify",
      "inventory_policy": "deny",
      "weight": 5000,
      "weight_unit": "kg",
      "requires_shipping": true,
      "image": null,
      "options": ["Default Title"],
      "url": "\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?variant=52631343923523"
    }
  
  ]
</script>

<script id="bis-collections" type="application/json">
  [{"id":637372203331,"handle":"pots-fleurs-ceramique","title":"Pots de fleurs en céramique","updated_at":"2026-05-06T14:11:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs en céramique\u003c\/strong\u003e, conçus pour sublimer vos plantes tout en ajoutant une touche d'élégance à vos intérieurs et extérieurs. Majoritairement faits à la main, nos pots allient savoir-faire artisanal et production contrôlée pour garantir à la fois originalité et qualité constante.\u003c\/p\u003e\n\u003cp\u003eChaque \u003cstrong\u003epot en céramique \u003c\/strong\u003eest pensé pour s’adapter à tous les styles : des designs classiques pour une ambiance authentique aux formes modernes pour un look contemporain. Grâce à ce mélange unique de fabrication artisanale et industrielle, nos pots se distinguent par leur durabilité et leur esthétique raffinée.\u003c\/p\u003e","published_at":"2024-12-11T14:30:48+01:00","sort_order":"manual","template_suffix":"collection-footer","disjunctive":false,"rules":[{"column":"type","relation":"equals","condition":"Pot"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:37:09+01:00","alt":"Všechny květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-en-c-ramique-provencelia.webp?v=1769100645"}},{"id":641562804547,"handle":"product-model-poseidon2","title":"Product model: Poseidon2","updated_at":"2026-05-06T13:29:31+02:00","body_html":"","published_at":"2025-03-05T19:41:59+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/224588169539"}],"published_scope":"global"},{"id":637372301635,"handle":"pots-de-fleurs-ronds","title":"Pots de fleurs ronds","updated_at":"2026-05-06T13:29:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs ronds en céramique\u003c\/strong\u003e, qui se distinguent par leurs formes gracieuses et leur design intemporel. Ces jardinières sont le choix parfait pour ceux qui recherchent une combinaison d'élégance et de fonctionnalité. Grâce à leurs lignes arrondies, elles s'intègrent parfaitement dans n'importe quel espace, créant un ensemble harmonieux avec vos plantes.\u003c\/p\u003e\n\u003cp\u003eNos jardinières rondes sont fabriquées à partir de céramique émaillée de qualité, garantissant leur résistance aux intempéries et leur longue durée de vie. Elles constituent un excellent choix pour les espaces\u003cstrong\u003e \u003c\/strong\u003eextérieurs comme intérieurs.\u003c\/p\u003e\n\u003cp\u003eLeur surface lisse et leurs lignes délicates garantissent que vos plantes ont toujours un aspect esthétique et élégant\u003c\/p\u003e","published_at":"2024-12-11T14:30:56+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/247901782339"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:36:58+01:00","alt":"Zaoblené květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-ronds-provencelia.webp?v=1769100640"}}]
</script>

<script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/countries-data.js"></script>
<script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/product-notifyme.js" defer></script>

<script id="bis-shopify-products" type="application/json">
  {"id":14797823803715,"title":"POSEIDON2 Pot 28x31cm abyss blue","handle":"poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","description":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e","published_at":"2025-02-23T12:23:28+01:00","created_at":"2025-02-23T12:23:28+01:00","vendor":"Provencelia","type":"Pot","tags":[],"price":3490,"price_min":3490,"price_max":3490,"available":false,"price_varies":false,"compare_at_price":9990,"compare_at_price_min":9990,"compare_at_price_max":9990,"compare_at_price_varies":false,"variants":[{"id":52631343923523,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"POSEIDON2831-32","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"options":["Default Title"],"price":3490,"weight":5000,"compare_at_price":9990,"inventory_management":"shopify","barcode":"3701726207717","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"],"featured_image":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","options":["Title"],"media":[{"alt":null,"id":57568777863491,"position":1,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","width":2000},{"alt":null,"id":57568777929027,"position":2,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","width":2000},{"alt":null,"id":52933488148803,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","width":1500},{"alt":null,"id":58539757994307,"position":4,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617","width":2000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e"}
</script>

</div></div><div class="product-info__block-item" data-block-id="AU1pmczVlZ2pwTEgvN__bogos_io_free_gift_volume_discount_view_96m7hD-1" data-block-type="@app" ><div id="shopify-block-AU1pmczVlZ2pwTEgvN__bogos_io_free_gift_volume_discount_view_96m7hD" class="shopify-block shopify-app-block bogos-discount-view-block offer-block-width-full"><div id="bogos-volume-discount-view"
     data-version="3.0"
     data-offer-id=""
     data-product-handle=""
     data-product-id=""
>
    
</div>

<script type="text/javascript" data-cmp-vendor="bogos" data-cmp-ab="0">
    if (typeof window.BOGOS === "undefined") window.BOGOS = {};
    if (typeof window.BOGOS.block_products === "undefined") window.BOGOS.block_products = {};

    

</script>


</div></div><div class="product-info__block-item" data-block-id="buy_buttons" data-block-type="buy-buttons" ><div class="quantity_selector__custom"><div class="quantity_selector__custom--buy-buttons"><product-form><form method="post" action="/en-fr/cart/add" id="product-form-main-14797823803715-template--24104113733955__main" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" disabled name="id" value="52631343923523">

      

      <div class="v-stack gap-4"><buy-buttons class="buy-buttons" form="product-form-main-14797823803715-template--24104113733955__main">
<button type="submit"  class="button w-full" style="--button-background: 47 77 54;--button-outline-color: 47 77 54;--button-text-color: 255 255 255;" disabled>Out of stock</button></buy-buttons>
      </div><input type="hidden" name="product-id" value="14797823803715" /><input type="hidden" name="section-id" value="template--24104113733955__main" /></form></product-form></div>
            </div></div><div class="product-info__block-item" data-block-id="custom_product_upsell_FNpRAL" data-block-type="custom-product-upsell" ><div class="custom-product-upsell complementary-products"><div class="complementary-products__header">
        <p class="h5">Add a compatible saucer</p></div><div class="complementary-products__product-list"><div class="horizontal-product-card">
    <a href="/en-fr/products/saucer-26cm-handmade-in-glazed-terracotta-frost-resistant-abyss-blue-en" class="horizontal-product-card__figure" data-instant><img src="//provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=1500" alt="21cm abyss blue saucer, handmade in glazed terracotta" srcset="//provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=100 100w, //provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=150 150w, //provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=200 200w, //provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=250 250w, //provencelia.com/cdn/shop/files/BASE-R-32_ed32b33a-18c0-45f4-909f-b74f51744c66.png?v=1769101546&amp;width=300 300w" width="1500" height="1500" loading="lazy" sizes="100px" class="horizontal-product-card__image"></a><div class="horizontal-product-card__info">
    <div class="v-stack gap-1 justify-items-start">
      <a href="/en-fr/products/saucer-26cm-handmade-in-glazed-terracotta-frost-resistant-abyss-blue-en" class="product-title" data-instant>21cm abyss blue saucer, handmade in glazed terracotta</a>
      
<price-list class="price-list"><sale-price class="text-on-sale">
        <span class="sr-only">Sale price</span>11,90€</sale-price><compare-at-price class="text-subdued line-through">
        <span class="sr-only">Regular price</span>22,90€</compare-at-price></price-list></div><product-form><form method="post" action="/en-fr/cart/add" id="product_form_14863110078787" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="52838008291651">
            <input type="hidden" name="quantity" value="1">
            <input type="hidden" name="on_success" value="force_open_drawer">

            <button type="submit" class="@narrow:horizontal-product-card__button link">Add to cart</button>
            <button type="submit" class="@large:horizontal-product-card__button button button--outline button--subdued">Add to cart</button><input type="hidden" name="product-id" value="14863110078787" /><input type="hidden" name="section-id" value="template--24104113733955__main" /></form></product-form></div>
</div>
</div></div></div><div class="product-info__block-item" data-block-id="custom_product_upsell_fFi8tx" data-block-type="custom-product-upsell" ></div><div class="product-info__block-item" data-block-id="AUXhJR1JXYXRuNk94d__bogos_io_free_gift_progressing_bar_view_Lfpg9Q-1" data-block-type="@app" ><div id="shopify-block-AUXhJR1JXYXRuNk94d__bogos_io_free_gift_progressing_bar_view_Lfpg9Q" class="shopify-block shopify-app-block bogos-progressing-bar-view-block">

<div class="bogos-progressing-bar-view" data-offer-id=""></div>


</div></div><div class="product-info__block-group feature-badge-list" data-group-type="feature-badge-list"><div class="product-info__block-item" data-block-id="feature_with_icon_UVXTKr" data-block-type="feature-with-icon" ><div class="feature-badge" style="--background: 249 250 251 ; background-color: rgb(var(--background));--text-color: 107 107 107; color: rgb(var(--text-color));--border-color:228 229 229;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-love" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="m12 21.844-9.588-10a5.672 5.672 0 0 1-1.063-6.551v0a5.673 5.673 0 0 1 9.085-1.474L12 5.384l1.566-1.565a5.673 5.673 0 0 1 9.085 1.474v0a5.673 5.673 0 0 1-1.062 6.548L12 21.844Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><p>Handmade</p></div></div><div class="product-info__block-item" data-block-id="feature_with_icon_CDeNmA" data-block-type="feature-with-icon" ><div class="feature-badge" style="--background: 249 250 251 ; background-color: rgb(var(--background));--text-color: 107 107 107; color: rgb(var(--text-color));--border-color:228 229 229;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-tree" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="m9.317 2.665-4.5 9.573c-1 2.3.453 5.012 2.683 5.012h9c2.23 0 3.681-2.71 2.683-5.012l-4.5-9.573a2.837 2.837 0 0 0-5.366 0Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12 9.75v13.5M12 21a3.543 3.543 0 0 0 3.75-3.75m-6.75-6a1.989 1.989 0 0 0 2.25 2.25H12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><p>Indoor and outdoor</p></div></div><div class="product-info__block-item" data-block-id="feature_with_icon_B37Ei6" data-block-type="feature-with-icon" ><div class="feature-badge" style="--background: 249 250 251 ; background-color: rgb(var(--background));--text-color: 107 107 107; color: rgb(var(--text-color));--border-color:228 229 229;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-leaf" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="M10.075 20.383a7.197 7.197 0 0 1-7.196-7.197c0-10.436 12.56-5.08 18.605-10.097a.445.445 0 0 1 .458-.046c.151.063.26.2.287.361 1.846 10.81-6.112 16.979-12.154 16.979Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12.954 11.262a23.872 23.872 0 0 0-8.226 4.095L1 18.539" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><p>Eco-friendly</p></div></div><div class="product-info__block-item" data-block-id="feature_with_icon_KXybke" data-block-type="feature-with-icon" ><div class="feature-badge" style="--background: 249 250 251 ; background-color: rgb(var(--background));--text-color: 107 107 107; color: rgb(var(--text-color));--border-color:228 229 229;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-gift" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="M21.75 11.25H2.25v10.5a1.5 1.5 0 0 0 1.5 1.5h16.5a1.5 1.5 0 0 0 1.5-1.5v-10.5Zm0-4.5H2.25a1.5 1.5 0 0 0-1.5 1.5v2.25c0 .414.336.75.75.75h21a.75.75 0 0 0 .75-.75V8.25a1.5 1.5 0 0 0-1.5-1.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M11.25 6.75c-3.314 0-6.75-2.686-6.75-6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M4.5.75c3.314 0 6.75 2.686 6.75 6m1.5 0c3.314 0 6.75-2.686 6.75-6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M19.5.75c-3.314 0-6.75 2.686-6.75 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M9.75 6.75h4.5v16.5h-4.5V6.75Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><p>Designer piece</p></div></div></div><div class="product-info__block-item" data-block-id="sku_m7aVRC" data-block-type="sku" >
              <variant-sku class="variant-sku text-sm text-subdued">SKU: POSEIDON2831-32</variant-sku></div></div></safe-sticky><div id="product-extra-information" class="product-content-below-gallery empty:hidden scroll-margin-offset"><accordion-disclosure class="accordion accordion--lg" >
  <details class="accordion__disclosure group" aria-expanded="false">
    <summary><span class="accordion__toggle h6"><span class="text-with-icon gap-4"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-info" viewbox="0 0 24 24">
      <path d="M14.25 16.5h-.75A1.5 1.5 0 0 1 12 15v-3.75a.75.75 0 0 0-.75-.75h-.75m1.125-3.75a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75v0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M12 23.25c6.213 0 11.25-5.037 11.25-11.25S18.213.75 12 .75.75 5.787.75 12 5.787 23.25 12 23.25Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>Detailed description</span><span class="animated-plus group-expanded:rotate" aria-hidden="true"></span></span>
    </summary>

    <div class="accordion__content prose"><p><span data-sheets-root="1" data-mce-fragment="1">Harmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.</span></p>

<p><span data-sheets-root="1">Deep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.</span></p>
<p>Each pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.</p></div>
  </details>
</accordion-disclosure><accordion-disclosure class="accordion accordion--lg" >
  <details class="accordion__disclosure group" aria-expanded="false">
    <summary><span class="accordion__toggle h6"><span class="text-with-icon gap-4"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-award-gift" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="M15.75 23.238a3 3 0 0 0-3-3H9a3 3 0 0 0-3-3H.75v6h15Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M6 20.238h3m2.25-3H21a.75.75 0 0 0 .75-.75v-6.75m-13.5 0v4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M6.75 6.738a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-15a.75.75 0 0 1-.75-.75v-2.25Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M15 17.238V5.988" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M19.265 3.867a11.855 11.855 0 0 1-4.242 2.121 11.856 11.856 0 0 1 2.121-4.242C18.463.428 19.21.63 19.8 1.216c.59.586.784 1.333-.535 2.651Zm-8.531 0c1.257.985 2.7 1.707 4.242 2.121a11.838 11.838 0 0 0-2.121-4.242C11.537.428 10.79.63 10.2 1.216c-.59.586-.784 1.333.534 2.651Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>Why order this product</span><span class="animated-plus group-expanded:rotate" aria-hidden="true"></span></span>
    </summary>

    <div class="accordion__content prose"><div class="metafield-rich_text_field"><p><strong>3 sizes (M, L and XL):</strong> Thanks to three sizes, you can use a combination of small and large pots.</p><p><strong>Authenticity:</strong> each pot is unique, handcrafted in an artisanal way and tells its own story, as well as yours</p><p><strong>Sustainability:</strong> Glazed terracotta is resistant to frost and weather, ensuring great longevity for these Pots</p><p><strong>Availability:</strong> Provencelia offers these Pots at affordable prices, without ever sacrificing quality or traditional craftsmanship.</p><p><strong>Perfect gift idea:</strong> offer a handcrafted pot for a birthday, a wedding, or any other very special occasion</p></div><p></p></div>
  </details>
</accordion-disclosure><accordion-disclosure class="accordion accordion--lg" >
  <details class="accordion__disclosure group" aria-expanded="false">
    <summary><span class="accordion__toggle h6"><span class="text-with-icon gap-4"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-document" viewbox="0 0 24 24">
      <path d="M7.5 9.51h9m-9 3.75h9m-9 3.75h9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M15.75 4.51h3.75a1.5 1.5 0 0 1 1.5 1.5V21a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 3 21V6.01a1.5 1.5 0 0 1 1.5-1.5h3.75a3.75 3.75 0 1 1 7.5 0Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12 3.76a.375.375 0 1 1 0 .75.375.375 0 0 1 0-.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>Main features</span><span class="animated-plus group-expanded:rotate" aria-hidden="true"></span></span>
    </summary>

    <div class="accordion__content prose"><p><strong>Color:</strong> Abyss Blue</p><div class="metafield-rich_text_field"><p><strong>Type of pot </strong>: Outdoor glazed terracotta pot </p><p><strong>Manufacturing method</strong> : Artisanal, handmade</p><p><strong>Shape of the pot</strong> : Deep dish, flat and well balanced</p><p><strong>Hole in the bottom of the pot</strong> : Yes</p><p><strong>Frost resistant </strong>: Yes</p></div><p></p></div>
  </details>
</accordion-disclosure><accordion-disclosure class="accordion accordion--lg" >
  <details class="accordion__disclosure group" aria-expanded="false">
    <summary><span class="accordion__toggle h6"><span class="text-with-icon gap-4"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="16" class="icon icon-picto-delivery-truck" viewbox="0 0 24 24">
      <path d="M23.25 13.5V6a1.5 1.5 0 0 0-1.5-1.5h-12A1.5 1.5 0 0 0 8.25 6v6m0 0V6h-3a4.5 4.5 0 0 0-4.5 4.5v6a1.5 1.5 0 0 0 1.5 1.5H3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M.75 12h3a1.5 1.5 0 0 0 1.5-1.5V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M7.5 19.5a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm12 0a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12 18h3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>Product delivery</span><span class="animated-plus group-expanded:rotate" aria-hidden="true"></span></span>
    </summary>

    <div class="accordion__content prose"><p>We carefully package our products to ensure they arrive safely at your home from our warehouse. We use trusted carriers who prioritize the safety of the goods being transported.</p></div>
  </details>
</accordion-disclosure></div></div>
    </product-rerender>
  </div>
</div><template id="quick-buy-content">
  <p class="h5" slot="header">Choose the options</p>

  <div class="quick-buy-modal__content">
    <product-rerender id="quick-buy-modal-content" observe-form="product-form-quick-buy-14797823803715-template--24104113733955__main">
      <dialog-close-button class="contents">
        <button type="button" class="quick-buy-modal__close-button sm-max:hidden">
          <span class="sr-only">Close</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-close" viewbox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.5"/>
    </svg>

  </button>
      </dialog-close-button>

      <div class="quick-buy-modal__gallery-wrapper"><style>@media screen and (min-width: 1000px) {
    #shopify-section-template--24104113733955__main {}}
</style>

<product-gallery class="product-gallery" form="product-form-quick-buy-14797823803715-template--24104113733955__main" filtered-indexes="[]"  ><div class="product-gallery__image-list"><div class="product-gallery__carousel-with-arrows"><carousel-prev-button aria-controls="product-gallery-carousel-14797823803715-template--24104113733955__main" class="contents">
          <button type="button" class="tap-area sm:hidden">
            <span class="sr-only">Previous</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-arrow-left  icon--direction-aware" viewbox="0 0 16 18">
      <path d="M11 1 3 9l8 8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
        </carousel-prev-button><scroll-carousel adaptive-height id="product-gallery-carousel-14797823803715-template--24104113733955__main" class="product-gallery__carousel scroll-area" role="region"><div class="product-gallery__media snap-center is-initial" data-media-type="image" data-media-id="57568777863491" role="group" aria-label="Item 1 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/POSEIDON32-C.jpg?v=1769101695&amp;width=2000 2000w" width="2000" height="2000" loading="eager" fetchpriority="high" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="57568777929027" role="group" aria-label="Item 2 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/POSEIDON32-A.jpg?v=1769101996&amp;width=2000 2000w" width="2000" height="2000" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="52933488148803" role="group" aria-label="Item 3 of 4" ><img src="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1500" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=200 200w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=300 300w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=400 400w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=500 500w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=600 600w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=700 700w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=800 800w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/POSEIDON2831-32.png?v=1769102026&amp;width=1400 1400w" width="1500" height="1500" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div><div class="product-gallery__media snap-center" data-media-type="image" data-media-id="58539757994307" role="group" aria-label="Item 4 of 4" ><img src="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=2000" alt="POSEIDON2 Pot 28x31cm abyss blue" srcset="//provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=200 200w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=300 300w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=400 400w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=500 500w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=600 600w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=700 700w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=800 800w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1000 1000w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1200 1200w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1400 1400w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1600 1600w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=1800 1800w, //provencelia.com/cdn/shop/files/Poseidon_Dimension.jpg?v=1772472617&amp;width=2000 2000w" width="2000" height="2000" loading="lazy" fetchpriority="auto" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(1100px, 630px - 96px)"></div></scroll-carousel><carousel-next-button aria-controls="product-gallery-carousel-14797823803715-template--24104113733955__main" class="contents">
          <button type="button" class="tap-area sm:hidden">
            <span class="sr-only">Next</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-arrow-right  icon--direction-aware" viewbox="0 0 16 18">
      <path d="m5 17 8-8-8-8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>
        </carousel-next-button></div></div><carousel-navigation class="page-dots align-self-center md-max:hidden" aria-controls="product-gallery-carousel-14797823803715-template--24104113733955__main"><button type="button" class="tap-area"  aria-current="true">
              <span class="sr-only">Go to item 1</span>
            </button><button type="button" class="tap-area"  aria-current="false">
              <span class="sr-only">Go to item 2</span>
            </button><button type="button" class="tap-area"  aria-current="false">
              <span class="sr-only">Go to item 3</span>
            </button><button type="button" class="tap-area"  aria-current="false">
              <span class="sr-only">Go to item 4</span>
            </button></carousel-navigation></product-gallery>
<div class="quick-buy-modal__mobile-info v-stack gap-1 justify-center text-center sm:hidden">
          <a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en" class="product-title h6">POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant</a><price-list class="price-list"><sale-price class="text-on-sale">
      <span class="sr-only">Sale price</span>34,90€</sale-price><compare-at-price class="text-subdued line-through">
        <span class="sr-only">Regular price</span>99,90€</compare-at-price></price-list>
</div>
      </div>

      <div class="quick-buy-modal__info-wrapper"><safe-sticky class="product-info">
  <div class="product-info__block-list"><div class="product-info__block-item" data-block-id="title" data-block-type="title" ><h2 class="product-title h2">
                <a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en">POSEIDON2 28x31cm abyss blue, large handmade outdoor pot in glazed terracotta, frost resistant</a>
              </h2></div><div class="product-info__block-item" data-block-id="price" data-block-type="price" ><div class="v-stack"><price-list class="price-list price-list--product"><sale-price class="h4 text-on-sale">
      <span class="sr-only">Sale price</span>34,90€</sale-price><compare-at-price class="h5 text-subdued line-through">
        <span class="sr-only">Regular price</span>99,90€</compare-at-price></price-list></div></div><div class="product-info__block-item" data-block-id="AckdHckRRUkduYzNWW__klaviyo_reviews_average_rating_MeMfQr-2" data-block-type="@app" ><div id="shopify-block-AckdHckRRUkduYzNWW__klaviyo_reviews_average_rating_MeMfQr-1" class="shopify-block shopify-app-block">




<span class="klaviyo-star-rating-widget" data-id="14797823803715" data-product-title="POSEIDON2 Pot 28x31cm abyss blue" data-product-type="Pot" style="display: block;"></span>

<span id="fulfilled-style"/>


</div></div><div class="product-info__block-item" data-block-id="variant_picker" data-block-type="variant-picker" >
</div><div class="product-info__block-item" data-block-id="AR2ZJSkp0V0krNmpEW__stok_back_in_stock_alert_app_block_zjFMUV-2" data-block-type="@app" ><div id="shopify-block-AR2ZJSkp0V0krNmpEW__stok_back_in_stock_alert_app_block_zjFMUV-1" class="shopify-block shopify-app-block"><link href="//cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/modal.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/css/intlTelInput.css">

<!-- YOUR SIZE NOT AVAILABLE? CLICK HERE -->
<div class="box-3 bis_template_product" id="bis_notify_me_btn" style="display:none">
  <span id="shopeetech_pre_order_before" style="display:none;"></span>
  <p id="shopeetech_restock_date_before" style="display:none;"></p>
  <button id="bis-myBtn" type="button" class="bis_ui_button"></button>
  <p id="shopeetech_restock_date_after" style="display:none;"></p>
  <p id="bis-customer" style="display:none;"></p>
  <p id="bis-customer-name" style="display:none;"></p>
  <p id="bis-customer-email" style="display:none;"></p>
  
</div>
<div id="bis-myModal" class="bis_app_block bis_modal bis_template_product">
  <!-- Modal content -->
  <div class="bis_modal-content">
    <div id="SIModal" class="stockNotification">
      <div id="bis_container" class="">
        <div hidden id="bis_spinner"></div>
        <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
        
        
          <div class="bis-product-img-container">
            <img
              src="//provencelia.com/cdn/shop/files/POSEIDON32-C_medium.jpg?v=1769101695"
              alt="POSEIDON2 Pot 28x31cm abyss blue"
              class="bis-product-img"
            >
          </div>
        

        <p id="shopeetech-bis-modal-title" class="modal-title bis-modal-title">Alert me if this item is restocked.</p>
        <p id="shopeetech-bis-sub-header">
          We often restock popular items or they may be returned by the other customers. If you would like to be
          notified when this happens just enter your details below.
        </p>
        <hr>
        <p class="product-name" id="bis_product_title">POSEIDON2 Pot 28x31cm abyss blue</p>
        <!-- End Tabs -->
        <form class="form-horizontal clearfix">
          <div id="variant-select-container" class="bis_form_grp">
            <div class="form-group">
              <div class="col-xs-12">
                
                  <select id="ap__variants" class="selectpicker input-lg" style="display:none">
                    <option class="select-option" value="52631343923523">
                      Select option
                    </option>
                  </select>
                
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-size-warning">Please select variant</small>
              </div>
            </div>
          </div>
          <!-- Name Field -->
          <div id="customer-name-container" class="bis_form_grp">
            <div id="name-address" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-name"
                  name="name"
                  type="text"
                  placeholder="Enter name"
                  value=""
                  class="form-control input-lg"
                >
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-name-warning">Please enter name</small>
              </div>
            </div>
          </div>
          <!-- Email Field -->
          <div id="customer-address-container" class="bis_form_grp">
            <div id="email-address" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-email"
                  type="email"
                  placeholder="Email address"
                  value=""
                  class="form-control input-lg"
                >
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-email-warning">Invalid email address</small>
              </div>
            </div>
          </div>
          <!-- Mobile Field -->
          <div id="customer-mobile-container" class="bis_form_grp">
            <div id="mobile" class="form-group">
              <div id="mobile-group" class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-mobile"
                  type="tel"
                  placeholder="Enter mobile number"
                  value=""
                  class="form-control input-lg"
                  onkeypress="handleKeyPress(event)"
                >
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-mobile-warning">Required mobile number</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-number-warning">Invalid number</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-country-code-warning">Invalid country code</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-short-warning">Too short</small>
                <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-long-warning">Too long</small>
                <span class="shopeetech-bis-form-success-msg hide" id="valid-msg"
                  >✓Valid</span>
              </div>
            </div>
          </div>
          <!-- Amount Field -->
          <div id="customer-amount-container" class="bis_form_grp">
            <div id="amount" class="form-group">
              <div class="col-xs-12">
                <input
                  id="shopeetech-bis-popup-form-amount"
                  type="number"
                  placeholder="Enter quantity"
                  value=""
                  class="form-control input-lg show"
                  min="0"
                  onkeypress="handleKeyPress(event)"
                >
              </div>
            </div>
          </div>

          <!-- customMessage Field -->
          <div id="customer-customMessage-container" class="bis_form_grp">
            <div id="customMessage" class="form-group">
              <div class="col-xs-12">
                <textarea
                  id="shopeetech-bis-popup-form-customMessage"
                  placeholder="Enter Custom message"
                  class="form-control input-lg show"
                  rows="3"
                ></textarea>
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-custom-message-warning">Only plain are not allowed in the message</small>
                <small
                  class="shopeetech-bis-form-hide-warning"
                  id="shopeetech-bis-form-too-long-custom-message-warning"
                >Message length must be 250 characters allowed</small>
              </div>
            </div>
          </div>

          <!-- Country Field -->
          <div id="customer-country-container" class="bis_form_grp">
            <div id="country" class="form-group">
              <div class="col-xs-12">
                <select
                  id="shopeetech-bis-popup-form-country"
                  name="country"
                  class="form-control input-lg"
                >
                  <option value="">Select country</option>
                </select>
                <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-country-warning">Country is required</small>
              </div>
            </div>
          </div>

          <div id="bis_checkbox_grp">
            <div id="bis_box_email" class="bis_box">
              <label for="bis_email_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_email_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="email"
                  onchange="handleCheckbox('email')"
                >
                <span class="bis-custom-checkbox-style"></span>
                Email
              </label>
            </div>
            <div id="bis_box_sms" class="bis_box">
              <label for="bis_sms_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_sms_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="sms"
                  onchange="handleCheckbox('sms')"
                >
                <span class="bis-custom-checkbox-style"></span>
                SMS
              </label>
            </div>
            <div id="bis_box_whatsApp" class="bis_box">
              <label for="bis_whatsApp_checkbox" class="bis-custom-checkbox-label">
                <input
                  type="checkbox"
                  id="bis_whatsApp_checkbox"
                  class="bis-custom-checkbox"
                  name="bis_twillio_checkbox"
                  value="whatsApp"
                  onchange="handleCheckbox('whatsApp')"
                >
                <span class="bis-custom-checkbox-style"></span>
                WhatsApp
              </label>
            </div>
          </div>

          <div class="form-group bis_form_grp">
            <div class="col-xs-12">
              <button type="button" id="submit-btn__bis" class="black-btn  btn btn-success btn-lg btn-block"></button>
            </div>
          </div>
          <div class="alert alert-success hide" id="success_message">
            Your notification has been registered.
            <a href="#" class="action-close" onclick="bisCloseModal()">Close</a>
          </div>

          <div class="alert alert-danger hide" id="error_message">
            <span id="bis-error_message" class="error_message">Looks like you already have notifications active for this size!</span>
          </div>
        </form>

        <p id="shopeetech-bis-privacy" class="bis_privacy">
          We respect your privacy and don&#39;t share your email with anybody.
        </p>
        
      </div>
      <div id="thank-you-section" class="hide">
        <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
        <p id="thank-you-title" class="modal-title bis-modal-title">Alert me if this item is restocked</p>
        <hr>
        <div id="request-message" class="">
          <span id="thank-you-description">
            <p>
              <font id="variant_label"></font>
            </p>
          </span>
          <!--
            <span>
              <small>
                <a href="javascript:cancelRequest();">Cancel request</a>
              </small>
            </span>
          -->
        </div>
        <div id="cancel-request-message" style="font-family:inherit;" class="hide">
          <p>We have cancelled your request.</p>
        </div>
        <form class="form-horizontal clearfix">
          <div class="form-group">
            <div class="bis-thank-you-btns">
              <div id="bis-cancel-request-btn-container" class="raw">
                <button
                  id="bis-cancel-request-btn"
                  type="button"
                  onclick="cancelRequest()"
                  class="black-btn btn  btn-success btn-lg btn-block"
                >
                  Cancel request
                </button>
              </div>
              <div id="bis-close-btn-container" class="col-xs-12">
                <button
                  id="bis-close-btn"
                  type="button"
                  onclick="bisCloseModal()"
                  class="black-btn btn  btn-success btn-lg btn-block"
                >
                  Close
                </button>
              </div>
            </div>
          </div>
        </form>
        <div id="bis-upsell-products" class="hide">
          <p id="bis-upsell-heading"></p>
          <div id="bis-upsell-grid"></div>
        </div>
        
        
      </div>
    </div>
  </div>
</div>
<input type="hidden" name="product_id" id="product_id" value="14797823803715">
<input type="hidden" value="3778e7-42.myshopify.com" id="app_shop_permanent_domain">
<!-- Honeypot: hidden from real users, bots will fill this -->
<div style="position:absolute;left:-9999px;top:-9999px;" aria-hidden="true">
  <input type="text" name="bis_website" id="bis_hp_field" tabindex="-1" autocomplete="off" value="">
</div>
<input type="hidden" value="52631343923523" id="selected_variant">
<input type="hidden" value="https://bis.test" id="shopeetech_bis_url">
<input type="hidden" value="" id="variant_json">
<input type="hidden" value="product" id="bis_current_template">

<!-- mobile validator -->
<script defer src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/js/intlTelInput.min.js"></script>
<script>
  

  document.getElementById('selected_variant').value = document.querySelector('[name="id"]')?.value || ''
</script>


  
  <script id="bis-configuration" type="application/json" data-bis="metaobject">
    {
      "ui_settings": {"id":2158,"user_id":2257,"header":{"en_text":"Be the first to know when this product is back in stock.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo sarà disponibile.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"This product is currently being restocked. If you’d like to be notified when it’s available again, simply enter your details below.","es_text":"A menudo reponemos artículos populares o es posible que otros clientes los devuelvan. Si desea recibir una notificación cuando esto suceda, simplemente ingrese sus datos a continuación.","fr_text":"Nous réapprovisionnons souvent les articles populaires. Si vous souhaitez être averti lorsque cela se produit, entrez simplement vos coordonnées ci-dessous.","it_text":"Spesso riassortiamo gli articoli più richiesti oppure potrebbero essere restituiti da altri clienti. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dati qui sotto.","nl_text":"Vaak vullen we populaire artikelen aan, anders kunnen ze door andere klanten worden geretourneerd. Als u op de hoogte wilt worden gesteld wanneer dit gebeurt, vult u hieronder uw gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"show_variant":true,"privacy":{"en_text":"Your privacy matters to us – your information stays safe and confidential.","es_text":"Valoramos su privacidad y mantenemos la confidencialidad de sus datos =\u003e es nuestra promesa para usted.","fr_text":"Nous accordons une grande importance à votre vie privée et gardons vos informations confidentielles.","it_text":"Apprezziamo la tua privacy e manteniamo riservati i tuoi dati =\u003e è la nostra promessa a te.","nl_text":"Wij waarderen uw privacy en houden uw gegevens vertrouwelijk; dat is onze belofte aan u.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"error":{"en_text":"It looks like you’ve already subscribed to notifications for this item.","es_text":"¡Parece que ya tienes notificaciones activas para este artículo!","fr_text":"Il semble que vous ayez déjà des notifications actives pour cet article !","it_text":"Sembra che tu abbia già attive le notifiche per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen actief hebt voor dit item!","bg_color":"#d24325","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit request","es_text":"Enviar solicitud","fr_text":"Soumettre la demande","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"close_btn":null,"thank_you":{"header":{"en_text":"Notify me when this item restocks.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo verrà rifornito.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you, we received your request, We will notify you once this item restocks.","es_text":"Gracias, recibimos su solicitud. Le notificaremos una vez que este artículo se reponga.","fr_text":"Merci, nous avons reçu votre demande, nous vous informerons une fois cet article réapprovisionné.","it_text":"Grazie, abbiamo ricevuto la tua richiesta. Ti informeremo non appena l'articolo verrà rifornito.","nl_text":"Bedankt, we hebben uw verzoek ontvangen. We zullen u op de hoogte stellen zodra dit artikel weer op voorraad is.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","fr_text":"Fermer","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar petición","fr_text":"Annuler ma demande","it_text":"Richiesta cancellata","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"notify_me":{"en_text":"Notify me when in stock","es_text":"Notificarme","fr_text":"Prévenez-moi une fois en stock","it_text":"Avvisami","nl_text":"Breng mij op de hoogte","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit","pre_order_label":{"en_preOrder_text":"{{requested_counter}} Customers requested for this product.","es_preOrder_text":"{{requested_counter}} Clientes solicitados por este producto.","fr_preOrder_text":"{{requested_counter}} Clients demandés pour ce produit.","it_preOrder_text":"{{requested_counter}} I clienti hanno richiesto questo prodotto.","nl_preOrder_text":"{{requested_counter}} Klanten hebben om dit product gevraagd.","preOrder_placement":"Before","preOrder_text_size":"12","preOrder_is_visible":"0","preOrder_text_color":"#000000","preOrder_text_family":"inherit"},"restock_date_style":{"en_restock_text":"Our popular product will be restocked around {{date}}","es_restock_text":"Nuestro popular producto se reabastecerá alrededor {{date}} ","fr_restock_text":"Notre produit populaire sera réapprovisionné autour du {{date}}","it_restock_text":"Il nostro popolare prodotto verrà riassortito {{date}} ","nl_restock_text":"Ons populaire product wordt rond de voorraad aangevuld {{date}} ","restock_placement":"After","restock_text_size":"12","restock_is_visible":false,"restock_text_color":"#000000","restock_text_family":"inherit"},"sold_out_button_setting":"1","notify_me_button_setting":"out_of_stock"},"collection_notify_me":{"coll_btn_pos":null,"product_eval":null,"collection_eval":null,"product_btn_pos":null,"product_element":null,"pdp_get_pid_eval":null,"pdp_get_vid_eval":null,"coll_get_pid_eval":null,"coll_get_vid_eval":null,"collection_status":"1","collection_element":null},"extra":{"sms":{"en_text":"Hi, The product you requested is now back in stock, be first to buy it now  {{short_product_link}}","es_text":"Hola, el producto que solicitaste ya está disponible nuevamente, sé el primero en comprarlo ahora. {{short_product_link}}","fr_text":"Bonjour, Le produit que vous avez demandé est maintenant de nouveau en stock, soyez le premier à l'acheter maintenant {{short_product_link}}","it_text":"Ciao, il prodotto che hai richiesto è ora di nuovo disponibile, sii il primo ad acquistarlo adesso {{short_product_link}}","nl_text":"Hallo, het door u aangevraagde product is nu weer op voorraad, koop het nu als eerste {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":true,"show_image_mobile":0,"is_allowed_message":false,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"pre_extra":{"sms":{"nl_text":"Bedankt voor je aanmelding! We laten het je weten zodra het product weer op voorraad is.  {{short_product_link}}","is_enable":1},"whatsApp":{"is_enable":1},"is_enable_pre":0},"pre_email_template":{"logo":"","style":{"button_accent":"#ffffff","button_primary":"#007B5C"},"nl_text":{"body_":"\u003cp\u003eHoi {{customer_name}},\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eBedankt voor je aanmelding! 🙌 \u003cbr\u003e Je bent succesvol geabonneerd om updates over productbeschikbaarheid te ontvangen.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eWanneer het product dat je wilt weer op voorraad is, laten we het je meteen weten — zodat je het niet misloopt.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eIn de tussentijd kun je gerust meer producten ontdekken in onze winkel.\u003c\/p\u003e\u003cp\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;{{collection_page_link}}\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eNogmaals bedankt,\u003c\/p\u003e\u003cp\u003eHet {{shop_name}} team\u003c\/p\u003e","button_":"Klik om te bekijken\/te kopen","subject_":"Je staat op de lijst! - {{product_title}} 🎉"},"is_signup_email_enable":1},"selecetd_products":null,"selected_collections":null,"code_block_setting":{"bis_js":null,"bis_css":null},"whatsapp_template":"en_default","pre_whatsapp_template":"en_default","created_at":"2025-04-13T09:31:15.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
      "pd_settings": {"id":1391,"user_id":2257,"price_drop":{"en_text":"Price drop alert","es_text":"Alerta de bajada de precio","it_text":"Avviso di abbassamento del prezzo","nl_text":"Prijsdaling melding","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit","showPriceDrop":"0","price_drop_button_setting":"price_drop"},"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"We occasionally reduce prices on popular items. If you would like to be notified when this happens, just enter your details below.","es_text":"Ocasionalmente reducimos los precios de los artículos populares. Si deseas ser notificado cuando esto ocurra, simplemente ingresa tus datos a continuación.","it_text":"Occasionalmente riduciamo i prezzi su articoli popolari. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dettagli qui sotto.","nl_text":"Af en toe verlagen we de prijzen van populaire artikelen. Als je op de hoogte wilt worden gesteld wanneer dit gebeurt, vul dan hieronder je gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit Request","es_text":"Enviar solicitud","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"error":{"en_text":"Looks like you already have notifications active for this item!","es_text":"¡Parece que ya tienes activadas las notificaciones para este artículo!","it_text":"Sembra che tu abbia già una notifica attiva per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen hebt ingeschakeld voor dit artikel!","bg_color":"#ff6347","text_size":"12","text_color":"#000000","text_family":"inherit"},"privacy":{"en_text":"We respect your privacy and will only use your email for this notification.","es_text":"Respetamos tu privacidad y solo utilizaremos tu correo electrónico para esta notificación.","it_text":"Rispettiamo la tua privacy e utilizzeremo la tua email solo per questa notifica.","nl_text":"We respecteren je privacy en zullen je e-mail alleen gebruiken voor deze melding.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"thank_you":{"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#ffffff","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you! We have recorded your request to be notified about price drops. We will only use your email for this purpose.","es_text":"¡Gracias! Hemos registrado tu solicitud para notificarte sobre bajadas de precio. Solo utilizaremos tu correo electrónico para este propósito.","it_text":"Grazie! Abbiamo registrato la tua richiesta di essere avvisato quando il prezzo scende. Utilizzeremo la tua email solo per questo scopo.","nl_text":"Bedankt! We hebben je verzoek om een melding te ontvangen wanneer de prijs daalt geregistreerd. We zullen je e-mail alleen voor dit doel gebruiken.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar solicitud","it_text":"Annulla richiesta","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"extra":{"sms":{"en_text":"Hi, Great news! The product you were interested in is now available at a lower price. Don’t miss out: {{short_product_link}}","es_text":"¡Hola! ¡Buenas noticias! El producto que te interesaba ahora está disponible a un precio más bajo. No lo dejes pasar: {{short_product_link}}","it_text":"Ciao! Ottime notizie! Il prodotto che ti interessava è ora disponibile a un prezzo più basso. Non perdertelo: {{short_product_link}}","nl_text":"Hallo! Goed nieuws! Het product waarin je geïnteresseerd was, is nu beschikbaar voor een lagere prijs. Mis het niet: {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":0,"show_image_mobile":0,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"code_block_setting":null,"custom_setting":{"product_eval":"","product_btn_pos":"","product_element":"","pdp_get_pid_eval":"","pdp_get_vid_eval":""},"whatsapp_template":"en_default","price_drop_selected_products":null,"created_at":"2025-05-06T15:17:19.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
      "pre_order_counter": null,
      "restock_variants": null,
      "langauge": {"primary":"en","limit":true},
      "plan": {"plan_id":3},
      "_sf": {"k":"5d2bdbf7db62b6140ecb1706fad6054776cd25e085d156328a20061c754628af"}
    }
  </script>


<script type="application/json" id="bis-variant-data">
  [
  
    {
      "id": 52631343923523,
      "title": "Default Title",
      "sku": "POSEIDON2831-32",
      "barcode": "3701726207717",
      "price": 3490,
      "compare_at_price": 9990,
      "available": false,
      "inventory_quantity": 0,
      "inventory_management": "shopify",
      "inventory_policy": "deny",
      "weight": 5000,
      "weight_unit": "kg",
      "requires_shipping": true,
      "image": null,
      "options": ["Default Title"],
      "url": "\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?variant=52631343923523"
    }
  
  ]
</script>

<script id="bis-collections" type="application/json">
  [{"id":637372203331,"handle":"pots-fleurs-ceramique","title":"Pots de fleurs en céramique","updated_at":"2026-05-06T14:11:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs en céramique\u003c\/strong\u003e, conçus pour sublimer vos plantes tout en ajoutant une touche d'élégance à vos intérieurs et extérieurs. Majoritairement faits à la main, nos pots allient savoir-faire artisanal et production contrôlée pour garantir à la fois originalité et qualité constante.\u003c\/p\u003e\n\u003cp\u003eChaque \u003cstrong\u003epot en céramique \u003c\/strong\u003eest pensé pour s’adapter à tous les styles : des designs classiques pour une ambiance authentique aux formes modernes pour un look contemporain. Grâce à ce mélange unique de fabrication artisanale et industrielle, nos pots se distinguent par leur durabilité et leur esthétique raffinée.\u003c\/p\u003e","published_at":"2024-12-11T14:30:48+01:00","sort_order":"manual","template_suffix":"collection-footer","disjunctive":false,"rules":[{"column":"type","relation":"equals","condition":"Pot"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:37:09+01:00","alt":"Všechny květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-en-c-ramique-provencelia.webp?v=1769100645"}},{"id":641562804547,"handle":"product-model-poseidon2","title":"Product model: Poseidon2","updated_at":"2026-05-06T13:29:31+02:00","body_html":"","published_at":"2025-03-05T19:41:59+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/224588169539"}],"published_scope":"global"},{"id":637372301635,"handle":"pots-de-fleurs-ronds","title":"Pots de fleurs ronds","updated_at":"2026-05-06T13:29:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs ronds en céramique\u003c\/strong\u003e, qui se distinguent par leurs formes gracieuses et leur design intemporel. Ces jardinières sont le choix parfait pour ceux qui recherchent une combinaison d'élégance et de fonctionnalité. Grâce à leurs lignes arrondies, elles s'intègrent parfaitement dans n'importe quel espace, créant un ensemble harmonieux avec vos plantes.\u003c\/p\u003e\n\u003cp\u003eNos jardinières rondes sont fabriquées à partir de céramique émaillée de qualité, garantissant leur résistance aux intempéries et leur longue durée de vie. Elles constituent un excellent choix pour les espaces\u003cstrong\u003e \u003c\/strong\u003eextérieurs comme intérieurs.\u003c\/p\u003e\n\u003cp\u003eLeur surface lisse et leurs lignes délicates garantissent que vos plantes ont toujours un aspect esthétique et élégant\u003c\/p\u003e","published_at":"2024-12-11T14:30:56+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/247901782339"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:36:58+01:00","alt":"Zaoblené květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-ronds-provencelia.webp?v=1769100640"}}]
</script>

<script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/countries-data.js"></script>
<script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/product-notifyme.js" defer></script>

<script id="bis-shopify-products" type="application/json">
  {"id":14797823803715,"title":"POSEIDON2 Pot 28x31cm abyss blue","handle":"poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","description":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e","published_at":"2025-02-23T12:23:28+01:00","created_at":"2025-02-23T12:23:28+01:00","vendor":"Provencelia","type":"Pot","tags":[],"price":3490,"price_min":3490,"price_max":3490,"available":false,"price_varies":false,"compare_at_price":9990,"compare_at_price_min":9990,"compare_at_price_max":9990,"compare_at_price_varies":false,"variants":[{"id":52631343923523,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"POSEIDON2831-32","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"options":["Default Title"],"price":3490,"weight":5000,"compare_at_price":9990,"inventory_management":"shopify","barcode":"3701726207717","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"],"featured_image":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","options":["Title"],"media":[{"alt":null,"id":57568777863491,"position":1,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","width":2000},{"alt":null,"id":57568777929027,"position":2,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","width":2000},{"alt":null,"id":52933488148803,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","width":1500},{"alt":null,"id":58539757994307,"position":4,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617","width":2000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e"}
</script>

</div></div><div class="product-info__block-item" data-block-id="AU1pmczVlZ2pwTEgvN__bogos_io_free_gift_volume_discount_view_96m7hD-2" data-block-type="@app" ><div id="shopify-block-AU1pmczVlZ2pwTEgvN__bogos_io_free_gift_volume_discount_view_96m7hD-1" class="shopify-block shopify-app-block bogos-discount-view-block offer-block-width-full"><div id="bogos-volume-discount-view"
     data-version="3.0"
     data-offer-id=""
     data-product-handle=""
     data-product-id=""
>
    
</div>

<script type="text/javascript" data-cmp-vendor="bogos" data-cmp-ab="0">
    if (typeof window.BOGOS === "undefined") window.BOGOS = {};
    if (typeof window.BOGOS.block_products === "undefined") window.BOGOS.block_products = {};

    

</script>


</div></div><div class="product-info__block-item" data-block-id="buy_buttons" data-block-type="buy-buttons" ><div class="quantity_selector__custom"><div class="quantity_selector__custom--buy-buttons"><product-form><form method="post" action="/en-fr/cart/add" id="product-form-quick-buy-14797823803715-template--24104113733955__main" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" disabled name="id" value="52631343923523">

      

      <div class="v-stack gap-4"><buy-buttons class="buy-buttons" form="product-form-quick-buy-14797823803715-template--24104113733955__main">
<button type="submit"  class="button w-full" style="--button-background: 47 77 54;--button-outline-color: 47 77 54;--button-text-color: 255 255 255;" disabled>Out of stock</button></buy-buttons>
      </div><input type="hidden" name="product-id" value="14797823803715" /><input type="hidden" name="section-id" value="template--24104113733955__main" /></form></product-form></div>
            </div></div><div class="product-info__block-item" data-block-id="AUXhJR1JXYXRuNk94d__bogos_io_free_gift_progressing_bar_view_Lfpg9Q-2" data-block-type="@app" ><div id="shopify-block-AUXhJR1JXYXRuNk94d__bogos_io_free_gift_progressing_bar_view_Lfpg9Q-1" class="shopify-block shopify-app-block bogos-progressing-bar-view-block">

<div class="bogos-progressing-bar-view" data-offer-id=""></div>


</div></div></div></safe-sticky><a href="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en" class="quick-buy-modal__view-more link sm-max:hidden">View details</a>
      </div>
    </product-rerender>
  </div>
</template><script>
  // We save the product ID in local storage to be eventually used for recently viewed section
  try {
    let recentlyViewedProducts = JSON.parse(localStorage.getItem('theme:recently-viewed-products') || '[]');

    recentlyViewedProducts = recentlyViewedProducts.filter(item => item !== 14797823803715); // Delete product to remove to the start
    recentlyViewedProducts.unshift(14797823803715); // Add at the start

    localStorage.setItem('theme:recently-viewed-products', JSON.stringify(recentlyViewedProducts));
  } catch (e) {
    // Safari in private mode does not allow setting item, we silently fail
  }
</script>


<style> #shopify-section-template--24104113733955__main .product-gallery {gap: 0.5rem;} #shopify-section-template--24104113733955__main .price-list--product > * {font-size: var(--text-h3);} #shopify-section-template--24104113733955__main [data-block-id="text_3VeqxQ"] {margin-block-start: 0rem;} #shopify-section-template--24104113733955__main .variant-picker__option-info {color: rgb(var(--text-color) / 0.65);} #shopify-section-template--24104113733955__main table {max-width: 100%;} </style></section><section id="shopify-section-template--24104113733955__image_with_text_NK6jmN" class="shopify-section shopify-section--image-with-text"><style>
    #shopify-section-template--24104113733955__image_with_text_NK6jmN {
      --image-with-text-content-max-width: 100%;
    }
  </style>
  <div class="section-spacing color-scheme color-scheme--scheme-4 color-scheme--bg-507cd7970d7dae35a77a0e63cbf75a96               hidden">
    <image-with-text class="image-with-text image-with-text--reverse"><svg class="placeholder" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg><div class="prose text-center sm:text-start"><p class="h6" >Pots Poseidon2</p><p class="h1" >Learn more about pots Poseidon2</p></div>
    </image-with-text>
  </div>
</section><section id="shopify-section-template--24104113733955__image_with_text_ikkJcX" class="shopify-section shopify-section--image-with-text"><style>
    #shopify-section-template--24104113733955__image_with_text_ikkJcX {
      --image-with-text-content-max-width: 100%;
    }
  </style>
  <div class="section-spacing color-scheme color-scheme--scheme-4 color-scheme--bg-507cd7970d7dae35a77a0e63cbf75a96               hidden">
    <image-with-text class="image-with-text"><svg class="placeholder" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg><div class="prose text-center sm:text-start"><p class="h6" >Pot guide Poseidon2</p><p class="h1" >How to choose the right size?</p></div>
    </image-with-text>
  </div>
<style> #shopify-section-template--24104113733955__image_with_text_ikkJcX .section-spacing {padding-top: 3rem;} </style></section><section id="shopify-section-template--24104113733955__1765897222922b0ae8" class="shopify-section shopify-section--apps"><div class="color-scheme color-scheme--scheme-1 color-scheme--bg-262da8014d7d6e3c30cd4b6a9bb7a338 section-spacing bordered-section">
    <div class="container"><div id="shopify-block-AMG1GYXVJWUxRZHBvT__klaviyo_reviews_product_reviews_dPRpCN" class="shopify-block shopify-app-block">
<div id="fulfilled-reviews-all" data-id="14797823803715">

</div>



</div></div>
  </div>
</section>
<!-- BEGIN sections: footer-group -->
<section id="shopify-section-sections--24055303307587__17301934791efaae1e" class="shopify-section shopify-section-group-footer-group shopify-section--apps">
<style> #shopify-section-sections--24055303307587__17301934791efaae1e #insta-feed h2 {font-size: var(--text-h2); font-family: var(--heading-font-family);} </style></section><section id="shopify-section-sections--24055303307587__text-with-icons" class="shopify-section shopify-section-group-footer-group shopify-section--text-with-icons"><div class="section-spacing section-spacing--tight color-scheme color-scheme--scheme-4 color-scheme--bg-507cd7970d7dae35a77a0e63cbf75a96">
    <div class="container">
      <div class="v-stack gap-8"><text-with-icons-carousel disabled-on="sm" allow-swipe id="text-with-icons-sections--24055303307587__text-with-icons" class="text-with-icons full-bleed sm:unbleed" role="region" style="--border-color: var(--text-color) / 0.15;"><div class="text-with-icons__item is-selected snap-center" role="group" aria-label="Item 1 of 3" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><div style="--border-color: var(--text-color) / 0.15;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="24" class="sm:hidden icon icon-picto-coupon" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="M1.061 2.56v6.257a3 3 0 0 0 .878 2.121L13.5 22.5a1.5 1.5 0 0 0 2.121 0l6.879-6.88a1.5 1.5 0 0 0 0-2.121L10.939 1.938a3 3 0 0 0-2.121-.878H2.561a1.5 1.5 0 0 0-1.5 1.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M6.311 7.81a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="48" class="hidden sm:block icon icon-picto-coupon" viewbox="0 0 24 24">
      <path clip-rule="evenodd" d="M1.061 2.56v6.257a3 3 0 0 0 .878 2.121L13.5 22.5a1.5 1.5 0 0 0 2.121 0l6.879-6.88a1.5 1.5 0 0 0 0-2.121L10.939 1.938a3 3 0 0 0-2.121-.878H2.561a1.5 1.5 0 0 0-1.5 1.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M6.311 7.81a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg></div><div class="v-stack gap-2 text-center sm:text-center"><p class="h6"><strong>Affordable price</strong></p><div class="prose"><p>Affordable prices for pots that combine quality, elegance, and durability. Give your plants the best, without compromise.</p></div></div></div>
            </div><div class="text-with-icons__item  snap-center" role="group" aria-label="Item 2 of 3" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><div style="--border-color: var(--text-color) / 0.15;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="48" class="sm:hidden icon icon-picto-delivery-truck" viewbox="0 0 24 24">
      <path d="M23.25 13.5V6a1.5 1.5 0 0 0-1.5-1.5h-12A1.5 1.5 0 0 0 8.25 6v6m0 0V6h-3a4.5 4.5 0 0 0-4.5 4.5v6a1.5 1.5 0 0 0 1.5 1.5H3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M.75 12h3a1.5 1.5 0 0 0 1.5-1.5V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M7.5 19.5a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm12 0a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12 18h3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="48" class="hidden sm:block icon icon-picto-delivery-truck" viewbox="0 0 24 24">
      <path d="M23.25 13.5V6a1.5 1.5 0 0 0-1.5-1.5h-12A1.5 1.5 0 0 0 8.25 6v6m0 0V6h-3a4.5 4.5 0 0 0-4.5 4.5v6a1.5 1.5 0 0 0 1.5 1.5H3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M.75 12h3a1.5 1.5 0 0 0 1.5-1.5V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M7.5 19.5a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm12 0a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12 18h3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg></div><div class="v-stack gap-2 text-center sm:text-center"><p class="h6"><strong>Quality and fast delivery</strong></p><div class="prose"><p>No need to travel – your pots are delivered directly to your home thanks to pallet transport</p></div></div></div>
            </div><div class="text-with-icons__item  snap-center" role="group" aria-label="Item 3 of 3" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><div style="--border-color: var(--text-color) / 0.15;"><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="48" class="sm:hidden icon icon-picto-customer-support" viewbox="0 0 24 24">
      <path d="M12.75 15.75h3v4.5l4.5-4.5h1.494c.832 0 1.506-.674 1.506-1.506V2.25a1.5 1.5 0 0 0-1.5-1.5h-12a1.5 1.5 0 0 0-1.5 1.5v4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M19.875 7.875a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75m-7.5 0a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75m3.75 0a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M6.75 16.5a3.375 3.375 0 1 0 0-6.75 3.375 3.375 0 0 0 0 6.75Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12.75 23.25a6.054 6.054 0 0 0-12 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg><svg aria-hidden="true" focusable="false" fill="none" stroke-width="1.5" width="48" class="hidden sm:block icon icon-picto-customer-support" viewbox="0 0 24 24">
      <path d="M12.75 15.75h3v4.5l4.5-4.5h1.494c.832 0 1.506-.674 1.506-1.506V2.25a1.5 1.5 0 0 0-1.5-1.5h-12a1.5 1.5 0 0 0-1.5 1.5v4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M19.875 7.875a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75m-7.5 0a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75m3.75 0a.375.375 0 1 0 0 .75.375.375 0 0 0 0-.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path clip-rule="evenodd" d="M6.75 16.5a3.375 3.375 0 1 0 0-6.75 3.375 3.375 0 0 0 0 6.75Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M12.75 23.25a6.054 6.054 0 0 0-12 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    </svg></div><div class="v-stack gap-2 text-center sm:text-center"><p class="h6"><strong>We are here to answer your questions</strong></p><div class="prose"><p>Choosing a ceramic pot can be a complex process. We are here to make it easier for you.</p></div></div></div>
            </div></text-with-icons-carousel><carousel-navigation aria-controls="text-with-icons-sections--24055303307587__text-with-icons" class="page-dots sm:hidden"><button class="tap-area" aria-current="true">
                  <span class="sr-only">Go to item 1</span>
                </button><button class="tap-area" aria-current="false">
                  <span class="sr-only">Go to item 2</span>
                </button><button class="tap-area" aria-current="false">
                  <span class="sr-only">Go to item 3</span>
                </button></carousel-navigation></div>
    </div>
  </div><style> #shopify-section-sections--24055303307587__text-with-icons .text-with-icons__item {font-size: 16px;} #shopify-section-sections--24055303307587__text-with-icons .h6 {font-weight: 500; font-size: 16px;} #shopify-section-sections--24055303307587__text-with-icons .container {padding-top: 0.5rem; padding-bottom: 0.5rem;} </style></section><footer id="shopify-section-sections--24055303307587__footer" class="shopify-section shopify-section-group-footer-group shopify-section--footer"><style>
  #shopify-section-sections--24055303307587__footer {
    --footer-content-justify-items: space-between;
  }
</style><div class="footer color-scheme color-scheme--scheme-3 color-scheme--bg-77e774e6cc4d94d6a32f6256f02d9552">
  <div class="container">
    <div class="footer__inner"><div class="footer__block-list"><div class="footer__block footer__block--text" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Provencelia – glazed terracotta pots</p><div class="prose text-subdued"><p>Discover our range of glazed terracotta pots, combining aesthetics and functionality. Whether classic for timeless elegance or modern with clean lines, our creations adapt to all decors, both indoors and outdoors. At Provencelia, each pot is carefully selected for its quality, style, and durability, enhancing your plants all year round</p></div></div></div><div class="footer__block footer__block--links" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Favorites</p><ul class="v-stack gap-2.5 unstyled-list" role="list"><li>
                            <a href="/en-fr/collections/pots-de-fleurs" class="link-faded">Flower pots</a>
                          </li><li>
                            <a href="/en-fr/collections/lot-pot-de-fleurs-olivier" class="link-faded">🌿Duo Olivier & Pot Design</a>
                          </li><li>
                            <a href="/en-fr/collections/mobilier-de-jardin" class="link-faded">Garden furniture</a>
                          </li><li>
                            <a href="/en-fr/collections/nouveautes-maison-jardin" class="link-faded">New Arrivals</a>
                          </li><li>
                            <a href="/en-fr/blogs/conseils-jardinage" class="link-faded">Gardening tips</a>
                          </li><li>
                            <a href="/en-fr/pages/contact" class="link-faded">Contact</a>
                          </li></ul>
                    </div></div><div class="footer__block footer__block--links" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Information</p><ul class="v-stack gap-2.5 unstyled-list" role="list"><li>
                            <a href="/en-fr/policies/legal-notice" class="link-faded">Legal Notice</a>
                          </li><li>
                            <a href="/en-fr/policies/privacy-policy" class="link-faded">Privacy Policy</a>
                          </li><li>
                            <a href="/en-fr/policies/terms-of-service" class="link-faded">Terms of Use</a>
                          </li><li>
                            <a href="/en-fr/policies/terms-of-sale" class="link-faded">Terms and Conditions of Sale</a>
                          </li><li>
                            <a href="/en-fr/policies/shipping-policy" class="link-faded">Shipping Policy</a>
                          </li><li>
                            <a href="/en-fr/policies/refund-policy" class="link-faded">Return Policy</a>
                          </li><li>
                            <a href="/en-fr/search" class="link-faded">Search</a>
                          </li></ul>
                    </div></div><div class="footer__block footer__block--newsletter" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Newsletter</p><div class="prose text-subdued"><p> Subscribe to our newsletter and receive exclusive offers.</p></div><form method="post" action="/en-fr/contact#newsletter-form-sections--24055303307587__footer" id="newsletter-form-sections--24055303307587__footer" accept-charset="UTF-8" class="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="form-control" ><input id="input--sections--24055303307587__footer--contactemail" class="input" type="email" dir="ltr" name="contact[email]" placeholder="E-mail" 
  
  
  
  
  
  autocomplete="email"
  
  enterkeyhint="send"
  required
><label for="input--sections--24055303307587__footer--contactemail" class="floating-label text-xs">E-mail</label></div><div class="align-self-start">
<button type="submit"  class="button" >Sign up</button></div></form></div></div></div><ul class="social-media social-media--list unstyled-list" role="list"><li class="social-media__item branding-colors--facebook">
      <a href="https://www.facebook.com/provencelia.fr/" class="tap-area" target="_blank" rel="noopener" aria-label="Follow us on Facebook"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-facebook" viewbox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
    </svg></a>
    </li><li class="social-media__item branding-colors--instagram">
      <a href="https://www.instagram.com/provencelia.fr/" class="tap-area" target="_blank" rel="noopener" aria-label="Follow us on Instagram"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-instagram" viewbox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
    </svg></a>
    </li><li class="social-media__item branding-colors--pinterest">
      <a href="https://www.pinterest.com/provencelia_fr/" class="tap-area" target="_blank" rel="noopener" aria-label="Follow us on Pinterest"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-pinterest" viewbox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.765 2.401c3.59-.054 5.837 1.4 6.895 3.95.349.842.722 2.39.442 3.675-.112.512-.144 1.048-.295 1.53-.308.983-.708 1.853-1.238 2.603-.72 1.02-1.81 1.706-3.182 2.052-1.212.305-2.328-.152-2.976-.643-.206-.156-.483-.36-.56-.643h-.029c-.046.515-.244 1.062-.383 1.531-.193.65-.23 1.321-.472 1.929a12.345 12.345 0 0 1-.942 1.868c-.184.302-.692 1.335-1.061 1.347-.04-.078-.057-.108-.06-.245-.118-.19-.035-.508-.087-.766-.082-.4-.145-1.123-.06-1.53v-.643c.096-.442.092-.894.207-1.317.25-.92.39-1.895.648-2.848.249-.915.477-1.916.678-2.847.045-.21-.21-.815-.265-1.041-.174-.713-.042-1.7.176-2.236.275-.674 1.08-1.703 2.122-1.439.838.212 1.371 1.118 1.09 2.266-.295 1.205-.677 2.284-.943 3.49-.068.311.05.641.118.827.248.672 1 1.324 2.004 1.072 1.52-.383 2.193-1.76 2.652-3.246.124-.402.109-.781.206-1.225.204-.935.118-2.331-.177-3.061-.472-1.17-1.353-1.92-2.563-2.328L12.707 4.3c-.56-.128-1.626.064-2.004.183-1.69.535-2.737 1.427-3.388 3.032-.222.546-.344 1.1-.383 1.868l-.03.276c.13.686.144 1.14.413 1.653.132.252.447.451.5.765.032.185-.104.464-.147.613-.065.224-.041.48-.147.673-.192.349-.714.087-.943-.061-1.192-.77-2.175-2.995-1.62-5.144.085-.332.09-.62.206-.919.723-1.844 1.802-2.978 3.359-3.95.583-.364 1.37-.544 2.092-.734l1.149-.154Z" fill="currentColor"/>
    </svg></a>
    </li></ul><div class="footer__aside"><div class="localization-selectors"><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization--sections--24055303307587__footer-country" aria-label="Change country or currency" aria-expanded="false"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" class="country-flag"><span>France (EUR €)</span><svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization--sections--24055303307587__footer-country" initial-focus="[aria-selected='true']" class="popover popover--top-start color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Country</p><form method="post" action="/en-fr/localization" id="localization-form--sections--24055303307587__footer-country" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="BE" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60" alt="Belgium" srcset="//cdn.shopify.com/static/images/flags/be.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Belgium (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="FR" aria-selected="true"><img src="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60" alt="France" srcset="//cdn.shopify.com/static/images/flags/fr.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>France (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="IT" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60" alt="Italy" srcset="//cdn.shopify.com/static/images/flags/it.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Italy (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="LU" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60" alt="Luxembourg" srcset="//cdn.shopify.com/static/images/flags/lu.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Luxembourg (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="MC" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60" alt="Monaco" srcset="//cdn.shopify.com/static/images/flags/mc.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Monaco (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="NL" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60" alt="Netherlands" srcset="//cdn.shopify.com/static/images/flags/nl.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Netherlands (EUR €)</span>
              </button><button type="submit" name="country_code" class="popover__value-option h-stack gap-2.5" role="option" value="ES" aria-selected="false"><img src="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60" alt="Spain" srcset="//cdn.shopify.com/static/images/flags/es.svg?format=jpg&amp;width=60 60w" width="60" height="45" loading="lazy" class="country-flag"><span>Spain (EUR €)</span>
              </button></x-listbox></form></x-popover>
    </div><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization--sections--24055303307587__footer-locale" aria-label="Change language" aria-expanded="false">English<svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewbox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization--sections--24055303307587__footer-locale" initial-focus="[aria-selected='true']" class="popover popover--top-start color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Language</p><form method="post" action="/en-fr/localization" id="localization-form--sections--24055303307587__footer-locale" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr/products/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?_pos=1&_sid=b867d9fbb&_ss=r" /><x-listbox class="popover__value-list"><button type="submit" name="locale_code" class="popover__value-option" role="option" value="fr" aria-selected="false">Français</button><button type="submit" name="locale_code" class="popover__value-option" role="option" value="en" aria-selected="true">English</button></x-listbox></form></x-popover>
    </div></div><p class="heading text-subdued text-xxs">© 2026 - Provencelia. Design and customizations by <a href="https://ecommercepot.com" taget="_blank">Ecommerce Pot</a>.</p><ul class="payment-methods unstyled-list"><li><svg 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><svg width="38" height="24" role="img" viewbox="0 0 38 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-labelledby="pi-cartes_bancaires"><title id="pi-cartes_bancaires">Cartes Bancaires</title><rect x="1" y="1" width="36" height="22" rx="2" fill="url(#pi-cartes_bancaires-paint0_linear)"/><rect x=".5" y=".5" width="37" height="23" rx="2.5" stroke="#000" stroke-opacity=".07"/><path fill-rule="evenodd" clip-rule="evenodd" d="M28 9.934c0 1.067-.8 1.932-1.79 1.934v.002h-6.52V8h6.52c.99.002 1.79.867 1.79 1.934zm0 4.104c0 1.067-.8 1.932-1.79 1.934v.003h-6.52v-3.87h6.52c.99.002 1.79.867 1.79 1.933zm-13.224-1.934h4.788v.378c0 1.943-1.46 3.518-3.26 3.518H13.26C11.46 16 10 14.425 10 12.482v-.938c0-1.943 1.46-3.518 3.26-3.518h3.044c1.8 0 3.26 1.575 3.26 3.518v.326h-4.788v.234z" fill="#fff"/><defs><lineargradient id="pi-cartes_bancaires-paint0_linear" x1="37" y1="1" x2="17.422" y2="33.036" gradientunits="userSpaceOnUse"><stop stop-color="#083969"/><stop offset=".492" stop-color="#007B9D"/><stop offset="1" stop-color="#00A84A"/></lineargradient></defs></svg></li><li><svg 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><svg 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><svg xmlns="http://www.w3.org/2000/svg" role="img" viewbox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</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" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
</li><li><svg 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></ul></div>
    </div>
  </div>
</div>

<style> #shopify-section-sections--24055303307587__footer .h6 {font-size: var(--text-h5);} #shopify-section-sections--24055303307587__footer .color-scheme {padding-top: 4rem;} </style></footer>
<!-- END sections: footer-group --></main>
  <style> .badge--on-sale {color: white;} .complementary-products__header .h6 {font-size: var(--text-xs);} </style>
<div id="shopify-block-AdjkraUk3aFVvenQ3d__8605505498557855500" class="shopify-block shopify-app-block bogos-shopify-block">


<div id="secomapp_freegifts_version" data-version="3.0"></div>

    <!-- BEGIN app snippet: freegifts-snippet --><link href="//cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/glider.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="//cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/freegifts-main.min.css" rel="stylesheet" type="text/css" media="all" />










<style id="sca_fg_custom_style">
    
        .freegifts-main-container .fg-section-title, .freegifts-main-container .bogos-slider-info-title { color: #121212; }
        .freegifts-main-container .product-title, .freegifts-main-container .bogos-gift-product-title { color: #000000; }
        .freegifts-main-container .original-price, .freegifts-main-container .bogos-gift-item-compare-price { color: #121212; }
        .freegifts-main-container .gift-price, .freegifts-main-container .bogos-gift-item-price { color: #ea5455; }
        .freegifts-main-container .btn-add-to-cart { color: #FFFFFF; background-color: #7367f0; }
        .freegifts-main-container .bogos-slider-offer-badge { background: #FFEF9D }
        .freegifts-main-container .bogos-slider-offer-badge.success { background: #CDFEE1 }
        .freegifts-main-container .bogos-slider-offer-title { color: #000000 }
        .freegifts-main-container .btn-add-to-cart svg path { fill: #FFFFFF; }
        .bogos-gift-select-variant-title { color: #005BD3; }
        .bogos-gift-select-variant-title-contain::after { border-color: #005BD3; }
        
        .fg-gift-thumbnail-offer-title { color: #000000; }
        .fg-gift-thumbnail-container { border-color: #8A8A8A; }
        .fg-gift-thumbnail-offer-time { background-color: #000000; }
        #sca-gift-thumbnail .sca-gift-image { width: 50px; max-height: 50px; }

        #sca-gift-icon .sca-gift-icon-img { width: 50px; max-height: 50px; }
        .sca-gift-icon-collection-page .sca-gift-icon-collection-img { width: 50px; max-height: 50px; }

        #sca-promotion-glider { color: #ffffff; background-color: #F72119; }
        
        
        
        .bogos-bundles-widget { background-color: #F3F3F3;  }
        .bogos-bundles-widget-body .bogos-bundle-item { background-color: #FFFFFF; }
        .bogos-bundles-widget .bogos-bundles-widget-title { color: #303030; }
        .bogos-bundles-widget .bogos-bundles-widget-description { color: #616161; }
        .bogos-bundle-item .bogos-bundle-item-title { color: #303030; }
        .bogos-bundle-item .bogos-bundle-item-discount-price, .bogos-bundles-widget .bogos-bundles-total-discount-price { color: #005BD3; }
        .bogos-bundle-item .bogos-bundle-item-original-price, .bogos-bundles-widget .bogos-bundles-total-original-price { color: #005BD3; }
        .bogos-bundles-widget-footer .bogos-bundles-button-add { color: #FFFFFF; background-color: #303030; }
        .bogos-bundles-widget .bogos-bundle-shipping-discount-container { background-color: #DEE6FF; }
        .bogos-bundles-widget .bogos-bundle-shipping-discount-title { color: #2332D5; }
        
        .bogos-bundles-quantity-break-widget { background-color: #FFFFFF; border-style: solid; border-width: 1px; border-color: #616161; }
        .bogos-bundles-quantity-break-widget-title { color: #303030; }
        .bogos-bundles-quantity-break-widget-description { color: #303030; }
        .bogos-bundle-quantity-break-item-original-price, .bogos-bundles-quantity-break-origin-price { color: #B5B5B5; }
        .bogos-bundles-quantity-break-button-add { background: #2F4D36; color: #FFFFFF; }
        .bogos-bundle-quantity-break_item-container { background: #FFFFFF; }
        .bogos-bundle-quantity-break-label { background: #FFa422; color: #FFFFFF; }
        .bogos-bundle-quantity-break-tag { background: #F1F1F1; color: #303030; }
        .bogos-bundle-quantity-break-sub-title { color: #616161; }
        .bogos-bundles-quantity-break-discount-price { color: #303030; }
        .bogos-bundle-quantity-break-title { color: #303030; }
        .bogos-bundle-quantity-break-item-discount-price { color: #303030; }

        .bogos-volume-discount-widget.default-layout { background-color: #FFFFFF; border-style: solid; border-width: 1px; border-color: #616161; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-widget-title { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-widget-description { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-item-original-price , .bogos-volume-discount-origin-price { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-button-add { background: #2F4D36; color: #FFFFFF; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount_item-container { background: #FFFFFF; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-label { background: #FFa422; color: #FFFFFF; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-tag { background: #F1F1F1; color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-sub-title { color: #616161; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-item-discount-price { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-tier-price-primary span { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-discount-price { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-title { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-volume-discount-origin-price, .bogos-volume-discount-widget.default-layout .bogos-volume-discount-item-original-price { color: #B5B5B5; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-widget-header { background-color: #F3F3F3; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-widget-title { color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-widget-description { color: #303030; }
        .bogos-volume-discount-table-container.line-style .bogos-volume-discount-item { background-color: #FFFFFF; }
        .bogos-volume-discount-widget.table-layout, .bogos-volume-discount-widget.table-layout .bogos-volume-discount-item, .bogos-volume-discount-widget-body .bogos-volume-discount-tier-info, .bogos-volume-discount-widget.table-layout .bogos-volume-discount-widget-header { border-color: #E0E0E0; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-title { color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-description { color: #616161; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tag { background-color: #F1F1F1; color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tier-discount-text { color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tier-label { color: #FFFFFF; background-color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tier-discount-price { color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tier-price-primary span { color: #303030; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-tier-origin-price { color: #B5B5B5; }
        .bogos-volume-discount-table-container.is-hidden-line .bogos-volume-discount-tier-info { border-color: transparent; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-table-container.zebra-style .bogos-volume-discount-item:nth-child(odd) { background-color: #FFFFFF; }
        .bogos-volume-discount-widget.table-layout .bogos-volume-discount-table-container.zebra-style  .bogos-volume-discount-item:nth-child(even) { background-color: #F5F5F5; }
        .bogos-volume-discount-widget .bogos-vl-tb-shipping-label { color: #2332D5; }
        .bogos-volume-discount-widget .bogos-vl-shipping-label { color: #2332D5; }
        .bogos-volume-discount-widget .bogos-vl-shipping-container { background-color: DEE6FF; }
        .bogos-volume-discount-widget.default-layout .bogos-vl-subscription-option-title { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-vl-subscription-section-title { color: #303030; }
        .bogos-volume-discount-widget.default-layout .bogos-vl-subscription-input-checkbox:checked { background-color: #2F4D36; border-color: #2F4D36;}
        .bogos-volume-discount-widget.default-layout input[type=radio]:checked { background-color: #2F4D36; border-color: #2F4D36;}
        
        .bogos-mix-match-widget { background-color: #F3F3F3; ; }
        .bogos-mix-match-widget .bogos-mix-item { background-color: #FFFFFF; }
        .bogos-mix-match-widget .bogos-mix-match-widget-title { color: #303030; }
        .bogos-mix-match-widget .bogos-mix-match-widget-description { color: #616161; }
        .bogos-mix-match-widget .bogos-mix-item-title { color: #303030; }
        .bogos-mix-match-widget .bogos-mix-item-discount-price { color: #303030; }
        .bogos-mix-match-widget .bogos-mix-item-original-price { color: #B5B5B5; }
        .bogos-mix-match-widget .bogos-mix-match-button-add { color: #FFFFFF; background-color: #303030; }
        .bogos-mix-match-widget .bogos-mix-match-badge-item { background-color: #FFF8DB; }
        .bogos-mix-match-widget .bogos-mix-match-badge-item.success { background-color: #CDFEE1; }
        .bogos-mix-match-widget .bogos-mix-match-badge-item .bogos-mix-match-badge-title { color: #4F4700; }
        .bogos-mix-match-widget .bogos-mix-match-badge-item.success .bogos-mix-match-badge-title { color: #29845A; }
        .bogos-mix-match-widget .bogos-mix-match-shipping-discount-container { background-color: #DEE6FF; }
        .bogos-mix-match-widget .bogos-mix-match-shipping-discount-title { color: #2332D5; }
        
        .bogos-bundle-page-container .bogos-bp-steps-bar, .bogos-bundle-page-container .bogos-bp-step-bar-single { background-color: #F3F3F3; }
        .bogos-bundle-page-container .bogos-bp-step-title { color: #303030; }
        .bogos-bp-steps-container .bogos-bp-step-item.active { border-bottom: solid 3px #303030; }
        .bogos-bundle-page-container .bogos-bp-header-title { color: #303030; }
        .bogos-bundle-page-container .bogos-bp-header-subtitle { color: #303030; }
        .bogos-bundle-page-container .bogos-bp-step-header-title { color: #303030; }
        .bogos-bundle-page-container .bogos-bp-step-header-subtitle { color: #616161; }
        .bogos-bundle-page-container .bogos-bp-product-title, .bogos-step-item .bogos-step-item-title, .bogos-product-detail-modal .bogos-product-title { color:  #303030; }
        .bogos-step-items-container .bogos-step-item-variant-title { color: #616161; }
        .bogos-bundle-page-container .bogos-bp-product-price, .bogos-step-item .bogos-step-item-discount-price, .bogos-bp-widget-footer .bogos-bp-total-discount-price {  color:  #303030; }
        .bogos-step-item .bogos-step-item-original-price, .bogos-bp-widget-footer .bogos-bp-total-original-price { color:  #808080; }
        .bogos-bundle-page-container .bogos-bp-btn-add-product, .bogos-product-detail-modal .bogos-product-add-btn { background-color: #303030; color: #FFFFFF }
        .bogos-bp-widget-container .bogos-bp-widget { background-color: #F3F3F3; ; }
        .bogos-bp-widget .bogos-bp-widget-title { color: #303030; }
        .bogos-bp-widget .bogos-bp-widget-description { color: #303030; }
        .bogos-step-items-product-require.success .bogos-step-items-product-require-title { color: #2332D5; }
        .bogos-bp-widget .bogos-bp-button-add { background-color: #303030; color: #FFFFFF; }
        .bogos-bp-widget-badges-container .bogos-bp-widget-badge-item { background-color: #FFF8DB; }
        .bogos-bp-widget-badges-container .bogos-bp-widget-badge-item.success { background-color: #CDFEE1; }
        .bogos-bp-widget-badges-container .bogos-bp-widget-badge-title { color: #4F4700; }
        .bogos-bp-widget-badge-item.success .bogos-bp-widget-badge-title { color: #29845A; }
        .bogos-bp-widget .bogos-bundle-page-shipping-discount-container { background-color: #DEE6FF; }
        .bogos-bp-widget .bogos-bundle-page-shipping-discount-title { color: #2332D5; }
        
        .bogos-fbt-upsell-container { background: #F6F6F6; }
        .bogos-fbt-header-title { color: #303030; }
        .bogos-fbt-header-description { color: #303030; }
        .bogos-fbt-footer-discounted-price { color: #303030; }
        .bogos-fbt-footer-original-price { color: #616161; }
        .bogos-fbt-footer-button-add { background: #303030; color: #FFFFFF; }
        .bogos-fbt-product-title {color: #303030; }
        .bogos-fbt-upsell-product-discounted-price {color: #303030; }
        .bogos-fbt-upsell-product-original-price {color: #808080; }
        .is-cheapest-free-label {color: #FFFFFF ;background-color: #FFAA00;}
        .is-cheapest-free {background-color: rgba(255, 170, 0, 0.2);}
        .bogos-fbt-this-item {background-color: #D1D1D1;color: #303030;}
        .bogos-fbt-upsell-body-item-checkbox {border-color: #303030;}
        .bogos-fbt-upsell-body-item-checkbox:checked {border-color: #303030; background-color: #303030;}
        .bogos-fbt-shipping-discount-container { background-color: #DEE6FF; }
        .bogos-fbt-shipping-discount-title { color: #2332D5; }
        
        .bogos-cheapest-discount {background-color: #ffffff; border-color: #888888;}
        .bogos-cheapest-discount .bogos-cheapest-title { color: #303030; }
        .bogos-cheapest-list-product-modal .bogos-cheapest-title { color: #303030; }
        .bogos-cheapest-discount .bogos-cheapest-description { color: #616161; }
        .bogos-cheapest-product-card .bogos-cheapest-product-title { color: #303030; }
        .bogos-cheapest-product-card .bogos-cheapest-product-price { color: #303030; }
        .bogos-cheapest-product-card .bogos-cheapest-select-variant-title { color: #303030; }
        .bogos-cheapest-product-card .bogos-cheapest-product-add-btn { color: #ffffff; background-color: #303030}
        .bogos-cheapest-label-item.active .bogos-cheapest-label { color: #303030; }
        .bogos-cheapest-label-item.active #bogos-active-icon path { fill: #303030; }
        .bogos-cheapest-label-item.excluded .bogos-cheapest-label { color: #CCCCCC; }
        .bogos-cheapest-label-item.excluded #bogos-excluded-icon path { fill: #CCCCCC; }
        .bogos-cheapest-label-item:not(.active):not(.excluded) #bogos-uncheck-icon path { fill: #4A4A4A; }
        .bogos-cheapest-label-item:not(.active):not(.excluded) .bogos-cheapest-label { color: #303030; }
        .bogos-cheapest-discount .bogos-cheapest-label-container:not(:has(.bogos-cheapest-discount-bullet-items)) {background-color: #F6F6F6;}
        .bogos-cheapest-discount .bogos-cheapest-discount-bullet-item {color: #808080;}
        .bogos-cheapest-discount .bogos-cheapest-products-describe {color: #616161;}
        .bogos-cheapest-discount .bogos-cheapest-products-more-btn {color: #303030;}
        
        .bogos-select-option-custom-item:not(.bogos-option-default):not(.bogos-active):not(has(.sca-d-none)) {background-color: #F0F0F0; color: #303030;}
        .bogos-select-option-custom-item:not(.bogos-option-default).bogos-active:not(has(.sca-d-none)) {background-color: #F0F0F0; color: #303030;}
        .bogos-select-option-custom-item:not(.bogos-option-default).bogos-active {border: 0.5px solid #303030;}
        .bogos-select-option-custom-item.bogos-option-default:not(.bogos-active) .bogos-option-value-title {background-color: #F0F0F0; color: #303030;}
        .bogos-select-option-custom-item.bogos-option-default.bogos-active .bogos-option-value-title {background-color: #F0F0F0; color: #303030;}
        .bogos-select-option-custom-item.bogos-option-default.bogos-active {border: 0.5px solid #303030;}
        .bogos-mix-item-select-variant-option:hover, .bogos-gift-select-variant-option:hover, .bogos-bundle-select-variant-option:hover, .bogos-vl-select-variant-option:hover, .bogos-fbt-variant-item:hover {background-color: #F0F0F0;}
        
    
</style>
<script id="sca_fg_custom_script" data-cmp-vendor="bogos" data-cmp-ab="0">
    
</script>

<script src="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/glider.min.js" defer></script>
<script src="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/lz-string.min.js" defer></script>

<div id="freegifts-main-popup-container" class="freegifts-main-container sca-modal-fg"
     data-animation="slideInOutTop"></div>
<div id="sca-fg-notifications" class="sca-fg-notifications"></div>
<div id="bogos-to-widget-icon-wrap"></div>
<div id="bogos-to-widget-iframe"></div>

<div id="sca-fg-today-offer-widget"></div>
<div id="sca-fg-today-offer-iframe"></div>

<div id="bogos-mix-match-main-collection-popup-container" class="sca-modal-fg"></div>
<div id="bogos-main-popup-product-detail-container" data-animation="slideInOutTop"></div>
<div id="bogos-main-popup-more-product-container" data-animation="slideInOutTop"></div>

<div id="bogos-cart-discount-congrats-msg-wrap"></div>

<script type="text/javascript" data-cmp-vendor="bogos" data-cmp-ab="0">
    if (typeof Shopify === "undefined") window.Shopify = {};
    Shopify.cartItems = [];
    Shopify.current_product = {};
    Shopify.current_collection = {};
    Shopify.products = {};

    //cart item
    

    // current product or collection
    Shopify.current_product = {...{"id":14797823803715,"title":"POSEIDON2 Pot 28x31cm abyss blue","handle":"poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","description":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e","published_at":"2025-02-23T12:23:28+01:00","created_at":"2025-02-23T12:23:28+01:00","vendor":"Provencelia","type":"Pot","tags":[],"price":3490,"price_min":3490,"price_max":3490,"available":false,"price_varies":false,"compare_at_price":9990,"compare_at_price_min":9990,"compare_at_price_max":9990,"compare_at_price_varies":false,"variants":[{"id":52631343923523,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"POSEIDON2831-32","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"options":["Default Title"],"price":3490,"weight":5000,"compare_at_price":9990,"inventory_management":"shopify","barcode":"3701726207717","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"],"featured_image":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","options":["Title"],"media":[{"alt":null,"id":57568777863491,"position":1,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","width":2000},{"alt":null,"id":57568777929027,"position":2,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","width":2000},{"alt":null,"id":52933488148803,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","width":1500},{"alt":null,"id":58539757994307,"position":4,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617","width":2000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e"}};
    
    Shopify.current_product.current_variant = {...{"id":52631343923523,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"POSEIDON2831-32","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"options":["Default Title"],"price":3490,"weight":5000,"compare_at_price":9990,"inventory_management":"shopify","barcode":"3701726207717","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}};
    Shopify.current_product['collections'] = Object.values({...[{"id":637372203331,"handle":"pots-fleurs-ceramique","title":"Pots de fleurs en céramique","updated_at":"2026-05-06T14:11:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs en céramique\u003c\/strong\u003e, conçus pour sublimer vos plantes tout en ajoutant une touche d'élégance à vos intérieurs et extérieurs. Majoritairement faits à la main, nos pots allient savoir-faire artisanal et production contrôlée pour garantir à la fois originalité et qualité constante.\u003c\/p\u003e\n\u003cp\u003eChaque \u003cstrong\u003epot en céramique \u003c\/strong\u003eest pensé pour s’adapter à tous les styles : des designs classiques pour une ambiance authentique aux formes modernes pour un look contemporain. Grâce à ce mélange unique de fabrication artisanale et industrielle, nos pots se distinguent par leur durabilité et leur esthétique raffinée.\u003c\/p\u003e","published_at":"2024-12-11T14:30:48+01:00","sort_order":"manual","template_suffix":"collection-footer","disjunctive":false,"rules":[{"column":"type","relation":"equals","condition":"Pot"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:37:09+01:00","alt":"Všechny květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-en-c-ramique-provencelia.webp?v=1769100645"}},{"id":641562804547,"handle":"product-model-poseidon2","title":"Product model: Poseidon2","updated_at":"2026-05-06T13:29:31+02:00","body_html":"","published_at":"2025-03-05T19:41:59+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/224588169539"}],"published_scope":"global"},{"id":637372301635,"handle":"pots-de-fleurs-ronds","title":"Pots de fleurs ronds","updated_at":"2026-05-06T13:29:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs ronds en céramique\u003c\/strong\u003e, qui se distinguent par leurs formes gracieuses et leur design intemporel. Ces jardinières sont le choix parfait pour ceux qui recherchent une combinaison d'élégance et de fonctionnalité. Grâce à leurs lignes arrondies, elles s'intègrent parfaitement dans n'importe quel espace, créant un ensemble harmonieux avec vos plantes.\u003c\/p\u003e\n\u003cp\u003eNos jardinières rondes sont fabriquées à partir de céramique émaillée de qualité, garantissant leur résistance aux intempéries et leur longue durée de vie. Elles constituent un excellent choix pour les espaces\u003cstrong\u003e \u003c\/strong\u003eextérieurs comme intérieurs.\u003c\/p\u003e\n\u003cp\u003eLeur surface lisse et leurs lignes délicates garantissent que vos plantes ont toujours un aspect esthétique et élégant\u003c\/p\u003e","published_at":"2024-12-11T14:30:56+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/247901782339"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:36:58+01:00","alt":"Zaoblené květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-ronds-provencelia.webp?v=1769100640"}}]});
    Shopify.current_product['variants_quantity'] = {};
    
    Shopify.current_product['variants_quantity']['52631343923523'] = "0" - 0;
    
    

    Shopify.current_collection = {...null};

    window.SECOMAPP = window.SECOMAPP || {};
    SECOMAPP.fg_codes = [];
    SECOMAPP.activateOnlyOnePromoCode = false;

    
    SECOMAPP.SHOPIFY_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},
        discount_codes: [
            
        ]
    };

    
    
    SECOMAPP.fgData = {...{"appearance":{"bundle":{"color":{"theme_color":"neutral","item_name_color":"#303030","title_text_color":"#303030","button_text_color":"#FFFFFF","bundle_price_color":"#005BD3","original_price_color":"#005BD3","description_text_color":"#616161","button_background_color":"#303030","widget_background_color":"#F3F3F3","item_card_background_color":"#FFFFFF","shipping_discount_background":"#DEE6FF","shipping_discount_text_color":"#2332D5"},"others":{"hidden_brand_mark":false},"content":{"button_text":"Add bundle to cart","show_description":true,"total_price_text":"Total bundle price","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","select_variant_text":"Select variant","show_discount_each_item":true,"show_discount_on_button":true,"shopify_shipping_icon_path":"shipping-icon-1.png"}},"gift_icon":{"product_page":{"gift_icon":{"size":"50","status":true},"gift_thumbnail":{"status":true,"number_text":"gift items included","border_color":"#8A8A8A","show_multiple":"together","countdown_text":"Expiring in","use_old_version":false,"offer_name_color":"#000000","show_number_gift":true,"countdown_time_color":"#000000","show_countdown_timer":true}},"gift_icon_path":"images\/fg-icons\/fg-icon-red.png","collection_page":{"size":"50","status":true},"shopify_gift_icon_path":"fg-icon-red.png","enable_for_all_conditions":true},"mix_match":{"color":{"theme_color":"neutral","item_name_color":"#303030","title_text_color":"#303030","button_text_color":"#FFFFFF","bundle_price_color":"#303030","original_price_color":"#B5B5B5","description_text_color":"#616161","button_background_color":"#303030","widget_background_color":"#F3F3F3","default_label_text_color":"#4F4700","success_label_text_color":"#29845A","item_card_background_color":"#FFFFFF","shipping_discount_background":"#DEE6FF","shipping_discount_text_color":"#2332D5","default_label_background_color":"#FFF8DB","success_label_background_color":"#CDFEE1"},"content":{"tier_style":"label","button_text":"Add bundle to cart","out_stock_text":"Out of stock!","mix_item_header":"Mix item {{itemIndex}}","show_description":true,"total_price_text":"Total bundle price","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","select_product_text":"Choose from {{number}} product(s)","select_variant_title":"Variant","select_collection_text":"Choose from {{number}} collection(s)","show_discount_each_item":true,"show_discount_on_button":true,"shopify_shipping_icon_path":"shipping-icon-1.png"}},"fbt_upsell":{"color":{"item_name":"#303030","item_price":"#303030","theme_color":"neutral","widget_title":"#303030","checkbox_color":"#303030","widget_subtitle":"#303030","atc_button_color":"#303030","item_price_after":"#303030","item_price_before":"#808080","total_price_after":"#303030","widget_background":"#F6F6F6","total_price_before":"#616161","cheapest_text_color":"#FFFFFF","atc_button_text_color":"#FFFFFF","current_item_tag_text":"#303030","current_item_tag_color":"#D1D1D1","cheapest_highlight_color":"#FFAA00","shipping_discount_background":"#DEE6FF","shipping_discount_text_color":"#2332D5"},"content":{"button_text":"Add selected items","free_item_text":"Free 1 item","total_price_text":"Total price","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","shopify_shipping_icon_path":"shipping-icon-1.png"},"general":{"widget_layout":"classic","maximum_display":3,"show_discount_amount":true,"show_discount_each_item":true}},"bundle_page":{"color":{"theme_color":"neutral","step_text_color":"#303030","atc_button_color":"#303030","step_title_color":"#303030","cart_button_color":"#303030","page_heading_color":"#303030","product_title_color":"#303030","required_text_color":"#2332D5","variant_title_color":"#616161","original_price_color":"#808080","side_bar_title_color":"#303030","step_highlight_color":"#303030","atc_button_text_color":"#FFFFFF","cart_button_text_color":"#FFFFFF","discounted_price_color":"#303030","page_sub_heading_color":"#303030","step_description_color":"#616161","default_label_text_color":"#4F4700","success_label_text_color":"#29845A","side_bar_background_color":"#F3F3F3","side_bar_description_color":"#303030","shipping_discount_background":"#DEE6FF","shipping_discount_text_color":"#2332D5","default_step_background_color":"#F3F3F3","default_label_background_color":"#FFF8DB","success_label_background_color":"#CDFEE1"},"content":{"step_text":"Step {{index}}","tier_style":"progress","load_more_text":"Load more","out_stock_text":"Out of stock","read_more_text":"See more","step_icon_path":"images\/step-icons\/step-icon-1.png","atc_button_text":"Add to bundle","blank_step_text":"Add product to this step","cart_button_text":"Add bundle to cart","show_description":true,"total_price_text":"Total bundle price","summary_icon_path":"images\/summary-icons\/summary-icon-1.png","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","summary_title_text":"Your bundle","choose_variant_text":"Choose variant","maximum_quantity_text":"Maximum item reached","required_product_text":"{{number}} item(s) required","shopify_step_icon_path":"step-icon-1.png","summary_description_text":"Choose items from this page to make your own bundle","shopify_summary_icon_path":"summary-icon-1.png","shopify_shipping_icon_path":"shipping-icon-1.png"}},"gift_slider":{"color":{"add_to_cart_color":"#FFFFFF","offer_title_color":"#000000","product_title_color":"#000000","original_price_color":"#121212","variant_select_color":"#005BD3","add_to_cart_btn_color":"#7367f0","discounted_price_color":"#ea5455","gift_slider_title_color":"#121212","notify_add_gift_active_state_color":"#CDFEE1","notify_add_gift_normal_state_color":"#FFEF9D"},"others":{"gift_img_size":"\u0026width=480\u0026height=480","hidden_brand_mark":false,"disable_use_old_version":true},"general":{"running_text":null,"show_gift_type":"all_in_one","select_gift_btn":"Select variants","show_pagination":true,"use_old_version":false,"gift_popup_title":"Select your free gift!","show_product_title":true,"show_variant_title":true,"add_to_cart_btn_title":"Add to cart","number_product_slider":4,"show_gift_for_customer":"by_variants","enable_add_multiple_gifts":true,"number_product_slider_mobile":1.8},"notify_gift_can_add":{"enable":true,"number_gifts_added":"You have added {{number}} gift product(s)","number_gifts_can_be_added":"You can add {{number}} gift product(s)"},"notify_offer_available":{"text":"🎁 You have qualified for {{qualifiedOffers}} offer(s)!","enable":true},"disable_slider_checkbox":{"text":"Don't show this offer again","time":10,"enable":false}},"cart_discount":{"color":{"widget":{"line_color":"#D0D0D0","theme_color":"blue","open_icon_color":"#616161","tier_text_color":"#303030","title_text_color":"#2332D5","active_icon_color":"#008000","excluded_tier_color":"#cccccc","widget_border_color":"#7B84E6","open_tier_text_color":"#303030","tier_background_color":"#FFFFFF","active_tier_text_color":"#008000","description_text_color":"#616161","widget_background_color":"#FFFFFF"},"congrats":{"theme_color":"blue","background_color":"#EEEFFB","title_text_color":"#2332D5","description_text_color":"#303030"}},"content":{"widget":{"icon":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1772523961.png","divide_tiers":false,"widget_style":"style_1","discount_tier_style":"checklist","widget_border_radius":12},"congrats":{"title":"Congratulations!","position":"bottom_right","appear_for":5,"description":"You got {{discount_amount}} off!","border_radius":12}}},"quantity_break":{"color":{"tag_color":"#F1F1F1","tier_price":"#303030","tier_title":"#303030","label_color":"#FFa422","theme_color":"clean","bundle_price":"#303030","bundle_title":"#303030","section_title":"#303030","tag_text_color":"#303030","label_text_color":"#FFFFFF","tier_description":"#616161","button_text_color":"#FFFFFF","bundle_description":"#303030","button_check_color":"#2F4D36","bundle_origin_price":"#B5B5B5","button_background_color":"#2F4D36","widget_background_color":"#FFFFFF","item_card_background_color":"#FFFFFF","shipping_discount_background":"DEE6FF","shipping_discount_text_color":"#2332D5"},"content":{"button_text":"Ajouter les pots au panier","show_description":true,"total_price_text":"Prix total","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","select_variant_text":"Choisir une option"}},"select_variant":{"type":"variant","color":{"active_tab_text":"#303030","default_tab_text":"#303030","active_tab_border":"#303030","active_tab_background":"#F0F0F0","active_item_background":"#F0F0F0","default_tab_background":"#F0F0F0"},"config":[],"configs":[]},"checkout_upsell":{"color":{"button_style":"primary","widget_price_color":"base","widget_background_color":"base"},"content":{"widget_message":"You may also like","widget_button_text":"Add"},"general":{"widget_layout":"carousel","widget_position ":"left","widget_active_message":true,"widget_active_compare_at_price":true}},"volume_discount":{"table":{"color":{"row_color":"#FFFFFF","tag_color":"#F1F1F1","line_color":"#E0E0E0","theme_color":"neutral","widget_title":"#303030","row_odd_color":"#FFFFFF","widget_header":"#F3F3F3","row_even_color":"#F5F5F5","tag_text_color":"#303030","label_text_color":"#FFFFFF","tier_title_color":"#303030","widget_sub_title":"#303030","discount_text_color":"#303030","original_price_color":"#B5B5B5","discounted_price_color":"#303030","label_background_color":"#303030","tier_description_color":"#616161","shipping_discount_text_color":"#2332D5"},"hide_line":false,"body_style":"line","text_align":"left","discount_text":"{{discountAmount}} OFF","discount_show_as":"discount_text","show_description":true,"show_original_price":true},"content":{"button_text":"Ajouter les pots au panier","total_price_text":"Prix total","shipping_icon_path":"images\/shipping-icons\/shipping-icon-1.png","select_variant_text":"Choisir une option","shopify_shipping_icon_path":"shipping-icon-1.png"},"default":{"color":{"tag_color":"#F1F1F1","tier_price":"#303030","tier_title":"#303030","label_color":"#FFa422","theme_color":"clean","bundle_price":"#303030","bundle_title":"#303030","section_title":"#303030","tag_text_color":"#303030","label_text_color":"#FFFFFF","tier_description":"#616161","button_text_color":"#FFFFFF","bundle_description":"#303030","button_check_color":"#2F4D36","bundle_origin_price":"#B5B5B5","button_background_color":"#2F4D36","widget_background_color":"#FFFFFF","item_card_background_color":"#FFFFFF","shipping_discount_background":"DEE6FF","shipping_discount_text_color":"#2332D5"},"show_description":true,"subscription_title":"Subscription","subscription_layout":"radio","option_label_onetime":"One-time purchase","option_label_subscription":"Subscribe \u0026 save"}},"cheapest_discount":{"color":{"theme_color":"neutral","see_more_color":"#303030","open_icon_color":"#4A4A4A","active_icon_color":"#303030","bullet_text_color":"#808080","widget_title_color":"#303030","product_price_color":"#303030","product_title_color":"#303030","variant_title_color":"#303030","widget_border_color":"#888888","open_tier_text_color":"#303030","button_add_text_color":"#ffffff","widget_subtitle_color":"#616161","active_tier_text_color":"#303030","tiers_background_color":"#F6F6F6","widget_background_color":"#ffffff","excluded_tier_text_color":"#CCCCCC","product_list_label_color":"#616161","button_add_background_color":"#303030"},"content":{"tier_style":"checklist","see_more_text":"See all","show_see_more":true,"number_products":4,"number_cols_mobile":2,"number_rows_mobile":2,"product_list_label":"Choose from these products to get discount","number_cols_desktop":4,"number_rows_desktop":2,"add_product_btn_text":"Add","show_add_product_btn":true}},"promotion_message":{"text_color":"#ffffff","background_color":"#F72119","show_on_cart_page":true},"thanks_page_upsell":{"color":{"button_style":"primary","widget_price_color":"base","widget_background_color":"transparent"},"content":{"widget_message":"You may also like","widget_button_text":"Add"},"general":{"widget_layout":"carousel","widget_position ":"left","widget_active_message":true,"widget_active_compare_at_price":true}}},"configs":{"ab_test":{"new_ab_free_valentine_2026":0},"type_seo":"number_integer","translation":{"type":"by_bogos","integration_app":null},"mode_override_checkout":"default"},"settings":{"gift_format":"same_as_original_products","auto_add_gift":true,"sale_channels":null,"sync_quantity":false,"barcode_format":"blank","fraud_protection":null,"cal_gift_discount":"current_price","gift_title_format":"gift","using_draft_order":false,"select_one_gift_price":false,"manual_input_inventory":false,"include_compare_at_price":false,"cart_and_checkout_validation":{"type":[],"offer":false,"value":{"max_gifts":1,"min_cart_value":1,"min_cart_quantity":1},"status":true,"condition":"and"},"fraud_protection_cancel_order":null,"other_original_product_detail":null,"compare_gift_price_with_product":false,"delete_gift_after_turn_off_offer":true,"not_show_gift_if_already_on_cart":false,"ab_test":{"old_ab_free_motherday26":1,"new_ab_free_valentine_2026":0},"type_seo":"number_integer","translation":{"type":"by_bogos","integration_app":null},"mode_override_checkout":"default","notify_via_email":null,"admin_api_access_token":null,"publications":null},"storefront":{"access_token":"b6c3e7d7622ad0e25e783fa13483efae","created_at":"2026-02-03T10:51:51Z"}}};
    

    
    
    
    SECOMAPP.fgData.translation = {...{"en":{"fbt":[],"code":"en","name":"English","offers":[],"checkout":[],"progress":{"3764":{"id":3764,"name":"-15% dès 500€","goals":{"1":{"id":1,"title":"-15% dès 500€ d'achat sur tous les pots","description":"Hors offres en cours","upload_icon":false,"success_icon":{"id":"success-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758683005.png"},"target_value":500,"title_change":true,"progress_icon":{"id":"progress-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758688229.png"},"success_label":"Félicitations ! Votre remise de -15% est appliquée !","other_currencies":[],"countdown_message":"Plus que {{remaining_value}} pour bénéficier de -15% sur vos pots","description_change":true,"success_label_change":true,"countdown_message_change":true}},"title":"Bénéficiez de -15% sur vos pots","title_change":true,"start_message":"Ajoutez des pots pour débloquer l'offre","unlocked_message":"Congratulations! You have unlocked all goals!","start_message_change":true,"unlocked_message_change":true}},"customize":{"fbt":{"off_text":"OFF","see_more":"See more","item_text":"item","this_item":"This item","button_text":"Add selected items","product_text":"product(s)","free_item_text":"Free 1 item","off_text_change":true,"see_more_change":true,"item_text_change":true,"this_item_change":true,"total_price_text":"Total price","button_text_change":true,"product_text_change":true,"free_item_text_change":true,"total_price_text_change":true},"checkout":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"gift_icon":{"gift_thumbnail_title":"Free gift","gift_thumbnail_number_text":"gift items included","gift_thumbnail_title_change":true,"gift_thumbnail_countdown_text":"Expiring in","gift_thumbnail_number_text_change":true,"gift_thumbnail_countdown_text_change":true},"mix_match":{"free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","out_stock_text":"Out of stock!","mix_item_header":"Mix item {{itemIndex}}","total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_product_text":"Choose from {{number}} product(s)","discount_text_change":true,"select_variant_title":"Variant","out_stock_text_change":true,"mix_item_header_change":true,"select_collection_text":"Choose from {{number}} collection(s)","total_price_text_change":true,"free_product_title_change":true,"select_product_text_change":true,"select_variant_title_change":true,"select_collection_text_change":true},"thank_you":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"bundle_page":{"step_text":"Step {{index}}","free_price":"FREE","filter_text":"Filter by","discount_text":"{{discountAmount}} OFF","load_more_text":"Load more","out_stock_text":"Out of stock","read_more_text":"See more","atc_button_text":"Add to bundle","blank_step_text":"Add product to this step","filter_btn_text":"Apply filter","no_product_text":"There is no product to display","cart_button_text":"Add bundle to cart","step_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"reset_filter_text":"Reset filter","about_product_text":"About this product","filter_text_change":true,"free_product_title":"🎁 Free Gift","sort_by_title_text":"Sort by","summary_title_text":"Your bundle","choose_variant_text":"Choose variant","discount_text_change":true,"load_more_text_change":true,"maximum_quantity_text":"Maximum item reached","out_stock_text_change":true,"read_more_text_change":true,"required_product_text":"{{number}} item(s) required","sort_by_name_a_z_text":"Name: A-Z","sort_by_name_z_a_text":"Name: Z-A","atc_button_text_change":true,"blank_step_text_change":true,"filter_btn_text_change":true,"no_product_text_change":true,"cart_button_text_change":true,"search_placeholder_text":"Search product name","total_price_text_change":true,"reset_filter_text_change":true,"sort_by_date_newest_text":"Newest","sort_by_date_oldest_text":"Oldest","summary_description_text":"Choose items from this page to make your own bundle","about_product_text_change":true,"free_product_title_change":true,"sort_by_title_text_change":true,"summary_title_text_change":true,"choose_variant_text_change":true,"sort_by_price_high_low_text":"Price: High to Low","sort_by_price_low_high_text":"Price: Low to High","maximum_quantity_text_change":true,"required_product_text_change":true,"sort_by_name_a_z_text_change":true,"sort_by_name_z_a_text_change":true,"search_placeholder_text_change":true,"sort_by_date_newest_text_change":true,"sort_by_date_oldest_text_change":true,"summary_description_text_change":true,"sort_by_price_high_low_text_change":true,"sort_by_price_low_high_text_change":true},"gift_slider":{"select_gift_btn":"Select variants","gift_popup_title":"Select your free gift!","add_to_cart_btn_title":"Add to cart","select_gift_btn_change":true,"gift_popup_title_change":true,"number_gifts_added_text":"You have added {{number}} gift product(s)","notify_offer_available_text":"🎁 You have qualified for {{qualifiedOffers}} offer(s)!","add_to_cart_btn_title_change":true,"disable_slider_checkbox_text":"Don't show this offer again","number_gifts_added_text_change":true,"number_gifts_can_be_added_text":"You can add {{number}} gift product(s)","notify_offer_available_text_change":true,"disable_slider_checkbox_text_change":true,"number_gifts_can_be_added_text_change":true},"today_offer":{"variant_text":"{{number}} variants selected","widget_title":"","see_more_text":"See more ({{number}} products)","widget_subtitle":"","gift_notification":"Get {{number}} gift for {{discountAmount}} OFF","icon_widget_title":"","variant_text_change":true,"widget_title_change":true,"button_redirect_text":"","see_more_text_change":true,"widget_subtitle_change":true,"gift_notification_change":true,"icon_widget_title_change":true,"button_redirect_text_change":true},"bundle_classic":{"item_text":"Item","free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_variant_text":"Select variant","discount_text_change":true,"total_price_text_change":true,"free_product_title_change":true,"select_variant_text_change":true},"quantity_break":{"item_text":"Item","button_text":"Ajouter les pots au panier","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Prix total","button_text_change":true,"subscription_title":"Subscription","select_variant_text":"Choisir une option","discount_text_change":true,"option_label_onetime":"One-time purchase","total_price_text_change":true,"option_label_subscription":"Subscribe \u0026 save","subscription_title_change":true,"select_variant_text_change":true,"option_label_onetime_change":true,"option_label_subscription_change":true},"cheapest_discount":{"see_more_text":"See all","product_list_label":"Choose from these products to get discount","add_product_btn_text":"Add","see_more_text_change":true,"product_list_label_change":true,"add_product_btn_text_change":true}},"mix_match":[],"thank_you":[],"offer_page":[],"bundle_page":[],"today_offer":[],"quantity_break":[],"classic_bundles":[],"volume_discount":{"15824":{"id":15824,"tiers":{"1":{"id":1,"tag":"Economie imédiate","label":"-20%","title":"1 pot","discount":null,"quantity":1,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"2":{"id":2,"tag":"Le plus choisi","label":"-25%","title":"2 pots","discount":null,"quantity":2,"tag_change":true,"label_change":true,"pre_selected":true,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"3":{"id":3,"tag":"Meilleure remise","label":"-30%","title":"3 pots","discount":null,"quantity":3,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true}},"title":"Déstockage","discount":null,"sub_title":"Offre déstockage : Jusqu'à -30%","description":"Profitez d’une remise progressive exclusive sur nos pots de fleurs en déstockage","sub_title_change":true,"description_change":true}},"cheapest_discount":{"14876":{"id":14876,"tiers":{"1":{"id":1,"title":"Achetez-en 2, -15% sur le moins cher des 2 !","discount":null,"quantity":2,"title_change":true,"quantity_discount":1},"2":{"id":2,"title":"Achetez-en 3, -20% sur le moins cher des 3 !","discount":null,"quantity":3,"title_change":true,"quantity_discount":1},"3":{"id":3,"title":"Achetez-en 4, -30% sur le moins cher des 4 !","discount":null,"quantity":4,"title_change":true,"quantity_discount":1}},"title":"Remise sur le moins cher","discount":null,"sub_title":"Achetez un pot supplémentaire, bénéficiez d'une réduction","description":null,"sub_title_change":true,"description_change":true}},"customize_booster":{"today_offer":{"cb_product_list_label_text":"Buy all items from bundle","gift_product_list_label_text":"Choose {{number}} gift(s) from","mm_bp_product_list_label_text":"Buy at least {{number}} items from bundle","vl_chp_product_list_label_text":"Buy at least {{number}} items to get discount","cb_product_list_label_text_change":true,"gift_product_list_label_text_change":true,"mm_bp_product_list_label_text_change":true,"vl_chp_product_list_label_text_change":true}}},"es":{"fbt":[],"code":"es","name":"Spanish","offers":[],"checkout":[],"progress":{"3764":{"id":3764,"name":"-15% dès 500€","goals":{"1":{"id":1,"title":"-15% dès 500€ d'achat sur tous les pots","description":"Hors offres en cours","upload_icon":false,"success_icon":{"id":"success-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758683005.png"},"target_value":500,"title_change":true,"progress_icon":{"id":"progress-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758688229.png"},"success_label":"Félicitations ! Votre remise de -15% est appliquée !","other_currencies":[],"countdown_message":"Plus que {{remaining_value}} pour bénéficier de -15% sur vos pots","description_change":true,"success_label_change":true,"countdown_message_change":true}},"title":"Bénéficiez de -15% sur vos pots","title_change":true,"start_message":"Ajoutez des pots pour débloquer l'offre","unlocked_message":"Congratulations! You have unlocked all goals!","start_message_change":true,"unlocked_message_change":true}},"customize":{"fbt":{"off_text":"OFF","see_more":"See more","item_text":"item","this_item":"This item","button_text":"Add selected items","product_text":"product(s)","free_item_text":"Free 1 item","off_text_change":true,"see_more_change":true,"item_text_change":true,"this_item_change":true,"total_price_text":"Total price","button_text_change":true,"product_text_change":true,"free_item_text_change":true,"total_price_text_change":true},"checkout":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"gift_icon":{"gift_thumbnail_title":"Free gift","gift_thumbnail_number_text":"gift items included","gift_thumbnail_title_change":true,"gift_thumbnail_countdown_text":"Expiring in","gift_thumbnail_number_text_change":true,"gift_thumbnail_countdown_text_change":true},"mix_match":{"free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","out_stock_text":"Out of stock!","mix_item_header":"Mix item {{itemIndex}}","total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_product_text":"Choose from {{number}} product(s)","discount_text_change":true,"select_variant_title":"Variant","out_stock_text_change":true,"mix_item_header_change":true,"select_collection_text":"Choose from {{number}} collection(s)","total_price_text_change":true,"free_product_title_change":true,"select_product_text_change":true,"select_variant_title_change":true,"select_collection_text_change":true},"thank_you":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"bundle_page":{"step_text":"Step {{index}}","free_price":"FREE","filter_text":"Filter by","discount_text":"{{discountAmount}} OFF","load_more_text":"Load more","out_stock_text":"Out of stock","read_more_text":"See more","atc_button_text":"Add to bundle","blank_step_text":"Add product to this step","filter_btn_text":"Apply filter","no_product_text":"There is no product to display","cart_button_text":"Add bundle to cart","step_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"reset_filter_text":"Reset filter","about_product_text":"About this product","filter_text_change":true,"free_product_title":"🎁 Free Gift","sort_by_title_text":"Sort by","summary_title_text":"Your bundle","choose_variant_text":"Choose variant","discount_text_change":true,"load_more_text_change":true,"maximum_quantity_text":"Maximum item reached","out_stock_text_change":true,"read_more_text_change":true,"required_product_text":"{{number}} item(s) required","sort_by_name_a_z_text":"Name: A-Z","sort_by_name_z_a_text":"Name: Z-A","atc_button_text_change":true,"blank_step_text_change":true,"filter_btn_text_change":true,"no_product_text_change":true,"cart_button_text_change":true,"search_placeholder_text":"Search product name","total_price_text_change":true,"reset_filter_text_change":true,"sort_by_date_newest_text":"Newest","sort_by_date_oldest_text":"Oldest","summary_description_text":"Choose items from this page to make your own bundle","about_product_text_change":true,"free_product_title_change":true,"sort_by_title_text_change":true,"summary_title_text_change":true,"choose_variant_text_change":true,"sort_by_price_high_low_text":"Price: High to Low","sort_by_price_low_high_text":"Price: Low to High","maximum_quantity_text_change":true,"required_product_text_change":true,"sort_by_name_a_z_text_change":true,"sort_by_name_z_a_text_change":true,"search_placeholder_text_change":true,"sort_by_date_newest_text_change":true,"sort_by_date_oldest_text_change":true,"summary_description_text_change":true,"sort_by_price_high_low_text_change":true,"sort_by_price_low_high_text_change":true},"gift_slider":{"select_gift_btn":"Select variants","gift_popup_title":"Select your free gift!","add_to_cart_btn_title":"Add to cart","select_gift_btn_change":true,"gift_popup_title_change":true,"number_gifts_added_text":"You have added {{number}} gift product(s)","notify_offer_available_text":"🎁 You have qualified for {{qualifiedOffers}} offer(s)!","add_to_cart_btn_title_change":true,"disable_slider_checkbox_text":"Don't show this offer again","number_gifts_added_text_change":true,"number_gifts_can_be_added_text":"You can add {{number}} gift product(s)","notify_offer_available_text_change":true,"disable_slider_checkbox_text_change":true,"number_gifts_can_be_added_text_change":true},"today_offer":{"variant_text":"{{number}} variants selected","widget_title":"","see_more_text":"See more ({{number}} products)","widget_subtitle":"","gift_notification":"Get {{number}} gift for {{discountAmount}} OFF","icon_widget_title":"","variant_text_change":true,"widget_title_change":true,"button_redirect_text":"","see_more_text_change":true,"widget_subtitle_change":true,"gift_notification_change":true,"icon_widget_title_change":true,"button_redirect_text_change":true},"bundle_classic":{"item_text":"Item","free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_variant_text":"Select variant","discount_text_change":true,"total_price_text_change":true,"free_product_title_change":true,"select_variant_text_change":true},"quantity_break":{"item_text":"Item","button_text":"Ajouter les pots au panier","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Prix total","button_text_change":true,"subscription_title":"Subscription","select_variant_text":"Choisir une option","discount_text_change":true,"option_label_onetime":"One-time purchase","total_price_text_change":true,"option_label_subscription":"Subscribe \u0026 save","subscription_title_change":true,"select_variant_text_change":true,"option_label_onetime_change":true,"option_label_subscription_change":true},"cheapest_discount":{"see_more_text":"See all","product_list_label":"Choose from these products to get discount","add_product_btn_text":"Add","see_more_text_change":true,"product_list_label_change":true,"add_product_btn_text_change":true}},"mix_match":[],"thank_you":[],"offer_page":[],"bundle_page":[],"today_offer":[],"quantity_break":[],"classic_bundles":[],"volume_discount":{"15824":{"id":15824,"tiers":{"1":{"id":1,"tag":"Economie imédiate","label":"-20%","title":"1 pot","discount":null,"quantity":1,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"2":{"id":2,"tag":"Le plus choisi","label":"-25%","title":"2 pots","discount":null,"quantity":2,"tag_change":true,"label_change":true,"pre_selected":true,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"3":{"id":3,"tag":"Meilleure remise","label":"-30%","title":"3 pots","discount":null,"quantity":3,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true}},"title":"Déstockage","discount":null,"sub_title":"Offre déstockage : Jusqu'à -30%","description":"Profitez d’une remise progressive exclusive sur nos pots de fleurs en déstockage","sub_title_change":true,"description_change":true}},"cheapest_discount":{"14876":{"id":14876,"tiers":{"1":{"id":1,"title":"Achetez-en 2, -15% sur le moins cher des 2 !","discount":null,"quantity":2,"title_change":true,"quantity_discount":1},"2":{"id":2,"title":"Achetez-en 3, -20% sur le moins cher des 3 !","discount":null,"quantity":3,"title_change":true,"quantity_discount":1},"3":{"id":3,"title":"Achetez-en 4, -30% sur le moins cher des 4 !","discount":null,"quantity":4,"title_change":true,"quantity_discount":1}},"title":"Remise sur le moins cher","discount":null,"sub_title":"Achetez un pot supplémentaire, bénéficiez d'une réduction","description":null,"sub_title_change":true,"description_change":true}},"customize_booster":{"today_offer":{"cb_product_list_label_text":"Buy all items from bundle","gift_product_list_label_text":"Choose {{number}} gift(s) from","mm_bp_product_list_label_text":"Buy at least {{number}} items from bundle","vl_chp_product_list_label_text":"Buy at least {{number}} items to get discount","cb_product_list_label_text_change":true,"gift_product_list_label_text_change":true,"mm_bp_product_list_label_text_change":true,"vl_chp_product_list_label_text_change":true}}},"it":{"fbt":[],"code":"it","name":"Italian","offers":[],"checkout":[],"progress":{"3764":{"id":3764,"name":"-15% dès 500€","goals":{"1":{"id":1,"title":"-15% dès 500€ d'achat sur tous les pots","description":"Hors offres en cours","upload_icon":false,"success_icon":{"id":"success-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758683005.png"},"target_value":500,"title_change":true,"progress_icon":{"id":"progress-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758688229.png"},"success_label":"Félicitations ! Votre remise de -15% est appliquée !","other_currencies":[],"countdown_message":"Plus que {{remaining_value}} pour bénéficier de -15% sur vos pots","description_change":true,"success_label_change":true,"countdown_message_change":true}},"title":"Bénéficiez de -15% sur vos pots","title_change":true,"start_message":"Ajoutez des pots pour débloquer l'offre","unlocked_message":"Congratulations! You have unlocked all goals!","start_message_change":true,"unlocked_message_change":true}},"customize":{"fbt":{"off_text":"OFF","see_more":"See more","item_text":"item","this_item":"This item","button_text":"Add selected items","product_text":"product(s)","free_item_text":"Free 1 item","off_text_change":true,"see_more_change":true,"item_text_change":true,"this_item_change":true,"total_price_text":"Total price","button_text_change":true,"product_text_change":true,"free_item_text_change":true,"total_price_text_change":true},"checkout":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"gift_icon":{"gift_thumbnail_title":"Free gift","gift_thumbnail_number_text":"gift items included","gift_thumbnail_title_change":true,"gift_thumbnail_countdown_text":"Expiring in","gift_thumbnail_number_text_change":true,"gift_thumbnail_countdown_text_change":true},"mix_match":{"free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","out_stock_text":"Out of stock!","mix_item_header":"Mix item {{itemIndex}}","total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_product_text":"Choose from {{number}} product(s)","discount_text_change":true,"select_variant_title":"Variant","out_stock_text_change":true,"mix_item_header_change":true,"select_collection_text":"Choose from {{number}} collection(s)","total_price_text_change":true,"free_product_title_change":true,"select_product_text_change":true,"select_variant_title_change":true,"select_collection_text_change":true},"thank_you":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"bundle_page":{"step_text":"Step {{index}}","free_price":"FREE","filter_text":"Filter by","discount_text":"{{discountAmount}} OFF","load_more_text":"Load more","out_stock_text":"Out of stock","read_more_text":"See more","atc_button_text":"Add to bundle","blank_step_text":"Add product to this step","filter_btn_text":"Apply filter","no_product_text":"There is no product to display","cart_button_text":"Add bundle to cart","step_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"reset_filter_text":"Reset filter","about_product_text":"About this product","filter_text_change":true,"free_product_title":"🎁 Free Gift","sort_by_title_text":"Sort by","summary_title_text":"Your bundle","choose_variant_text":"Choose variant","discount_text_change":true,"load_more_text_change":true,"maximum_quantity_text":"Maximum item reached","out_stock_text_change":true,"read_more_text_change":true,"required_product_text":"{{number}} item(s) required","sort_by_name_a_z_text":"Name: A-Z","sort_by_name_z_a_text":"Name: Z-A","atc_button_text_change":true,"blank_step_text_change":true,"filter_btn_text_change":true,"no_product_text_change":true,"cart_button_text_change":true,"search_placeholder_text":"Search product name","total_price_text_change":true,"reset_filter_text_change":true,"sort_by_date_newest_text":"Newest","sort_by_date_oldest_text":"Oldest","summary_description_text":"Choose items from this page to make your own bundle","about_product_text_change":true,"free_product_title_change":true,"sort_by_title_text_change":true,"summary_title_text_change":true,"choose_variant_text_change":true,"sort_by_price_high_low_text":"Price: High to Low","sort_by_price_low_high_text":"Price: Low to High","maximum_quantity_text_change":true,"required_product_text_change":true,"sort_by_name_a_z_text_change":true,"sort_by_name_z_a_text_change":true,"search_placeholder_text_change":true,"sort_by_date_newest_text_change":true,"sort_by_date_oldest_text_change":true,"summary_description_text_change":true,"sort_by_price_high_low_text_change":true,"sort_by_price_low_high_text_change":true},"gift_slider":{"select_gift_btn":"Select variants","gift_popup_title":"Select your free gift!","add_to_cart_btn_title":"Add to cart","select_gift_btn_change":true,"gift_popup_title_change":true,"number_gifts_added_text":"You have added {{number}} gift product(s)","notify_offer_available_text":"🎁 You have qualified for {{qualifiedOffers}} offer(s)!","add_to_cart_btn_title_change":true,"disable_slider_checkbox_text":"Don't show this offer again","number_gifts_added_text_change":true,"number_gifts_can_be_added_text":"You can add {{number}} gift product(s)","notify_offer_available_text_change":true,"disable_slider_checkbox_text_change":true,"number_gifts_can_be_added_text_change":true},"today_offer":{"variant_text":"{{number}} variants selected","widget_title":"","see_more_text":"See more ({{number}} products)","widget_subtitle":"","gift_notification":"Get {{number}} gift for {{discountAmount}} OFF","icon_widget_title":"","variant_text_change":true,"widget_title_change":true,"button_redirect_text":"","see_more_text_change":true,"widget_subtitle_change":true,"gift_notification_change":true,"icon_widget_title_change":true,"button_redirect_text_change":true},"bundle_classic":{"item_text":"Item","free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_variant_text":"Select variant","discount_text_change":true,"total_price_text_change":true,"free_product_title_change":true,"select_variant_text_change":true},"quantity_break":{"item_text":"Item","button_text":"Ajouter les pots au panier","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Prix total","button_text_change":true,"subscription_title":"Subscription","select_variant_text":"Choisir une option","discount_text_change":true,"option_label_onetime":"One-time purchase","total_price_text_change":true,"option_label_subscription":"Subscribe \u0026 save","subscription_title_change":true,"select_variant_text_change":true,"option_label_onetime_change":true,"option_label_subscription_change":true},"cheapest_discount":{"see_more_text":"See all","product_list_label":"Choose from these products to get discount","add_product_btn_text":"Add","see_more_text_change":true,"product_list_label_change":true,"add_product_btn_text_change":true}},"mix_match":[],"thank_you":[],"offer_page":[],"bundle_page":[],"today_offer":[],"quantity_break":[],"classic_bundles":[],"volume_discount":{"15824":{"id":15824,"tiers":{"1":{"id":1,"tag":"Economie imédiate","label":"-20%","title":"1 pot","discount":null,"quantity":1,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"2":{"id":2,"tag":"Le plus choisi","label":"-25%","title":"2 pots","discount":null,"quantity":2,"tag_change":true,"label_change":true,"pre_selected":true,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"3":{"id":3,"tag":"Meilleure remise","label":"-30%","title":"3 pots","discount":null,"quantity":3,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true}},"title":"Déstockage","discount":null,"sub_title":"Offre déstockage : Jusqu'à -30%","description":"Profitez d’une remise progressive exclusive sur nos pots de fleurs en déstockage","sub_title_change":true,"description_change":true}},"cheapest_discount":{"14876":{"id":14876,"tiers":{"1":{"id":1,"title":"Achetez-en 2, -15% sur le moins cher des 2 !","discount":null,"quantity":2,"title_change":true,"quantity_discount":1},"2":{"id":2,"title":"Achetez-en 3, -20% sur le moins cher des 3 !","discount":null,"quantity":3,"title_change":true,"quantity_discount":1},"3":{"id":3,"title":"Achetez-en 4, -30% sur le moins cher des 4 !","discount":null,"quantity":4,"title_change":true,"quantity_discount":1}},"title":"Remise sur le moins cher","discount":null,"sub_title":"Achetez un pot supplémentaire, bénéficiez d'une réduction","description":null,"sub_title_change":true,"description_change":true}},"customize_booster":{"today_offer":{"cb_product_list_label_text":"Buy all items from bundle","gift_product_list_label_text":"Choose {{number}} gift(s) from","mm_bp_product_list_label_text":"Buy at least {{number}} items from bundle","vl_chp_product_list_label_text":"Buy at least {{number}} items to get discount","cb_product_list_label_text_change":true,"gift_product_list_label_text_change":true,"mm_bp_product_list_label_text_change":true,"vl_chp_product_list_label_text_change":true}}},"nl":{"fbt":[],"code":"nl","name":"Dutch","offers":[],"checkout":[],"progress":{"3764":{"id":3764,"name":"-15% dès 500€","goals":{"1":{"id":1,"title":"-15% dès 500€ d'achat sur tous les pots","description":"Hors offres en cours","upload_icon":false,"success_icon":{"id":"success-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758683005.png"},"target_value":500,"title_change":true,"progress_icon":{"id":"progress-icon-4","src":"https:\/\/d33a6lvgbd0fej.cloudfront.net\/bogos-images\/1758688229.png"},"success_label":"Félicitations ! Votre remise de -15% est appliquée !","other_currencies":[],"countdown_message":"Plus que {{remaining_value}} pour bénéficier de -15% sur vos pots","description_change":true,"success_label_change":true,"countdown_message_change":true}},"title":"Bénéficiez de -15% sur vos pots","title_change":true,"start_message":"Ajoutez des pots pour débloquer l'offre","unlocked_message":"Congratulations! You have unlocked all goals!","start_message_change":true,"unlocked_message_change":true}},"customize":{"fbt":{"off_text":"OFF","see_more":"See more","item_text":"item","this_item":"This item","button_text":"Add selected items","product_text":"product(s)","free_item_text":"Free 1 item","off_text_change":true,"see_more_change":true,"item_text_change":true,"this_item_change":true,"total_price_text":"Total price","button_text_change":true,"product_text_change":true,"free_item_text_change":true,"total_price_text_change":true},"checkout":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"gift_icon":{"gift_thumbnail_title":"Free gift","gift_thumbnail_number_text":"gift items included","gift_thumbnail_title_change":true,"gift_thumbnail_countdown_text":"Expiring in","gift_thumbnail_number_text_change":true,"gift_thumbnail_countdown_text_change":true},"mix_match":{"free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","out_stock_text":"Out of stock!","mix_item_header":"Mix item {{itemIndex}}","total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_product_text":"Choose from {{number}} product(s)","discount_text_change":true,"select_variant_title":"Variant","out_stock_text_change":true,"mix_item_header_change":true,"select_collection_text":"Choose from {{number}} collection(s)","total_price_text_change":true,"free_product_title_change":true,"select_product_text_change":true,"select_variant_title_change":true,"select_collection_text_change":true},"thank_you":{"widget_message":"You may also like","widget_button_text":"Add","widget_message_change":true,"widget_button_text_change":true},"bundle_page":{"step_text":"Step {{index}}","free_price":"FREE","filter_text":"Filter by","discount_text":"{{discountAmount}} OFF","load_more_text":"Load more","out_stock_text":"Out of stock","read_more_text":"See more","atc_button_text":"Add to bundle","blank_step_text":"Add product to this step","filter_btn_text":"Apply filter","no_product_text":"There is no product to display","cart_button_text":"Add bundle to cart","step_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"reset_filter_text":"Reset filter","about_product_text":"About this product","filter_text_change":true,"free_product_title":"🎁 Free Gift","sort_by_title_text":"Sort by","summary_title_text":"Your bundle","choose_variant_text":"Choose variant","discount_text_change":true,"load_more_text_change":true,"maximum_quantity_text":"Maximum item reached","out_stock_text_change":true,"read_more_text_change":true,"required_product_text":"{{number}} item(s) required","sort_by_name_a_z_text":"Name: A-Z","sort_by_name_z_a_text":"Name: Z-A","atc_button_text_change":true,"blank_step_text_change":true,"filter_btn_text_change":true,"no_product_text_change":true,"cart_button_text_change":true,"search_placeholder_text":"Search product name","total_price_text_change":true,"reset_filter_text_change":true,"sort_by_date_newest_text":"Newest","sort_by_date_oldest_text":"Oldest","summary_description_text":"Choose items from this page to make your own bundle","about_product_text_change":true,"free_product_title_change":true,"sort_by_title_text_change":true,"summary_title_text_change":true,"choose_variant_text_change":true,"sort_by_price_high_low_text":"Price: High to Low","sort_by_price_low_high_text":"Price: Low to High","maximum_quantity_text_change":true,"required_product_text_change":true,"sort_by_name_a_z_text_change":true,"sort_by_name_z_a_text_change":true,"search_placeholder_text_change":true,"sort_by_date_newest_text_change":true,"sort_by_date_oldest_text_change":true,"summary_description_text_change":true,"sort_by_price_high_low_text_change":true,"sort_by_price_low_high_text_change":true},"gift_slider":{"select_gift_btn":"Select variants","gift_popup_title":"Select your free gift!","add_to_cart_btn_title":"Add to cart","select_gift_btn_change":true,"gift_popup_title_change":true,"number_gifts_added_text":"You have added {{number}} gift product(s)","notify_offer_available_text":"🎁 You have qualified for {{qualifiedOffers}} offer(s)!","add_to_cart_btn_title_change":true,"disable_slider_checkbox_text":"Don't show this offer again","number_gifts_added_text_change":true,"number_gifts_can_be_added_text":"You can add {{number}} gift product(s)","notify_offer_available_text_change":true,"disable_slider_checkbox_text_change":true,"number_gifts_can_be_added_text_change":true},"today_offer":{"variant_text":"{{number}} variants selected","widget_title":"","see_more_text":"See more ({{number}} products)","widget_subtitle":"","gift_notification":"Get {{number}} gift for {{discountAmount}} OFF","icon_widget_title":"","variant_text_change":true,"widget_title_change":true,"button_redirect_text":"","see_more_text_change":true,"widget_subtitle_change":true,"gift_notification_change":true,"icon_widget_title_change":true,"button_redirect_text_change":true},"bundle_classic":{"item_text":"Item","free_price":"FREE","button_text":"Add bundle to cart","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Total bundle price","free_price_change":true,"button_text_change":true,"free_product_title":"🎁 Free Gift","select_variant_text":"Select variant","discount_text_change":true,"total_price_text_change":true,"free_product_title_change":true,"select_variant_text_change":true},"quantity_break":{"item_text":"Item","button_text":"Ajouter les pots au panier","discount_text":"{{discountAmount}} OFF","item_text_change":true,"total_price_text":"Prix total","button_text_change":true,"subscription_title":"Subscription","select_variant_text":"Choisir une option","discount_text_change":true,"option_label_onetime":"One-time purchase","total_price_text_change":true,"option_label_subscription":"Subscribe \u0026 save","subscription_title_change":true,"select_variant_text_change":true,"option_label_onetime_change":true,"option_label_subscription_change":true},"cheapest_discount":{"see_more_text":"See all","product_list_label":"Choose from these products to get discount","add_product_btn_text":"Add","see_more_text_change":true,"product_list_label_change":true,"add_product_btn_text_change":true}},"mix_match":[],"thank_you":[],"offer_page":[],"bundle_page":[],"today_offer":[],"quantity_break":[],"classic_bundles":[],"volume_discount":{"15824":{"id":15824,"tiers":{"1":{"id":1,"tag":"Economie imédiate","label":"-20%","title":"1 pot","discount":null,"quantity":1,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"2":{"id":2,"tag":"Le plus choisi","label":"-25%","title":"2 pots","discount":null,"quantity":2,"tag_change":true,"label_change":true,"pre_selected":true,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true},"3":{"id":3,"tag":"Meilleure remise","label":"-30%","title":"3 pots","discount":null,"quantity":3,"tag_change":true,"label_change":true,"pre_selected":false,"title_change":true,"shipping_label":"","sub_title_change":true,"shipping_discount":null,"shipping_label_change":true}},"title":"Déstockage","discount":null,"sub_title":"Offre déstockage : Jusqu'à -30%","description":"Profitez d’une remise progressive exclusive sur nos pots de fleurs en déstockage","sub_title_change":true,"description_change":true}},"cheapest_discount":{"14876":{"id":14876,"tiers":{"1":{"id":1,"title":"Achetez-en 2, -15% sur le moins cher des 2 !","discount":null,"quantity":2,"title_change":true,"quantity_discount":1},"2":{"id":2,"title":"Achetez-en 3, -20% sur le moins cher des 3 !","discount":null,"quantity":3,"title_change":true,"quantity_discount":1},"3":{"id":3,"title":"Achetez-en 4, -30% sur le moins cher des 4 !","discount":null,"quantity":4,"title_change":true,"quantity_discount":1}},"title":"Remise sur le moins cher","discount":null,"sub_title":"Achetez un pot supplémentaire, bénéficiez d'une réduction","description":null,"sub_title_change":true,"description_change":true}},"customize_booster":{"today_offer":{"cb_product_list_label_text":"Buy all items from bundle","gift_product_list_label_text":"Choose {{number}} gift(s) from","mm_bp_product_list_label_text":"Buy at least {{number}} items from bundle","vl_chp_product_list_label_text":"Buy at least {{number}} items to get discount","cb_product_list_label_text_change":true,"gift_product_list_label_text_change":true,"mm_bp_product_list_label_text_change":true,"vl_chp_product_list_label_text_change":true}}}}};
    

    //liquid code to get customer history and customer tag
    
    
    SECOMAPP.current_template = "product";
    SECOMAPP.pathname = window.location.pathname;
    if (SECOMAPP.current_template === "404" && SECOMAPP.pathname?.includes("-sca_clone_freegift")) {
        window.location.replace(SECOMAPP.pathname.split("-sca_clone_freegift")[0]);
    } else if (SECOMAPP.current_template === "404" && SECOMAPP.pathname?.includes("/collections/sca_fg")) {
        window.location.replace(`${Shopify?.routes?.root ?? "/"}collections/all`);
    }

    SECOMAPP.setCookie = function (e, t, o, n, r) {
        let i = new Date;
        i.setTime(i.getTime() + 24 * o * 36e5 + 60 * n * 1e3);
        let f = "expires=" + i.toUTCString();
        document.cookie = e + "=" + t + ";" + f + (r ? ";path=" + r : ";path=/");
    };
    SECOMAPP.deleteCookie = function (e, t) {
        document.cookie = e + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC; " + (t ? ";path=" + t : ";path=/")
    };
    SECOMAPP.getCookie = function (e) {
        for (let t = e + "=", o = document.cookie.split(";"), n = 0; n < o.length; n++) {
            let r;
            for (r = o[n]; " " === r.charAt(0);) r = r.substring(1);
            if (0 === r.indexOf(t)) return r.substring(t.length, r.length)
        }
        return ""
    };
    SECOMAPP.getQueryString = function (key) {
        let e = {};
        let t = window.location.search.substring(1).split("&");
        let o = 0;
        for (; o < t.length; o++) {
            let n = t[o].split("=");
            if (void 0 === e[n[0]]) e[n[0]] = decodeURIComponent(n[1]);
            else if ("string" == typeof e[n[0]]) {
                e[n[0]] = [e[n[0]], decodeURIComponent(n[1])]
            } else e[n[0]].push(decodeURIComponent(n[1]))
        }
        return key ? e?.[key] : e;
    };

    SECOMAPP.offer_codes = [
        {param: "freegifts_code", cookie: "sca_fg_codes"},
        {param: "bundles_code", cookie: "sca_bundle_codes"},
        {param: "upsells_code", cookie: "sca_upsell_codes"},
        {param: "discounts_code", cookie: "sca_discount_codes"},
    ];
    SECOMAPP.offer_codes.forEach(({param, cookie}) => {
        SECOMAPP.fg_codes = [];
        SECOMAPP.getCookie(cookie) && (SECOMAPP.fg_codes = JSON.parse(SECOMAPP.getCookie(cookie)));
        SECOMAPP.current_code = SECOMAPP.getQueryString(param);
        SECOMAPP.current_code && !SECOMAPP.fg_codes.includes(SECOMAPP.current_code)
        && (function () {
            SECOMAPP.activateOnlyOnePromoCode && (SECOMAPP.fg_codes = []);
            SECOMAPP.fg_codes.push(SECOMAPP.current_code);
            SECOMAPP.setCookie(cookie, JSON.stringify(SECOMAPP.fg_codes));
        })();
    });

    SECOMAPP.customer = {};
    SECOMAPP.customer.orders = [];
    SECOMAPP.customer.freegifts = [];
    SECOMAPP.customer.freegifts_v2 = [];
    
    SECOMAPP.customer.email = "";
    SECOMAPP.customer.first_name = "";
    SECOMAPP.customer.last_name = "";
    SECOMAPP.customer.tags = Object.values({...null});
    SECOMAPP.customer.orders_count = "" - 0;
    SECOMAPP.customer.total_spent = "" - 0;
    SECOMAPP.customer.b2b = "" - 0;
    SECOMAPP.market = {
        id: "86864953667" - 0,
        handle: "fr",
    };
    

    // get class name config from settings_data.json
    if (!Shopify.scaHandleConfigValue) {
        Shopify.scaHandleConfigValue = {
            ...null,
            ...null
        };
    }

    // add link proxy
    SECOMAPP.freegiftProxy = "/apps/secomapp_freegifts_get_order?ver=3.0";
    
    SECOMAPP.freegiftProxy = "/apps/secomapp_freegifts_get_order?ver=3.0";
    
    SECOMAPP.bogosCollectUrl = "https://collect.bogos.io/collect"
    SECOMAPP.bogosIntegrationUrl = "https://api.bogos.io/integrations"

    // get shop locales
    SECOMAPP.shop_locales = Object.values({
        ...[{"shop_locale":{"locale":"fr","enabled":true,"primary":true,"published":true}},{"shop_locale":{"locale":"en","enabled":true,"primary":false,"published":true}}]
    });

    
    
    window.fgGiftIcon = "https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/fg-icon-red_small.png";
    window.fgWidgetIconsObj = {
        "widget-icon-1.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-1_small.png',
        "widget-icon-2.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-2_small.png',
        "widget-icon-3.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-3_small.png',
        "widget-icon-4.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-4_small.png',
        "widget-icon-5.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-5_small.png',
        "widget-icon-6.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-6_small.png',
        "widget-icon-7.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-7_small.png',
        "widget-icon-8.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/widget-icon-8_small.png'
    }

    window.fgStepIconsObj = {
        "step-icon-1.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-1_small.png',
        "step-icon-2.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-2_small.png',
        "step-icon-3.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-3_small.png',
        "step-icon-4.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-4_small.png',
        "step-icon-5.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-5_small.png',
        "step-icon-6.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-6_small.png',
        "step-icon-7.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/step-icon-7_small.png',
    }

    window.fgSummaryIconsObj = {
        "summary-icon-1.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-1_small.png',
        "summary-icon-2.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-2_small.png',
        "summary-icon-3.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-3_small.png',
        "summary-icon-4.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-4_small.png',
        "summary-icon-5.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-5_small.png',
        "summary-icon-6.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-6_small.png',
        "summary-icon-7.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-7_small.png',
        "summary-icon-8.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/summary-icon-8_small.png',
    }

    window.fgShippingIconsObj = {
        "shipping-icon-1.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/shipping-icon-1_small.png',
        "shipping-icon-2.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/shipping-icon-2_small.png',
        "shipping-icon-3.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/shipping-icon-3_small.png',
        "shipping-icon-4.png": 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/shipping-icon-4_small.png',
    }

    // variable from tools
    SECOMAPP.variables = {
        ...SECOMAPP.variables,
        ...null,
        ...{"web_pixel":true},
        shipping_product_img: 'https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/shipping_product_small.png'
    }

    window.fgResource = {
        gift: {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/gift.min.js"]
        },
        bundle: {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bundle.min.js"],
            css: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.bundle.min.css"]
        },
        upsell: {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/upsell.min.js"],
            css: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.upsell.min.css"]
        },
        discount: {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/discount.min.js"],
            css: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.discount.min.css"]
        },
        "bundle-page": {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bundle-page.min.js"],
            css: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.bundle-page.min.css"]
        },
        booster: {
            js: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/booster.min.js"],
            css: ["https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.booster.min.css"]
        }
    }
</script>

<script defer src="https://cdn.bogos.io/Mzc3OGU3LTQyLm15c2hvcGlmeS5jb20=/freegifts_data_1777449285.min.js"></script>
<div id="secomapp_freegifts_url" data-url="https://cdn.bogos.io/Mzc3OGU3LTQyLm15c2hvcGlmeS5jb20=/freegifts_data_1777449285.min.js"></div>


<div id="bogos-gift-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/gift.min.js"></div> 
<div id="bogos-bundle-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bundle.min.js"></div>
<div id="bogos-upsell-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/upsell.min.js"></div>
<div id="bogos-discount-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/discount.min.js"></div>
<div id="bogos-bundle-page-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bundle-page.min.js"></div>
<div id="bogos-booster-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/booster.min.js"></div>
<div id="bogos-booster-page-script" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/booster-page.min.js"></div>


<div id="bogos-bundle-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.bundle.min.css"></div>
<div id="bogos-upsell-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.upsell.min.css"></div>
<div id="bogos-discount-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.discount.min.css"></div>
<div id="bogos-bundle-page-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.bundle-page.min.css"></div>
<div id="bogos-booster-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.booster.min.css"></div>
<div id="bogos-booster-page-style" data-url="https://cdn.shopify.com/extensions/019dd840-ab72-7a62-9cae-3d272a9867e6/freegifts-194/assets/bogos.booster-page.min.css"></div>
<!-- END app snippet -->




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




</div><div id="shopify-block-Ac1dQV3c0clJMVFlCV__11038922299930075240" class="shopify-block shopify-app-block"><input type="hidden" value="product" id="bis_current_template">
<p id="bis-customer-name" style="display:none;"></p>
<p id="bis-customer-email" style="display:none;"></p>

<script>
  setTimeout(function () {
    var bis_current_template = 'product';
    if (bis_current_template == 'product') {
      let check_app_block = document.querySelector('span#shopeetech_pre_order_before');
      if (check_app_block) {
        bis_current_template = 0;
        console.log('collection init remove collection.bis_wrapper_block', check_app_block);
        document.getElementById('bis_wrapper_block').remove();
      }
    }
  }, 500);
</script>



<div id="bis_wrapper_block">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/css/intlTelInput.css">
  <div id="bis-myModal" class="bis_modal bis_template_product">
    <!-- Modal content -->
    <div class="bis_modal-content">
      <div id="SIModal" class="stockNotification">
        <div id="bis_container" class="">
          <div hidden id="bis_spinner"></div>
          <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
          
            
              
                <div class="bis-product-img-container">
                  <img
                    src="//provencelia.com/cdn/shop/files/POSEIDON32-C_medium.jpg?v=1769101695"
                    alt="POSEIDON2 Pot 28x31cm abyss blue"
                    class="bis-product-img"
                  >
                </div>
              
            
          
          <p id="shopeetech-bis-modal-title" class="modal-title bis-modal-title">Alert me if this item is restocked.</p>
          <p id="shopeetech-bis-sub-header">
            We often restock popular items or they may be returned by the other customers. If you would like to be
            notified when this happens just enter your details below.
          </p>
          <hr>
          <p class="product-name" id="bis_product_title"></p>

          <form class="form-horizontal clearfix">
            
              <div id="variant-select-container" class="bis_form_grp">
                <div class="form-group">
                  <div class="col-xs-12">
                    
                      <select id="ap__variants" class="selectpicker input-lg" style="display:none">
                        <option class="select-option" value="52631343923523">
                          Select option
                        </option>
                      </select>
                    
                    <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-size-warning">Please select variant</small>
                  </div>
                </div>
              </div>
            
            <!-- Name Field -->
            <div id="customer-name-container" class="bis_form_grp">
              <div id="name-address" class="form-group">
                <div class="col-xs-12">
                  <input
                    id="shopeetech-bis-popup-form-name"
                    name="name"
                    type="text"
                    placeholder="Enter name"
                    
                    class="form-control input-lg"
                  >
                  <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-name-warning">Please enter name</small>
                </div>
              </div>
            </div>
            <!-- Email Field -->
            <div id="customer-address-container" class="bis_form_grp">
              <div id="email-address" class="form-group">
                <div class="col-xs-12">
                  <input
                    id="shopeetech-bis-popup-form-email"
                    type="email"
                    placeholder="Email address"
                    
                    class="form-control input-lg"
                  >
                  <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-email-warning">Invalid email address</small>
                </div>
              </div>
            </div>
            <!-- Mobile Field -->
            <div id="customer-mobile-container" class="bis_form_grp">
              <div id="mobile" class="form-group">
                <div id="mobile-group" class="col-xs-12">
                  <input
                    id="shopeetech-bis-popup-form-mobile"
                    type="tel"
                    placeholder="Enter mobile number"
                    value=""
                    class="form-control input-lg"
                    onkeypress="handleKeyPress(event)"
                  >
                  <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-mobile-warning">Required mobile number</small>
                  <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-number-warning">Invalid number</small>
                  <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-invalid-country-code-warning">Invalid country code</small>
                  <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-short-warning">Too short</small>
                  <small class="shopeetech-bis-form-warning hide" id="shopeetech-bis-form-too-long-warning">Too long</small>
                  <span class="shopeetech-bis-form-success-msg hide" id="valid-msg"
                    >✓Valid</span>
                </div>
              </div>
            </div>
            <!-- Amount Field -->
            <div id="customer-amount-container" class="bis_form_grp">
              <div id="amount" class="form-group">
                <div class="col-xs-12">
                  <input
                    id="shopeetech-bis-popup-form-amount"
                    type="number"
                    placeholder="Enter quantity"
                    value=""
                    class="form-control input-lg show"
                    min="0"
                    onkeypress="handleKeyPress(event)"
                  >
                </div>
              </div>
            </div>

            <!-- customMessage Field -->
            <div id="customer-customMessage-container" class="bis_form_grp">
              <div id="customMessage" class="form-group">
                <div class="col-xs-12">
                  <textarea
                    id="shopeetech-bis-popup-form-customMessage"
                    placeholder="Enter Custom message"
                    class="form-control input-lg show"
                    rows="3"
                  ></textarea>
                  <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-custom-message-warning">Only plain are not allowed in the message</small>
                  <small
                    class="shopeetech-bis-form-hide-warning"
                    id="shopeetech-bis-form-too-long-custom-message-warning"
                  >Message length must be 250 characters allowed</small>
                </div>
              </div>
            </div>

            <!-- Country Field -->
            <div id="customer-country-container" class="bis_form_grp">
              <div id="country" class="form-group">
                <div class="col-xs-12">
                  <select
                    id="shopeetech-bis-popup-form-country"
                    name="country"
                    class="form-control input-lg"
                  >
                    <option value="">
                      Select country
                    </option>
                  </select>
                  <small class="shopeetech-bis-form-hide-warning" id="shopeetech-bis-form-country-warning">Country is required</small>
                </div>
              </div>
            </div>

            <div id="bis_checkbox_grp">
              <div id="bis_box_email" class="bis_box">
                <label for="bis_email_checkbox" class="bis-custom-checkbox-label">
                  <input
                    type="checkbox"
                    id="bis_email_checkbox"
                    class="bis-custom-checkbox"
                    name="bis_twillio_checkbox"
                    value="email"
                    onchange="handleCheckbox('email')"
                  >
                  <span class="bis-custom-checkbox-style"></span>
                  Email
                </label>
              </div>
              <div id="bis_box_sms" class="bis_box">
                <label for="bis_sms_checkbox" class="bis-custom-checkbox-label">
                  <input
                    type="checkbox"
                    id="bis_sms_checkbox"
                    class="bis-custom-checkbox"
                    name="bis_twillio_checkbox"
                    value="sms"
                    onchange="handleCheckbox('sms')"
                  >
                  <span class="bis-custom-checkbox-style"></span>
                  SMS
                </label>
              </div>
              <div id="bis_box_whatsApp" class="bis_box">
                <label for="bis_whatsApp_checkbox" class="bis-custom-checkbox-label">
                  <input
                    type="checkbox"
                    id="bis_whatsApp_checkbox"
                    class="bis-custom-checkbox"
                    name="bis_twillio_checkbox"
                    value="whatsApp"
                    onchange="handleCheckbox('whatsApp')"
                  >
                  <span class="bis-custom-checkbox-style"></span>
                  WhatsApp
                </label>
              </div>
            </div>
            

            <div class="form-group bis_form_grp">
              <div class="col-xs-12">
                <button type="button" id="submit-btn__bis" class="black-btn  btn btn-success btn-lg btn-block"></button>
              </div>
            </div>
            <div class="alert alert-success hide" id="success_message">
              Your notification has been registered.
              <a href="#" class="action-close bis_close_common" onclick="bisCloseModal()">Close</a>
            </div>

            <div class="alert alert-danger hide" id="error_message">
              <span id="bis-error_message" class="error_message">Looks like you already have notifications active for this size!</span>
            </div>
          </form>

          <p id="shopeetech-bis-privacy" class="bis_privacy">
            We respect your privacy and don&#39;t share your email with anybody.
          </p>
          
        </div>
        <div id="thank-you-section" class="hide">
          <span onclick="bisCloseModal()" class="bis_close_btn">&times;</span>
          <p id="thank-you-title" class="modal-title bis-modal-title">Alert me if this item is restocked</p>
          <hr>
          <div id="request-message" class="">
            <span id="thank-you-description">
              <p>
                Thank you, we have now received and recorded your request to be notified should POSEIDON2 Pot 28x31cm abyss blue
                <font id="variant_label"></font>
                be restocked.
              </p>
              <p>We will only use your email for this purpose.</p>
            </span>
            <!--
              <span>
                <small>
                  <a href="javascript:cancelRequest();"> Cancel request </a>
                </small>
              </span>
            -->
          </div>
          <div id="cancel-request-message" style="font-family:inherit;" class="hide">
            <p>We have cancelled your request.</p>
          </div>

          <form class="form-horizontal clearfix">
            <div class="form-group">
              <div class="bis-thank-you-btns">
                <div id="bis-cancel-request-btn-container" class="raw">
                  <button
                    id="bis-cancel-request-btn"
                    type="button"
                    onclick="cancelRequest()"
                    class="black-btn btn btn-success btn-lg btn-block"
                  >
                    Cancel request
                  </button>
                </div>
                <div id="bis-close-btn-container" class="col-xs-12">
                  <button
                    id="bis-close-btn"
                    type="button"
                    onclick="bisCloseModal()"
                    class="black-btn btn  btn-success btn-lg btn-block bis_close_common"
                  >
                    Close
                  </button>
                </div>
              </div>
            </div>
          </form>
          <div id="bis-upsell-products" class="hide">
            <p id="bis-upsell-heading"></p>
            <div id="bis-upsell-grid"></div>
          </div>
          
          
        </div>
      </div>
    </div>
  </div>

  <input type="hidden" value="3778e7-42.myshopify.com" id="app_shop_permanent_domain">
  <!-- Honeypot: hidden from real users, bots will fill this -->
  <div style="position:absolute;left:-9999px;top:-9999px;" aria-hidden="true">
    <input type="text" name="bis_website" id="bis_hp_field" tabindex="-1" autocomplete="off" value="">
  </div>

  <input type="hidden" value="" id="variant_json">
  
    <script id="bis_app_collections" type="application/json">
      [{"id":637372203331,"handle":"pots-fleurs-ceramique","title":"Pots de fleurs en céramique","updated_at":"2026-05-06T14:11:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs en céramique\u003c\/strong\u003e, conçus pour sublimer vos plantes tout en ajoutant une touche d'élégance à vos intérieurs et extérieurs. Majoritairement faits à la main, nos pots allient savoir-faire artisanal et production contrôlée pour garantir à la fois originalité et qualité constante.\u003c\/p\u003e\n\u003cp\u003eChaque \u003cstrong\u003epot en céramique \u003c\/strong\u003eest pensé pour s’adapter à tous les styles : des designs classiques pour une ambiance authentique aux formes modernes pour un look contemporain. Grâce à ce mélange unique de fabrication artisanale et industrielle, nos pots se distinguent par leur durabilité et leur esthétique raffinée.\u003c\/p\u003e","published_at":"2024-12-11T14:30:48+01:00","sort_order":"manual","template_suffix":"collection-footer","disjunctive":false,"rules":[{"column":"type","relation":"equals","condition":"Pot"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:37:09+01:00","alt":"Všechny květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-en-c-ramique-provencelia.webp?v=1769100645"}},{"id":641562804547,"handle":"product-model-poseidon2","title":"Product model: Poseidon2","updated_at":"2026-05-06T13:29:31+02:00","body_html":"","published_at":"2025-03-05T19:41:59+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/224588169539"}],"published_scope":"global"},{"id":637372301635,"handle":"pots-de-fleurs-ronds","title":"Pots de fleurs ronds","updated_at":"2026-05-06T13:29:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs ronds en céramique\u003c\/strong\u003e, qui se distinguent par leurs formes gracieuses et leur design intemporel. Ces jardinières sont le choix parfait pour ceux qui recherchent une combinaison d'élégance et de fonctionnalité. Grâce à leurs lignes arrondies, elles s'intègrent parfaitement dans n'importe quel espace, créant un ensemble harmonieux avec vos plantes.\u003c\/p\u003e\n\u003cp\u003eNos jardinières rondes sont fabriquées à partir de céramique émaillée de qualité, garantissant leur résistance aux intempéries et leur longue durée de vie. Elles constituent un excellent choix pour les espaces\u003cstrong\u003e \u003c\/strong\u003eextérieurs comme intérieurs.\u003c\/p\u003e\n\u003cp\u003eLeur surface lisse et leurs lignes délicates garantissent que vos plantes ont toujours un aspect esthétique et élégant\u003c\/p\u003e","published_at":"2024-12-11T14:30:56+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/247901782339"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:36:58+01:00","alt":"Zaoblené květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-ronds-provencelia.webp?v=1769100640"}}]
    </script><!---->


    <script>
      
    </script>
    <input type="hidden" id="selected_product" value="14797823803715">

    
<input type="hidden" value="52631343923523" id="selected_variant">
    

    <script>
      setTimeout(function () {
        let value = params.bis_shopeetech_order;
        if (value == 1) {
          document
            .querySelectorAll('[name="add"]')[0]
            .insertAdjacentHTML(
              'afterend',
              '<input id="bis_shopeetech_hidden" type="hidden" name="properties[_bis_shopeetech]" value="bis_shopeetech_order">'
            );
        }
      }, 2000);
      const params = new Proxy(new URLSearchParams(window.location.search), {
        get: (searchParams, prop) => searchParams.get(prop),
      });
    </script>

  

  <input type="hidden" value="https://bis.test" id="shopeetech_bis_url">
  <p id="bis-customer" style="display:none;"></p>
  
  
    
    <script id="bis-configuration" type="application/json" data-bis="metaobject">
      {
        "ui_settings": {"id":2158,"user_id":2257,"header":{"en_text":"Be the first to know when this product is back in stock.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo sarà disponibile.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"This product is currently being restocked. If you’d like to be notified when it’s available again, simply enter your details below.","es_text":"A menudo reponemos artículos populares o es posible que otros clientes los devuelvan. Si desea recibir una notificación cuando esto suceda, simplemente ingrese sus datos a continuación.","fr_text":"Nous réapprovisionnons souvent les articles populaires. Si vous souhaitez être averti lorsque cela se produit, entrez simplement vos coordonnées ci-dessous.","it_text":"Spesso riassortiamo gli articoli più richiesti oppure potrebbero essere restituiti da altri clienti. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dati qui sotto.","nl_text":"Vaak vullen we populaire artikelen aan, anders kunnen ze door andere klanten worden geretourneerd. Als u op de hoogte wilt worden gesteld wanneer dit gebeurt, vult u hieronder uw gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"show_variant":true,"privacy":{"en_text":"Your privacy matters to us – your information stays safe and confidential.","es_text":"Valoramos su privacidad y mantenemos la confidencialidad de sus datos =\u003e es nuestra promesa para usted.","fr_text":"Nous accordons une grande importance à votre vie privée et gardons vos informations confidentielles.","it_text":"Apprezziamo la tua privacy e manteniamo riservati i tuoi dati =\u003e è la nostra promessa a te.","nl_text":"Wij waarderen uw privacy en houden uw gegevens vertrouwelijk; dat is onze belofte aan u.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"error":{"en_text":"It looks like you’ve already subscribed to notifications for this item.","es_text":"¡Parece que ya tienes notificaciones activas para este artículo!","fr_text":"Il semble que vous ayez déjà des notifications actives pour cet article !","it_text":"Sembra che tu abbia già attive le notifiche per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen actief hebt voor dit item!","bg_color":"#d24325","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit request","es_text":"Enviar solicitud","fr_text":"Soumettre la demande","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"close_btn":null,"thank_you":{"header":{"en_text":"Notify me when this item restocks.","es_text":"Notificarme cuando este artículo se reponga.","fr_text":"Prévenez-moi lorsque cet article sera réapprovisionné.","it_text":"Avvisami quando questo articolo verrà rifornito.","nl_text":"Houd mij op de hoogte wanneer dit artikel opnieuw op voorraad is.","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you, we received your request, We will notify you once this item restocks.","es_text":"Gracias, recibimos su solicitud. Le notificaremos una vez que este artículo se reponga.","fr_text":"Merci, nous avons reçu votre demande, nous vous informerons une fois cet article réapprovisionné.","it_text":"Grazie, abbiamo ricevuto la tua richiesta. Ti informeremo non appena l'articolo verrà rifornito.","nl_text":"Bedankt, we hebben uw verzoek ontvangen. We zullen u op de hoogte stellen zodra dit artikel weer op voorraad is.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","fr_text":"Fermer","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar petición","fr_text":"Annuler ma demande","it_text":"Richiesta cancellata","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"notify_me":{"en_text":"Notify me when in stock","es_text":"Notificarme","fr_text":"Prévenez-moi une fois en stock","it_text":"Avvisami","nl_text":"Breng mij op de hoogte","bg_color":"#2f4d36","text_size":"15","text_color":"#ffffff","text_family":"inherit","pre_order_label":{"en_preOrder_text":"{{requested_counter}} Customers requested for this product.","es_preOrder_text":"{{requested_counter}} Clientes solicitados por este producto.","fr_preOrder_text":"{{requested_counter}} Clients demandés pour ce produit.","it_preOrder_text":"{{requested_counter}} I clienti hanno richiesto questo prodotto.","nl_preOrder_text":"{{requested_counter}} Klanten hebben om dit product gevraagd.","preOrder_placement":"Before","preOrder_text_size":"12","preOrder_is_visible":"0","preOrder_text_color":"#000000","preOrder_text_family":"inherit"},"restock_date_style":{"en_restock_text":"Our popular product will be restocked around {{date}}","es_restock_text":"Nuestro popular producto se reabastecerá alrededor {{date}} ","fr_restock_text":"Notre produit populaire sera réapprovisionné autour du {{date}}","it_restock_text":"Il nostro popolare prodotto verrà riassortito {{date}} ","nl_restock_text":"Ons populaire product wordt rond de voorraad aangevuld {{date}} ","restock_placement":"After","restock_text_size":"12","restock_is_visible":false,"restock_text_color":"#000000","restock_text_family":"inherit"},"sold_out_button_setting":"1","notify_me_button_setting":"out_of_stock"},"collection_notify_me":{"coll_btn_pos":null,"product_eval":null,"collection_eval":null,"product_btn_pos":null,"product_element":null,"pdp_get_pid_eval":null,"pdp_get_vid_eval":null,"coll_get_pid_eval":null,"coll_get_vid_eval":null,"collection_status":"1","collection_element":null},"extra":{"sms":{"en_text":"Hi, The product you requested is now back in stock, be first to buy it now  {{short_product_link}}","es_text":"Hola, el producto que solicitaste ya está disponible nuevamente, sé el primero en comprarlo ahora. {{short_product_link}}","fr_text":"Bonjour, Le produit que vous avez demandé est maintenant de nouveau en stock, soyez le premier à l'acheter maintenant {{short_product_link}}","it_text":"Ciao, il prodotto che hai richiesto è ora di nuovo disponibile, sii il primo ad acquistarlo adesso {{short_product_link}}","nl_text":"Hallo, het door u aangevraagde product is nu weer op voorraad, koop het nu als eerste {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":true,"show_image_mobile":0,"is_allowed_message":false,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"pre_extra":{"sms":{"nl_text":"Bedankt voor je aanmelding! We laten het je weten zodra het product weer op voorraad is.  {{short_product_link}}","is_enable":1},"whatsApp":{"is_enable":1},"is_enable_pre":0},"pre_email_template":{"logo":"","style":{"button_accent":"#ffffff","button_primary":"#007B5C"},"nl_text":{"body_":"\u003cp\u003eHoi {{customer_name}},\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eBedankt voor je aanmelding! 🙌 \u003cbr\u003e Je bent succesvol geabonneerd om updates over productbeschikbaarheid te ontvangen.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eWanneer het product dat je wilt weer op voorraad is, laten we het je meteen weten — zodat je het niet misloopt.\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eIn de tussentijd kun je gerust meer producten ontdekken in onze winkel.\u003c\/p\u003e\u003cp\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;{{collection_page_link}}\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eNogmaals bedankt,\u003c\/p\u003e\u003cp\u003eHet {{shop_name}} team\u003c\/p\u003e","button_":"Klik om te bekijken\/te kopen","subject_":"Je staat op de lijst! - {{product_title}} 🎉"},"is_signup_email_enable":1},"selecetd_products":null,"selected_collections":null,"code_block_setting":{"bis_js":null,"bis_css":null},"whatsapp_template":"en_default","pre_whatsapp_template":"en_default","created_at":"2025-04-13T09:31:15.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
        "pd_settings": {"id":1391,"user_id":2257,"price_drop":{"en_text":"Price drop alert","es_text":"Alerta de bajada de precio","it_text":"Avviso di abbassamento del prezzo","nl_text":"Prijsdaling melding","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit","showPriceDrop":"0","price_drop_button_setting":"price_drop"},"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#FFFFFF","text_size":"22","text_color":"#000000","text_family":"inherit"},"sub_header":{"en_text":"We occasionally reduce prices on popular items. If you would like to be notified when this happens, just enter your details below.","es_text":"Ocasionalmente reducimos los precios de los artículos populares. Si deseas ser notificado cuando esto ocurra, simplemente ingresa tus datos a continuación.","it_text":"Occasionalmente riduciamo i prezzi su articoli popolari. Se desideri essere avvisato quando ciò accade, inserisci i tuoi dettagli qui sotto.","nl_text":"Af en toe verlagen we de prijzen van populaire artikelen. Als je op de hoogte wilt worden gesteld wanneer dit gebeurt, vul dan hieronder je gegevens in.","bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"submit_btn":{"en_text":"Submit Request","es_text":"Enviar solicitud","it_text":"Invia richiesta","nl_text":"Verzoek indienen","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"error":{"en_text":"Looks like you already have notifications active for this item!","es_text":"¡Parece que ya tienes activadas las notificaciones para este artículo!","it_text":"Sembra che tu abbia già una notifica attiva per questo articolo!","nl_text":"Het lijkt erop dat je al meldingen hebt ingeschakeld voor dit artikel!","bg_color":"#ff6347","text_size":"12","text_color":"#000000","text_family":"inherit"},"privacy":{"en_text":"We respect your privacy and will only use your email for this notification.","es_text":"Respetamos tu privacidad y solo utilizaremos tu correo electrónico para esta notificación.","it_text":"Rispettiamo la tua privacy e utilizzeremo la tua email solo per questa notifica.","nl_text":"We respecteren je privacy en zullen je e-mail alleen gebruiken voor deze melding.","bg_color":"#FFFFFF","text_size":"11","text_color":"#cccccc","text_family":"inherit"},"thank_you":{"header":{"en_text":"Alert me if price of this item drops.","es_text":"Avísame si el precio de este artículo baja.","it_text":"Avvisami se il prezzo di questo articolo scende.","nl_text":"Laat het me weten als de prijs van dit artikel daalt.","bg_color":"#ffffff","text_size":"22","text_color":"#000000","text_family":"inherit"},"en_text":"Thank you! We have recorded your request to be notified about price drops. We will only use your email for this purpose.","es_text":"¡Gracias! Hemos registrado tu solicitud para notificarte sobre bajadas de precio. Solo utilizaremos tu correo electrónico para este propósito.","it_text":"Grazie! Abbiamo registrato la tua richiesta di essere avvisato quando il prezzo scende. Utilizzeremo la tua email solo per questo scopo.","nl_text":"Bedankt! We hebben je verzoek om een melding te ontvangen wanneer de prijs daalt geregistreerd. We zullen je e-mail alleen voor dit doel gebruiken.","bg_color":"#FFFFFF","close_btn":{"en_text":"Close","es_text":"Cerrar","it_text":"Chiudi","nl_text":"Sluiten","bg_color":"#000000","text_size":"15","text_color":"#ffffff","text_family":"inherit"},"text_size":"12","text_color":"#000000","text_family":"inherit","cancel_request_btn":{"en_text":"Cancel Request","es_text":"Cancelar solicitud","it_text":"Annulla richiesta","nl_text":"Annuleer verzoek","bg_color":"#DE3617","text_size":"15","text_color":"#ffffff","text_family":"inherit"}},"extra":{"sms":{"en_text":"Hi, Great news! The product you were interested in is now available at a lower price. Don’t miss out: {{short_product_link}}","es_text":"¡Hola! ¡Buenas noticias! El producto que te interesaba ahora está disponible a un precio más bajo. No lo dejes pasar: {{short_product_link}}","it_text":"Ciao! Ottime notizie! Il prodotto che ti interessava è ora disponibile a un prezzo più basso. Non perdertelo: {{short_product_link}}","nl_text":"Hallo! Goed nieuws! Het product waarin je geïnteresseerd was, is nu beschikbaar voor een lagere prijs. Mis het niet: {{short_product_link}}","is_enable":0},"whatsApp":{"is_enable":0},"form_settings":{"is_enable_name":1,"is_enable_email":1,"is_requested_qty":0,"show_image_mobile":0,"show_image_desktop":1,"show_product_image":0,"product_image_position":"left"},"product_title":{"bg_color":"#FFFFFF","text_size":"12","text_color":"#000000","text_family":"inherit"},"popup_settings":{"width":25,"popup_border_radius":16}},"code_block_setting":null,"custom_setting":{"product_eval":"","product_btn_pos":"","product_element":"","pdp_get_pid_eval":"","pdp_get_vid_eval":""},"whatsapp_template":"en_default","price_drop_selected_products":null,"created_at":"2025-05-06T15:17:19.000000Z","updated_at":"2025-12-15T13:16:52.000000Z"},
        "pre_order_counter": null,
        "restock_variants": null,
        "langauge": {"primary":"en","limit":true},
        "plan": {"plan_id":3},
        "_sf": {"k":"5d2bdbf7db62b6140ecb1706fad6054776cd25e085d156328a20061c754628af"}
      }
    </script>
  

  <script type="application/json" id="bis-variant-data">
    [
    
      {
        "id": 52631343923523,
        "title": "Default Title",
        "sku": "POSEIDON2831-32",
        "barcode": "3701726207717",
        "price": 3490,
        "compare_at_price": 9990,
        "available": false,
        "inventory_quantity": 0,
        "inventory_management": "shopify",
        "inventory_policy": "deny",
        "weight": 5000,
        "weight_unit": "kg",
        "requires_shipping": true,
        "image": null,
        "options": ["Default Title"],
        "url": "\/en-fr\/products\/poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en?variant=52631343923523"
      }
    
    ]
  </script>

  <script id="bis-collections" type="application/json">
    [{"id":637372203331,"handle":"pots-fleurs-ceramique","title":"Pots de fleurs en céramique","updated_at":"2026-05-06T14:11:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs en céramique\u003c\/strong\u003e, conçus pour sublimer vos plantes tout en ajoutant une touche d'élégance à vos intérieurs et extérieurs. Majoritairement faits à la main, nos pots allient savoir-faire artisanal et production contrôlée pour garantir à la fois originalité et qualité constante.\u003c\/p\u003e\n\u003cp\u003eChaque \u003cstrong\u003epot en céramique \u003c\/strong\u003eest pensé pour s’adapter à tous les styles : des designs classiques pour une ambiance authentique aux formes modernes pour un look contemporain. Grâce à ce mélange unique de fabrication artisanale et industrielle, nos pots se distinguent par leur durabilité et leur esthétique raffinée.\u003c\/p\u003e","published_at":"2024-12-11T14:30:48+01:00","sort_order":"manual","template_suffix":"collection-footer","disjunctive":false,"rules":[{"column":"type","relation":"equals","condition":"Pot"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:37:09+01:00","alt":"Všechny květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-en-c-ramique-provencelia.webp?v=1769100645"}},{"id":641562804547,"handle":"product-model-poseidon2","title":"Product model: Poseidon2","updated_at":"2026-05-06T13:29:31+02:00","body_html":"","published_at":"2025-03-05T19:41:59+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/224588169539"}],"published_scope":"global"},{"id":637372301635,"handle":"pots-de-fleurs-ronds","title":"Pots de fleurs ronds","updated_at":"2026-05-06T13:29:31+02:00","body_html":"\u003cp\u003eDécouvrez notre collection de \u003cstrong\u003epots de fleurs ronds en céramique\u003c\/strong\u003e, qui se distinguent par leurs formes gracieuses et leur design intemporel. Ces jardinières sont le choix parfait pour ceux qui recherchent une combinaison d'élégance et de fonctionnalité. Grâce à leurs lignes arrondies, elles s'intègrent parfaitement dans n'importe quel espace, créant un ensemble harmonieux avec vos plantes.\u003c\/p\u003e\n\u003cp\u003eNos jardinières rondes sont fabriquées à partir de céramique émaillée de qualité, garantissant leur résistance aux intempéries et leur longue durée de vie. Elles constituent un excellent choix pour les espaces\u003cstrong\u003e \u003c\/strong\u003eextérieurs comme intérieurs.\u003c\/p\u003e\n\u003cp\u003eLeur surface lisse et leurs lignes délicates garantissent que vos plantes ont toujours un aspect esthétique et élégant\u003c\/p\u003e","published_at":"2024-12-11T14:30:56+01:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":false,"rules":[{"column":"product_metafield_definition","relation":"equals","condition":"gid:\/\/shopify\/Metaobject\/247901782339"}],"published_scope":"global","image":{"created_at":"2025-11-28T10:36:58+01:00","alt":"Zaoblené květináče - Provencelia.cz","width":3500,"height":2329,"src":"\/\/provencelia.com\/cdn\/shop\/collections\/pots-de-fleurs-ronds-provencelia.webp?v=1769100640"}}]
  </script>
  <!-- mobile validator -->
  <script defer src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.1.0/build/js/intlTelInput.min.js"></script>

  <script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/countries-data.js"></script>
  <script src="https://cdn.shopify.com/extensions/019d6d39-ee79-7e09-957d-678667e8a2af/back-in-stock-640/assets/collection-notifyme.js" defer></script>

  <script id="bis-shopify-products" type="application/json">
    {"id":14797823803715,"title":"POSEIDON2 Pot 28x31cm abyss blue","handle":"poseidon2-28x31cm-large-handmade-outdoor-pot-in-glazed-terracotta-frost-resistant-abyss-blue-en","description":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e","published_at":"2025-02-23T12:23:28+01:00","created_at":"2025-02-23T12:23:28+01:00","vendor":"Provencelia","type":"Pot","tags":[],"price":3490,"price_min":3490,"price_max":3490,"available":false,"price_varies":false,"compare_at_price":9990,"compare_at_price_min":9990,"compare_at_price_max":9990,"compare_at_price_varies":false,"variants":[{"id":52631343923523,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"POSEIDON2831-32","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"POSEIDON2 Pot 28x31cm abyss blue","public_title":null,"options":["Default Title"],"price":3490,"weight":5000,"compare_at_price":9990,"inventory_management":"shopify","barcode":"3701726207717","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"],"featured_image":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","options":["Title"],"media":[{"alt":null,"id":57568777863491,"position":1,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-C.jpg?v=1769101695","width":2000},{"alt":null,"id":57568777929027,"position":2,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON32-A.jpg?v=1769101996","width":2000},{"alt":null,"id":52933488148803,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/POSEIDON2831-32.png?v=1769102026","width":1500},{"alt":null,"id":58539757994307,"position":4,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/provencelia.com\/cdn\/shop\/files\/Poseidon_Dimension.jpg?v=1772472617","width":2000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"\u003cp\u003e\u003cspan data-sheets-root=\"1\" data-mce-fragment=\"1\"\u003eHarmonize your outdoor space with the Poseidon2 collection and this hand-crafted glazed terracotta pot. Its sturdy design provides optimal resistance to weather and frost, ensuring durability throughout the seasons. Let nature fully express itself in an authentic and timeless setting. The Poseidon collection, a tribute to natural beauty and artisanal craftsmanship.\u003c\/span\u003e\u003c\/p\u003e\n\n\u003cp\u003e\u003cspan data-sheets-root=\"1\"\u003eDeep and elegant, the abyss blue enhances the natural charm of your plants and perfectly complements your decor.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eEach pot is unique, shaped and glazed by hand. Color variations may occur depending on the firing process (temperature, placement in the kiln), exposure to light (indoor, outdoor), as well as the type of screen used (computer, tablet, mobile). These nuances add to the charm and authenticity of our handcrafted pieces.\u003c\/p\u003e"}
  </script>
  <script id="bis-shopify-collection-products" type="application/json">
    null
  </script>

</div>


</div><div id="shopify-block-Aajk0TllTV2lJZTdoT__15683396631634586217" class="shopify-block shopify-app-block"><script
  id="chat-button-container"
  data-horizontal-position=bottom_right  data-vertical-position=lowest  data-icon=chat_bubble  data-text=chat_with_us  data-color=#000000  data-secondary-color=#FFFFFF  data-ternary-color=#6A6A6A  
  data-domain=provencelia.com  data-shop-domain=provencelia.com  data-external-identifier=5y3YN3C_krNI3jzULg93YtfcQqZWCq8m9-3wX8n0raw  
>
</script>


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