/** Shopify CDN: Minification failed

Line 9:0 Unexpected "<"
Line 1675:0 Unexpected "<"
Line 1728:0 Unexpected "}"
Line 1834:0 Expected "}" to go with "{"

**/
<style>
/* ===== RESET GLOBAL ===== */
/* Palette de couleurs */
:root {
  --fond-principal: #F5F3EE;
  --fond-secondaire: #EDE6DD;
  --miel-doux: #D8B16A;
  --olive-clair: #A6A17D;
  --texte-principal: #1C1C1C;
  --texte-secondaire: #2B2B2B;
  --border-light: rgba(28, 28, 28, 0.1);
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Avenir', sans-serif;
  font-weight: 300;
  background: var(--fond-principal);
  color: var(--texte-principal);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
body, html {
  overflow-x: hidden;
   /* overflow-x: visible; */
}

.product-page-container, .product-grid, .product-info, .product-images {
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--texte-principal);
}


:root {
    --primary-gold: #D4AF37;
    --soft-gold: #F4E4BC;
    --dark-charcoal: #1A1A1A;
    --soft-white: #FEFEFE;
    --warm-beige: #F8F6F0;
    --light-gray: #F5F5F5;
    --medium-gray: #8A8A8A;
    --border-subtle: rgba(212, 175, 55, 0.12);
    --glass-bg: rgba(248, 246, 240, 0.95);
    --shadow-soft: 0 8px 40px rgba(26, 26, 26, 0.08);
    --shadow-strong: 0 20px 60px rgba(26, 26, 26, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--warm-beige);
    overflow-x: hidden;
    /* overflow-x: visible; */
}

/* ===== HEADER PREMIUM ===== */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Logo Premium */
.header-logo {
    position: relative;
    left: 0;
    transform: none;
    z-index: 10;
}

.logo-link {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--dark-charcoal), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.logo-link:hover::after {
    width: 100%;
}

/* Navigation Desktop */
.header-nav {
    display: none;
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header-nav a {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Contrôles Gauche/Droite */
.header-left,
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.hamburger,
.search-icon,
.search-icon-mobile,
.open-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.hamburger:hover,
.search-icon:hover,
.search-icon-mobile:hover,
.open-cart:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-gold);
}

.search-icon-mobile {
    display: block;
}

.search-icon {
    display: none;
}

/* ===== SEARCH DRAWER ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(450px, 100vw);
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--shadow-strong);
    border-left: 1px solid var(--border-subtle);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.search-drawer.active {
    transform: translateX(0);
}

.search-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.6);
}

#searchInput {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-charcoal);
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

#searchInput:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-actions {
    display: flex;
    gap: 1rem;
}

.clear-search,
.close-search {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-charcoal);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-search {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
    font-size: 18px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search:hover,
.close-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.search-results-wrapper {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.search-results-wrapper h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 100vw);
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--shadow-strong);
    border-left: 1px solid var(--border-subtle);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.cart-drawer.active {
    transform: translateX(0);
}

.close-cart {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 2rem;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.cart-empty-text {
    font-size: 18px;
    color: var(--medium-gray);
    font-weight: 500;
}

.explore-btn {
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-bottom {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
    width: min(420px, 92vw);
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px 24px 0 0;
    box-shadow: var(--shadow-strong), 0 0 0 1px var(--border-subtle);
    z-index: 9999;
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.mobile-drawer-bottom.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.close-drawer {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--soft-white);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-soft);
}

.close-drawer:hover {
    background: var(--primary-gold);
    transform: translateX(-50%) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.close-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--dark-charcoal);
    transition: color 0.3s ease;
}

.close-drawer:hover .close-icon {
    color: white;
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Playfair Display', serif;
}

.menu-link,
.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--dark-charcoal);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;             /* <— force le plein largeur */
    box-sizing: border-box;
}

.menu-link:hover,
.submenu-toggle:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-gold);
}

