/* ══════════════════════════════════════════════════════
   PrenyPreny 3.0 — Luxe Chaleureux Artisanal
   Stylesheet · April 2026
   ══════════════════════════════════════════════════════ */

:root {
  /* ── Color palette ── */
  --or: #D9B607;
  --or-clair: #D9B384;
  --or-fonce: #BF9411;
  --terre: #260F01;
  --creme: #F5EDE3;
  --pierre: #735439;
  --vert: #2E5040;
  --rouge: #8B2E2E;
  --noir: #260F01;

  /* ── Spacing (4/8dp rhythm) ── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* ── Z-index scale ── */
  --z-base: 0;
  --z-cat-bar: 10;
  --z-nav: 20;
  --z-mobile-menu: 30;
  --z-scroll-top: 40;
  --z-modal: 100;
  --z-loader: 1000;

  /* ── Typography scale ── */
  --text-xs: 0.72rem;
  --text-sm: 0.82rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: clamp(1.6rem, 3vw, 2.2rem);
  --text-hero: clamp(2.5rem, 5vw, 4.2rem);

  /* ── Easing ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(38,15,1,0.06), 0 1px 2px rgba(38,15,1,0.04);
  --shadow-md: 0 4px 16px rgba(38,15,1,0.08), 0 2px 4px rgba(38,15,1,0.04);
  --shadow-lg: 0 12px 40px rgba(38,15,1,0.1), 0 4px 12px rgba(38,15,1,0.06);
  --shadow-xl: 0 24px 60px rgba(38,15,1,0.14), 0 8px 20px rgba(38,15,1,0.08);

  /* ── Border radius ── */
  --radius-sm: 0.4rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 6em;

  /* ── Max width ── */
  --max-w: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: var(--z-loader);
  background: var(--terre); color: var(--creme); padding: 0.75rem 1.5rem;
  font-family: 'Jost', sans-serif; font-size: var(--text-sm); letter-spacing: 0.05em;
  text-decoration: none; border-radius: 0 0 4px 4px; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--or); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

a, button, [role="button"], .cat-item, .produit-card, .artisan-card,
.modal-type-opt, .modal-tab, .temoignage { cursor: pointer; }
a, button, input, select, textarea { touch-action: manipulation; }

/* ── BODY ── */
body {
  background: var(--creme); color: var(--terre);
  font-family: 'Jost', sans-serif; font-weight: 300;
  line-height: 1.6; overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

::selection { background: rgba(217,182,7,0.3); color: var(--terre); }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--terre);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.page-loader.hidden {
  opacity: 0 !important; visibility: hidden !important; pointer-events: none;
}
.page-loader-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600;
  color: var(--creme); letter-spacing: 0.04em;
  opacity: 0; animation: loaderFadeIn 0.6s 0.1s var(--ease-out-expo) forwards;
}
.page-loader-logo span { color: var(--or); font-style: italic; }
.page-loader-bar {
  width: 120px; height: 2px; background: rgba(245,237,227,0.1);
  margin-top: 1.5rem; border-radius: 2px; overflow: hidden;
  opacity: 0; animation: loaderFadeIn 0.4s 0.3s var(--ease-out-expo) forwards;
}
.page-loader-bar::after {
  content: ''; display: block; width: 40%; height: 100%;
  background: var(--or); border-radius: 2px;
  animation: loaderBar 1.2s var(--ease-in-out) infinite;
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--or), var(--or-fonce));
  z-index: 9999; transition: width 0.1s;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed; width: 300px; height: 300px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(217,182,7,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%); z-index: 1;
  opacity: 0; transition: opacity 0.3s;
}
.cursor-glow.active { opacity: 1; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav); transition: all 0.4s var(--ease-out-expo);
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
}
nav.scrolled {
  padding: 0.6rem 2.5rem;
  background: rgba(245,237,227,0.95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(38,15,1,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none; color: var(--terre);
}
.nav-logo span { color: var(--or); font-style: italic; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--terre); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
  position: relative; padding: 0.25rem 0; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1px; background: var(--or); transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--or-fonce); }

.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
}

.nav-icon-btn {
  background: transparent; border: none; cursor: pointer; color: var(--terre);
  padding: 6px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; position: relative;
}
.nav-icon-btn:hover { background: rgba(38,15,1,0.05); }
.nav-icon-btn svg, .nav-icon-btn i { width: 18px; height: 18px; }

.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--or); color: var(--terre);
  font-size: 0.6rem; font-weight: 600;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-cta {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--terre); color: var(--creme);
  padding: 0.6rem 1.5rem; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 500;
  border-radius: var(--radius-full);
  position: relative; display: inline-block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--terre); transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── CATEGORY BAR ── */
.cat-bar {
  display: flex; justify-content: center; gap: 0.35rem; padding: 0.6rem 2rem;
  overflow-x: auto; scrollbar-width: none;
  background: rgba(245,237,227,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38,15,1,0.08);
  border-top: 1px solid rgba(38,15,1,0.04);
  transition: background 0.3s;
}
.cat-bar::-webkit-scrollbar { display: none; }
nav.scrolled ~ .cat-bar { background: rgba(245,237,227,0.95); }

.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 0.55rem 1rem; background: transparent;
  color: var(--terre); text-decoration: none; border-radius: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.03em; font-weight: 400;
  white-space: nowrap; transition: all 0.25s; min-width: 5rem; flex-shrink: 0;
}
.cat-item:hover { background: rgba(38,15,1,0.06); color: var(--noir); }
.cat-item.active { background: var(--terre); color: var(--creme); }
.cat-item.active .cat-icon-lucide { color: var(--creme); }
.cat-icon-wrap { display: flex; align-items: center; justify-content: center; }
.cat-icon-lucide { width: 20px; height: 20px; color: var(--terre); opacity: 0.7; transition: all 0.25s; }
.cat-item:hover .cat-icon-lucide { opacity: 1; color: var(--terre); }
.cat-item.active .cat-icon-lucide { opacity: 1; }


/* ── CATEGORY BAR ICON SPACING & ALIGNMENT ── */
.cat-item {
  gap: 0.4rem;
}

.cat-icon-wrap {
  height: 24px;
  width: 24px;
}

.cat-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60px;
  display: block;
  transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-item:hover .cat-label {
  max-width: 150px;
  text-overflow: clip;
}

