/* ============================================================
   NATUREA — Design System v2
   Palette :
     Fond principal  : #F7F3EE (crème chaud)
     Texte           : #1C1A17 (brun très sombre)
     Accent 1        : #6B7C5C (vert sauge)
     Accent 2        : #B5714A (terracotta)
     Accent 3        : #D4C4A8 (lin clair)
     Fond sombre     : #2A2420 (brun profond)
     Blanc cassé     : #FDFAF6
   
   Typo : Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Couleurs */
  --creme:      #F7F3EE;
  --creme-deep: #EDE6D8;
  --lin:        #D4C4A8;
  --sauge:      #6B7C5C;
  --sauge-dark: #4E5C42;
  --sauge-pale: #E8EDE3;
  --terra:      #B5714A;
  --terra-dark: #8E5234;
  --terra-pale: #F2E4D8;
  --brun:       #2A2420;
  --brun-mid:   #3D3530;
  --brun-light: #5C524A;
  --blanc:      #FDFAF6;
  --texte:      #1C1A17;
  --texte-dim:  #7A6E62;
  --texte-muted:#B0A495;

  /* Typo */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* Utilitaires */
  --r:          3px;
  --shadow-sm:  0 2px 12px rgba(44,36,32,0.06);
  --shadow-md:  0 8px 32px rgba(44,36,32,0.1);
  --shadow-lg:  0 24px 64px rgba(44,36,32,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--creme);
  color: var(--texte);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--sauge); color: var(--blanc); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--creme-deep); }
::-webkit-scrollbar-thumb { background: var(--sauge); border-radius: 2px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 76px;
  background: rgba(247,243,238,0.0);
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(44,36,32,0.08);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--texte);
  text-decoration: none;
}

.nav-logo .dot { color: var(--terra); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-dim);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--texte); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart {
  position: relative;
  cursor: pointer;
  color: var(--texte-dim);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: -10px;
}
.nav-cart:hover { color: var(--terra); }

.cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--terra);
  color: var(--blanc);
  font-size: 0.6rem;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-badge.visible { opacity: 1; }

.nav-cta-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--sauge);
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: background var(--transition);
}
.nav-cta-btn:hover { background: var(--sauge-dark); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  margin: -12px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--texte); transition: all 0.3s; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--brun);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--creme);
  text-decoration: none;
  transition: color var(--transition);
  padding: 6px 0;
}
.mobile-menu a:hover { color: var(--terra); }

@media (max-width: 380px) {
  .mobile-menu { gap: 28px; }
  .mobile-menu a { font-size: 2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brun);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(42,36,32,0.72) 0%, rgba(42,36,32,0.3) 60%, rgba(42,36,32,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 56px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--terra);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--creme);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--terra); }
.hero-title strong { font-weight: 500; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247,243,238,0.7);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 56px; right: 56px;
  z-index: 2;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(247,243,238,0.1);
  border: 1px solid rgba(247,243,238,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-badge strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--terra);
  line-height: 1;
}
.hero-badge small {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.7;
  margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra);
  color: var(--blanc);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--creme);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid rgba(247,243,238,0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--creme); background: rgba(247,243,238,0.1); }

.btn-sauge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sauge);
  color: var(--blanc);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition);
}
.btn-sauge:hover { background: var(--sauge-dark); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--sauge);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid var(--sauge);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--sauge); color: var(--blanc); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none;
  color: var(--terra);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none; cursor: pointer;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.btn-text:hover { border-bottom-color: var(--terra); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 104px 56px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--terra);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--texte); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title strong { font-weight: 500; }

.section-sub {
  font-size: 0.95rem; color: var(--texte-dim); font-weight: 300;
  max-width: 520px; line-height: 1.8;
}

.section-dark { background: var(--brun); color: var(--creme); }
.section-dark .section-title { color: var(--creme); }
.section-dark .section-sub { color: rgba(247,243,238,0.6); }

.section-sauge-pale { background: var(--sauge-pale); }
.section-terra-pale { background: var(--terra-pale); }
.section-creme-deep { background: var(--creme-deep); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--sauge);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-inner span {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blanc); padding: 0 36px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO SPLIT
   ============================================================ */
.split {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual { position: relative; }

.split-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.split-pill {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--terra);
  color: var(--blanc);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.split-pill strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 400;
  line-height: 1;
}
.split-pill small {
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.85;
  display: block; margin-top: 4px;
}