.submenu-icon {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

.submenu-icon.rotated {
    transform: rotate(90deg);
}

.submenu {
    list-style: none;
    margin-top: 8px;
    margin-left: 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submenu.active {
    max-height: 300px;
}

.submenu li {
    margin-bottom: 6px;
}

.submenu a {
    display: block;
    padding: 14px 18px;
    color: var(--medium-gray);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submenu a:hover {
    background: var(--soft-gold);
    color: var(--dark-charcoal);
    transform: translateX(4px);
    border-color: var(--primary-gold);
}

.drawer-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.drawer-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    color: var(--dark-charcoal);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ajustements pour les écrans moyens */
@media (min-width: 361px) and (max-width: 767px) {
    .mobile-drawer-bottom {
        width: 96vw;
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

.drawer-footer svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.mobile-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-drawer-bottom.active .mobile-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-drawer-bottom.active .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer-bottom.active .mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-drawer-bottom.active .mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-drawer-bottom.active .mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-drawer-bottom.active .mobile-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-drawer-bottom.active .mobile-menu li:nth-child(6) { transition-delay: 0.35s; }

.drawer-handle {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
}

/* Hidden Class Utility */
.hidden {
    display: none !important;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .search-icon-mobile {
        display: none;
    }
    
    .search-icon {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
    
    .header-nav {
        display: block;
    }
    
    .mobile-overlay,
    .mobile-drawer-bottom {
        display: none;
    }
}

@media (max-width: 430px) {
    .header-inner {
        padding: 1rem 1.5rem;
    }
    
    .logo-link {
        font-size: 20px;
    }
    
    .mobile-drawer-bottom {
        width: 96vw;
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 390px) {
.header-inner {
    padding: 0.8rem 1rem;
}

.logo-link {
    font-size: 18px;
}

.hamburger,
.search-icon-mobile,
.open-cart {
    width: 40px;
    height: 40px;
}
}
@media (max-width: 600px) {
  .logo-link {
      font-size: 20px;
  }

  .header-inner {
      padding: 1rem;
  }

  .hamburger,
  .search-icon-mobile,
  .open-cart {
      width: 42px;
      height: 42px;
  }
}



/* Demo Content */
.demo-content {
    margin-top: 100px;
    padding: 2rem;
    text-align: center;
}

.demo-content h1 {
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.demo-content p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== LOGO CENTRÉ UNIQUEMENT SUR MOBILE ===== */
@media (max-width: 767px) {
.header-inner {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
padding: 0 1rem;
width: 100vw;
max-width: none; /* important : retire toute limite */
}

.header-left,
.header-icons {
display: flex;
justify-content: center;
gap: 0.5rem;
}

.header-logo {
display: flex;
justify-content: center;
}

.logo-link {
font-size: 20px;
white-space: nowrap;
text-align: center;
}

.hamburger,
.search-icon-mobile,
.open-cart {
width: 40px;
height: 40px;
}
}

  
  
 
/*  hero-section */
.hero-section {
    background-image: url('/images/hero-bg.jpg'); /* Remplace par ton image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1C1C1C;
    padding: 0 20px;
    background-color: #F5F3EE;
  }
  
  .hero-content {
    background-color: rgba(245, 243, 238, 0.75); /* voile ivoire léger */
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
  }
  
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .hero-button {
    background-color: #D8B16A;
    color: #1C1C1C;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
    background-color: #A6A17D;
  }
  
  /*  presentation produit */
  .brand-intro-section {
    background-color: var(--fond-secondaire);
    padding: 100px 20px;
    text-align: center;
  }
  
  
  

  .brand-title,
  .ingredients-title,
  .before-after-title,
  .testimonial-title,
  .engagements-title {
    color: var(--texte-principal);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  
  .brand-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .brand-description,
  .ingredient-item h3,
  .ingredient-item p,
  .engagement-item,
  .product-benefits,
  .before-after-images p,
  .testimonial-item,
  .testimonial-author {
    color: var(--texte-secondaire);
  }
  /*Ingredients  */
  
  .ingredients-section {
    background-color: var(--fond-secondaire);
    padding: 100px 20px;
    text-align: center;
  }
  
  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .ingredient-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .ingredient-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .featured-product {
    background-color: #F5F3EE;
    padding: 100px 20px;
  }
  
  .product-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
  }
  
  .product-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .product-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
  }
  
  .product-details {
    flex: 1 1 400px;
  }
  
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1C1C1C;
    margin-bottom: 20px;
  }
  
  .product-benefits {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    line-height: 1.8;
  }
  
  .product-button {
    display: inline-block;
    background-color: #D8B16A;
    color: #1C1C1C;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .product-button:hover {
    background-color: #A6A17D;
  }
  
  
  .before-after {
    background-color: var(--fond-secondaire);
    padding: 80px 20px;
    text-align: center;
  }
  
  .before-after-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .before-after-images div {
    flex: 1 1 250px;
  }
  
  .before-after-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .before-after-images p {
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }
  
  .testimonials {
    background-color: #F5F3EE;
    padding: 80px 20px;
    text-align: center;
  }
  
  .testimonial-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .testimonial-item {
    max-width: 300px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: var(--blanc);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-weight: 500;
    color: #A6A17D;
  }
  
  .engagements {
    background-color: var(--fond-secondaire);
    padding: 80px 20px;
    text-align: center;
  }
  
  
  .engagements-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .engagement-item {
    max-width: 180px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }
  
  .engagement-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

.results-section {
  width: 100vw; /* largeur totale de la fenêtre */
  max-width: 100% !important; /* force la largeur max */
  padding: 60px 40px; /* espace aéré autour */
  background-color: #F5F3EE; /* fond principal ivoire neutre */
  box-sizing: border-box;
  text-align: center;
}

.results-title {
  font-family: 'Playfair Display', serif; /* police serif élégante */
  font-size: 3rem;
  font-weight: 700;
  color: #1C1C1C; /* texte principal noir adouci */
  margin-bottom: 48px;
}

.results-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px; /* limite largeur max pour aérer */
  margin: 0 auto;
}

.result-card {
  background-color: #EDE6DD; /* fond secondaire beige doux */
  border-radius: 16px;
  padding: 40px 24px;
  flex: 1 1 220px; /* flexible mais minimum 220px */
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.result-percent {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: #D8B16A; /* miel doux */
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.percent-sign {
  font-size: 1.5rem;
  margin-left: 4px;
  align-self: flex-start;
}

.result-desc {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #2B2B2B; /* texte noir adouci */
  line-height: 1.4;
  white-space: pre-line; /* pour gérer les sauts de ligne */
}

@media (max-width: 900px) {
  .results-section {
    padding: 40px 20px;
  }
  .results-title {
    font-size: 2.2rem;
  }
  .results-cards {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }
  .result-card {
    max-width: 100%;
    padding: 32px 20px;
  }
  .result-percent {
    font-size: 3rem;
  }
  .result-desc {
    font-size: 1rem;
  }
}


.ingredients-showcase {
  background: #F5F3EE;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.ingredients-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: center;
}

.ingredient-image-area {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}

.ingredient-image-area img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: opacity 0.4s;
}

.ingredient-list-area {
  flex: 1 1 55%;
  max-height: 420px;
  overflow-y: auto;
  background: #EDE6DD;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

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

.ingredient-list li {
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
  padding: 18px 14px;
  color: #2B2B2B;
  font-family: 'Inter', sans-serif;
}

.ingredient-list li.active,
.ingredient-list li:hover {
  background: #D8B16A;
  color: #1C1C1C;
}

.ingredient-list h3 {
  margin: 0 0 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.ingredient-list p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .ingredients-container {
    flex-direction: column;
    gap: 32px;
  }
  .ingredient-image-area,
  .ingredient-list-area {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .ingredient-image-area img {
    max-width: 100%;
  }
}

  
/* ===== AVANT APRES ===== */
.before-after-slider img {
    width: 45%;
    border-radius: 8px;
    margin: 10px;
  }


/* ---------------------------
   OPTIMISATION MISE EN PAGE PRODUIT
   AUBE PARIS
---------------------------- */

/* ---------------------------
   1. STRUCTURE GÉNÉRALE 50/50
---------------------------- */
.product.product--large {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1400px;
}

.product--large .product__media-wrapper,
.product--large .product__info-wrapper {
  width: calc(50% - 20px);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Adaptation mobile */
@media screen and (max-width: 749px) {
  .product--large .product__media-wrapper,
  .product--large .product__info-wrapper {
    width: 100%;
  }
  
  .product.product--large {
    gap: 24px;
  }
}

/* ---------------------------
   2. OPTIMISATION DES IMAGES
---------------------------- */
.product__media-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

/* Galerie d'images miniatures */
.product__media-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.product__media-item {
  width: calc(20% - 10px);
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.product__media-item:hover {
  border-color: #D8B16A;
}

.product__media-item.active {
  border-color: #D8B16A;
}

@media screen and (max-width: 749px) {
  .product__media-item {
    width: calc(25% - 9px);
  }
}

/* ---------------------------
   3. OPTIMISATION DU CONTENU PRODUIT
---------------------------- */
/* Titre produit */
.product__title,
.product__title h1,
.product__title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1C1C1C;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Description produit */
.product__description {
  font-size: 16px;
  color: #2B2B2B;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Prix */
.price-wrapper {
  display: flex;
  align-items: baseline;
  margin: 20px 0;
}

.price {
  color: #D8B16A;
  font-weight: bold;
  font-size: 24px;
  margin-right: 12px;
}

.price-compare {
  color: #888;
  text-decoration: line-through;
  font-size: 18px;
}

.price-saving {
  background: rgba(216, 177, 106, 0.1);
  color: #D8B16A;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}

/* ---------------------------
   4. ACCORDÉONS AMÉLIORÉS
---------------------------- */
.product__accordion .accordion__title,
.product__accordion .accordion summary,
.product__accordion details summary,
.product__accordion .collapsible-trigger-btn--borders,
.product-accordion summary,
.product-accordion .accordion__title {
  writing-mode: horizontal-tb !important;
  transform: none !important;
  text-orientation: initial !important;
  letter-spacing: normal !important;
  border-left: none !important;
  padding-left: 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  text-align: left !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  color: #D8B16A !important;
  margin: 24px 0 16px 0 !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(216, 177, 106, 0.3) !important;
  background: transparent !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product__accordion .accordion__title:hover,
.product__accordion .accordion summary:hover,
.product-accordion summary:hover {
  color: #A6A17D !important;
}

.product__accordion .accordion__title::after,
.product__accordion .accordion summary::after,
.product-accordion summary::after {
  content: '+';
  font-size: 24px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.product__accordion .accordion__title.is-open::after,
.product__accordion .accordion summary[aria-expanded="true"]::after,
.product-accordion summary[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

/* ---------------------------
   5. CONTENU DES SECTIONS
---------------------------- */
.product-section,
.product__accordion .accordion__content,
.product__accordion .collapsible-content__inner {
  background: #F9F7F3;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(216, 177, 106, 0.05);
  transition: all 0.3s ease;
}

/* ---------------------------
   6. LISTES À PUCE AMÉLIORÉES
---------------------------- */
.product__description ul,
.product__accordion .accordion__content ul,
.product__accordion .collapsible-content__inner ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.product__description ul li,
.product__accordion .accordion__content ul li,
.product__accordion .collapsible-content__inner ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 16px;
  color: #2B2B2B;
}

.product__description ul li::before,
.product__accordion .accordion__content ul li::before,
.product__accordion .collapsible-content__inner ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #D8B16A;
  font-size: 18px;
  font-weight: bold;
}

/* ---------------------------
   7. BOUTON D'ACHAT OPTIMISÉ
---------------------------- */
.product-form__submit {
  background-color: #D8B16A;
  color: #fff;
  padding: 16px 36px;
  border-radius: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(216, 177, 106, 0.15);
  transition: all 0.3s ease;
  min-width: 220px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 24px 0;
  cursor: pointer;
}

.product-form__submit:hover {
  background-color: #A6A17D;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(166, 161, 125, 0.2);
}

/* ---------------------------
   8. NOTIFICATION DE STOCK ÉLÉGANTE
---------------------------- */
.quantity-notification {
  background: linear-gradient(to right, #F9F7F3, #F5F3EE);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  text-align: center;
  margin: 24px 0;
  border-left: 3px solid #D8B16A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-notification::before {
  content: "⚠️";
  margin-right: 10px;
  font-size: 18px;
}

/* ---------------------------
   9. ATTRIBUTS PRODUIT
---------------------------- */
.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.product-attribute {
  background: #F5F3EE;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.product-attribute::before {
  content: "•";
  color: #D8B16A;
  margin-right: 8px;
  font-size: 18px;
}

/* ---------------------------
   10. ADAPTATION RESPONSIVE GLOBALE
---------------------------- */
@media screen and (max-width: 749px) {
  .product__title,
  .product__title h1,
  .product__title h2 {
    font-size: 28px;
  }
  
  .price {
    font-size: 20px;
  }
  
  .product-form__submit {
    width: 100%;
    min-width: 0;
  }
  
  .product__accordion .accordion__title,
  .product__accordion .accordion summary,
  .product-accordion summary {
    font-size: 18px !important;
  }
  
  .product-section,
  .product__accordion .accordion__content,
  .product__accordion .collapsible-content__inner {
    padding: 16px;
  }
}

/* ---------------------------
   11. ANIMATIONS ET TRANSITIONS
---------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product__info-wrapper {
  animation: fadeIn 0.8s ease;
}

.product__media-wrapper {
  animation: fadeIn 0.6s ease;
}

/* ---------------------------
   12. AMÉLIORATION DES MINIATURES
---------------------------- */
.product__thumbnail-button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.product__thumbnail-button:hover {
  transform: scale(1.05);
}

.product__thumbnail-button img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
</style>

@media screen and (min-width: 1024px) {
  .product-image {
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  @media screen and (min-width: 1024px) {
  .page-width {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}@media screen and (min-width: 1024px) {
  .product-image {
    max-width: 500px; /* Ajuste la largeur selon tes besoins */
    max-height: 400px; /* Ajuste la hauteur selon tes besoins */
    width: 100%;
    height: auto;
    margin: 20px auto; /* Ajoute une marge autour de l'image pour l'équilibrer */
    display: block;
  }
}
}
/* Centrer les titres sur desktop */
@media screen and (min-width: 750px) {
  .rte h1, .rte h2, .rte h3 {
    text-align: center;
  }
}

/* Réduire l'espacement entre les paragraphes sur desktop */
@media screen and (min-width: 750px) {
  .rte p {
    margin-bottom: 10px;
  }
}

/* Appliquer des marges horizontales au contenu du site, sauf la bannière */
@media screen and (min-width: 750px) {
  main {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* Marge horizontale sur toutes les sections sauf la bannière */
.shopify-section:not(.hero-section) {
  padding-left: 20px;
  padding-right: 20px;
}
  }
}

/* Redimensionner les images des blocs "Image avec texte" */
@media screen and (min-width: 750px) {
  .image-with-text__media {
    max-width: 600px;
    margin: 0 auto;
  }
  .image-with-text__media img {
    width: 100%;
    height: auto;
    border-radius: 0; /* Ajuste ou supprime selon le style souhaité */
  }
}

/* Harmoniser les blocs de texte pour qu’ils paraissent moins vides */
@media screen and (min-width: 750px) {
  .rte {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 
  border-radius: 8px;
}
  /* Ajuster la taille de l'image dans le bloc "Image avec texte" avec dimensions fixes */
@media screen and (min-width: 750px) {
  .image-with-text img {
    width: 500px; /* Largeur fixe de 500px */
    height: 300px; /* Hauteur fixe de 300px */
    object-fit: cover; /* Assure que l'image couvre l'espace sans se déformer */
    border-radius: 8px; /* Garde l'effet arrondi */
  }
}/* Ajuster la taille de l'image dans le bloc "Image avec texte" avec dimensions fixes */
@media screen and (min-width: 750px) {.image-with-text img{width:500px;height:300px;object-fit:cover;border-radius:8px;}}

/* Sur mobile, ajouter une marge autour de l'image avec texte */
@media screen and (max-width: 749px) {.image-with-text{margin-left:20px;margin-right:20px;}}
  @media screen and (min-width: 769px) {
  .footer__content-bottom, /* zone des mentions légales et © */
  .footer__content-top,     /* zone haute comme Instagram etc. */
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }

/***************************************************************
CUSTOM FACETS (Filtres + Tri) — Style doux premium
***************************************************************/

/* --- Style du texte --- */
.facets__heading,
.facet-filters__label,
.facet-filters__sort label,
.facets__summary {
  font-family: "Inter", "Avenir", "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 1.1rem;
  color: #1C1C1C !important;
}

/* --- Supprimer les triangles énormes par défaut --- */
.facets__summary svg,
.facet-filters__summary svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2px !important;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

/* --- Animation ouverture du filtre --- */
details[open] > summary svg {
  transform: rotate(180deg);
}

/* --- Espacement & douceur --- */
.facets__summary,
.facet-filters__summary {
  padding: 0.8rem 0;
  cursor: pointer;
}

/* --- Tri "Trier par" --- */
.select__select {
  background-color: #FFFFFF !important;
  border: 1px solid #D8D2C8 !important;
  border-radius: 8px !important;
  padding: 0.6rem 1rem !important;
  font-family: "Inter", sans-serif;
  font-weight: 300 !important;
  color: #1C1C1C !important;
}

/* --- Icône du select --- */
.select__select + svg {
  width: 16px;
  height: 16px;
  stroke: #A6A17D; /* olive */
}

/* --- Effet hover sur les titres de filtres --- */
.facets__summary:hover {
  color: #A6A17D !important;
}