/* ══════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-mobile-menu);
  background: var(--creme); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.3s var(--ease-out-expo);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: transparent; border: none; color: var(--terre); cursor: pointer;
}
.mobile-menu-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600;
  color: var(--terre); margin-bottom: 1rem;
}
.mobile-menu-logo span { color: var(--or); font-style: italic; }
.mobile-menu a {
  text-decoration: none; color: var(--terre); font-size: 1.2rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 300;
}
.mobile-menu-divider { width: 40px; height: 1px; background: rgba(38,15,1,0.1); }
.mobile-menu-cta {
  padding: 0.75rem 2rem; background: var(--terre); color: var(--creme);
  border: none; border-radius: var(--radius-full);
  font-family: 'Jost', sans-serif; font-size: var(--text-sm);
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}

/* ══════════════════════════════════════
   SEARCH OVERLAY
   ══════════════════════════════════════ */
.search-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(38,15,1,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 15vh; opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-container {
  background: var(--creme); border-radius: var(--radius-lg);
  width: min(90vw, 600px); box-shadow: var(--shadow-xl);
  overflow: hidden; transform: translateY(-20px);
  transition: transform 0.3s var(--ease-out-expo);
}
.search-overlay.open .search-container { transform: none; }
.search-input-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid rgba(38,15,1,0.06);
}
.search-icon { width: 18px; height: 18px; color: var(--pierre); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; border: none; background: transparent;
  font-size: 0.95rem; font-family: 'Jost', sans-serif;
  color: var(--terre); outline: none;
}
.search-input-wrap input::placeholder { color: rgba(38,15,1,0.3); }
.search-kbd {
  font-size: 0.6rem; padding: 0.15rem 0.4rem;
  background: rgba(38,15,1,0.06); border-radius: 4px;
  color: var(--pierre); font-family: 'Jost', sans-serif;
}
.search-close {
  background: transparent; border: none; color: var(--pierre); cursor: pointer;
  display: flex; padding: 4px;
}
.search-results { padding: 1rem 1.25rem; }
.search-hint { font-size: 0.8rem; color: var(--pierre); }
.search-no-results { font-size: 0.85rem; color: var(--pierre); padding: 1rem 0; }
.search-result-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s;
}
.search-result-item:hover { background: rgba(38,15,1,0.04); }
.search-result-img { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--or); }
.search-result-info { flex: 1; }
.search-result-name { font-size: 0.85rem; font-weight: 500; }
.search-result-meta { font-size: 0.72rem; color: var(--pierre); }
.search-result-price { font-size: 0.85rem; font-weight: 500; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  padding: var(--space-xl) 2.5rem var(--space-3xl);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; min-height: 85vh;
  max-width: var(--max-w); margin: 8.5rem auto 0;
}
.hero-eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: var(--space-lg); font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero); font-weight: 300;
  line-height: 1.1; margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--pierre); }
.hero-desc {
  font-size: var(--text-base); line-height: 1.7;
  color: var(--pierre); max-width: 480px;
  margin-bottom: var(--space-2xl); font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.8fr 1fr; gap: 0.75rem;
  height: min(70vh, 600px);
}
.hero-img {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; display: flex; align-items: flex-end; padding: 1.25rem;
  background: linear-gradient(135deg, #3A2818 0%, #2E2218 50%, #1a1a2e 100%);
}
.hero-img-tall {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #4a3828 0%, #3A2818 50%, #2E2218 100%);
}
.hero-img::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(217,182,7,0.03) 10px,
    rgba(217,182,7,0.03) 20px
  );
  opacity: 0.5;
}
.hero-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(217,182,7,0.12), transparent 70%);
  z-index: 1;
}
.hero-img-label {
  color: var(--creme); font-size: var(--text-xs);
  letter-spacing: 0.06em; font-weight: 300;
  position: relative; z-index: 1; opacity: 0.8;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 0.75rem 1.75rem; background: var(--terre); color: var(--creme);
  border: none; border-radius: var(--radius-full);
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400;
  text-decoration: none; transition: all 0.3s var(--ease-out-expo);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(38,15,1,0.2); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.7rem 1.5rem; background: transparent; color: var(--terre);
  border: 1px solid rgba(38,15,1,0.2); border-radius: var(--radius-full);
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400;
  text-decoration: none; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--terre); background: rgba(38,15,1,0.03); }

.btn-gold {
  display: inline-flex; align-items: center;
  padding: 0.85rem 2.2rem; background: var(--or); color: var(--terre);
  border: none; border-radius: var(--radius-full);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 600;
  text-decoration: none; transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(217,182,7,0.2);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217,182,7,0.35);
  background: var(--or-fonce);
}

.btn-gold:active {
  transform: translateY(-1px);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,182,7,0.3); }

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.marquee-band {
  overflow: hidden; padding: 1.25rem 0;
  background: var(--terre);
  border-top: 1px solid rgba(217,182,7,0.15);
  border-bottom: 1px solid rgba(217,182,7,0.15);
}
.marquee-inner {
  display: flex; gap: 1.5rem; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-inner span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-weight: 300; color: var(--or-clair); opacity: 0.85;
  letter-spacing: 0.1em;
}
.marquee-band:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   STATS
   ══════════════════════════════════════ */
.stats {
  display: flex; justify-content: center; gap: 4rem;
  padding: var(--space-3xl) 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  font-weight: 300; color: var(--terre); line-height: 1;
}
.stat-label {
  font-size: var(--text-xs); color: var(--pierre);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: var(--space-sm);
}

/* ══════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════ */
.section-eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 0.75rem; font-weight: 400;
}
.section-eyebrow--light { color: var(--or); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl); font-weight: 300;
  color: var(--terre); line-height: 1.2; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }
.section-title--light { color: var(--creme); }

/* ══════════════════════════════════════
   ARTISANS
   ══════════════════════════════════════ */