.highlights { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.highlight-item { display: flex; gap: 14px; align-items: flex-start; }
.highlight-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sauge-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--sauge);
  flex-shrink: 0; font-size: 0.8rem; margin-top: 2px;
}
.highlight-item-text strong {
  display: block; font-size: 0.88rem; font-weight: 500;
  color: var(--texte); margin-bottom: 3px;
}
.highlight-item-text p { font-size: 0.83rem; color: var(--texte-dim); line-height: 1.65; }

/* ============================================================
   SHOP
   ============================================================ */
.shop-header {
  max-width: 1240px; margin: 0 auto 52px;
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--texte-dim);
  background: transparent;
  border: 1px solid var(--lin);
  padding: 8px 18px; border-radius: 40px;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active { color: var(--blanc); background: var(--sauge); border-color: var(--sauge); }

.products-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--blanc);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  filter: saturate(0.9);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc); background: var(--terra);
  padding: 4px 10px; border-radius: 40px;
}
.product-badge.new { background: var(--sauge); }

.product-actions-hover {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  opacity: 0; transform: translateY(6px);
  transition: all var(--transition);
}
.product-card:hover .product-actions-hover { opacity: 1; transform: translateY(0); }

.btn-add-cart {
  width: 100%;
  background: var(--brun);
  color: var(--blanc);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 0; border: none; border-radius: 40px;
  cursor: pointer; transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--terra); }

.product-info { padding: 18px 18px 22px; }
.product-category { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sauge); font-weight: 500; margin-bottom: 5px; }
.product-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 400; color: var(--texte); margin-bottom: 5px; }
.product-desc { font-size: 0.78rem; color: var(--texte-dim); font-weight: 300; margin-bottom: 12px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--ff-display); font-size: 1.15rem; color: var(--texte); font-weight: 400; }
.product-price-old { font-size: 0.78rem; color: var(--texte-muted); text-decoration: line-through; margin-right: 6px; }
.product-stars { font-size: 0.68rem; color: var(--terra); letter-spacing: 2px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--brun);
  padding: 64px 56px;
}
.stats-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 32px 20px;
  border-right: 1px solid rgba(247,243,238,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 3.2rem; font-weight: 300;
  color: var(--terra); line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,243,238,0.5); font-weight: 400; }

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  max-width: 1240px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.value-card {
  background: var(--blanc);
  padding: 44px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  border-top: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover { border-top-color: var(--terra); box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--ff-display);
  font-size: 3rem; font-weight: 300;
  color: var(--terra); opacity: 0.25;
  line-height: 1; margin-bottom: 20px;
}
.value-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400; color: var(--texte); margin-bottom: 10px; }
.value-text { font-size: 0.85rem; color: var(--texte-dim); font-weight: 300; line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  max-width: 1240px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testi-card {
  background: var(--blanc);
  padding: 36px 32px; border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-quote {
  font-family: var(--ff-display);
  font-size: 4rem; font-weight: 300; color: var(--terra);
  opacity: 0.2; line-height: 1;
  position: absolute; top: 20px; right: 28px;
}
.testi-stars { font-size: 0.72rem; color: var(--terra); letter-spacing: 3px; margin-bottom: 18px; }
.testi-text {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.05rem; font-weight: 300;
  color: var(--texte); line-height: 1.65; margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sauge-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 0.88rem;
  color: var(--sauge); font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; font-weight: 500; color: var(--texte); }
.testi-loc { font-size: 0.73rem; color: var(--texte-dim); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 4px; max-width: 1240px; margin: 52px auto 0;
}
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.5s ease, filter 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(42,36,32,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-ig { color: var(--blanc); font-size: 1.2rem; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  max-width: 1240px; margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.blog-card {
  background: var(--blanc);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.85);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sauge); font-weight: 500; margin-bottom: 8px; }
.blog-card-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 400; color: var(--texte); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.82rem; color: var(--texte-dim); font-weight: 300; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-card-meta { font-size: 0.7rem; color: var(--texte-muted); display: flex; gap: 12px; }

.blog-card-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  max-width: 100%;
}
@media (max-width: 760px) {
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-featured .blog-card-body { padding: 28px 24px !important; }
  .blog-card-featured .blog-card-title { font-size: 1.2rem !important; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start;
}
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--lin);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); flex-shrink: 0; font-size: 0.9rem;
}
.contact-lbl { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sauge); font-weight: 500; margin-bottom: 3px; }
.contact-val { font-size: 0.88rem; color: var(--texte); font-weight: 300; }

