{"id":9991,"date":"2026-01-18T21:21:19","date_gmt":"2026-01-18T20:21:19","guid":{"rendered":"https:\/\/deluiz-parfum.com\/?page_id=9991"},"modified":"2026-03-31T18:05:11","modified_gmt":"2026-03-31T16:05:11","slug":"maison-deluiz-2-0","status":"publish","type":"page","link":"https:\/\/deluiz-parfum.com\/en\/","title":{"rendered":"Maison deluiz"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"9991\" class=\"elementor elementor-9991\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f7b181a elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"f7b181a\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dfb520e\" data-id=\"dfb520e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-9196d53 elementor-widget elementor-widget-html\" data-id=\"9196d53\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  html, body {\n    margin: 0 !important;\n    padding: 0 !important;\n    overflow-x: hidden !important; \/* STABILISATION HORIZONTALE *\/\n  }\n  #deluiz-root-wrapper {\n    all: initial; \n    display: block; \n    width: 100%; \n    height: 100vh; \n    height: 100svh; \/* STABILISATION VERTICALE (Fixe la hauteur pour \u00e9viter le saut au scroll) *\/\n    margin: 0; \n    padding: 0;\n    overflow: hidden; \/* Emp\u00eache tout d\u00e9bordement *\/\n    position: relative;\n  }\n  #deluiz-app-mount {\n    position: relative; \n    width: 100vw; \n    height: 100%; \n    left: 50%; \n    right: 50%; \n    margin-left: -50vw; \n    margin-right: -50vw; \n    background-color: #1C1C1C; \n    overflow: hidden;\n  }\n  .deluiz-loader {\n    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #D4AF37; font-family: serif; font-size: 1.2rem; letter-spacing: 0.2em; text-transform: uppercase;\n  }\n<\/style>\n\n<!-- Libs -->\n<link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n<link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n<!-- Import de \"Italiana\" pour une \u00e9l\u00e9gance pure et moderne (Trend 2026) -->\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Italiana&family=Montserrat:wght@200;300;400;500&display=swap\" rel=\"stylesheet\">\n<script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n<script>\n  tailwind.config = {\n    theme: {\n      extend: {\n        colors: { charcoal: '#1C1C1C', gold: '#D4AF37' },\n        fontFamily: { \n          serif: ['\"Italiana\"', 'serif'], \n          sans: ['\"Montserrat\"', 'sans-serif'] \n        },\n      }\n    }\n  }\n<\/script>\n<script crossorigin src=\"https:\/\/unpkg.com\/react@18\/umd\/react.production.min.js\"><\/script>\n<script crossorigin src=\"https:\/\/unpkg.com\/react-dom@18\/umd\/react-dom.production.min.js\"><\/script>\n<script src=\"https:\/\/unpkg.com\/framer-motion@10.16.4\/dist\/framer-motion.js\"><\/script>\n<script src=\"https:\/\/unpkg.com\/@babel\/standalone\/babel.min.js\"><\/script>\n\n<div id=\"deluiz-root-wrapper\">\n  <div id=\"deluiz-app-mount\">\n    <div class=\"deluiz-loader\">Chargement...<\/div>\n  <\/div>\n<\/div>\n\n<script type=\"text\/babel\" data-presets=\"react\">\n  const React = window.React;\n  const ReactDOM = window.ReactDOM;\n  const Motion = window.Motion;\n\n  if (!React || !ReactDOM || !Motion) { console.error(\"Erreur lib\"); } else {\n    const { useState, useEffect } = React;\n    const { motion, AnimatePresence } = Motion;\n\n    const SLIDES = [\n      { \n        id: 1, \n        title: \"L'Or de la Riviera\", \n        subtitle: \"Une signature olfactive n\u00e9e sous le soleil de Nice.\", \n        image: \"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/HERO_1-scaled.webp\", \n        mobileImage: \"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/1_mobile.webp\" \n      },\n      { \n        id: 2, \n        title: \"L'Architecture du D\u00e9sir\", \n        subtitle: \"Des flacons sculpt\u00e9s pour capturer l'\u00e9ternit\u00e9.\", \n        image: \"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/HERO_2.webp\", \n        mobileImage: \"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/2_mobile.jpg\" \n      }\n    ];\n\n    const Hero = () => {\n      const [idx, setIdx] = useState(0);\n      const [isMobile, setIsMobile] = useState(false);\n\n      useEffect(() => {\n        const check = () => setIsMobile(window.innerWidth < 768);\n        check(); window.addEventListener('resize', check); return () => window.removeEventListener('resize', check);\n      }, []);\n\n      useEffect(() => { const t = setInterval(() => handleNext(), 8000); return () => clearInterval(t); }, [idx]);\n      const handleNext = () => setIdx((p) => (p + 1) % SLIDES.length);\n      const handlePrev = () => setIdx((p) => (p - 1 + SLIDES.length) % SLIDES.length);\n      const slide = SLIDES[idx];\n      const imgSrc = (isMobile && slide.mobileImage) ? slide.mobileImage : slide.image;\n\n      return (\n        <div className=\"relative w-full h-full font-sans overflow-hidden bg-charcoal\">\n          \n          {\/* 1. BACKGROUND *\/}\n          <AnimatePresence mode=\"popLayout\">\n            <motion.div\n              key={idx}\n              initial={{ opacity: 0 }}\n              animate={{ opacity: 1 }}\n              exit={{ opacity: 0 }}\n              transition={{ duration: 1.5 }}\n              style={{ position: 'absolute', top: 0, left: 0, width: '100%', height: '100%', zIndex: 0 }}\n            >\n              <motion.img\n                src={imgSrc}\n                alt={slide.title}\n                className=\"w-full h-full object-cover\"\n                \/* STABILISATION : willChange pour la performance, objectFit cover maintenu *\/\n                style={{ width: '100%', height: '100%', objectFit: 'cover', willChange: 'transform' }}\n                initial={{ scale: 1.1 }}\n                animate={{ scale: 1 }}\n                transition={{ duration: 10, ease: \"linear\" }}\n              \/>\n            <\/motion.div>\n          <\/AnimatePresence>\n\n          {\/* 2. GRADIENT OVERLAY *\/}\n          <div className=\"absolute inset-0 bg-gradient-to-t from-black\/70 via-black\/10 to-transparent z-10 pointer-events-none\" \/>\n\n          {\/* 3. UI CONTENT *\/}\n          {\/* Padding Bas (pb-28) maintenu pour la visibilit\u00e9 mobile *\/}\n          <div className=\"absolute bottom-0 left-0 w-full z-20 px-6 pb-28 md:px-12 md:pb-16 lg:px-24 pointer-events-none\">\n            <div className=\"w-full max-w-[1600px] mx-auto pointer-events-auto\">\n              \n              <div className=\"flex flex-col\">\n                  {\/* TITLE AREA *\/}\n                  <div className=\"mb-8 md:mb-16 flex flex-col justify-end\">\n                    <p className=\"text-gold text-[10px] md:text-xs font-semibold tracking-[0.3em] uppercase mb-6 ml-1\">Maison Deluiz<\/p>\n                    <AnimatePresence mode=\"wait\">\n                      <motion.h2\n                        key={`t-${idx}`}\n                        initial={{ opacity: 0, y: 30 }}\n                        animate={{ opacity: 1, y: 0 }}\n                        exit={{ opacity: 0, y: -30 }}\n                        transition={{ duration: 0.9, ease: [0.16, 1, 0.3, 1] }}\n                        className=\"font-serif text-5xl sm:text-6xl md:text-8xl lg:text-9xl text-white leading-[1] drop-shadow-lg max-w-6xl tracking-wide\"\n                      >\n                        {slide.title}\n                      <\/motion.h2>\n                    <\/AnimatePresence>\n                  <\/div>\n\n                  {\/* BOTTOM ROW *\/}\n                  <div className=\"flex flex-col md:flex-row items-start md:items-end justify-between w-full gap-8 md:gap-0 border-t border-white\/10 pt-6 md:pt-0 md:border-t-0\">\n                    \n                    {\/* SUBTITLE *\/}\n                    <div className=\"flex items-center gap-6 max-w-[90%] md:max-w-xl\">\n                       <div className=\"w-12 h-[1px] bg-gold shrink-0 hidden md:block\"><\/div>\n                       <AnimatePresence mode=\"wait\">\n                         <motion.p \n                           key={`s-${idx}`}\n                           initial={{ opacity: 0 }}\n                           animate={{ opacity: 1 }}\n                           exit={{ opacity: 0 }}\n                           transition={{ duration: 0.6 }}\n                           className=\"text-white\/80 text-[11px] md:text-sm font-sans font-light tracking-[0.05em] leading-relaxed\"\n                         >\n                           {slide.subtitle}\n                         <\/motion.p>\n                       <\/AnimatePresence>\n                    <\/div>\n\n                    {\/* NAVIGATION - REDESIGNED: SMALLER, CLEANER *\/}\n                    <div className=\"flex gap-4 shrink-0\">\n                       <button \n                         onClick={handlePrev} \n                         className=\"group w-12 h-12 md:w-14 md:h-14 rounded-full border border-white\/30 bg-transparent flex items-center justify-center transition-all duration-300 hover:bg-gold hover:border-gold active:scale-95\"\n                         aria-label=\"Previous Slide\"\n                       >\n                         {\/* Fl\u00e8che fine et petite *\/}\n                         <svg className=\"w-4 h-4 text-white transition-colors duration-300 group-hover:text-black\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" strokeWidth=\"1\">\n                           <path d=\"M19 12H5M12 19l-7-7 7-7\" strokeLinecap=\"round\" strokeLinejoin=\"round\"\/>\n                         <\/svg>\n                       <\/button>\n\n                       <button \n                         onClick={handleNext} \n                         className=\"group w-12 h-12 md:w-14 md:h-14 rounded-full border border-white\/30 bg-transparent flex items-center justify-center transition-all duration-300 hover:bg-gold hover:border-gold active:scale-95\"\n                         aria-label=\"Next Slide\"\n                       >\n                         {\/* Fl\u00e8che fine et petite *\/}\n                         <svg className=\"w-4 h-4 text-white transition-colors duration-300 group-hover:text-black\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" strokeWidth=\"1\">\n                           <path d=\"M5 12h14M12 5l7 7-7 7\" strokeLinecap=\"round\" strokeLinejoin=\"round\"\/>\n                         <\/svg>\n                       <\/button>\n                    <\/div>\n\n                  <\/div>\n              <\/div>\n\n            <\/div>\n          <\/div>\n        <\/div>\n      );\n    };\n\n    const root = ReactDOM.createRoot(document.getElementById('deluiz-app-mount'));\n    root.render(<Hero \/>);\n  }\n<\/script>\n\n<script>\n  if (window.Babel) { try { window.Babel.transformScriptTags(); } catch(e) {} }\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-847aac5 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"847aac5\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dcc1f2f\" data-id=\"dcc1f2f\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-72fe99c elementor-widget elementor-widget-html\" data-id=\"72fe99c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Scoped Styles for Maison Deluiz Philosophy *\/\n  #md-philosophy-section {\n    position: relative;\n    width: 100%;\n    padding: 4rem 1rem;\n    font-family: 'Montserrat', sans-serif;\n    color: #4A4A4A; \/* Slate Gray *\/\n    text-align: center;\n    background-color: #faf9f7;\n  }\n\n  .md-philo-container {\n    max-width: 900px; \/* Slightly wider for the paragraphs *\/\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n  }\n\n  \/* 1. Typography Styles *\/\n  .md-philo-label {\n    display: block;\n    font-family: 'Montserrat', sans-serif;\n    font-size: 0.75rem; \/* 12px *\/\n    text-transform: uppercase;\n    letter-spacing: 0.25em; \/* Ultra tracking *\/\n    color: #D4AF37; \/* Gold *\/\n    margin-bottom: 1.5rem;\n  }\n\n  .md-philo-title {\n    font-family: 'Cormorant Garamond', serif;\n    font-size: 3rem;\n    font-style: italic;\n    font-weight: 400;\n    color: #1C1C1C; \/* Charcoal *\/\n    margin: 0 0 2.5rem 0;\n    line-height: 1.2;\n  }\n\n  .md-philo-text p {\n    font-weight: 300;\n    line-height: 1.8;\n    margin-bottom: 2rem;\n    font-size: 1rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  \/* The Quote Paragraph *\/\n  .md-philo-text p.md-quote {\n    font-size: 1.15rem;\n    color: #1C1C1C;\n    font-weight: 400;\n    font-family: 'Cormorant Garamond', serif; \/* Optional: Keep it serif or sans based on preference, using sans for cleanness *\/\n    font-family: 'Montserrat', sans-serif; \n  }\n\n  \/* 2. Decorative Vertical Line *\/\n  .md-philo-line {\n    width: 1px;\n    height: 0; \/* Starts at 0 for animation *\/\n    background-color: #CD7F32; \/* Bronze *\/\n    margin-top: 2rem;\n    opacity: 0.6;\n    transition: height 1s ease-out 0.8s; \/* Delayed expansion *\/\n  }\n\n  \/* 3. Animation Classes (Direct & Fluid) *\/\n  \/* We use a simple translate\/fade for a \"Direct Entry\" feel *\/\n  .md-anim-up {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);\n  }\n\n  \/* Visible State *\/\n  .is-visible .md-anim-up {\n    opacity: 1;\n    transform: translateY(0);\n  }\n  \n  .is-visible .md-philo-line {\n    height: 60px; \/* Final height of the line *\/\n  }\n\n  \/* Stagger Delays for natural flow *\/\n  .md-delay-1 { transition-delay: 0.1s; }\n  .md-delay-2 { transition-delay: 0.2s; }\n  .md-delay-3 { transition-delay: 0.35s; }\n  .md-delay-4 { transition-delay: 0.5s; }\n  .md-delay-5 { transition-delay: 0.65s; }\n\n  \/* Responsive *\/\n  @media (min-width: 768px) {\n    #md-philosophy-section {\n        padding: 6rem 1rem;\n    }\n    .md-philo-title {\n      font-size: 4rem; \/* Larger on desktop *\/\n    }\n    .md-philo-text p {\n      font-size: 1.05rem;\n    }\n    .md-philo-text p.md-quote {\n      font-size: 1.25rem;\n    }\n  }\n<\/style>\n\n<div id=\"md-philosophy-section\">\n  <div class=\"md-philo-container\">\n    \n    <!-- Label -->\n    <span class=\"md-philo-label md-anim-up md-delay-1\">Notre Philosophie<\/span>\n\n    <!-- Title -->\n    <h2 class=\"md-philo-title md-anim-up md-delay-2\">Au-del\u00e0 du\nvisible<\/h2>\n\n    <!-- Text Content -->\n    <div class=\"md-philo-text\">\n      <p class=\"md-anim-up md-delay-3\">\n        Maison Deluiz ne cr\u00e9e pas simplement des parfums, nous sculptons des souvenirs liquides. Dans un monde bruyant, nous choisissons le silence de l'excellence.\n      <\/p>\n      \n      <p class=\"md-quote md-anim-up md-delay-4\">\n        Chaque flacon est le fruit d'une qu\u00eate obsessionnelle : trouver l'\u00e9quilibre parfait entre la tradition brute de la mati\u00e8re et la sophistication de l'art parisien. Le luxe ne doit jamais compromettre l'\u00e9motion.\n     \n      <\/p>\n    <\/div>\n\n    <!-- Vertical Line -->\n    <div class=\"md-philo-line\"><\/div>\n\n  <\/div>\n<\/div>\n\n<script>\n  \/\/ Simple Intersection Observer for scroll animations\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    const section = document.getElementById('md-philosophy-section');\n    \n    const observer = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          section.classList.add('is-visible');\n          observer.unobserve(entry.target); \n        }\n      });\n    }, {\n      threshold: 0.2 \/\/ Trigger when 20% visible\n    });\n\n    if(section) {\n      observer.observe(section);\n    }\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2435180 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"2435180\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3715113\" data-id=\"3715113\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ce4cbe7 elementor-widget elementor-widget-html\" data-id=\"ce4cbe7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices (si pas d\u00e9j\u00e0 pr\u00e9sentes sur le site) *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  \/* Scoped CSS pour isoler le style de cette section *\/\n  #deluiz-bestsellers-wrapper {\n    \/* Variables de couleurs *\/\n    --dl-cream: #faf9f7;\n    --dl-charcoal: #1A1A1A;\n    --dl-gold: #C6A87C;\n    --dl-font-serif: 'Playfair Display', serif;\n    --dl-font-sans: 'Montserrat', sans-serif;\n\n    background-color: var(--dl-cream);\n    color: var(--dl-charcoal);\n    font-family: var(--dl-font-sans);\n    padding: 80px 20px;\n    overflow: hidden;\n    box-sizing: border-box;\n    width: 100%;\n  }\n\n  @media (min-width: 768px) {\n    #deluiz-bestsellers-wrapper {\n      padding: 120px 40px;\n    }\n  }\n\n  #deluiz-bestsellers-wrapper * {\n    box-sizing: border-box;\n  }\n\n  \/* Header de la section *\/\n  .dl-section-header {\n    text-align: center;\n    margin-bottom: 60px;\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 0.8s ease, transform 0.8s ease;\n  }\n\n  .dl-section-header.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n  .dl-subtitle {\n    display: block;\n    color: var(--dl-gold);\n    font-size: 12px;\n    letter-spacing: 0.3em;\n    text-transform: uppercase;\n    margin-bottom: 15px;\n    font-weight: 500;\n  }\n\n  .dl-title {\n    font-family: var(--dl-font-serif);\n    font-size: 32px;\n    font-weight: 400;\n    margin: 0;\n    color: var(--dl-charcoal);\n    line-height: 1.2;\n  }\n\n  @media (min-width: 768px) {\n    .dl-title { font-size: 56px; }\n  }\n\n  \/* Grille des produits *\/\n  .dl-products-grid {\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 40px;\n    max-width: 1400px;\n    margin: 0 auto;\n  }\n\n  @media (min-width: 900px) {\n    .dl-products-grid {\n      grid-template-columns: repeat(3, 1fr);\n      gap: 50px;\n    }\n  }\n\n  \/* Carte Produit *\/\n  .dl-product-card {\n    display: flex;\n    flex-direction: column;\n    opacity: 0;\n    transform: translateY(60px);\n    transition: opacity 0.8s ease, transform 0.8s ease;\n    cursor: pointer;\n  }\n\n  .dl-product-card.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n  \/* Image Container & Animation *\/\n  .dl-image-container {\n    position: relative;\n    width: 100%;\n    height: 500px; \/* Mobile height *\/\n    overflow: hidden;\n    background-color: #EAE8E4;\n    margin-bottom: 30px;\n  }\n\n  @media (min-width: 768px) {\n    .dl-image-container {\n      height: 60vh; \/* Desktop height - adaptive *\/\n      min-height: 500px;\n    }\n  }\n\n  .dl-product-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    object-position: center;\n    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);\n    display: block;\n  }\n\n  \/* Hover Effects *\/\n  .dl-product-card:hover .dl-product-img {\n    transform: scale(1.08);\n  }\n\n  .dl-image-overlay {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background-color: rgba(0,0,0,0);\n    transition: background-color 0.5s ease;\n    z-index: 1;\n  }\n\n  .dl-product-card:hover .dl-image-overlay {\n    background-color: rgba(0,0,0,0.03);\n  }\n\n  \/* Bouton D\u00e9couvrir *\/\n  .dl-btn-discover {\n    position: absolute;\n    bottom: 40px;\n    left: 50%;\n    transform: translate(-50%, 20px);\n    background-color: rgba(255, 255, 255, 0.9);\n    backdrop-filter: blur(4px);\n    color: var(--dl-charcoal);\n    font-size: 11px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    padding: 15px 25px;\n    border: 1px solid rgba(255, 255, 255, 0.5);\n    opacity: 0;\n    z-index: 2;\n    transition: all 0.5s ease;\n    white-space: nowrap;\n  }\n\n  .dl-product-card:hover .dl-btn-discover {\n    opacity: 1;\n    transform: translate(-50%, 0);\n  }\n\n  .dl-btn-discover:hover {\n    background-color: var(--dl-gold);\n    color: #fff;\n    border-color: var(--dl-gold);\n  }\n\n  \/* Info Text *\/\n  .dl-product-info {\n    text-align: center;\n    margin-top: auto;\n  }\n\n  .dl-product-type {\n    display: block;\n    font-size: 11px;\n    color: rgba(26, 26, 26, 0.6);\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    margin-bottom: 10px;\n    font-weight: 500;\n  }\n\n  .dl-product-name {\n    font-family: var(--dl-font-serif);\n    font-size: 32px;\n    margin: 0 0 10px 0;\n    font-weight: 400;\n    transition: color 0.3s ease;\n  }\n\n  .dl-product-card:hover .dl-product-name {\n    color: var(--dl-gold);\n  }\n\n  .dl-product-desc {\n    font-size: 14px;\n    color: rgba(26, 26, 26, 0.8);\n    font-weight: 300;\n    font-style: italic;\n    margin: 0 0 15px 0;\n  }\n\n  .dl-separator {\n    width: 30px;\n    height: 1px;\n    background-color: rgba(198, 168, 124, 0.5);\n    margin: 0 auto 15px auto;\n  }\n\n  .dl-product-notes {\n    font-size: 10px;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    color: rgba(26, 26, 26, 0.7);\n    font-weight: 500;\n    margin: 0;\n  }\n\n<\/style>\n\n<div id=\"deluiz-bestsellers-wrapper\">\n  \n  <div class=\"dl-section-header dl-anim-item\">\n    <span class=\"dl-subtitle\">La S\u00e9lection<\/span>\n    <h2 class=\"dl-title\">Les Ic\u00f4nes de la Maison<\/h2>\n  <\/div>\n\n  <div class=\"dl-products-grid\">\n    \n    <!-- Produit 1 : FICTION -->\n    <div class=\"dl-product-card dl-anim-item\" style=\"transition-delay: 0s;\">\n      <div class=\"dl-image-container\">\n        <div class=\"dl-image-overlay\"><\/div>\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp?ssl=1\" class=\"dl-product-img\">\n        <a href=\"https:\/\/deluiz-parfum.com\/produit\/parfum-masculin-de-luxe-fragrance-raffinee-homme-parfum-sophistique-masculin-musc-et-vanille-homme-parfum-elegant-et-original-homme-deluiz-parfum-parfum-haut-de-gamme-masculin-signature-olfacti\/\" class=\"dl-btn-discover\">D\u00e9couvrir<\/a>\n      <\/div>\n      <div class=\"dl-product-info\">\n        <span class=\"dl-product-type\">Pour Homme<\/span>\n        <h3 class=\"dl-product-name\">FICTION<\/h3>\n        <p class=\"dl-product-desc\">L'audace masculine.<\/p>\n        <div class=\"dl-separator\"><\/div>\n        <p class=\"dl-product-notes\">Bergamote, Santal, Ambroxan<\/p>\n      <\/div>\n    <\/div>\n\n    <!-- Produit 2 : INSTANT-T -->\n    <div class=\"dl-product-card dl-anim-item\" style=\"transition-delay: 0.2s;\">\n      <div class=\"dl-image-container\">\n        <div class=\"dl-image-overlay\"><\/div>\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Instant-T2.png?ssl=1\"dl-product-img\">\n        <a href=\"https:\/\/deluiz-parfum.com\/produit\/instant-vertueux\/\" class=\"dl-btn-discover\">D\u00e9couvrir<\/a>\n      <\/div>\n      <div class=\"dl-product-info\">\n        <span class=\"dl-product-type\">Pour Femme<\/span>\n        <h3 class=\"dl-product-name\">INSTANT-T<\/h3>\n        <p class=\"dl-product-desc\">La gr\u00e2ce de l'instant.<\/p>\n        <div class=\"dl-separator\"><\/div>\n        <p class=\"dl-product-notes\">Fruits rouges, Rose, Vanille<\/p>\n      <\/div>\n    <\/div>\n\n    <!-- Produit 3 : OBSESSION -->\n    <div class=\"dl-product-card dl-anim-item\" style=\"transition-delay: 0.4s;\">\n      <div class=\"dl-image-container\">\n        <div class=\"dl-image-overlay\"><\/div>\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Obsession2.0.webp?ssl=1\">\n        <a href=\"https:\/\/deluiz-parfum.com\/produit\/obsession-deluiz\/\" class=\"dl-btn-discover\">D\u00e9couvrir<\/a>\n      <\/div>\n      <div class=\"dl-product-info\">\n        <span class=\"dl-product-type\">Mixte<\/span>\n        <h3 class=\"dl-product-name\">OBSESSION<\/h3>\n        <p class=\"dl-product-desc\">L'addiction absolue.<\/p>\n        <div class=\"dl-separator\"><\/div>\n        <p class=\"dl-product-notes\">Chocolat, Cardamome, Tonka<\/p>\n      <\/div>\n    <\/div>\n\n  <\/div>\n<\/div>\n\n<script>\n  \/\/ Petit script pour g\u00e9rer l'apparition des \u00e9l\u00e9ments au scroll (IntersectionObserver)\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.1\n    };\n\n    const observer = new IntersectionObserver((entries, observer) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          observer.unobserve(entry.target); \/\/ On joue l'animation une seule fois\n        }\n      });\n    }, observerOptions);\n\n    const animItems = document.querySelectorAll('.dl-anim-item');\n    animItems.forEach(el => observer.observe(el));\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-246a2f5 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"246a2f5\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ed24776\" data-id=\"ed24776\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6ea2490 elementor-widget elementor-widget-html\" data-id=\"6ea2490\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  #deluiz-valentine-wrapper {\n    \/* Variables Locales *\/\n    --dl-v-gold: #C6A87C;\n    --dl-v-cream: #EAEaea; \/* Blanc l\u00e9g\u00e8rement cass\u00e9 pour le texte principal *\/\n    --dl-v-font-serif: 'Playfair Display', serif;\n    --dl-v-font-sans: 'Montserrat', sans-serif;\n\n    \/* Background : Un brun\/noir tr\u00e8s profond et chaud *\/\n    background: radial-gradient(circle at 50% 0%, #2a1d1d 0%, #0f0505 80%);\n    color: var(--dl-v-cream);\n    font-family: var(--dl-v-font-sans);\n    padding: 100px 20px;\n    width: 100%;\n    overflow: hidden;\n    position: relative;\n    box-sizing: border-box;\n    z-index: 1;\n  }\n\n  @media (min-width: 768px) {\n    #deluiz-valentine-wrapper {\n      padding: 140px 40px;\n    }\n  }\n\n  #deluiz-valentine-wrapper * {\n    box-sizing: border-box;\n  }\n\n  \/* --- HEADER SECTION --- *\/\n  .dl-v-header {\n    text-align: center;\n    margin-bottom: 80px;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n    position: relative;\n    z-index: 2;\n  }\n\n  \/* Cercle avec Coeur *\/\n  .dl-v-icon-box {\n    width: 46px;\n    height: 46px;\n    border: 1px solid rgba(198, 168, 124, 0.3); \/* Gold subtil *\/\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin: 0 auto 25px auto;\n    color: var(--dl-v-gold);\n    opacity: 0.8;\n  }\n\n  .dl-v-subtitle {\n    display: block;\n    font-size: 11px;\n    letter-spacing: 0.3em;\n    text-transform: uppercase;\n    color: var(--dl-v-gold);\n    margin-bottom: 20px;\n    font-weight: 500;\n  }\n\n  .dl-v-title {\n    font-family: var(--dl-v-font-serif);\n    font-size: 34px;\n    font-weight: 400;\n    letter-spacing: 0.05em;\n    margin: 0 0 25px 0;\n    line-height: 1.3;\n    color: #FFFFFF; \/* Titre bien blanc pour le contraste *\/\n    text-shadow: 0 4px 10px rgba(0,0,0,0.3);\n  }\n\n  .dl-v-desc {\n    font-size: 15px;\n    font-weight: 300;\n    color: rgba(255, 255, 255, 0.6); \/* Gris clair \u00e9l\u00e9gant *\/\n    line-height: 1.8;\n  }\n\n  @media (min-width: 768px) {\n    .dl-v-title { font-size: 52px; }\n    .dl-v-desc { font-size: 16px; }\n  }\n\n  \/* --- GRID PRODUITS --- *\/\n  .dl-v-grid {\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 40px;\n    max-width: 1000px; \/* R\u00e9duit pour rapprocher les \u00e9l\u00e9ments *\/\n    margin: 0 auto 90px auto;\n    position: relative;\n    z-index: 2;\n  }\n\n  @media (min-width: 768px) {\n    .dl-v-grid {\n      grid-template-columns: 1fr 1fr;\n      gap: 60px;\n    }\n  }\n\n  .dl-v-card {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    text-align: center;\n    cursor: pointer;\n  }\n\n  \/* Image Wrapper - MODIFI\u00c9 POUR TAILLE R\u00c9DUITE ET CADRE *\/\n  .dl-v-img-wrap {\n    width: 100%;\n    max-width: 360px; \/* Taille maximale restreinte pour \u00e9viter l'effet \"g\u00e9ant\" *\/\n    aspect-ratio: 3 \/ 4; \n    overflow: hidden;\n    margin: 0 auto 35px auto; \/* Centr\u00e9 horizontalement *\/\n    position: relative;\n    background-color: transparent; \n    border: 1px solid rgba(255, 255, 255, 0.15); \/* Cadre fin blanc\/transparent *\/\n  }\n\n  .dl-v-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover; \/* Remplit le cadre *\/\n    object-position: center center; \/* Centre l'image *\/\n    transition: transform 1.5s ease;\n    display: block;\n  }\n\n  .dl-v-card:hover .dl-v-img {\n    transform: scale(1.05); \/* Zoom tr\u00e8s subtil *\/\n  }\n\n  \/* Textes Produits *\/\n  .dl-v-prod-cat {\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    color: var(--dl-v-gold);\n    margin-bottom: 15px;\n    font-weight: 500;\n  }\n\n  .dl-v-prod-name {\n    font-family: var(--dl-v-font-serif);\n    font-size: 36px; \/* Taille l\u00e9g\u00e8rement r\u00e9duite *\/\n    margin: 0 0 20px 0;\n    font-weight: 400;\n    letter-spacing: 0.02em;\n    color: #e5e5e5;\n  }\n\n  .dl-v-link {\n    font-size: 10px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: rgba(255, 255, 255, 0.7);\n    text-decoration: none;\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    transition: all 0.3s ease;\n    border-bottom: 1px solid transparent;\n    padding-bottom: 2px;\n  }\n\n  .dl-v-link svg {\n    width: 12px;\n    height: 12px;\n    transition: transform 0.3s ease;\n  }\n\n  .dl-v-card:hover .dl-v-link {\n    color: var(--dl-v-gold);\n    border-bottom-color: rgba(198, 168, 124, 0.3);\n  }\n\n  .dl-v-card:hover .dl-v-link svg {\n    transform: translateX(4px);\n  }\n\n  \/* --- FOOTER CTA (FIX COLOR & Z-INDEX) --- *\/\n  .dl-v-footer {\n    text-align: center;\n    position: relative;\n    z-index: 100; \/* Ensure button area is on top *\/\n  }\n\n  .dl-v-btn {\n    display: inline-block;\n    padding: 20px 45px;\n    border: 1px solid rgba(198, 168, 124, 0.6); \/* Bordure Gold *\/\n    color: #e5e5e5 !important; \/* Force le blanc\/gris par d\u00e9faut *\/\n    text-decoration: none;\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    transition: all 0.3s ease;\n    background: transparent;\n    cursor: pointer;\n    \n    \/* FIX CLICKABILITY *\/\n    position: relative;\n    z-index: 101; \n  }\n\n  \/* Au survol : Fond Gold + Texte Noir Imp\u00e9ratif *\/\n  .dl-v-btn:hover, \n  .dl-v-btn:active, \n  .dl-v-btn:focus {\n    background-color: var(--dl-v-gold) !important;\n    color: #000000 !important; \/* Force le noir pour un contraste maximal *\/\n    border-color: var(--dl-v-gold) !important;\n    box-shadow: 0 0 30px rgba(198, 168, 124, 0.3);\n  }\n\n  \/* --- ANIMATIONS --- *\/\n  .dl-anim-v {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1.000), transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);\n  }\n\n  .dl-anim-v.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n<\/style>\n\n<div id=\"deluiz-valentine-wrapper\">\n  \n  <!-- Header -->\n  <div class=\"dl-v-header dl-anim-v\" style=\"transition-delay: 0s;\">\n    <div class=\"dl-v-icon-box\">\n      <!-- SVG Heart Icon - Fin et \u00e9l\u00e9gant -->\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z\"><\/path><\/svg>\n    <\/div>\n    <span class=\"dl-v-subtitle\">Saint-Valentin<\/span>\n    <h2 class=\"dl-v-title\">C\u00c9L\u00c9BREZ L'AMOUR ABSOLU<\/h2>\n    <p class=\"dl-v-desc\">Pour la Saint-Valentin, offrez plus qu'un parfum : offrez une \u00e9motion \u00e9ternelle.<\/p>\n  <\/div>\n\n  <!-- Grid Produits -->\n  <div class=\"dl-v-grid\">\n    \n    <!-- Produit 1 : Sweet-Kis (Pour Elle) -->\n    <div class=\"dl-v-card dl-anim-v\" style=\"transition-delay: 0.2s;\">\n      <!-- Image Container avec Max-Width et Bordure -->\n      <div class=\"dl-v-img-wrap\">\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Sweet-Kis_2.0.webp?ssl=1\" class=\"dl-v-img\">\n      <\/div>\n      <span class=\"dl-v-prod-cat\">Pour Elle<\/span>\n      <h3 class=\"dl-v-prod-name\">SWEET-KIS<\/h3>\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/parfum-de-seduction-pour-femmes-fragrance-sucree-elegante-parfum-petillant-et-doux-vanille-musquee-parfum-sophistique-femme-deluiz-parfum-parfum-haut-de-gamme-feminin-signature-olfactive-femme\/\" class=\"dl-v-link\">\n        D\u00e9couvrir Sweet-Kis\n        <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"><\/line><polyline points=\"12 5 19 12 12 19\"><\/polyline><\/svg>\n      <\/a>\n    <\/div>\n\n    <!-- Produit 2 : STORM (Pour Lui) -->\n    <div class=\"dl-v-card dl-anim-v\" style=\"transition-delay: 0.4s;\">\n      <div class=\"dl-v-img-wrap\">\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Storm_6.webp?ssl=1\" alt=\"Parfum Storm - Pour Lui\" class=\"dl-v-img\">\n      <\/div>\n      <span class=\"dl-v-prod-cat\">Pour Lui<\/span>\n      <h3 class=\"dl-v-prod-name\">STORM<\/h3>\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/storm-deluiz\/\" class=\"dl-v-link\">\n        D\u00e9couvrir Storm\n        <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"><\/line><polyline points=\"12 5 19 12 12 19\"><\/polyline><\/svg>\n      <\/a>\n    <\/div>\n\n  <\/div>\n\n  <!-- Footer Button -->\n  <div class=\"dl-v-footer dl-anim-v\" style=\"transition-delay: 0.6s;\">\n    <a href=\"https:\/\/deluiz-parfum.com\/collection-full\/\" class=\"dl-v-btn\">VOIR NOTRE COLLECTION<\/a>\n  <\/div>\n\n<\/div>\n\n<script>\n  \/* Script d'animation simple (d\u00e9clenchement au scroll) *\/\n  (function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.15\n    };\n\n    const observer = new IntersectionObserver((entries, obs) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          obs.unobserve(entry.target);\n        }\n      });\n    }, observerOptions);\n\n    const animItems = document.querySelectorAll('.dl-anim-v');\n    animItems.forEach(el => observer.observe(el));\n  })();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ca495a4 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"ca495a4\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b52f7d0\" data-id=\"b52f7d0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b11afd5 elementor-widget elementor-widget-html\" data-id=\"b11afd5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  #deluiz-collection-wrapper {\n    \/* Variables Locales *\/\n    --dl-c-cream: #FAF9F6;\n    --dl-c-charcoal: #1A1A1A;\n    --dl-c-gold: #C6A87C;\n    --dl-c-font-serif: 'Playfair Display', serif;\n    --dl-c-font-sans: 'Montserrat', sans-serif;\n\n    background-color: var(--dl-c-cream);\n    color: var(--dl-c-charcoal);\n    font-family: var(--dl-c-font-sans);\n    padding: 100px 0; \/* Padding vertical, horizontal g\u00e9r\u00e9 par le container interne *\/\n    width: 100%;\n    overflow: hidden;\n    position: relative;\n    box-sizing: border-box;\n  }\n\n  #deluiz-collection-wrapper * {\n    box-sizing: border-box;\n    user-select: none; \/* Emp\u00eache la s\u00e9lection de texte pendant le drag *\/\n  }\n\n  \/* --- HEADER SECTION --- *\/\n  .dl-c-header-container {\n    max-width: 1600px;\n    margin: 0 auto 60px auto;\n    padding: 0 40px;\n    display: flex;\n    justify-content: space-between;\n    align-items: flex-end;\n  }\n\n  .dl-c-header-left {\n    max-width: 600px;\n  }\n\n  .dl-c-title {\n    font-family: var(--dl-c-font-serif);\n    font-size: 48px;\n    font-weight: 400;\n    margin: 0 0 10px 0;\n    line-height: 1.1;\n    color: var(--dl-c-charcoal);\n  }\n\n  .dl-c-subtitle {\n    font-size: 14px;\n    color: rgba(26, 26, 26, 0.6);\n    font-weight: 300;\n    letter-spacing: 0.05em;\n  }\n\n  .dl-c-line {\n    display: none;\n    width: 200px;\n    height: 1px;\n    background-color: rgba(26, 26, 26, 0.2);\n    margin-bottom: 10px;\n  }\n\n  @media (min-width: 768px) {\n    .dl-c-title { font-size: 64px; }\n    .dl-c-line { display: block; }\n  }\n\n  \/* --- SLIDER CONTAINER --- *\/\n  .dl-c-slider-viewport {\n    width: 100%;\n    overflow-x: auto;\n    overflow-y: hidden;\n    cursor: grab;\n    \/* Cache la scrollbar native tout en gardant le scroll *\/\n    scrollbar-width: none; \/* Firefox *\/\n    -ms-overflow-style: none;  \/* IE 10+ *\/\n    padding-left: 40px; \/* Padding gauche pour le d\u00e9but du slider *\/\n    padding-right: 40px;\n    padding-bottom: 40px; \/* Espace pour l'ombre \u00e9ventuelle *\/\n  }\n\n  .dl-c-slider-viewport::-webkit-scrollbar { \n    display: none;  \/* Chrome\/Safari *\/\n  }\n\n  .dl-c-slider-viewport.active {\n    cursor: grabbing;\n  }\n\n  .dl-c-track {\n    display: flex;\n    gap: 40px; \/* Espace entre les cartes *\/\n    width: max-content; \/* S'assure que le track prend toute la largeur du contenu *\/\n  }\n\n  \/* --- CARD --- *\/\n  .dl-c-card {\n    width: 300px; \/* Largeur fixe mobile *\/\n    flex-shrink: 0;\n    display: flex;\n    flex-direction: column;\n    transition: transform 0.5s ease;\n    cursor: pointer;\n    text-decoration: none; \/* Reset link style *\/\n    color: inherit; \/* Reset link color *\/\n  }\n\n  @media (min-width: 768px) {\n    .dl-c-card { width: 400px; } \/* Largeur fixe desktop *\/\n  }\n\n  .dl-c-img-wrap {\n    width: 100%;\n    \/* Passage en 3\/4 pour donner plus de hauteur et \u00e9viter de couper les flacons *\/\n    aspect-ratio: 3 \/ 4; \n    overflow: hidden;\n    background-color: #f0f0f0;\n    margin-bottom: 25px;\n    position: relative;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n  }\n\n  .dl-c-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);\n    pointer-events: none; \/* Emp\u00eache le drag natif de l'image *\/\n  }\n\n  \/* Effet hover sur l'image *\/\n  .dl-c-card:hover .dl-c-img {\n    transform: scale(1.08);\n  }\n\n  \/* BOUTON VOIR LE DETAIL (Glassmorphism) *\/\n  .dl-c-btn-detail {\n    position: absolute;\n    bottom: 20px;\n    left: 20px;\n    right: 20px;\n    padding: 18px 0;\n    background: rgba(255, 255, 255, 0.2); \/* Fond semi-transparent *\/\n    backdrop-filter: blur(12px); \/* Effet de flou \"verre\" *\/\n    -webkit-backdrop-filter: blur(12px);\n    border: 1px solid rgba(255, 255, 255, 0.3); \/* Bordure subtile *\/\n    color: #fff; \/* Texte blanc *\/\n    text-align: center;\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    font-weight: 500;\n    opacity: 0;\n    transform: translateY(15px);\n    transition: all 0.5s ease;\n    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);\n    z-index: 10;\n  }\n\n  \/* Apparition du bouton au survol de la carte *\/\n  .dl-c-card:hover .dl-c-btn-detail {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n  .dl-c-info {\n    text-align: center;\n  }\n\n  .dl-c-prod-name {\n    font-family: var(--dl-c-font-serif);\n    font-size: 28px;\n    margin: 0 0 8px 0;\n    color: var(--dl-c-charcoal);\n    font-weight: 400;\n  }\n\n  .dl-c-prod-notes {\n    font-size: 11px;\n    letter-spacing: 0.15em;\n    text-transform: uppercase;\n    color: var(--dl-c-gold);\n    font-weight: 500;\n  }\n\n  \/* --- FOOTER CTA --- *\/\n  .dl-c-footer {\n    text-align: center;\n    margin-top: 60px;\n    padding-bottom: 20px;\n  }\n\n  .dl-c-btn-main {\n    display: inline-block;\n    padding: 20px 50px;\n    border: 1px solid rgba(26, 26, 26, 0.8);\n    background-color: transparent;\n    color: var(--dl-c-charcoal);\n    text-decoration: none;\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    font-weight: 600;\n    transition: all 0.4s ease;\n    cursor: pointer;\n  }\n\n  .dl-c-btn-main:hover {\n    background-color: var(--dl-c-charcoal);\n    color: #fff;\n    box-shadow: 0 10px 30px rgba(0,0,0,0.1);\n  }\n\n  \/* Animation d'entr\u00e9e *\/\n  .dl-anim-c {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 0.8s ease, transform 0.8s ease;\n  }\n  .dl-anim-c.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n<\/style>\n\n<div id=\"deluiz-collection-wrapper\">\n  \n  <!-- Header -->\n  <div class=\"dl-c-header-container\">\n    <div class=\"dl-c-header-left dl-anim-c\">\n      <h2 class=\"dl-c-title\">L'Anthologie Olfactive<\/h2>\n      <span class=\"dl-c-subtitle\">Glissez pour explorer \u2192<\/span>\n    <\/div>\n    <div class=\"dl-c-line dl-anim-c\" style=\"transition-delay: 0.2s;\"><\/div>\n  <\/div>\n\n  <!-- Slider (Drag & Scroll) -->\n  <div class=\"dl-c-slider-viewport dl-anim-c\" style=\"transition-delay: 0.4s;\" id=\"dlSlider\">\n    <div class=\"dl-c-track\">\n\n      <!-- 1. INSTANT-T -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/instant-vertueux\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Instant-T.webp?ssl=1\" alt=\"INSTANT-T\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">INSTANT-T<\/h3>\n          <p class=\"dl-c-prod-notes\">Fruits Rouges \/ Rose<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 2. SWEET KISS -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/parfum-de-seduction-pour-femmes-fragrance-sucree-elegante-parfum-petillant-et-doux-vanille-musquee-parfum-sophistique-femme-deluiz-parfum-parfum-haut-de-gamme-feminin-signature-olfactive-femme\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Sweet-Kis.webp?ssl=1\" alt=\"SWEET KISS\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">SWEET KISS<\/h3>\n          <p class=\"dl-c-prod-notes\">Poire \/ Caramel<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 3. FICTION -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/parfum-masculin-de-luxe-fragrance-raffinee-homme-parfum-sophistique-masculin-musc-et-vanille-homme-parfum-elegant-et-original-homme-deluiz-parfum-parfum-haut-de-gamme-masculin-signature-olfacti\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Fiction.webp?ssl=1\" alt=\"FICTION\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">FICTION<\/h3>\n          <p class=\"dl-c-prod-notes\">Bergamote \/ Santal<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 4. STORM -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/storm-deluiz\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Storm.webp?ssl=1\" alt=\"STORM\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">STORM<\/h3>\n          <p class=\"dl-c-prod-notes\">Cuir \/ V\u00e9tiver<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 5. HARMONY -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/harmony\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Harmony.webp?ssl=1\" alt=\"HARMONY\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">HARMONY<\/h3>\n          <p class=\"dl-c-prod-notes\">Encens \/ Myrrhe<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 6. MUSC FLORAL -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/musc-floral\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Musc-Floral.webp?ssl=1\" alt=\"MUSC FLORAL\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">MUSC FLORAL<\/h3>\n          <p class=\"dl-c-prod-notes\">P\u00eache \/ Cuir<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 7. OBSESSION -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/obsession-deluiz\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Obsession.webp?ssl=1\" alt=\"OBSESSION\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">OBSESSION<\/h3>\n          <p class=\"dl-c-prod-notes\">Chocolat \/ Tonka<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 8. YAZEL -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/yazel-deluiz1\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Yazel.webp?ssl=1\" alt=\"YAZEL\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">YAZEL<\/h3>\n          <p class=\"dl-c-prod-notes\">Coco \/ Fleur d'Oranger<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 9. FLAME -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/love-flame1\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Flame.webp?ssl=1\" alt=\"FLAME\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">FLAME<\/h3>\n          <p class=\"dl-c-prod-notes\">Bois Br\u00fbl\u00e9 \/ Tabac<\/p>\n        <\/div>\n      <\/a>\n\n      <!-- 10. FIRE -->\n      <a href=\"https:\/\/deluiz-parfum.com\/produit\/parfum-de-luxe-fragrance-elegante-parfum-floral-epice-musc-poudre-parfum-sophistique-deluiz-parfum-parfum-haut-de-gamme-signature-olfactive-parfum-unique-parfumerie-en-ligne\/\" class=\"dl-c-card\">\n        <div class=\"dl-c-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Fire.webp?ssl=1\" alt=\"FIRE\" class=\"dl-c-img\">\n          <div class=\"dl-c-btn-detail\">Voir le d\u00e9tail<\/div>\n        <\/div>\n        <div class=\"dl-c-info\">\n          <h3 class=\"dl-c-prod-name\">FIRE<\/h3>\n          <p class=\"dl-c-prod-notes\">Ambre \/ \u00c9pices<\/p>\n        <\/div>\n      <\/a>\n\n    <\/div>\n  <\/div>\n\n  <!-- Footer CTA -->\n  <div class=\"dl-c-footer dl-anim-c\" style=\"transition-delay: 0.6s;\">\n    <a href=\"https:\/\/deluiz-parfum.com\/collection-full\/\" class=\"dl-c-btn-main\">Voir toute la collection<\/a>\n  <\/div>\n\n<\/div>\n\n<script>\n  \/* \n   * SCRIPT 1: Animation au scroll (Apparition) \n   *\/\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.1\n    };\n    \n    const observer = new IntersectionObserver((entries, obs) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          obs.unobserve(entry.target);\n        }\n      });\n    }, observerOptions);\n\n    document.querySelectorAll('.dl-anim-c').forEach(el => observer.observe(el));\n  });\n\n  \/* \n   * SCRIPT 2: Drag to Scroll (Emulation du glisser comme sur mobile)\n   *\/\n  const slider = document.getElementById('dlSlider');\n  let isDown = false;\n  let startX;\n  let scrollLeft;\n\n  slider.addEventListener('mousedown', (e) => {\n    isDown = true;\n    slider.classList.add('active');\n    startX = e.pageX - slider.offsetLeft;\n    scrollLeft = slider.scrollLeft;\n  });\n\n  slider.addEventListener('mouseleave', () => {\n    isDown = false;\n    slider.classList.remove('active');\n  });\n\n  slider.addEventListener('mouseup', () => {\n    isDown = false;\n    slider.classList.remove('active');\n  });\n\n  slider.addEventListener('mousemove', (e) => {\n    if (!isDown) return;\n    e.preventDefault();\n    const x = e.pageX - slider.offsetLeft;\n    const walk = (x - startX) * 2; \/\/ Vitesse de d\u00e9filement (x2)\n    slider.scrollLeft = scrollLeft - walk;\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-89eae8c elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"89eae8c\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-45c4887\" data-id=\"45c4887\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a35d64f elementor-widget elementor-widget-html\" data-id=\"a35d64f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  #deluiz-editorial-wrapper {\n    \/* Variables Locales *\/\n    --dl-e-bg: #111111; \/* Fond Charcoal Profond *\/\n    --dl-e-gold: #C6A87C;\n    --dl-e-text-main: #FFFFFF; \/* Texte Blanc *\/\n    --dl-e-text-muted: #B0B0B0; \/* Gris clair *\/\n    --dl-e-font-serif: 'Playfair Display', serif;\n    --dl-e-font-sans: 'Montserrat', sans-serif;\n\n    background-color: var(--dl-e-bg);\n    color: var(--dl-e-text-main);\n    font-family: var(--dl-e-font-sans);\n    padding: 80px 20px; \/* Padding standard mobile *\/\n    width: 100%;\n    overflow: hidden;\n    position: relative;\n    box-sizing: border-box;\n  }\n\n  \/* Texture de fond (Noise) - Visible partout *\/\n  #deluiz-editorial-wrapper::before {\n    content: \"\";\n    position: absolute;\n    top: 0; left: 0; right: 0; bottom: 0;\n    opacity: 0.05;\n    background-image: url(\"data:image\/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'\/%3E%3C\/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'\/%3E%3C\/svg%3E\");\n    pointer-events: none;\n    z-index: 0;\n  }\n\n  #deluiz-editorial-wrapper * {\n    box-sizing: border-box;\n    position: relative;\n    z-index: 1;\n  }\n\n  \/* --- LAYOUT CONTAINER --- *\/\n  .dl-e-container {\n    max-width: 1400px;\n    margin: 0 auto;\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 50px;\n    align-items: center;\n  }\n\n  @media (min-width: 768px) {\n    #deluiz-editorial-wrapper {\n      padding: 140px 40px;\n    }\n  }\n\n  @media (min-width: 1024px) {\n    .dl-e-container {\n      grid-template-columns: 1.2fr 1fr;\n      gap: 100px;\n    }\n  }\n\n  \/* --- MOBILE SPECIFIC IMAGE --- *\/\n  .dl-e-mobile-visual {\n    display: block;\n    width: 100%;\n    height: 450px;\n    margin-bottom: 20px;\n    overflow: hidden;\n  }\n  \n  .dl-e-mobile-visual img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n  }\n\n  @media (min-width: 768px) {\n    .dl-e-mobile-visual { display: none; }\n  }\n\n  \/* --- DESKTOP SPECIFIC VISUAL COLUMN --- *\/\n  .dl-e-visual-col {\n    display: none; \/* Cach\u00e9 sur mobile *\/\n    position: relative;\n    min-height: 500px;\n    justify-content: center;\n    align-items: center;\n  }\n\n  @media (min-width: 768px) {\n    .dl-e-visual-col { display: flex; }\n  }\n\n  \/* Le cadre filaire Desktop *\/\n  .dl-e-frame {\n    width: 80%;\n    height: 450px;\n    border: 1px solid rgba(255, 255, 255, 0.1);\n    position: relative;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n  }\n\n  \/* Image principale Desktop (Centr\u00e9e) *\/\n  .dl-e-main-img-wrap {\n    width: 90%;\n    height: 120%;\n    position: relative;\n    overflow: hidden;\n    box-shadow: 0 20px 50px rgba(0,0,0,0.5);\n    background-color: #000;\n  }\n\n  .dl-e-main-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    transition: transform 1.5s ease;\n  }\n  \n  .dl-e-visual-col:hover .dl-e-main-img {\n    transform: scale(1.05);\n  }\n\n  .dl-e-img-banner {\n    position: absolute;\n    bottom: 0; left: 0; width: 100%;\n    padding: 00px 30px;\n    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);\n  }\n\n  .dl-e-img-label {\n    font-size: 11px;\n    color: #fff;\n    letter-spacing: 0.15em;\n    font-weight: 500;\n  }\n\n  \/* --- CONTENT COLUMN --- *\/\n  .dl-e-content-col {\n    padding-left: 0;\n    text-align: left;\n  }\n\n  @media (min-width: 1024px) {\n    .dl-e-content-col {\n      padding-left: 40px;\n    }\n  }\n\n  \/* Typography *\/\n  .dl-e-label {\n    display: block;\n    font-size: 11px;\n    letter-spacing: 0.3em;\n    text-transform: uppercase;\n    color: var(--dl-e-gold);\n    margin-bottom: 25px;\n    font-weight: 500;\n  }\n\n  .dl-e-title {\n    font-family: var(--dl-e-font-serif);\n    font-size: 38px; \/* Taille mobile adapt\u00e9e *\/\n    line-height: 1.1;\n    margin: 0 0 30px 0;\n    font-weight: 400;\n    color: #FFFFFF !important; \n  }\n\n  @media (min-width: 768px) {\n    .dl-e-title { font-size: 58px; }\n  }\n\n  .dl-e-desc {\n    font-size: 16px;\n    line-height: 1.8;\n    color: var(--dl-e-text-muted);\n    margin-bottom: 40px;\n    font-weight: 300;\n    max-width: 480px;\n  }\n\n  \/* Bouton Lien *\/\n  .dl-e-link {\n    display: inline-block;\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    color: #FFFFFF;\n    text-decoration: none;\n    border-bottom: 1px solid var(--dl-e-gold);\n    padding-bottom: 5px;\n    transition: all 0.3s ease;\n  }\n\n  .dl-e-link:hover {\n    color: var(--dl-e-gold);\n    padding-bottom: 8px;\n  }\n\n  \/* Animations *\/\n  .dl-anim-e {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);\n  }\n  .dl-anim-e.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n<\/style>\n\n<div id=\"deluiz-editorial-wrapper\">\n  \n  <div class=\"dl-e-container\">\n    \n    <!-- MOBILE VISUAL (Image \"Winter\" unique, empil\u00e9e au dessus du texte) -->\n    <div class=\"dl-e-mobile-visual dl-anim-e\">\n       <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Winter_deluiz.jpg?ssl=1\" alt=\"Winter Atmosphere\">\n    <\/div>\n\n    <!-- DESKTOP VISUAL (Image \"3 flacons\" avec cadre, cach\u00e9e sur mobile) -->\n    <div class=\"dl-e-visual-col dl-anim-e\">\n      <div class=\"dl-e-frame\">\n        <div class=\"dl-e-main-img-wrap\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/3_mobile.webp?ssl=1\" alt=\"Winter Atmosphere\" class=\"dl-e-main-img\">\n          <div class=\"dl-e-img-banner\">\n            <span class=\"dl-e-img-label\">Winter Atmosphere<\/span>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n\n    <!-- CONTENT COLUMN (Texte sur fond noir, idem desktop) -->\n    <div class=\"dl-e-content-col\">\n      <span class=\"dl-e-label dl-anim-e\" style=\"transition-delay: 0.1s;\">\u00c9ditorial<\/span>\n      <h2 class=\"dl-e-title dl-anim-e\" style=\"transition-delay: 0.2s;\">L'Hiver <br>Magn\u00e9tique<\/h2>\n      <p class=\"dl-e-desc dl-anim-e\" style=\"transition-delay: 0.3s;\">\n        Quand les temp\u00e9ratures chutent, le sillage se fait plus intense. D\u00e9couvrez nos essentiels pour r\u00e9chauffer l'atmosph\u00e8re. Une s\u00e9lection de fragrances profondes, bois\u00e9es et \u00e9pic\u00e9es.\n      <\/p>\n\n      <a href=\"https:\/\/deluiz-parfum.com\/collection-full\/\" class=\"dl-e-link dl-anim-e\" style=\"transition-delay: 0.4s;\">D\u00e9couvrir la collection<\/a>\n    <\/div>\n\n  <\/div>\n\n<\/div>\n\n<script>\n  \/* Animation d'apparition au scroll *\/\n  (function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.15\n    };\n\n    const observer = new IntersectionObserver((entries, obs) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          obs.unobserve(entry.target);\n        }\n      });\n    }, observerOptions);\n\n    const animItems = document.querySelectorAll('.dl-anim-e');\n    animItems.forEach(el => observer.observe(el));\n  })();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-aa750e4 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"aa750e4\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-76e2ab6\" data-id=\"76e2ab6\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2a4ae09 elementor-widget elementor-widget-html\" data-id=\"2a4ae09\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  #deluiz-packaging-wrapper {\n    \/* Variables Locales *\/\n    --dl-p-bg: #faf9f7; \/* Beige \"Papier\" chaleureux *\/\n    --dl-p-gold: #C6A87C;\n    --dl-p-charcoal: #1A1A1A;\n    --dl-p-font-serif: 'Playfair Display', serif;\n    --dl-p-font-sans: 'Montserrat', sans-serif;\n\n    background-color: var(--dl-p-bg);\n    color: var(--dl-p-charcoal);\n    font-family: var(--dl-p-font-sans);\n    padding: 80px 20px; \/* Padding standard adapt\u00e9 *\/\n    width: 100%;\n    overflow: hidden;\n    position: relative;\n    box-sizing: border-box;\n  }\n\n  @media (min-width: 1024px) {\n    #deluiz-packaging-wrapper {\n      padding: 100px 40px; \/* Un peu plus d'espace sur desktop mais sans exc\u00e8s *\/\n    }\n  }\n\n  #deluiz-packaging-wrapper * {\n    box-sizing: border-box;\n  }\n\n  \/* --- LAYOUT GRID --- *\/\n  .dl-p-grid {\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 50px;\n    max-width: 1200px; \/* Conteneur centr\u00e9 pour \u00e9viter l'espacement excessif *\/\n    margin: 0 auto;\n    width: 100%;\n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-grid {\n      grid-template-columns: 1fr 1fr;\n      align-items: center; \/* Alignement vertical parfait *\/\n      gap: 80px;\n    }\n  }\n\n  \/* --- COLONNE IMAGE --- *\/\n  \/* Mobile : Order 1 (Top) *\/\n  \/* Desktop : Order 2 (Right) *\/\n  .dl-p-image-col {\n    position: relative;\n    width: 100%;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    order: 1; \n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-image-col {\n      order: 2; \/* Image passe \u00e0 droite sur Desktop *\/\n    }\n  }\n\n  \/* Wrapper Artistique (Image + Cadre) *\/\n  .dl-p-img-art-wrap {\n    width: 100%;\n    position: relative;\n    max-width: 500px; \/* Mobile width cap *\/\n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-img-art-wrap {\n      width: 100%; \n      max-width: 450px; \/* Taille contr\u00f4l\u00e9e sur desktop (\"small square\") *\/\n      aspect-ratio: 1\/1; \/* Format Carr\u00e9 *\/\n    }\n  }\n\n  \/* Le Cadre Artistique (Filaire) - Visible uniquement Desktop *\/\n  .dl-p-art-frame {\n    display: none; \n    position: absolute;\n    top: -20px; \n    left: -20px;\n    width: 100%; \n    height: 100%;\n    border: 1px solid var(--dl-p-gold);\n    z-index: 0;\n    opacity: 0;\n    transform: scale(0.95) translate(10px, 10px);\n    transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;\n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-art-frame { display: block; }\n  }\n\n  .dl-p-img-art-wrap.is-visible .dl-p-art-frame {\n    opacity: 1;\n    transform: scale(1) translate(0, 0);\n  }\n\n  \/* Conteneur de l'image (Masque) *\/\n  .dl-p-img-inner {\n    width: 100%;\n    height: 100%;\n    overflow: hidden;\n    position: relative;\n    z-index: 1;\n    aspect-ratio: 1\/1; \/* Force le carr\u00e9 pour l'image aussi *\/\n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-img-inner {\n      box-shadow: 0 20px 40px rgba(0,0,0,0.1);\n    }\n  }\n\n  .dl-p-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    object-position: center;\n    display: block;\n    transition: transform 2s ease;\n  }\n\n  .dl-p-img-inner:hover .dl-p-img {\n    transform: scale(1.05);\n  }\n\n  \/* --- COLONNE CONTENU --- *\/\n  \/* Mobile : Order 2 (Bottom) *\/\n  \/* Desktop : Order 1 (Left) *\/\n  .dl-p-content-col {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    text-align: left; \/* Alignement texte \u00e0 gauche *\/\n    order: 2;\n  }\n\n  @media (min-width: 1024px) {\n    .dl-p-content-col {\n      order: 1; \/* Texte passe \u00e0 gauche sur Desktop *\/\n    }\n  }\n\n  \/* Icone Cadeau *\/\n  .dl-p-icon-circle {\n    width: 40px;\n    height: 40px;\n    border-radius: 50%;\n    background-color: rgba(198, 168, 124, 0.1);\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin-bottom: 25px;\n    color: var(--dl-p-gold);\n  }\n\n  \/* Textes *\/\n  .dl-p-label {\n    display: block;\n    font-size: 11px;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    color: var(--dl-p-gold);\n    margin-bottom: 15px;\n    font-weight: 500;\n  }\n\n  .dl-p-title {\n    font-family: var(--dl-p-font-serif);\n    font-size: 32px;\n    font-weight: 400;\n    margin: 0 0 25px 0;\n    line-height: 1.2;\n    color: var(--dl-p-charcoal);\n    letter-spacing: 0.05em;\n  }\n\n  @media (min-width: 768px) {\n    .dl-p-title { font-size: 42px; }\n  }\n\n  .dl-p-line-gold {\n    width: 50px;\n    height: 1px;\n    background-color: var(--dl-p-gold);\n    margin-bottom: 30px;\n  }\n\n  .dl-p-desc {\n    font-size: 15px;\n    line-height: 1.7;\n    color: rgba(26, 26, 26, 0.7);\n    font-weight: 300;\n    margin-bottom: 15px;\n    max-width: 500px;\n  }\n\n  .dl-p-desc strong, .dl-p-desc b {\n    color: var(--dl-p-gold);\n    font-weight: 400;\n  }\n\n  \/* S\u00e9parateur Long *\/\n  .dl-p-separator-long {\n    width: 100%;\n    height: 1px;\n    background-color: rgba(26, 26, 26, 0.1);\n    margin: 40px 0;\n  }\n\n  \/* Features (01, 02, 03) *\/\n  .dl-p-features {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 15px;\n  }\n\n  .dl-p-feature-item {\n    text-align: left;\n  }\n\n  .dl-p-feat-num {\n    display: block;\n    font-family: var(--dl-p-font-serif);\n    font-size: 20px;\n    color: var(--dl-p-gold);\n    margin-bottom: 8px;\n  }\n\n  .dl-p-feat-text {\n    font-size: 10px;\n    text-transform: uppercase;\n    letter-spacing: 0.05em;\n    color: rgba(26, 26, 26, 0.6);\n    line-height: 1.4;\n  }\n\n  \/* Animations *\/\n  .dl-anim-p {\n    opacity: 0;\n    transform: translateY(20px);\n    transition: opacity 0.8s ease, transform 0.8s ease;\n  }\n  .dl-anim-p.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n<\/style>\n\n<div id=\"deluiz-packaging-wrapper\">\n  \n  <div class=\"dl-p-grid\">\n    \n    <!-- Image Column (Order 2 on Desktop) -->\n    <div class=\"dl-p-image-col\">\n      <div class=\"dl-p-img-art-wrap dl-anim-p\">\n        <!-- Cadre D\u00e9coratif -->\n        <div class=\"dl-p-art-frame\"><\/div>\n        <!-- Image Masqu\u00e9e -->\n        <div class=\"dl-p-img-inner\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Coffret-deluiz.webp?ssl=1\" alt=\"Coffret Maison Deluiz\" class=\"dl-p-img\">\n        <\/div>\n      <\/div>\n    <\/div>\n\n    <!-- Content Column (Order 1 on Desktop) -->\n    <div class=\"dl-p-content-col\">\n      \n      <!-- Icon -->\n      <div class=\"dl-p-icon-circle dl-anim-p\">\n        <svg width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"20 12 20 22 4 22 4 12\"><\/polyline><rect x=\"2\" y=\"7\" width=\"20\" height=\"5\"><\/rect><line x1=\"12\" y1=\"22\" x2=\"12\" y2=\"7\"><\/line><path d=\"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z\"><\/path><path d=\"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z\"><\/path><\/svg>\n      <\/div>\n\n      <span class=\"dl-p-label dl-anim-p\" style=\"transition-delay: 0.1s;\">L'\u00c9crin<\/span>\n      <h2 class=\"dl-p-title dl-anim-p\" style=\"transition-delay: 0.2s;\">L'ART D'OFFRIR<\/h2>\n      \n      <div class=\"dl-p-line-gold dl-anim-p\" style=\"transition-delay: 0.3s;\"><\/div>\n\n      <div class=\"dl-anim-p\" style=\"transition-delay: 0.4s;\">\n        <p class=\"dl-p-desc\">\n          Le luxe r\u00e9side dans le d\u00e9tail. Votre parfum Maison Deluiz vous parvient dans notre coffret signature rigide aux finitions <span style=\"color: var(--dl-p-gold);\">Or Patin\u00e9<\/span>.\n        <\/p>\n        <p class=\"dl-p-desc\">\n          Une ouverture magn\u00e9tique pour un rituel d'exception.\n        <\/p>\n      <\/div>\n\n      <div class=\"dl-p-separator-long dl-anim-p\" style=\"transition-delay: 0.5s;\"><\/div>\n\n      <div class=\"dl-p-features dl-anim-p\" style=\"transition-delay: 0.6s;\">\n        <div class=\"dl-p-feature-item\">\n          <span class=\"dl-p-feat-num\">01<\/span>\n          <span class=\"dl-p-feat-text\">Coffret Rigide<\/span>\n        <\/div>\n        <div class=\"dl-p-feature-item\">\n          <span class=\"dl-p-feat-num\">02<\/span>\n          <span class=\"dl-p-feat-text\">Finition Or<\/span>\n        <\/div>\n        <div class=\"dl-p-feature-item\">\n          <span class=\"dl-p-feat-num\">03<\/span>\n          <span class=\"dl-p-feat-text\">Fermeture Magn\u00e9tique<\/span>\n        <\/div>\n      <\/div>\n\n    <\/div>\n\n  <\/div>\n\n<\/div>\n\n<script>\n  (function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.15\n    };\n\n    const observer = new IntersectionObserver((entries, obs) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          obs.unobserve(entry.target);\n        }\n      });\n    }, observerOptions);\n\n    const animItems = document.querySelectorAll('.dl-anim-p');\n    animItems.forEach(el => observer.observe(el));\n  })();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d56d09c elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"d56d09c\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c8a0d77\" data-id=\"c8a0d77\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ce233e4 elementor-widget elementor-widget-html\" data-id=\"ce233e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n  \/* Import des polices *\/\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');\n\n  #deluiz-heritage-wrapper {\n    \/* Variables Locales *\/\n    --dl-h-bg: #faf9f7; \/* Cream *\/\n    --dl-h-gold: #C6A87C;\n    --dl-h-charcoal: #1A1A1A;\n    --dl-h-font-serif: 'Playfair Display', serif;\n    --dl-h-font-sans: 'Montserrat', sans-serif;\n\n    background-color: var(--dl-h-bg);\n    color: var(--dl-h-charcoal);\n    font-family: var(--dl-h-font-sans);\n    padding: 100px 20px;\n    width: 100%;\n    overflow: hidden;\n    position: relative;\n    box-sizing: border-box;\n  }\n\n  @media (min-width: 1024px) {\n    #deluiz-heritage-wrapper {\n      padding: 140px 40px;\n    }\n  }\n\n  #deluiz-heritage-wrapper * {\n    box-sizing: border-box;\n  }\n\n  \/* --- GRID LAYOUT --- *\/\n  .dl-h-grid {\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 60px;\n    max-width: 1400px;\n    margin: 0 auto;\n    align-items: center;\n  }\n\n  @media (min-width: 1024px) {\n    .dl-h-grid {\n      grid-template-columns: 1fr 1fr;\n      gap: 100px;\n    }\n  }\n\n  \/* --- COLONNE IMAGE (Vintage Style) --- *\/\n  .dl-h-image-col {\n    position: relative;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n  }\n\n  .dl-h-img-container {\n    position: relative;\n    width: 100%;\n    max-width: 550px;\n    aspect-ratio: 4\/5;\n    overflow: hidden;\n  }\n\n  \/* Cadre interne fin *\/\n  .dl-h-inner-frame {\n    position: absolute;\n    top: 20px; left: 20px; right: 20px; bottom: 20px;\n    border: 1px solid rgba(26, 26, 26, 0.1);\n    z-index: 2;\n    pointer-events: none;\n    transition: border-color 0.5s ease;\n  }\n\n  .dl-h-img-container:hover .dl-h-inner-frame {\n    border-color: rgba(198, 168, 124, 0.4);\n  }\n\n  .dl-h-img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    \/* Effet Vintage : Grayscale + un peu de Sepia *\/\n    filter: grayscale(100%) sepia(20%); \n    transition: transform 1.5s ease, filter 1.5s ease;\n    transform: scale(1.1); \/* Zoom initial pour l'animation *\/\n  }\n\n  .dl-h-img-container.is-visible .dl-h-img {\n    transform: scale(1);\n    filter: grayscale(80%) sepia(20%); \/* On garde un aspect vintage *\/\n  }\n\n  .dl-h-img-container:hover .dl-h-img {\n    transform: scale(1.03);\n    filter: grayscale(0%) sepia(0%); \/* Retour couleur subtil au survol *\/\n  }\n\n  \/* --- COLONNE TEXTE --- *\/\n  .dl-h-content-col {\n    text-align: left;\n    padding: 0 10px;\n  }\n\n  .dl-h-label {\n    display: block;\n    font-size: 11px;\n    letter-spacing: 0.3em;\n    text-transform: uppercase;\n    color: var(--dl-h-gold);\n    margin-bottom: 20px;\n    font-weight: 500;\n  }\n\n  .dl-h-title {\n    font-family: var(--dl-h-font-serif);\n    font-size: 40px;\n    font-weight: 400;\n    margin: 0 0 40px 0;\n    line-height: 1.15;\n    color: var(--dl-h-charcoal);\n  }\n\n  .dl-h-title span {\n    font-style: italic;\n    color: var(--dl-h-gold);\n    font-weight: 400;\n  }\n\n  @media (min-width: 768px) {\n    .dl-h-title { font-size: 64px; }\n  }\n\n  .dl-h-desc {\n    font-size: 16px;\n    line-height: 1.8;\n    color: rgba(26, 26, 26, 0.75);\n    font-weight: 300;\n    margin-bottom: 25px;\n    max-width: 550px;\n  }\n\n  .dl-h-desc p {\n    margin-bottom: 20px;\n  }\n\n  \/* Bouton \"Lire notre histoire\" *\/\n  .dl-h-btn {\n    display: inline-flex;\n    align-items: center;\n    gap: 15px;\n    margin-top: 20px;\n    font-size: 11px;\n    text-transform: uppercase;\n    letter-spacing: 0.25em;\n    color: var(--dl-h-charcoal);\n    text-decoration: none;\n    font-weight: 600;\n    cursor: pointer;\n    background: none;\n    border: none;\n    padding: 0;\n  }\n\n  .dl-h-btn-line {\n    display: block;\n    width: 40px;\n    height: 1px;\n    background-color: var(--dl-h-charcoal);\n    transition: width 0.4s ease, background-color 0.4s ease;\n  }\n\n  .dl-h-btn:hover .dl-h-btn-line {\n    width: 70px;\n    background-color: var(--dl-h-gold);\n  }\n\n  .dl-h-btn:hover {\n    color: var(--dl-h-gold);\n  }\n\n  \/* Animations *\/\n  .dl-anim-h {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);\n  }\n  .dl-anim-h.is-visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n<\/style>\n\n<div id=\"deluiz-heritage-wrapper\">\n  \n  <div class=\"dl-h-grid\">\n    \n    <!-- Image Column -->\n    <div class=\"dl-h-image-col\">\n      <div class=\"dl-h-img-container dl-anim-h\">\n        <div class=\"dl-h-inner-frame\"><\/div>\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/Notre-Histoire.webp?ssl=1\" alt=\"Maison Deluiz Heritage Nice\" class=\"dl-h-img\">\n      <\/div>\n    <\/div>\n\n    <!-- Content Column -->\n    <div class=\"dl-h-content-col\">\n      <span class=\"dl-h-label dl-anim-h\" style=\"transition-delay: 0.1s;\">Depuis 1924<\/span>\n      \n      <h2 class=\"dl-h-title dl-anim-h\" style=\"transition-delay: 0.2s;\">\n        L'H\u00e9ritage <br>\n        <span>R\u00e9invent\u00e9<\/span>\n      <\/h2>\n      \n      <div class=\"dl-h-desc dl-anim-h\" style=\"transition-delay: 0.3s;\">\n        <p>\n          Tout commence sur les rivages de Nice, par un grand-p\u00e8re visionnaire. \n          Une histoire d'odeurs marines, de champs d'agrumes et de lumi\u00e8re dor\u00e9e qui baigne la M\u00e9diterran\u00e9e.\n        <\/p>\n        <p>\n          Aujourd'hui, du 78 avenue des Champs-\u00c9lys\u00e9es, nous transformons des ingr\u00e9dients rares en \u00e9motions liquides. \n          Maison Deluiz est le pont suspendu entre ce pass\u00e9 solaire et la modernit\u00e9 parisienne absolue.\n        <\/p>\n      <\/div>\n\n      <a href=\"https:\/\/deluiz-parfum.com\/a-propos-de-nous\/\" class=\"dl-h-btn dl-anim-h\" style=\"transition-delay: 0.4s;\">\n        Lire notre histoire\n        <span class=\"dl-h-btn-line\"><\/span>\n      <\/a>\n    <\/div>\n\n  <\/div>\n\n<\/div>\n\n<script>\n  (function() {\n    const observerOptions = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.15\n    };\n\n    const observer = new IntersectionObserver((entries, obs) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('is-visible');\n          obs.unobserve(entry.target);\n        }\n      });\n    }, observerOptions);\n\n    \/\/ Observer l'image container s\u00e9parement pour l'effet de zoom\n    const imgContainers = document.querySelectorAll('.dl-h-img-container');\n    imgContainers.forEach(el => observer.observe(el));\n\n    \/\/ Observer les textes\n    const animItems = document.querySelectorAll('.dl-anim-h');\n    animItems.forEach(el => observer.observe(el));\n  })();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Chargement&#8230; Notre Philosophie Au-del\u00e0 du visible Maison Deluiz ne cr\u00e9e pas simplement des parfums, nous sculptons des souvenirs liquides. Dans un monde bruyant, nous choisissons le silence de l&rsquo;excellence. Chaque flacon est le fruit d&rsquo;une qu\u00eate obsessionnelle : trouver l&rsquo;\u00e9quilibre parfait entre la tradition brute de la mati\u00e8re et la sophistication de l&rsquo;art parisien. Le [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-9991","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Maison deluiz - Deluiz<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/deluiz-parfum.com\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Maison deluiz - Deluiz\" \/>\n<meta property=\"og:description\" content=\"Chargement&#8230; Notre Philosophie Au-del\u00e0 du visible Maison Deluiz ne cr\u00e9e pas simplement des parfums, nous sculptons des souvenirs liquides. Dans un monde bruyant, nous choisissons le silence de l&rsquo;excellence. Chaque flacon est le fruit d&rsquo;une qu\u00eate obsessionnelle : trouver l&rsquo;\u00e9quilibre parfait entre la tradition brute de la mati\u00e8re et la sophistication de l&rsquo;art parisien. Le [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/deluiz-parfum.com\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Deluiz\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/deluiz.parfum\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-31T16:05:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/\",\"url\":\"https:\\\/\\\/deluiz-parfum.com\\\/\",\"name\":\"Maison deluiz - Deluiz\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/deluiz-parfum.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/FICTION_IMG2-1.webp\",\"datePublished\":\"2026-01-18T20:21:19+00:00\",\"dateModified\":\"2026-03-31T16:05:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/deluiz-parfum.com\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#primaryimage\",\"url\":\"https:\\\/\\\/deluiz-parfum.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/FICTION_IMG2-1.webp\",\"contentUrl\":\"https:\\\/\\\/deluiz-parfum.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/FICTION_IMG2-1.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/deluiz-parfum.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Maison deluiz\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#website\",\"url\":\"https:\\\/\\\/deluiz-parfum.com\\\/\",\"name\":\"Deluiz\",\"description\":\"\u00c9veillez vos sens\",\"publisher\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#organization\"},\"alternateName\":\"maison deluiz parfum\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/deluiz-parfum.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#organization\",\"name\":\"Maison Deluiz\",\"url\":\"https:\\\/\\\/deluiz-parfum.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/deluiz-parfum.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-DL.png\",\"contentUrl\":\"https:\\\/\\\/deluiz-parfum.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-DL.png\",\"width\":512,\"height\":512,\"caption\":\"Maison Deluiz\"},\"image\":{\"@id\":\"https:\\\/\\\/deluiz-parfum.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/deluiz.parfum\",\"https:\\\/\\\/www.instagram.com\\\/maison.deluiz\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@maison.deluiz\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Maison deluiz - Deluiz","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/deluiz-parfum.com\/en\/","og_locale":"en_US","og_type":"article","og_title":"Maison deluiz - Deluiz","og_description":"Chargement&#8230; Notre Philosophie Au-del\u00e0 du visible Maison Deluiz ne cr\u00e9e pas simplement des parfums, nous sculptons des souvenirs liquides. Dans un monde bruyant, nous choisissons le silence de l&rsquo;excellence. Chaque flacon est le fruit d&rsquo;une qu\u00eate obsessionnelle : trouver l&rsquo;\u00e9quilibre parfait entre la tradition brute de la mati\u00e8re et la sophistication de l&rsquo;art parisien. Le [&hellip;]","og_url":"https:\/\/deluiz-parfum.com\/en\/","og_site_name":"Deluiz","article_publisher":"https:\/\/www.facebook.com\/deluiz.parfum","article_modified_time":"2026-03-31T16:05:11+00:00","og_image":[{"url":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/deluiz-parfum.com\/","url":"https:\/\/deluiz-parfum.com\/","name":"Maison deluiz - Deluiz","isPartOf":{"@id":"https:\/\/deluiz-parfum.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/deluiz-parfum.com\/#primaryimage"},"image":{"@id":"https:\/\/deluiz-parfum.com\/#primaryimage"},"thumbnailUrl":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp","datePublished":"2026-01-18T20:21:19+00:00","dateModified":"2026-03-31T16:05:11+00:00","breadcrumb":{"@id":"https:\/\/deluiz-parfum.com\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/deluiz-parfum.com\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/deluiz-parfum.com\/#primaryimage","url":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp","contentUrl":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2026\/01\/FICTION_IMG2-1.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/deluiz-parfum.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/deluiz-parfum.com\/"},{"@type":"ListItem","position":2,"name":"Maison deluiz"}]},{"@type":"WebSite","@id":"https:\/\/deluiz-parfum.com\/#website","url":"https:\/\/deluiz-parfum.com\/","name":"Deluiz","description":"\u00c9veillez vos sens","publisher":{"@id":"https:\/\/deluiz-parfum.com\/#organization"},"alternateName":"maison deluiz parfum","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/deluiz-parfum.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/deluiz-parfum.com\/#organization","name":"Maison Deluiz","url":"https:\/\/deluiz-parfum.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/deluiz-parfum.com\/#\/schema\/logo\/image\/","url":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2023\/08\/cropped-DL.png","contentUrl":"https:\/\/deluiz-parfum.com\/wp-content\/uploads\/2023\/08\/cropped-DL.png","width":512,"height":512,"caption":"Maison Deluiz"},"image":{"@id":"https:\/\/deluiz-parfum.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/deluiz.parfum","https:\/\/www.instagram.com\/maison.deluiz\/","https:\/\/www.tiktok.com\/@maison.deluiz"]}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/pages\/9991","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/comments?post=9991"}],"version-history":[{"count":458,"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/pages\/9991\/revisions"}],"predecessor-version":[{"id":11118,"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/pages\/9991\/revisions\/11118"}],"wp:attachment":[{"href":"https:\/\/deluiz-parfum.com\/en\/wp-json\/wp\/v2\/media?parent=9991"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}