.artisans-section {
  padding: var(--space-4xl) 2.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.artisans-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--space-3xl); flex-wrap: wrap; gap: 1rem;
}
.artisans-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto; gap: 1rem;
}
.artisan-card {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  min-height: 260px; cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo);
}
.artisan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.artisan-card.featured {
  grid-row: 1 / 3; min-height: 500px;
}
.artisan-card-bg {
  position: absolute; inset: 0;
  background-size: 100% 100%;
}
.artisan-card-bg::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(217,182,7,0.02) 8px,
    rgba(217,182,7,0.02) 16px
  );
}
.artisan-card-bg::after {
  content: ''; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(217,182,7,0.1);
}
.artisan-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(217,182,7,0.1), transparent 60%);
}
.artisan-card-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,15,1,0.85) 15%, transparent 65%);
}
.artisan-info { position: relative; z-index: 1; }
.artisan-metier {
  color: var(--or); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.artisan-name {
  font-family: 'Cormorant Garamond', serif; color: var(--creme);
  font-size: 1.2rem; font-weight: 400; margin-bottom: 0.25rem;
}
.artisan-card.featured .artisan-name { font-size: 1.6rem; }
.artisan-location {
  color: rgba(245,237,227,0.6); font-size: 0.75rem;
  display: flex; align-items: center; gap: 4px;
}
.artisan-desc {
  color: rgba(245,237,227,0.7); font-size: 0.85rem;
  line-height: 1.6; margin-top: 0.75rem; max-width: 380px;
}

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process-section {
  padding: var(--space-4xl) 2.5rem;
  background: var(--terre); color: var(--creme);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: var(--space-3xl);
}
.process-step {
  padding: 1.5rem 0; border-top: 1px solid rgba(217,182,7,0.3);
  transition: all 0.3s var(--ease-out-expo);
}

.process-step:hover {
  transform: translateX(4px);
}
.process-number {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 300; color: var(--or); opacity: 0.8; line-height: 1;
  transition: opacity 0.3s;
}

.process-step:hover .process-number {
  opacity: 1;
}
.process-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 400; margin: 0.75rem 0 0.5rem;
  color: var(--creme);
  transition: color 0.3s;
}

.process-step:hover .process-title {
  color: var(--or);
}
.process-desc {
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(245,237,227,0.9); font-weight: 300;
}

/* ══════════════════════════════════════
   PRODUITS / BOUTIQUE
   ══════════════════════════════════════ */
.produits-section {
  padding: var(--space-4xl) 2.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.produits-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}
.produits-sort {
  display: flex; align-items: center; gap: 0.5rem;
}
.produits-sort label {
  font-size: var(--text-xs); color: var(--pierre);
  letter-spacing: 0.06em;
}
.produits-sort select {
  background: transparent; border: 1px solid rgba(38,15,1,0.12);
  border-radius: var(--radius-sm); padding: 0.45rem 0.8rem;
  font-family: 'Jost', sans-serif; font-size: var(--text-sm);
  color: var(--terre); cursor: pointer; outline: none;
}

.produits-filter-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.produits-filter-price label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--terre);
  opacity: 0.7;
  white-space: nowrap;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-range-inputs input[type="number"] {
  width: 80px;
  padding: 0.45rem 0.6rem;
  border: 1.5px solid rgba(38, 15, 1, 0.15);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--terre);
  background: #fff;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.price-range-inputs input[type="number"]::-webkit-inner-spin-button,
.price-range-inputs input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-range-inputs input[type="number"]:focus {
  outline: none;
  border-color: var(--or);
}

.price-separator {
  color: var(--terre);
  opacity: 0.3;
  font-size: 0.9rem;
}

.btn-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--or);
  border-radius: 8px;
  background: transparent;
  color: var(--or);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-filter:hover {
  background: var(--or);
  color: #fff;
}

.btn-filter-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(38, 15, 1, 0.08);
  color: var(--terre);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-filter-reset:hover {
  background: rgba(38, 15, 1, 0.15);
}

.produits-count {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--terre);
  opacity: 0.5;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .produits-controls {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .produits-filter-price {
    width: 100%;
  }

  .price-range-inputs {
    flex: 1;
  }

  .price-range-inputs input[type="number"] {
    flex: 1;
    min-width: 0;
  }
}

.produits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.produit-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.produit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }


.produit-img {
  background: linear-gradient(135deg, rgba(58,40,24,0.8), rgba(46,34,24,0.8), rgba(26,26,46,0.8)) !important;
  position: relative;
  aspect-ratio: 4 / 3;
}

.produit-img::before {
  content: ''; position: absolute; inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(217,182,7,0.04) 10px,
      rgba(217,182,7,0.04) 20px
    ),
    radial-gradient(ellipse at 30% 30%, rgba(217,182,7,0.08), transparent 70%);
  pointer-events: none;
}

.produit-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.produit-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--or); color: var(--terre);
  font-size: 0.6rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 2rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.produit-badge-sale { background: var(--rouge); color: var(--creme); }