.socials { display: flex; gap: 10px; margin-top: 36px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--lin); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--texte-dim); text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--terra); color: var(--terra); }

.map-frame {
  width: 100%; height: 240px; border: none; border-radius: 4px;
  filter: grayscale(40%) contrast(1.05);
  margin-top: 36px; box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--texte-dim); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--blanc);
  border: 1.5px solid var(--lin);
  border-radius: var(--r);
  color: var(--texte);
  font-family: var(--ff-body);
  font-size: 0.88rem; font-weight: 300;
  padding: 12px 16px; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sauge); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(42,36,32,0.5);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  height: 100%; width: 400px; max-width: 100vw;
  background: var(--blanc);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--creme-deep);
}
.cart-header h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400; color: var(--texte); }
.cart-close {
  width: 34px; height: 34px;
  border: 1px solid var(--lin); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--texte-dim); background: transparent;
  font-size: 1rem; transition: all var(--transition);
}
.cart-close:hover { border-color: var(--terra); color: var(--terra); }
.cart-items {
  flex: 1; overflow-y: auto;
  padding: 20px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--texte-dim); gap: 10px; font-size: 0.85rem;
}
.cart-empty-icon { font-size: 2rem; opacity: 0.35; }
.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px;
  background: var(--creme); border-radius: var(--r);
}
.cart-item-img { width: 60px; height: 76px; object-fit: cover; border-radius: var(--r); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; color: var(--texte); margin-bottom: 3px; }
.cart-item-price { font-family: var(--ff-display); font-size: 0.9rem; color: var(--terra); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--lin);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: transparent; color: var(--texte-dim);
  font-size: 0.7rem; transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--terra); color: var(--terra); }
.qty-num { font-size: 0.85rem; color: var(--texte); min-width: 14px; text-align: center; }
.cart-item-remove { background: transparent; border: none; color: var(--texte-muted); cursor: pointer; font-size: 0.8rem; transition: color var(--transition); padding: 4px; }
.cart-item-remove:hover { color: var(--terra); }
.cart-footer { padding: 20px 28px; border-top: 1px solid var(--creme-deep); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-total-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--texte-dim); }
.cart-total-amount { font-family: var(--ff-display); font-size: 1.4rem; color: var(--texte); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--brun);
  padding: 72px 56px 36px;
}
.footer-top {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,243,238,0.08);
}
.footer-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.18em; color: var(--creme); margin-bottom: 16px; }
.footer-logo .dot { color: var(--terra); }
.footer-tagline { font-size: 0.84rem; color: rgba(247,243,238,0.5); font-weight: 300; line-height: 1.75; margin-bottom: 24px; }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terra); font-weight: 500; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(247,243,238,0.5); text-decoration: none; font-weight: 300; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--creme); }
.footer-bottom {
  max-width: 1240px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.72rem; color: rgba(247,243,238,0.35); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.72rem; color: rgba(247,243,238,0.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--creme); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 0.72rem; color: var(--texte-muted);
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0 0;
  max-width: 1240px; margin: 0 auto;
}
.breadcrumb a { color: var(--texte-dim); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb-sep { color: var(--lin); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--brun);
  padding: 140px 56px 80px;
  text-align: center;
}
.page-hero .section-title { color: var(--creme); font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 16px; }
.page-hero .section-sub { color: rgba(247,243,238,0.6); margin: 0 auto; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 0 56px 104px; }
.article-header { padding: 80px 56px 0; max-width: 780px; margin: 0 auto; }
.article-cat { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sauge); font-weight: 500; margin-bottom: 12px; }
.article-title { font-family: var(--ff-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; color: var(--texte); line-height: 1.2; margin-bottom: 20px; }
.article-meta { font-size: 0.74rem; color: var(--texte-muted); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.article-cover { width: 100%; max-width: 1240px; margin: 0 auto; height: 480px; object-fit: cover; display: block; }

.article-body { font-size: 1rem; line-height: 1.9; color: var(--texte); }
.article-body h2 { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 400; margin: 48px 0 18px; color: var(--texte); }
.article-body h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 400; margin: 36px 0 14px; color: var(--texte); }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { font-weight: 500; color: var(--texte); }
.article-body em { font-style: italic; color: var(--terra); }
.article-body blockquote {
  border-left: 3px solid var(--terra);
  padding: 16px 24px; margin: 32px 0;
  background: var(--terra-pale); border-radius: 0 4px 4px 0;
  font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--texte);
}