.produit-fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(245,237,227,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.produit-fav:hover { background: var(--creme); transform: scale(1.1); }
.produit-fav.active svg { fill: var(--rouge); stroke: var(--rouge); }
.produit-fav svg { width: 14px; height: 14px; }

.produit-info { padding: 1rem 1.25rem 1.25rem; }
.produit-artisan {
  font-size: 0.7rem; color: var(--pierre);
  letter-spacing: 0.06em; margin-bottom: 0.2rem;
}
.produit-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem;
  cursor: pointer;
}
.produit-prix-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.produit-prix { font-weight: 500; font-size: 1rem; }
.produit-prix-old {
  text-decoration: line-through; color: var(--pierre);
  font-size: 0.85rem; opacity: 0.6;
}
.produit-tags { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.produit-tag {
  font-size: 0.6rem; padding: 0.15rem 0.5rem;
  border: 1px solid rgba(38,15,1,0.1); border-radius: 2rem;
  color: var(--pierre);
}
.produit-add {
  width: 100%; padding: 0.6rem; background: var(--terre); color: var(--creme);
  border: none; border-radius: var(--radius-sm);
  font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400;
  transition: all 0.2s;
}
.produit-add:hover { background: var(--noir); }
.produit-add.added { background: var(--vert); }

.produits-loader {
  grid-column: 1 / -1; text-align: center; padding: 3rem 0;
  color: var(--pierre); font-size: 0.85rem;
}
.loader-spinner {
  width: 28px; height: 28px; border: 2px solid rgba(38,15,1,0.1);
  border-top-color: var(--or); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.produits-load-more { text-align: center; margin-top: var(--space-2xl); }



/* ── ENHANCED HOVER & TRANSITION EFFECTS ── */
.produit-card {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.produit-img {
  transition: all 0.4s var(--ease-out-expo);
}

.produit-card:hover .produit-img {
  transform: scale(1.03);
}

/* ── CATEGORY BAR IMPROVEMENTS ── */
.cat-icon-wrap {
  transition: transform 0.25s var(--ease-out-expo);
}

.cat-item:hover .cat-icon-wrap {
  transform: translateY(-2px);
}

.cat-item.active .cat-icon-wrap {
  color: var(--creme);
}

/* ── SMOOTH ANIMATIONS ── */
[data-aos] {
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.artisan-card, .produit-card, .temoignage {
  transition: all 0.4s var(--ease-out-expo);
}

/* ══════════════════════════════════════
   SAVOIR-FAIRE (SPLIT)
   ══════════════════════════════════════ */
.savoir-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.savoir-visual {
  background: var(--terre); display: flex;
  align-items: center; justify-content: center;
  padding: 3rem; position: relative; overflow: hidden;
  background-image: radial-gradient(ellipse at 65% 40%, rgba(217,182,7,0.12), transparent 55%);
}
.savoir-visual-circles { position: absolute; inset: 0; }
.savoir-circle {
  position: absolute; left: 60%; top: 45%;
  border-radius: 50%; border: 1.5px solid rgba(217,182,7,0.25);
  transform: translate(-50%, -50%);
}
.savoir-circle--1 { width: 160px; height: 160px; }
.savoir-circle--2 { width: 240px; height: 240px; border-color: rgba(217,182,7,0.18); }
.savoir-circle--3 { width: 320px; height: 320px; border-color: rgba(217,182,7,0.10); }
.savoir-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(245,237,227,0.18); font-weight: 300;
  letter-spacing: 0.05em; line-height: 1;
  position: relative; z-index: 1;
  text-shadow: 0 0 60px rgba(217,182,7,0.1);
}
.savoir-content {
  padding: 4rem 3rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--creme);
}
.savoir-list {
  list-style: none; margin-top: var(--space-xl);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.savoir-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.savoir-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(217,182,7,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.savoir-icon svg, .savoir-icon i { width: 18px; height: 18px; color: var(--or); }
.savoir-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem;
}
.savoir-item-desc {
  font-size: 0.85rem; line-height: 1.6;
  color: var(--pierre); font-weight: 300;
}

/* ══════════════════════════════════════
   CTA ARTISAN
   ══════════════════════════════════════ */
.artisan-cta {
  padding: var(--space-4xl) 2.5rem;
  background: linear-gradient(135deg, var(--terre) 0%, #1a0a00 100%);
  text-align: center;
}
.artisan-cta-inner { max-width: 600px; margin: 0 auto; }
.artisan-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300; color: var(--creme);
  margin-bottom: 1rem; line-height: 1.3;
}
.artisan-cta-title em { color: var(--or); }
.artisan-cta-desc {
  font-size: 0.95rem; color: rgba(245,237,227,0.7);
  max-width: 560px; margin: 0 auto var(--space-2xl);
  line-height: 1.7; font-weight: 300;
}
#cta-artisan-join {
  border: none !important;
  background: var(--or) !important;
  color: var(--terre) !important;
  padding: 0.85rem 2.5rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease-out-expo) !important;
}
#cta-artisan-join:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(217,182,7,0.35) !important;
}

/* ══════════════════════════════════════
   TÉMOIGNAGES
   ══════════════════════════════════════ */
.temoignages {
  padding: var(--space-4xl) 2.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: var(--space-2xl);
}
.temoignage {
  background: #fff; border-radius: var(--radius-md);
  padding: 2rem; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 260px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.temoignage:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.temoignage-stars {
  display: flex; gap: 2px; margin-bottom: 1rem;
}
.star-icon {
  width: 14px; height: 14px; fill: var(--or); color: var(--or);
  stroke: var(--or); stroke-width: 2;
}
.temoignage-text {
  font-size: 0.9rem; line-height: 1.7; color: var(--terre);
  font-weight: 300; font-style: italic;
}
.temoignage-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid rgba(38,15,1,0.06);
}
.temoignage-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.temoignage-name { font-size: 0.85rem; font-weight: 500; }
.temoignage-role { font-size: var(--text-xs); color: var(--pierre); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--terre); color: var(--creme);
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 600; margin-bottom: 0.75rem;
}
.footer-brand-logo span { color: var(--or); font-style: italic; }
.footer-or-line { width: 40px; height: 2px; background: var(--or); margin-bottom: 1rem; }
.footer-brand-desc {
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(245,237,227,0.6); max-width: 320px; font-weight: 300;
}
.footer-col-title {
  font-size: var(--text-xs); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-links a {
  color: rgba(245,237,227,0.5); text-decoration: none;
  font-size: var(--text-sm); font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--creme); }
.footer-bottom {
  max-width: var(--max-w); margin: 3rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(245,237,227,0.08);
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(245,237,227,0.3);
}

/* ══════════════════════════════════════
   MODAL CONNEXION
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(38,15,1,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(900px, 95vw); max-height: 90vh;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  transform: scale(0.95); transition: transform 0.3s var(--ease-out-expo);
}
.modal-overlay.open .modal-box { transform: none; }

.modal-visual {
  background: var(--terre); padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.modal-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(217,182,7,0.1), transparent 60%);
}
.modal-visual-content { position: relative; z-index: 1; }
.modal-visual-eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--or); margin-bottom: 1rem;
}
.modal-visual-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--creme); line-height: 1.2; margin-bottom: 1.5rem;
}
.modal-visual-title em { color: var(--or); }
.modal-visual-line { width: 40px; height: 2px; background: var(--or); margin-bottom: 1rem; }
.modal-visual-sub {
  font-size: 0.8rem; color: rgba(245,237,227,0.5); line-height: 1.6;
}

.modal-form-side {
  background: var(--creme); padding: 2.5rem;
  overflow-y: auto; position: relative;
  max-height: 90vh;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none; color: var(--terre);
  cursor: pointer; padding: 6px; border-radius: 50%;
  display: flex; transition: background 0.2s;
}
.modal-close:hover { background: rgba(38,15,1,0.05); }

.modal-tabs {
  display: flex; gap: 0; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(38,15,1,0.1);
}
.modal-tab {
  flex: 1; padding: 0.75rem; border: none; background: transparent;
  font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.06em; color: var(--pierre); cursor: pointer;
  border-bottom: 2px solid transparent; font-weight: 400;
  transition: all 0.2s;
}
.modal-tab.active { color: var(--terre); border-bottom-color: var(--or); font-weight: 500; }

.modal-panel { display: none; }
.modal-panel.active { display: block; }

.modal-form-intro { font-size: 0.85rem; color: var(--pierre); margin-bottom: 1.5rem; }
.modal-form-desc { font-size: 0.82rem; color: var(--pierre); margin-bottom: 1rem; line-height: 1.6; }

.modal-field { margin-bottom: 1rem; }
.modal-field label {
  font-size: var(--text-xs); color: var(--pierre);
  letter-spacing: 0.04em; display: block; margin-bottom: 0.35rem;
}
.modal-field input {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1px solid rgba(38,15,1,0.12); border-radius: var(--radius-sm);
  background: transparent; font-size: 0.85rem;
  font-family: 'Jost', sans-serif; color: var(--terre);
  outline: none; transition: border-color 0.2s;
  min-height: 44px;
}
.modal-field input:focus { border-color: var(--or); }
.modal-field input::placeholder { color: rgba(38,15,1,0.3); }

.modal-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.password-wrap { position: relative; }
.password-wrap input { padding-right: 2.5rem; }
.password-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: var(--pierre);
  cursor: pointer; padding: 4px; display: flex;
}

.modal-forgot {
  font-size: 0.75rem; color: var(--or); text-decoration: none;
  display: inline-block; margin-top: 0.35rem;
}
.modal-forgot:hover { text-decoration: underline; }

.modal-submit {
  width: 100%; padding: 0.75rem; background: var(--terre); color: var(--creme);
  border: none; border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.06em; cursor: pointer;
  transition: all 0.2s; margin-top: 0.5rem;
  min-height: 44px;
}
.modal-submit:hover { background: var(--noir); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.modal-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.25rem 0;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(38,15,1,0.1);
}
.modal-divider span { font-size: var(--text-xs); color: var(--pierre); }

.modal-socials { display: flex; gap: 0.5rem; }
.modal-social {
  flex: 1; padding: 0.65rem; border: 1px solid rgba(38,15,1,0.12);
  border-radius: var(--radius-sm); background: transparent;
  cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--terre); text-decoration: none;
  transition: background 0.2s; min-height: 44px;
}
.modal-social:hover { background: rgba(38,15,1,0.03); }

.modal-switch {
  font-size: var(--text-xs); color: var(--pierre);
  text-align: center; margin-top: 1.25rem;
}
.modal-switch a { color: var(--or); text-decoration: none; font-weight: 500; }
.modal-switch a:hover { text-decoration: underline; }

.modal-alert {
  background: rgba(217,182,7,0.08); border: 1px solid rgba(217,182,7,0.2);
  border-radius: var(--radius-sm); padding: 1rem; margin-top: 1rem;
}
.modal-alert p { font-size: 0.82rem; line-height: 1.5; margin-bottom: 0.5rem; }
.modal-alert-btn {
  background: var(--or); color: var(--terre); border: none;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  font-size: 0.75rem; cursor: pointer; font-family: 'Jost', sans-serif;
}

/* ── Password strength ── */
.pwd-strength { margin-top: 0.5rem; }
.pwd-bars { display: flex; gap: 3px; }
.pwd-bar {
  flex: 1; height: 3px; background: rgba(38,15,1,0.1);
  border-radius: 2px; transition: background 0.2s;
}
.pwd-bar.active { background: var(--rouge); }
.pwd-strength.medium .pwd-bar.active { background: var(--or); }
.pwd-strength.strong .pwd-bar.active { background: var(--vert); }
.pwd-strength.excellent .pwd-bar.active { background: var(--vert); }
.pwd-label { font-size: 0.7rem; color: var(--pierre); margin-top: 0.25rem; display: block; }

.pwd-rules {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem;
}
.pwd-rules span {
  font-size: 0.65rem; color: var(--pierre); padding: 0.15rem 0.4rem;
  border: 1px solid rgba(38,15,1,0.1); border-radius: 2rem;
  transition: all 0.2s;
}
.pwd-rules span.pass { color: var(--vert); border-color: var(--vert); background: rgba(46,80,64,0.05); }

.pwd-match-msg { font-size: 0.72rem; margin-top: 0.25rem; display: block; }
.pwd-match-msg.match { color: var(--vert); }
.pwd-match-msg.no-match { color: var(--rouge); }

/* ── Type selection ── */
.modal-type { margin: 1rem 0; }
.modal-type-label { font-size: var(--text-xs); color: var(--pierre); margin-bottom: 0.5rem; }
.modal-type-options { display: flex; gap: 0.75rem; }
.modal-type-opt {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; padding: 1rem; border: 1px solid rgba(38,15,1,0.1);
  border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s;
  font-size: 0.82rem;
}
.modal-type-opt input { display: none; }
.modal-type-opt.active { border-color: var(--or); background: rgba(217,182,7,0.05); }
.modal-type-icon { color: var(--pierre); }
.modal-type-opt.active .modal-type-icon { color: var(--or); }

.recaptcha-wrap { margin: 1rem 0; }