/* ============================================================
   WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Toast */
.toast {
  position: fixed; bottom: 96px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--sauge);
  color: var(--blanc);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em;
  padding: 12px 28px; border-radius: 40px;
  z-index: 300; opacity: 0;
  transition: all 0.3s;
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   ZONES / CERT GRIDS — responsive cards
   ============================================================ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.cert-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .zones-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .cert-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   PRICING TABLE — responsive (table on desktop, cards on mobile)
   ============================================================ */
.pricing-table {
  background: var(--blanc);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table-head {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr;
  background: var(--brun);
  color: var(--creme);
  padding: 14px 20px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pt-right { text-align: right; }
.pricing-row {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--creme-deep);
  font-size: 0.88rem;
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.pt-alt { background: var(--creme); }
.pt-dest { font-weight: 400; color: var(--texte); }
.pt-amount { color: var(--texte-dim); font-size: 0.84rem; }
.pt-fee { text-align: right; font-family: var(--ff-display); font-size: 1.05rem; }

@media (max-width: 600px) {
  .pricing-table-head { display: none; }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }
  .pt-dest { font-size: 0.95rem; font-weight: 500; }
  .pt-amount { font-size: 0.8rem; }
  .pt-fee { text-align: left; font-size: 1.15rem; margin-top: 2px; }
}

/* ---- Tablet / small desktop ---- */
@media (max-width: 1100px) {
  section { padding: 88px 40px; }
  .split { gap: 64px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(247,243,238,0.08); padding: 36px 20px; }
  .stat-item:nth-last-child(-n+1) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---- Tablet portrait / large phone ---- */
@media (max-width: 900px) {
  nav { padding: 0 24px; height: 70px; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-burger { display: flex; }

  section { padding: 72px 24px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }

  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 56px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  footer { padding: 64px 24px 32px; }

  .trust-bar { padding: 18px 24px; }
  .trust-bar-inner { justify-content: center; gap: 16px 28px; }

  .cart-sidebar { width: 100%; }
  .quickview-modal { max-height: 90vh; }
}

/* ---- Phone — the real mobile pass: room to breathe ---- */
@media (max-width: 600px) {
  html { font-size: 15.5px; }

  /* Generous vertical rhythm between sections instead of cramped stacking */
  section { padding: 64px 22px; }
  .section-dark, .section-sauge-pale, .section-terra-pale, .section-creme-deep { padding: 64px 22px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.2rem); margin-bottom: 22px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 36px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions a { justify-content: center; }
  .hero-badge { display: none; }
  .hero-eyebrow { margin-bottom: 22px; }

  /* Trust bar — stack cleanly, no cramming */
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-item { font-size: 0.8rem; }

  /* Section headers get room */
  .section-title { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.18; margin-bottom: 18px; }
  .section-eyebrow { margin-bottom: 18px; }
  .section-sub { font-size: 0.88rem; line-height: 1.85; }

  /* Shop — single column, generous gaps, no squeeze */
  .shop-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .shop-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; gap: 8px; -webkit-overflow-scrolling: touch; }
  .filter-btn { flex-shrink: 0; padding: 9px 18px; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .product-info { padding: 22px 20px 26px; }
  .product-name { font-size: 1.2rem; }

  /* Values / testimonials / blog — single column with real breathing room */
  .values-grid { gap: 18px; margin-top: 44px; }
  .value-card { padding: 36px 28px; }
  .testi-grid { gap: 18px; margin-top: 40px; }
  .testi-card { padding: 32px 26px; }
  .blog-grid { gap: 22px; margin-top: 40px; }

  /* Stats band */
  .stats-band { padding: 48px 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 28px 12px; }
  .stat-num { font-size: 2.5rem; }

  /* Split sections */
  .split-img { aspect-ratio: 1/1; }
  .highlights { gap: 22px; margin-top: 32px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 4px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-items { gap: 26px; }
  .map-frame { height: 200px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
  .footer-col ul { gap: 13px; }

  /* Page hero / article */
  .page-hero { padding: 116px 22px 56px; }
  .article-header { padding: 64px 22px 0; }
  .article-wrap { padding: 0 22px 80px; }
  .article-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .article-cover { height: 240px; }
  .article-body { font-size: 0.95rem; line-height: 1.85; }
  .article-body h2 { font-size: 1.4rem; margin: 40px 0 16px; }
  .article-body h3 { font-size: 1.1rem; margin: 30px 0 12px; }

  /* Cart & floating UI — keep thumb-reachable, never cramped */
  .cart-sidebar { width: 100%; }
  .qty-btn { width: 30px; height: 30px; }
  .cart-item { padding: 14px; gap: 14px; }
  .cart-item-remove { padding: 8px; }
  .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .live-notif { left: 16px; right: 84px; bottom: 20px; max-width: none; padding: 12px 14px; gap: 10px; }
  .live-notif-text { font-size: 0.7rem; }
  .nav-cart svg { width: 19px; height: 19px; }

  /* Quick-view modal goes full-bleed friendly on phones */
  .quickview-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .quickview-img { min-height: 200px; }
  .quickview-body { padding: 26px 22px; }

  /* FAQ / legal text blocks */
  details summary { font-size: 0.86rem !important; }
}

/* ---- Small phone ---- */
@media (max-width: 380px) {
  section { padding: 52px 18px; }
  .hero-content { padding: 0 18px; }
  .page-hero { padding: 108px 18px 48px; }
  .trust-bar { padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   TRUST SEAL — signature element
   ============================================================ */
.trust-seal {
  position: relative;
  width: 132px; height: 132px;
}
.trust-seal svg { width: 100%; height: 100%; }
.trust-seal-ring {
  transform-origin: 50% 50%;
  animation: seal-rotate 32s linear infinite;
}
@keyframes seal-rotate { to { transform: rotate(360deg); } }

/* ============================================================
   TRUST BAR (under hero)
   ============================================================ */
.trust-bar {
  background: var(--blanc);
  border-bottom: 1px solid var(--creme-deep);
  padding: 22px 56px;
}
.trust-bar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.76rem; color: var(--texte-dim); font-weight: 400;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--sauge); }
.trust-item strong { color: var(--texte); font-weight: 500; }

/* ============================================================
   LIVE / SOCIAL PROOF NOTIFICATION
   ============================================================ */
.live-notif {
  position: fixed;
  bottom: 28px; left: 28px; z-index: 140;
  background: var(--blanc);
  border: 1px solid var(--creme-deep);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  pointer-events: none;
}
.live-notif.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.live-notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sauge); flex-shrink: 0;
  position: relative;
}
.live-notif-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--sauge);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.live-notif-img { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.live-notif-text { font-size: 0.74rem; color: var(--texte); line-height: 1.45; }
.live-notif-text strong { font-weight: 500; }
.live-notif-time { font-size: 0.66rem; color: var(--texte-muted); margin-top: 2px; }
.live-notif-close {
  background: none; border: none; color: var(--texte-muted); cursor: pointer;
  font-size: 0.9rem; padding: 0 0 0 4px; flex-shrink: 0; line-height: 1;
}

/* ============================================================
   PRODUCT CARD — refined hover & quick-view
   ============================================================ */
.product-card { will-change: transform; }
.product-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,36,32,0) 60%, rgba(42,36,32,0.28) 100%);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-img-wrap::after { opacity: 1; }

.product-rating-count { font-size: 0.66rem; color: var(--texte-muted); margin-left: 4px; }

/* ============================================================
   CERTIFICATION BADGES STRIP
   ============================================================ */
.cert-strip {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  margin-top: 32px;
}
.cert-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; color: var(--texte-dim); font-weight: 500;
}
.cert-badge svg { color: var(--terra); flex-shrink: 0; }