/* ── Modal text contrast boost ── */
.modal-form-intro,
.modal-form-desc { color: #4A3728; }
.modal-field label { color: #3D2B1F; font-weight: 500; }
.modal-field input::placeholder,
.modal-field textarea::placeholder { color: rgba(38,15,1,0.4); }
.modal-switch { color: #4A3728; }
.modal-divider span { color: #5C4333; }
.modal-tab { color: #5C4333; }
.pwd-label { color: #5C4333; }
.pwd-rules span { color: #5C4333; }
.modal-type-label { color: #4A3728; }
.modal-type-icon { color: #5C4333; }
.password-toggle { color: #5C4333; }
.modal-contact-desc { color: #4A3728; }
.modal-contact-success p { color: #4A3728; }
.contact-char-count { color: #5C4333; opacity: 0.8; }

/* ══════════════════════════════════════
   PRODUCT DETAIL MODAL
   ══════════════════════════════════════ */
.modal-product-box {
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(900px, 95vw); max-height: 90vh;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  background: var(--creme);
  transform: scale(0.95); transition: transform 0.3s var(--ease-out-expo);
  position: relative;
}
.modal-overlay.open .modal-product-box { transform: none; }
.modal-product-image {
  background: linear-gradient(135deg, rgba(38,15,1,0.03), rgba(38,15,1,0.08));
  display: flex; align-items: center; justify-content: center;
  min-height: 400px; color: var(--or);
}
.modal-product-info { padding: 2.5rem; overflow-y: auto; }
.product-category {
  font-size: var(--text-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--or); margin-bottom: 0.5rem;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem;
}
.product-desc { font-size: 0.85rem; line-height: 1.7; color: var(--pierre); margin-bottom: 1.5rem; }
.product-price { font-size: 1.4rem; font-weight: 500; }
.product-price-old { text-decoration: line-through; color: var(--pierre); font-size: 1rem; margin-left: 0.5rem; }
.product-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 1rem 0; font-size: 0.8rem; color: var(--pierre);
}
.modal-product-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.btn-fav {
  width: 44px; height: 44px; border: 1px solid rgba(38,15,1,0.12);
  border-radius: var(--radius-sm); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.btn-fav:hover { border-color: var(--rouge); }
.btn-fav.active svg { fill: var(--rouge); stroke: var(--rouge); }

/* ══════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════ */
.cart-drawer {
  position: fixed; top: 0; right: -400px; bottom: 0;
  width: min(400px, 90vw); background: var(--creme);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: var(--z-modal); display: flex; flex-direction: column;
  transition: right 0.35s var(--ease-out-expo);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(38,15,1,0.06);
}
.cart-drawer-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
}
.cart-drawer-close {
  background: transparent; border: none; color: var(--terre);
  cursor: pointer; padding: 6px; display: flex;
}
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: var(--pierre); font-size: 0.85rem; margin-top: 3rem; }

.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(38,15,1,0.06);
}
.cart-item-img {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: rgba(38,15,1,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--or); flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; }
.cart-item-price { font-size: 0.8rem; color: var(--pierre); }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem;
}
.cart-qty-minus, .cart-qty-plus {
  width: 24px; height: 24px; border: 1px solid rgba(38,15,1,0.1);
  border-radius: 50%; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--terre); transition: all 0.15s;
}
.cart-qty-minus:hover, .cart-qty-plus:hover { border-color: var(--terre); }
.cart-item-remove {
  background: transparent; border: none; color: var(--rouge);
  font-size: 0.72rem; cursor: pointer; margin-top: 0.35rem;
  font-family: 'Jost', sans-serif; padding: 0;
}
.cart-drawer-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid rgba(38,15,1,0.06);
}
.cart-total {
  display: flex; justify-content: space-between;
  margin-bottom: 1rem; font-size: 0.95rem; font-weight: 500;
}
.cart-checkout { width: 100%; justify-content: center; }

.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(38,15,1,0.4);
  backdrop-filter: blur(4px); z-index: calc(var(--z-modal) - 1);
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

/* ══════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terre); color: var(--creme);
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-scroll-top);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s var(--ease-out-expo);
}
.scroll-top.visible { opacity: 0.9; visibility: visible; transform: none; }
.scroll-top:hover { opacity: 1; transform: translateY(-2px); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
.hide-mobile { }
.show-mobile { display: none !important; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; margin-top: 9rem; }
  .hero-right { display: none; }
  .artisans-grid { grid-template-columns: 1fr 1fr; }
  .artisan-card.featured { grid-row: auto; min-height: 320px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .produits-grid { grid-template-columns: repeat(3, 1fr); }
  .savoir-section { grid-template-columns: 1fr; }
  .savoir-visual { min-height: 300px; }
  .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-visual { display: none; }
  .modal-product-box { grid-template-columns: 1fr; }
  .modal-product-image { min-height: 250px; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: flex !important; }
  nav { padding: 0.75rem 1.25rem; }
  nav.scrolled { padding: 0.6rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cat-bar { padding: 0.5rem 1rem; }
  .hero { padding: var(--space-xl) 1.25rem; }
  .artisans-section, .produits-section, .temoignages {
    padding: var(--space-3xl) 1.25rem;
  }
  .artisans-grid { grid-template-columns: 1fr; }
  .artisan-card.featured { min-height: 280px; }
  .process-section { padding: var(--space-3xl) 1.25rem; }
  .process-grid { grid-template-columns: 1fr; }
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: 1fr; }
  .savoir-content { padding: 2.5rem 1.5rem; }
  .artisan-cta { padding: var(--space-3xl) 1.25rem; }
  footer { padding: 3rem 1.25rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats { gap: 2rem; }
}

@media (max-width: 480px) {
  .produits-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-aos] { transition: none !important; transform: none !important; opacity: 1 !important; }
  .marquee-inner { animation: none; }
}

/* ── Performance: content-visibility ── */
.artisans-section, .produits-section, .process-section,
.savoir-section, .temoignages, footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ══════════════════════════════════════
   CONTACT MODAL
   ══════════════════════════════════════ */

.modal-contact-box {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 560px;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s var(--ease-out-expo, ease);
}
.modal-overlay.open .modal-contact-box { transform: none; }

.modal-contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(217, 182, 7, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-contact-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--terre);
  margin: 0 0 8px;
}

.modal-contact-desc {
  font-size: 14px;
  color: var(--pierre, #735439);
  line-height: 1.6;
  margin: 0;
}

.modal-contact-box .modal-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D6C8;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--terre);
  background: #FAFAF7;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23735439' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.modal-contact-box .modal-field select:focus {
  border-color: var(--or);
  outline: none;
}

.modal-contact-box .modal-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D6C8;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--terre);
  background: #FAFAF7;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
  line-height: 1.6;
}

.modal-contact-box .modal-field textarea:focus {
  border-color: var(--or);
  outline: none;
}

.contact-char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--pierre, #735439);
  margin-top: 4px;
  opacity: 0.6;
}

.modal-contact-box .modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.modal-contact-box .modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-contact-box .required {
  color: #C44;
  font-weight: 500;
}

/* Contact success state */
.modal-contact-success {
  text-align: center;
  padding: 20px 0;
}

.contact-success-icon {
  margin-bottom: 16px;
}

.modal-contact-success h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--terre);
  margin: 0 0 12px;
}

.modal-contact-success p {
  font-size: 14px;
  color: var(--pierre, #735439);
  line-height: 1.6;
  margin: 0 0 24px;
}

.modal-contact-success .modal-submit {
  max-width: 200px;
  margin: 0 auto;
}

/* Mobile responsive for contact modal */
@media (max-width: 600px) {
  .modal-contact-box {
    width: 95%;
    padding: 24px 20px;
    border-radius: 10px;
  }
  .modal-contact-title {
    font-size: 22px;
  }
  .modal-contact-box .modal-field-row {
    flex-direction: column;
    gap: 0;
  }
}


/* ══════════════════════════════════════════════════════
   PrenyPreny 3.0 — MODERN ENHANCEMENTS
   Refonte visuelle · April 2026
   ══════════════════════════════════════════════════════ */

/* ── 3.0 GENERATIVE HERO ── */
.hero--generative {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--terre);
  /* Override base .hero that constrains width/grid */
  margin-top: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  width: 100% !important;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(38,15,1,0.3) 0%, rgba(38,15,1,0.1) 40%, rgba(38,15,1,0.4) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(38,15,1,0.0) 0%, rgba(38,15,1,0.3) 70%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8.5rem 2.5rem var(--space-3xl);
}

.hero--generative .hero-eyebrow {
  color: var(--or);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero--generative .hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
  animation: eyebrowLine 2s ease-out forwards;
}

@keyframes eyebrowLine {
  from { width: 0; opacity: 0; }
  to { width: 32px; opacity: 1; }
}

.hero--generative .hero-title {
  color: var(--creme);
  -webkit-text-fill-color: var(--creme);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero--generative .hero-title em {
  background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero--generative .hero-desc {
  color: rgba(245,237,227,0.8);
}

.hero--generative .btn-primary {
  background: var(--or);
  color: var(--terre);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(217,182,7,0.25);
}

.hero--generative .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(217,182,7,0.4);
  background: var(--or-fonce);
}

.btn-ghost--light {
  color: var(--creme) !important;
  border-color: rgba(245,237,227,0.3) !important;
}

.btn-ghost--light:hover {
  border-color: rgba(245,237,227,0.6) !important;
  background: rgba(245,237,227,0.08) !important;
}

/* Hero image grid on dark background */
.hero--generative .hero-img {
  border: 1px solid rgba(217,182,7,0.15);
  backdrop-filter: blur(4px);
  transition: all 0.5s var(--ease-out-expo);
}

.hero--generative .hero-img:hover {
  border-color: rgba(217,182,7,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 0 30px rgba(217,182,7,0.08);
}

.hero-img-label {
  transform: translateY(4px);
  transition: all 0.4s var(--ease-out-expo);
}

.hero-img:hover .hero-img-label {
  transform: translateY(0);
  opacity: 1;
  color: var(--or-clair);
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,237,227,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(217,182,7,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 9rem;
  }
  .hero--generative .hero-right { display: none; }
  .hero--generative { min-height: 90vh; }
}

@media (max-width: 768px) {
  .hero-content-wrap {
    padding: 8rem 1.25rem var(--space-xl);
  }
  .hero--generative { min-height: 85vh; }
  .hero-scroll-hint { display: none; }
}

/* ── 3.0 NAV & CAT BAR ON DARK HERO ── */
/* Before scroll: nav sits on the dark generative hero */
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-logo {
  color: var(--creme);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-logo span {
  color: var(--or);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-links a {
  color: rgba(245,237,227,0.85);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-links a:hover {
  color: var(--or);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-icon-btn {
  color: rgba(245,237,227,0.85);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-icon-btn:hover {
  background: rgba(245,237,227,0.1);
  color: var(--creme);
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-cta {
  background: var(--or) !important;
  color: var(--terre) !important;
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-cta:hover {
  background: #D4B87A !important;
  box-shadow:
    0 8px 25px rgba(200,169,110,0.35),
    0 0 20px rgba(200,169,110,0.15) !important;
}
.site-header:not(.scrolled-past-hero) nav:not(.scrolled) .nav-hamburger span {
  background: var(--creme);
}

/* Category bar on dark hero */
.site-header:not(.scrolled-past-hero) .cat-bar {
  background: rgba(38,15,1,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(217,182,7,0.1);
  border-top-color: rgba(217,182,7,0.05);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-item {
  color: rgba(245,237,227,0.7);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-item:hover {
  background: rgba(245,237,227,0.08);
  color: var(--creme);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-item.active {
  background: var(--or);
  color: var(--terre);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-icon-lucide {
  color: rgba(245,237,227,0.6);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-item:hover .cat-icon-lucide {
  color: var(--creme);
}
.site-header:not(.scrolled-past-hero) .cat-bar .cat-item.active .cat-icon-lucide {
  color: var(--terre);
}

/* ── 3.0 STATS ENHANCEMENTS ── */
.stats {
  position: relative;
  background: linear-gradient(180deg, var(--creme) 0%, rgba(217,182,7,0.03) 50%, var(--creme) 100%);
}

.stat {
  position: relative;
  padding: 1.5rem 2.5rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--or);
  transition: transform 0.3s var(--ease-out-expo);
}

.stat:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.stat-number {
  background: linear-gradient(135deg, var(--terre) 30%, var(--or-fonce) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.2rem;
}

/* Separators between stats */
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(217,182,7,0.3), transparent);
}

/* ── 3.0 MARQUEE ENHANCEMENTS ── */
.marquee-band {
  position: relative;
  overflow: hidden;
}

.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--terre), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(-90deg, var(--terre), transparent);
}

/* ── 3.0 ARTISAN CARD SHIMMER ── */
.artisan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(217,182,7,0.06) 50%,
    transparent 100%
  );
  z-index: 2;
  transition: left 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.artisan-card:hover::before {
  left: 100%;
}

.artisan-card {
  border: 1px solid rgba(217,182,7,0.08);
}

.artisan-card:hover {
  border-color: rgba(217,182,7,0.2);
}

.artisan-metier {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.artisan-metier::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--or);
  transition: width 0.3s var(--ease-out-expo);
}

.artisan-card:hover .artisan-metier::after {
  width: 100%;
}

/* ── 3.0 PROCESS STEPS ENHANCEMENTS ── */
.process-step {
  position: relative;
  border-top: none;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(245,237,227,0.03);
  border: 1px solid rgba(217,182,7,0.08);
  transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover {
  transform: translateY(-6px) !important;
  background: rgba(245,237,227,0.06);
  border-color: rgba(217,182,7,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.process-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1 !important;
}

/* ── 3.0 PRODUCT CARD ENHANCEMENTS ── */
.produit-card {
  border: 1px solid rgba(38,15,1,0.04);
  position: relative;
  overflow: hidden;
}

.produit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-fonce), var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 5;
}

.produit-card:hover::after {
  transform: scaleX(1);
}

.produit-card:hover {
  border-color: rgba(217,182,7,0.15);
}

.produit-add {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.produit-add::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.produit-add:hover::before {
  left: 100%;
}

/* ── 3.0 SAVOIR-FAIRE ENHANCEMENTS ── */
.savoir-circle {
  animation: circleFloat 12s ease-in-out infinite;
}

.savoir-circle--1 { animation-delay: 0s; }
.savoir-circle--2 { animation-delay: -4s; }
.savoir-circle--3 { animation-delay: -8s; }

@keyframes circleFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-48%, -52%) scale(1.05); }
  66% { transform: translate(-52%, -48%) scale(0.95); }
}

.savoir-visual-text {
  animation: savoirGlow 4s ease-in-out infinite;
}

@keyframes savoirGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(217,182,7,0.1); }
  50% { text-shadow: 0 0 100px rgba(217,182,7,0.2), 0 0 40px rgba(217,182,7,0.1); }
}

.savoir-icon {
  transition: all 0.3s var(--ease-out-expo);
  border: 1px solid rgba(217,182,7,0.1);
}

.savoir-list li:hover .savoir-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(217,182,7,0.15);
  border-color: rgba(217,182,7,0.3);
  box-shadow: 0 4px 16px rgba(217,182,7,0.15);
}

.savoir-item-title {
  transition: color 0.3s;
}

.savoir-list li:hover .savoir-item-title {
  color: var(--or-fonce);
}

/* ── 3.0 CTA ARTISAN ENHANCEMENTS ── */
.artisan-cta {
  position: relative;
  overflow: hidden;
}

.artisan-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(217,182,7,0.05), transparent 50%);
  animation: ctaOrb 15s linear infinite;
  pointer-events: none;
}

@keyframes ctaOrb {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.artisan-cta-inner {
  position: relative;
  z-index: 1;
}

/* ── 3.0 TESTIMONIAL ENHANCEMENTS ── */
.temoignage {
  position: relative;
  border: 1px solid rgba(38,15,1,0.04);
  overflow: hidden;
}

.temoignage::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(217,182,7,0.08);
  pointer-events: none;
  transition: color 0.3s;
}

.temoignage:hover::before {
  color: rgba(217,182,7,0.15);
}

.temoignage:hover {
  border-color: rgba(217,182,7,0.12);
}

.temoignage-stars {
  position: relative;
}

.temoignage-stars::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.4s var(--ease-out-expo);
}

.temoignage:hover .temoignage-stars::after {
  width: 60px;
}

.temoignage-avatar {
  transition: transform 0.3s var(--ease-out-expo);
}

.temoignage:hover .temoignage-avatar {
  transform: scale(1.1);
}

/* ── 3.0 NEWSLETTER SECTION ── */
.newsletter-section {
  padding: var(--space-4xl) 2.5rem;
  background: linear-gradient(135deg, rgba(217,182,7,0.04) 0%, rgba(245,237,227,1) 50%, rgba(139,111,94,0.04) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,182,7,0.3), transparent);
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,182,7,0.3), transparent);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(217,182,7,0.1);
  border: 1px solid rgba(217,182,7,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  animation: newsletterFloat 3s ease-in-out infinite;
}