/* ============================================================
   HERO — Cinematic entrance system (v2)
   ============================================================ */

/* Image poster avec kenburns garanti (même sans vidéo MP4) */
.hero-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: kenburns 18s ease-in-out infinite alternate;
  filter: saturate(0.85) brightness(0.9);
}

/* Quand la vidéo est dispo, elle couvre l'image */
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.55;
  animation: kenburns 18s ease-in-out infinite alternate;
  filter: saturate(0.75);
}

@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  33%  { transform: scale(1.06) translateX(-1%)  translateY(-0.5%); }
  66%  { transform: scale(1.04) translateX(1%)   translateY(0.5%); }
  100% { transform: scale(1.09) translateX(-0.5%) translateY(-1%); }
}

/* Overlay gradient statique */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    108deg,
    rgba(42,36,32,0.75) 0%,
    rgba(42,36,32,0.45) 55%,
    rgba(42,36,32,0.15) 100%
  );
}

/* Overlay animé — shimmer lumineux */
.hero-overlay-anim {
  position: absolute; inset: 0; z-index: 3;
  background: radial-gradient(
    ellipse 60% 50% at 80% 40%,
    rgba(181,113,74,0.12) 0%,
    transparent 70%
  );
  animation: hero-shimmer 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-shimmer {
  from { opacity: 0.4; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1) translate(3%, -2%); }
}