@keyframes newsletterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.newsletter-icon svg,
.newsletter-icon i {
  width: 24px;
  height: 24px;
  color: var(--or);
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--terre);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.newsletter-title em {
  font-style: italic;
  color: var(--or-fonce);
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--pierre);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(38,15,1,0.12);
  border-radius: var(--radius-full);
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--terre);
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
}

.newsletter-input:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(217,182,7,0.1);
}

.newsletter-input::placeholder {
  color: rgba(38,15,1,0.3);
}

.newsletter-submit {
  padding: 0.85rem 1.75rem;
  background: var(--terre);
  color: var(--creme);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38,15,1,0.2);
  background: var(--noir);
}

.newsletter-privacy {
  font-size: 0.72rem;
  color: var(--pierre);
  margin-top: var(--space-md);
  opacity: 0.6;
}

.newsletter-privacy a {
  color: var(--or);
  text-decoration: none;
}

.newsletter-privacy a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-submit {
    justify-content: center;
  }
}

/* ── 3.0 FOOTER ENHANCEMENTS ── */
footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-fonce), var(--or));
}

.footer-brand-logo {
  position: relative;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,227,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,227,0.5);
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.footer-social-link:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(217,182,7,0.15);
}

.footer-social-link svg,
.footer-social-link i {
  width: 16px;
  height: 16px;
}

.footer-links a {
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s var(--ease-out-expo);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(217,182,7,0.2);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  color: rgba(245,237,227,0.4);
  letter-spacing: 0.06em;
}

.footer-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vert);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── 3.0 GLOBAL BUTTON ENHANCEMENTS ── */
.btn-primary,
.btn-gold,
.btn-ghost {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after,
.btn-gold:hover::after {
  width: 300px;
  height: 300px;
}

/* ── 3.0 SECTION TITLE ENHANCEMENTS ── */
.section-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--or);
  flex-shrink: 0;
}

.section-eyebrow--light::before {
  background: var(--or);
}

/* ── 3.0 SCROLL PROGRESS ENHANCEMENT ── */
.scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-fonce), var(--or));
  box-shadow: 0 0 10px rgba(217,182,7,0.3);
}

/* ── 3.0 NAV ENHANCEMENTS ── */
nav.scrolled {
  box-shadow: 0 4px 30px rgba(38,15,1,0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--terre) 0%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Liseré doré lumineux autour du bouton */
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #C8A96E, #D4B87A 40%, transparent 60%);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Effet shimmer doré qui traverse le bouton */
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(200,169,110,0.15) 40%,
    rgba(200,169,110,0.3) 50%,
    rgba(200,169,110,0.15) 60%,
    transparent 80%
  );
  transform: skewX(-20deg);
  transition: none;
  z-index: 1;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(200,169,110,0.25),
    0 0 20px rgba(200,169,110,0.1);
  background: linear-gradient(135deg, #3A2818 0%, #1a0a00 100%);
  letter-spacing: 0.15em;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta:hover::after {
  left: 120%;
  transition: left 0.7s ease;
}

.nav-cta:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 4px 12px rgba(200,169,110,0.2);
}

/* ── 3.0 PAGE LOADER ENHANCEMENT ── */
.page-loader {
  background: linear-gradient(135deg, var(--terre) 0%, #0a0400 100%);
}

.page-loader-logo {
  font-size: 2.8rem;
  letter-spacing: 0.06em;
}

/* ── 3.0 SMOOTH REVEAL ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── 3.0 RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 768px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .stat + .stat::before {
    display: none;
  }

  .newsletter-section {
    padding: var(--space-3xl) 1.25rem;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .stat + .stat::before {
    display: none;
  }
}

/* ── User Panel ── */
.up-link:hover { background: rgba(200,169,110,0.08) !important; }
#up-save-btn:hover { opacity: 0.85; }
#up-save-btn:disabled { opacity: 0.5; cursor: not-allowed; }
#user-panel input:focus { border-color: rgba(200,169,110,0.4) !important; }
#btn-logout:hover { background: rgba(192,96,96,0.08) !important; }
#mobile-user-section { flex-direction: column; gap: 0.5rem; }
#mobile-user-section .mobile-menu-cta { width: 100%; }