/* Entrée en cascade des éléments texte */
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-actions,
.hero-scroll {
  opacity: 0;
  animation: hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.2s; }
.hero-title   { animation-delay: 0.4s; }
.hero-sub     { animation-delay: 0.62s; }
.hero-actions { animation-delay: 0.8s; }
.hero-scroll  { animation-delay: 1.1s; }

.hero-badge {
  opacity: 0;
  animation: hero-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.0s;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-pop {
  from { opacity: 0; transform: scale(0.7) rotate(-6deg); }
  to   { opacity: 1; transform: scale(1)   rotate(0deg); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(247,243,238,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1);   opacity: 0.6; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Floating product chips */
.hero-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,243,238,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(247,243,238,0.2);
  border-radius: 40px;
  padding: 8px 16px 8px 8px;
  opacity: 0;
  pointer-events: none;
}
.hero-chip img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-chip span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--creme);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.hero-chip-1 {
  bottom: 120px; right: 80px;
  animation: chip-float-1 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-delay: 1.3s;
}
.hero-chip-2 {
  bottom: 68px; right: 80px;
  animation: chip-float-2 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-delay: 1.6s;
}
@keyframes chip-float-1 {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes chip-float-2 {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Parallax léger au scroll — piloté par JS */
.hero-content { will-change: transform; }

@media (max-width: 900px) {
  .hero-chip { display: none; }
  .hero-scroll { left: 24px; bottom: 20px; }
}
@media (max-width: 600px) {
  .hero-scroll { display: none; }
}


/* ============================================================
   MAGNETIC BUTTON MICRO-INTERACTION
   ============================================================ */
.btn-primary, .btn-sauge, .btn-secondary, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-sauge::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::before, .btn-sauge:hover::before { width: 220px; height: 220px; }

/* ============================================================
   IMAGE REVEAL (clip-path wipe)
   ============================================================ */
.img-reveal {
  position: relative; overflow: hidden;
}
.img-reveal::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--sauge);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 2;
}
.img-reveal.revealing::before {
  animation: reveal-wipe 0.9s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes reveal-wipe {
  0%   { transform: scaleX(0); transform-origin: left; }
  45%  { transform: scaleX(1); transform-origin: left; }
  55%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ============================================================
   SCROLL PROGRESS BAR (article pages)
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--terra);
  z-index: 250;
  transition: width 0.1s linear;
}

/* ============================================================
   ANIMATED CHECK ICON (form success)
   ============================================================ */
@keyframes check-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.toast-icon { display: inline-flex; animation: check-pop 0.4s ease; }

/* ============================================================
   PAYMENT BADGES
   ============================================================ */
.payment-badges {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-top: 16px;
}
.payment-badge {
  display: flex; align-items: center; justify-content: center;
  height: 26px; padding: 0 10px;
  background: var(--blanc);
  border: 1px solid var(--creme-deep);
  border-radius: 4px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--texte-dim);
}

/* ============================================================
   PRODUCT QUICK-VIEW MODAL
   ============================================================ */
.quickview-overlay {
  position: fixed; inset: 0; background: rgba(42,36,32,0.55);
  z-index: 220; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  padding: 24px;
}
.quickview-overlay.open { opacity: 1; pointer-events: all; }
.quickview-modal {
  background: var(--blanc); border-radius: 6px;
  max-width: 760px; width: 100%; max-height: 86vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(0.94) translateY(12px); transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.quickview-overlay.open .quickview-modal { transform: scale(1) translateY(0); }
.quickview-img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.quickview-body { padding: 36px; position: relative; }
.quickview-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--lin); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--texte-dim);
}
@media (max-width: 700px) {
  .quickview-modal { grid-template-columns: 1fr; }
  .quickview-img { min-height: 220px; }
}

/* ============================================================
   AMBIENT LEAF DECORATION (signature motif)
   ============================================================ */
.leaf-decor {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) { .leaf-decor { display: none; } }


/* ============================================================
   SOCIAL FOLLOW SECTION — mobile
   ============================================================ */
@media (max-width: 600px) {
  .social-follow-cards { flex-direction: column; align-items: center; }
  .social-follow-cards > a { width: 100%; max-width: 100% !important; padding: 36px 28px !important; }
}
