/* YOMBAL MARCHE - Ultra Design System */

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

:root {
  --cream:   #f5ede0;
  --cream2:  #ede3d0;
  --green:   #1a3d2b;
  --green2:  #2a5c40;
  --green3:  #3d7a55;
  --green-l: #e8f0eb;
  --terra:   #c8503a;
  --terra2:  #e06b52;
  --gold:    #c8973a;
  --gold2:   #e8b050;
  --white:   #fffcf7;
  --text:    #1a2418;
  --text2:   rgba(26,61,43,0.55);
  --shadow:  0 24px 80px rgba(26,61,43,0.14);
  --r-xl:    28px;
  --r-lg:    20px;
  --r-md:    14px;
  --r-pill:  100px;
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

body {
  cursor: auto;
}

a, button, [role="button"], .nav-logo, .nav-links a, .btn-nav,
.btn-primary, .btn-outline, .btn-gold, .float-card, .svc-card,
.c-email, .footer-links a {
  cursor: pointer;
}

/* Ancien curseur custom désactivé — pointeur système */
#cursor-dot,
#cursor-ring {
  display: none !important;
  visibility: hidden;
}

#grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grainShift 0.4s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  25% { background-position: -20px -10px; }
  50% { background-position: 10px 20px; }
  75% { background-position: -5px 15px; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  z-index: 600;
  pointer-events: none;
}

.nav,
.site-header,
.header-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h, 72px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 0 56px;
  background: rgba(245, 237, 224, 0.92);
  border-bottom: 1px solid rgba(26,61,43,0.08);
}

.site-header-bar {
  display: contents;
}

.header-shell .nav-logo {
  flex-shrink: 0;
}

.header-shell .nav-links {
  flex: 1;
  justify-content: center;
}

.header-shell .nav-actions {
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .nav,
  .site-header,
  .header-shell {
    transform: translateY(calc(-1 * var(--nav-h, 72px)));
    animation: navSlideIn 0.8s cubic-bezier(.23,1,.32,1) 0.2s forwards;
  }
}
@keyframes navSlideIn {
  to { transform: translateY(0); }
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.92;
  transform: scale(1.02);
}
@media (pointer: fine) {
  .nav-logo { cursor: pointer; }
}
@media (max-width: 900px) {
  .nav-logo-img {
    height: 50px;
    max-width: min(190px, 52vw);
  }
}

.logo-mark {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1), border-radius 0.4s;
  position: relative; overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}
.logo-mark:hover { transform: rotate(12deg) scale(1.08); border-radius: 50%; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700;
  color: var(--green); line-height: 1;
}
.logo-text small {
  font-size: 10px; font-weight: 400;
  display: block; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green3); margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: none;
  border-radius: 12px;
  background: rgba(26,61,43,0.08);
  color: var(--green);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 36px);
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.3s; position: relative;
}
@media (pointer: fine) {
  .nav-links a { cursor: pointer; }
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(.23,1,.32,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav {
  padding: 11px 26px;
  background: var(--terra);
  color: white; border: none;
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
  position: relative; overflow: hidden;
}
@media (pointer: fine) {
  .btn-nav { cursor: pointer; }
}
.btn-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-nav:hover { background: var(--terra2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,80,58,0.38); }
.btn-nav:hover::before { opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-nav-secondary {
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-radius: var(--r-pill);
  border: 1px solid rgba(26,61,43,0.22);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-nav-secondary:hover {
  border-color: var(--green);
  background: rgba(26,61,43,0.06);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 56px 80px;
  position: relative; overflow: hidden; z-index: 2;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: blobAppear 1.5s ease forwards, blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,61,43,0.15), transparent);
  right: -100px; top: -100px;
  animation-delay: 0.3s, 1.8s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,80,58,0.1), transparent);
  right: 20%; bottom: 10%;
  animation-delay: 0.6s, 2.5s;
  animation-duration: 1.5s, 10s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,151,58,0.12), transparent);
  left: 40%; top: 20%;
  animation-delay: 0.9s, 3s;
  animation-duration: 1.5s, 12s;
}
@keyframes blobAppear { to { opacity: 1; } }
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--gold), var(--terra), var(--green));
  animation: stripeGrow 1.2s cubic-bezier(.23,1,.32,1) 0.5s both;
  transform-origin: top;
}
@keyframes stripeGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; width: 100%; margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--terra); font-weight: 700;
  margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.7s ease 0.5s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900; line-height: 1.0;
  color: var(--green); margin-bottom: 28px;
}
.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: wordReveal 0.7s cubic-bezier(.23,1,.32,1) forwards;
}
.hero-title .italic {
  font-style: italic; font-weight: 400;
  color: var(--terra);
}

.hero-desc {
  font-size: 16px; color: var(--text2);
  line-height: 1.85; max-width: 480px;
  margin-bottom: 48px;
  opacity: 0; animation: fadeSlideUp 0.8s ease 1.1s forwards;
}
.hero-desc strong { color: var(--green); font-weight: 600; }

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s ease 1.3s forwards;
}

.btn-primary {
  padding: 17px 38px;
  background: var(--green);
  color: white; border: none;
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  position: relative; overflow: hidden;
}
@media (pointer: fine) {
  .btn-primary { cursor: pointer; }
}
.btn-primary .btn-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(26,61,43,0.38); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-primary:active::after { width: 300px; height: 300px; }

.btn-outline {
  padding: 16px 38px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(26,61,43,0.2);
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
@media (pointer: fine) {
  .btn-outline { cursor: pointer; }
}
.btn-outline:hover { border-color: var(--green); background: rgba(26,61,43,0.04); transform: translateY(-3px); }

/* Ultra Design System â€” partie 2 / 3 */

.hero-right {
  position: relative; height: 480px;
  opacity: 0;
  animation: heroRightReveal 1s cubic-bezier(.23,1,.32,1) 1s forwards;
}
@keyframes heroRightReveal {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.float-card {
  position: absolute;
  background: white;
  border-radius: var(--r-xl);
  padding: 24px 30px;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(.23,1,.32,1);
  border: 1px solid rgba(26,61,43,0.06);
}
@media (pointer: fine) {
  .float-card { cursor: pointer; }
}
.float-card:hover { transform: translateY(-10px) scale(1.03) rotate(-1deg); box-shadow: 0 40px 100px rgba(26,61,43,0.2); }

.fc-main {
  top: 60px; right: 0;
  width: 230px;
  animation: floatA 6s ease-in-out infinite alternate 2s;
}
.fc-cosm {
  bottom: 60px; right: 60px;
  width: 210px;
  animation: floatB 7s ease-in-out infinite alternate 2.5s;
}
.fc-stat {
  top: 20px; left: 0;
  width: 160px;
  animation: floatC 5s ease-in-out infinite alternate 3s;
}

@keyframes floatA { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-18px) rotate(1.5deg); } }
@keyframes floatB { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-12px) rotate(-2deg); } }
@keyframes floatC { from { transform: translateY(0) rotate(-1deg); } to { transform: translateY(-20px) rotate(1deg); } }

.fc-tag {
  font-size: 10px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 8px;
}
.fc-tag.alim { color: var(--gold); }
.fc-tag.cosm { color: var(--terra); }
.fc-tag.stat { color: var(--green3); }
.fc-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: var(--green);
}
.fc-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900; color: var(--green);
  line-height: 1;
}
.fc-label { font-size: 11px; color: var(--text2); margin-top: 4px; }

.fc-icon-row { display: flex; gap: 8px; margin-top: 14px; }
.fc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
.fc-dot:nth-child(1) { background: var(--gold); }
.fc-dot:nth-child(2) { background: var(--terra); animation-delay: 0.3s; }
.fc-dot:nth-child(3) { background: var(--green3); animation-delay: 0.6s; }
@keyframes dotPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); } }

.scroll-hint {
  position: absolute; bottom: 48px; left: 56px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeSlideUp 0.6s ease 2s forwards;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 1.5px solid rgba(26,61,43,0.25);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--terra);
  border-radius: 4px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  80%      { transform: translateY(12px); opacity: 0; }
}
.scroll-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(26,61,43,0.35);
}

.strip {
  background: var(--green);
  padding: 28px 56px;
  display: flex; align-items: center;
  gap: 0; overflow: hidden;
  position: relative; z-index: 2;
}
.strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 80px
  );
}
.strip-inner { overflow: hidden; width: 100%; }
.strip-ticker {
  display: flex; gap: 64px;
  animation: tickerScroll 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item {
  display: inline-flex; align-items: center; gap: 12px;
}
.strip-ico { font-size: 18px; opacity: 0.85; }
.strip-txt {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8); letter-spacing: 1px;
}
.strip-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.section {
  padding: 100px 56px;
  position: relative; z-index: 2;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--terra); font-weight: 700; margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--terra); border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.08;
  color: var(--green); margin-bottom: 16px;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 16px; color: var(--text2);
  max-width: 520px; line-height: 1.8;
  margin-bottom: 64px;
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.23,1,.32,1),
              transform 0.8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 1100px;
}

.svc-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 32px 32px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(26,61,43,0.06);
  box-shadow: 0 4px 24px rgba(26,61,43,0.06);
  transition: all 0.5s cubic-bezier(.23,1,.32,1);
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (pointer: fine) {
  .svc-card { cursor: pointer; }
}
.svc-card::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--cream);
  transition: all 0.6s cubic-bezier(.23,1,.32,1);
  z-index: 0;
}
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(26,61,43,0.16);
}
.svc-card:hover::before { transform: scale(4); background: rgba(26,61,43,0.025); }
.svc-card:hover::after  { transform: scaleX(1); }

.svc-ico-wrap {
  width: 56px; height: 56px;
  background: var(--green-l);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
}
.svc-card:hover .svc-ico-wrap { background: var(--green); transform: rotate(-8deg) scale(1.1); }

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--green);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.svc-desc {
  font-size: 14px; color: var(--text2);
  line-height: 1.75; position: relative; z-index: 1;
}
.svc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--terra);
  transition: gap 0.3s; position: relative; z-index: 1;
}
.svc-card:hover .svc-arrow { gap: 12px; }

.boutique-band {
  margin-top: 56px; max-width: 1100px;
  background: var(--green);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.boutique-band::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.boutique-band::after {
  content: '';
  position: absolute; right: 80px; bottom: -150px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(200,151,58,0.12);
}
.bb-left { position: relative; z-index: 1; }
.bb-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700; color: white;
  margin-bottom: 10px;
}
.bb-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.bb-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.bb-tag {
  padding: 7px 18px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.3s;
}
.bb-tag:hover { background: rgba(255,255,255,0.18); color: white; }
.btn-gold {
  position: relative; z-index: 1;
  padding: 18px 40px;
  background: var(--gold);
  color: white; border: none; border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (pointer: fine) {
  .btn-gold { cursor: pointer; }
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(200,151,58,0.5); }

/* Ultra Design System â€” partie 3 / 3 + intÃ©grations Flask */

.site-main {
  position: relative;
  z-index: 2;
  display: block;
}
.site-main:not(.site-main--home) {
  padding-top: var(--nav-h, 72px);
}

.page-wrapper {
  opacity: 0; transform: translateY(16px);
  animation: pageIn 0.6s cubic-bezier(.23,1,.32,1) 0.1s forwards;
}
@keyframes pageIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.apropos-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 72px; align-items: start; max-width: 1060px;
}
.apropos-p {
  font-size: 16px; color: var(--text2);
  line-height: 1.9; margin-bottom: 22px;
}
.apropos-p strong { color: var(--green); font-weight: 600; }
.apropos-p.note { font-size: 13px; color: rgba(26,61,43,0.3); font-style: italic; }

.aside-box {
  background: white; border-radius: var(--r-xl); padding: 40px 36px;
  box-shadow: var(--shadow); border: 1px solid rgba(26,61,43,0.06);
  position: sticky; top: 100px;
}
.aside-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--green);
  margin-bottom: 28px;
}
.aside-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(26,61,43,0.06);
  font-size: 14px; color: rgba(26,61,43,0.7);
  transition: color 0.3s;
}
.aside-item:last-child { border-bottom: none; }
.aside-item:hover { color: var(--green); }
.aside-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: background 0.3s;
}
.aside-item:hover .aside-ico { background: rgba(200,80,58,0.1); }

.contact-intro {
  font-size: 17px; color: var(--text2);
  line-height: 1.8; max-width: 600px; margin-bottom: 56px;
}
.contact-intro strong { color: var(--green); font-weight: 600; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 900px;
}
.c-card {
  background: white; border-radius: var(--r-xl); padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(26,61,43,0.06);
  border: 1px solid rgba(26,61,43,0.06);
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  position: relative; overflow: hidden;
}
.c-card::before {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--cream); transition: all 0.5s;
}
.c-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(26,61,43,0.12); }
.c-card:hover::before { transform: scale(2.5); }
.c-card.full { grid-column: 1 / -1; }

.c-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--green);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.c-day {
  font-size: 10px; letter-spacing: 3px; font-weight: 700;
  color: var(--terra); text-transform: uppercase;
  margin-top: 18px; margin-bottom: 5px;
}
.c-day:first-of-type { margin-top: 0; }
.c-hours {
  font-size: 16px; color: rgba(26,61,43,0.7);
  font-weight: 500; position: relative; z-index: 1;
}
.c-addr {
  font-size: 15px; color: rgba(26,61,43,0.65);
  line-height: 2; position: relative; z-index: 1;
}
.c-note {
  font-size: 12px; color: rgba(26,61,43,0.3);
  font-style: italic; margin-top: 14px;
  position: relative; z-index: 1;
}
.c-email {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 16px; font-weight: 600;
  color: var(--terra); text-decoration: none;
  position: relative; z-index: 1;
  transition: gap 0.3s;
}
@media (pointer: fine) {
  .c-email { cursor: pointer; }
}
.c-email:hover { gap: 14px; }
.c-msg {
  font-size: 15px; color: rgba(26,61,43,0.6);
  line-height: 1.85; position: relative; z-index: 1;
}

.payment-intro-link {
  color: var(--terra);
  font-weight: 600;
  text-underline-offset: 3px;
}
.payment-intro-link:hover {
  color: var(--terra2);
}

.payment-section {
  scroll-margin-top: 104px;
  margin-top: 56px;
  max-width: 900px;
  padding: 44px 40px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.08);
  box-shadow: 0 8px 36px rgba(26,61,43,0.08);
  outline: 2px solid transparent;
  transition: outline-color 0.4s ease, box-shadow 0.4s ease;
}

.payment-section.payment-highlight {
  animation: paymentGlow 2.4s ease-out;
}

@keyframes paymentGlow {
  0% {
    outline-color: rgba(200, 80, 58, 0.55);
    box-shadow: 0 12px 48px rgba(200, 80, 58, 0.2);
  }
  45% {
    outline-color: rgba(200, 151, 58, 0.35);
  }
  100% {
    outline-color: transparent;
    box-shadow: 0 8px 36px rgba(26,61,43,0.08);
  }
}

.payment-eyebrow {
  margin-bottom: 12px;
}

.payment-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.payment-lead {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.payment-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-method {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: var(--green-l);
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,61,43,0.06);
}

.payment-method-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.payment-method-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.payment-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(26,61,43,0.45);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .payment-section.payment-highlight {
    animation: none;
    outline: 2px solid rgba(200, 80, 58, 0.35);
  }
}

.site-footer {
  background: var(--green);
  padding: 60px 56px 36px;
  position: relative; z-index: 2; overflow: hidden;
}
.site-footer::before {
  content: 'YOMBAL';
  position: absolute; right: -40px; bottom: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 200px; font-weight: 900;
  color: rgba(255,255,255,0.025);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: white; margin-bottom: 8px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}
.footer-logo-img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.35); max-width: 440px; line-height: 1.7;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45);
  text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s;
}
@media (pointer: fine) {
  .footer-links a { cursor: pointer; }
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px; }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.footer-diaspora {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-diaspora-initials {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.footer-diaspora-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 380px;
}
.footer-diaspora-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.footer-diaspora-monogram {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.footer-diaspora-credit {
  margin: 4px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
}
.footer-diaspora-credit strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.52);
}

/* Page services dÃ©tail */
.services-detail {
  scroll-margin-top: 96px;
  max-width: 1100px;
  margin-top: 48px;
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 44px;
  border: 1px solid rgba(26,61,43,0.06);
  box-shadow: 0 4px 24px rgba(26,61,43,0.06);
}
.services-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--green);
  margin-bottom: 20px;
}
.services-detail ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text2);
  line-height: 1.9;
}
.services-detail li { margin-bottom: 8px; }
.service-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-commande {
  padding: 14px 28px;
  background: var(--terra);
  color: white;
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.btn-commande:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,80,58,0.38);
}

/* Citation accueil */
.quote-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px;
  background: white;
  border-radius: var(--r-xl);
  border-left: 5px solid var(--terra);
  box-shadow: var(--shadow);
}
.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.55;
  margin: 0 0 16px;
}
.quote-block cite {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text2);
}

/* Toast (commande) */
.toast-root {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: min(340px, calc(100vw - 2rem));
}
.toast {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--green), var(--green2));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(26,61,43,0.35);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(.23,1,.32,1), transform 0.45s cubic-bezier(.23,1,.32,1);
}
.toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Boutique & panier */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.shop-filter label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  margin-right: 10px;
}
.shop-filter select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,61,43,0.15);
  background: var(--white);
  color: var(--green);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), box-shadow 0.35s;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.shop-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.shop-card-img span {
  font-size: 52px;
}
.shop-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.shop-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--green);
  margin: 0;
  line-height: 1.25;
}
.shop-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
}
.shop-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}
.shop-card-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.shop-empty {
  padding: 48px;
  text-align: center;
  color: var(--text2);
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px dashed rgba(26,61,43,0.2);
}

a.shop-filter {
  display: inline;
  color: var(--terra);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
a.shop-filter:hover {
  border-bottom-color: rgba(200, 80, 58, 0.35);
}
a.shop-filter.is-active {
  border-bottom-color: var(--terra);
}

/* Détail produit */
.product-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  margin-bottom: 28px;
  color: var(--text2);
}
.product-breadcrumb a {
  color: var(--terra);
  font-weight: 700;
  text-decoration: none;
}
.product-breadcrumb a:hover {
  text-decoration: underline;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.product-detail-visual {
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--cream), var(--sand));
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.product-detail-visual span { font-size: 96px; }
.product-detail-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--green);
  margin: 0 0 12px;
}
.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--terra);
  margin-bottom: 12px;
}
.product-detail-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}
.product-detail-meta {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}
.detail-block {
  padding: 18px 22px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,61,43,0.08);
}
.detail-block h3 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.detail-block p,
.detail-block ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.detail-block ul {
  padding-left: 1.15rem;
}

/* Panier & checkout */
.cart-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.1);
  background: var(--white);
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
}
.cart-table th,
.cart-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(26,61,43,0.06);
}
.cart-table th {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
}
.cart-empty {
  padding: 48px;
  text-align: center;
  color: var(--text2);
}
.num-input {
  width: 72px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,61,43,0.2);
  font-size: 14px;
}
.cart-actions-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.cart-total {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}

/* Panier — lignes produit */
.section--cart {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.cart-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26, 61, 43, 0.1);
  box-shadow: var(--shadow-sm);
  align-items: start;
}
.cart-item-media {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--cream), var(--sand));
}
.cart-item-info {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.cart-item-qty-wrap {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-item-subtotal-wrap {
  grid-column: 1 / -1;
  grid-row: 4;
}
.cart-item-remove-form {
  grid-column: 1 / -1;
  grid-row: 5;
}
.cart-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s;
}
.cart-item-title:hover {
  color: var(--terra);
}
.cart-item-unit-line {
  margin: 8px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text2);
}
.cart-item-price-unit {
  font-weight: 700;
  color: var(--text);
}
.cart-item-unit-suffix {
  font-weight: 500;
  opacity: 0.85;
}
.cart-item-qty-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
}
.cart-item-qty-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cart-item-qty-input {
  width: 72px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26, 61, 43, 0.22);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
}
.cart-item-qty-input:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(200, 80, 58, 0.15);
}
.cart-item-update {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(26, 61, 43, 0.22);
  background: rgba(26, 61, 43, 0.05);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.cart-item-update:hover {
  background: rgba(26, 61, 43, 0.09);
  border-color: var(--green);
}
.cart-item-subtotal-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}
.cart-item-sub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
}
.cart-item-sub-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--terra);
}
.cart-item-remove-form {
  margin: 0;
}
.cart-item-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: #c04a3a;
}
.cart-item-remove-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(192, 74, 58, 0.12);
  color: #c04a3a;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

@media (min-width: 901px) {
  body::before {
    display: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .header-shell .nav-links {
    display: flex !important;
    position: static;
    flex: 1;
    justify-content: center;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

@media (min-width: 900px) {
  .cart-item {
    grid-template-columns: 52px minmax(160px, 1fr) minmax(190px, 220px) 120px auto;
    gap: 18px 22px;
    align-items: center;
  }
  .cart-item-media {
    grid-column: 1;
    grid-row: 1;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
  .cart-item-info {
    grid-column: 2;
    grid-row: 1;
  }
  .cart-item-qty-wrap {
    grid-column: 3;
    grid-row: 1;
    padding-top: 0;
    border-top: none;
  }
  .cart-item-subtotal-wrap {
    grid-column: 4;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-top: 0;
  }
  .cart-item-remove-form {
    grid-column: 5;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }
}

.cart-summary {
  margin-top: 28px;
  padding: 28px 28px 26px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26, 61, 43, 0.12);
  box-shadow: var(--shadow);
}
.cart-summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(26, 61, 43, 0.08);
}
.cart-summary-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.cart-summary-hint {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text2);
}
.cart-summary-total {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--terra);
}
.cart-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cart-summary-actions .cart-login-hint {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.5;
}

.admin-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.admin-filter-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26, 61, 43, 0.15);
  background: var(--white);
  color: var(--green);
  min-width: 200px;
}
.admin-status-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.admin-code {
  font-size: 11px;
  font-weight: 600;
}
.admin-table tbody td {
  vertical-align: middle;
}

.checkout-form .field-group {
  margin-bottom: 18px;
}
.checkout-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 8px;
}
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,61,43,0.15);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}

/* Auth */
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.1);
  box-shadow: var(--shadow);
}
.auth-card h1 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  margin: 0 0 8px;
}
.auth-card .intro {
  margin: 0 0 24px;
  color: var(--text2);
  font-size: 0.95rem;
}
.field-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,61,43,0.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.field-error {
  color: #c04a3a;
  font-size: 0.85rem;
  margin-top: 6px;
}
.auth-alt {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--text2);
}

.section--narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.auth-form .field {
  margin-bottom: 18px;
}
.auth-form .field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 8px;
}
.auth-form .field-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,61,43,0.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.auth-form .field-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--text2);
  margin-top: 6px;
}
.auth-form .field-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.auth-submit {
  width: 100%;
  justify-content: center;
}

/* Page paiement — Stripe (formulaire carte intégré) */
.payment-stripe-panel {
  max-width: 560px;
  margin: 0 auto 36px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.12);
  box-shadow: var(--shadow-sm);
}
.payment-stripe-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text2);
  margin: 0 0 22px;
}
#payment-element {
  margin-bottom: 20px;
  min-height: 120px;
}
.payment-stripe-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Paiement — sélection type marketplace (liste + détail) */
.payment-mp {
  max-width: 720px;
  margin: 0 auto;
}
.payment-mp-head {
  margin-bottom: 22px;
  text-align: center;
}
.payment-mp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--green);
  margin: 0 0 8px;
}
.payment-mp-subtitle {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.5;
}
.payment-mp-total-bar {
  display: inline-block;
  margin: 0;
  padding: 10px 22px;
  background: rgba(26, 61, 43, 0.07);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  color: var(--green);
}
.payment-mp-total-bar strong {
  font-size: 1.1rem;
}
.payment-mp-shell {
  border-radius: var(--r-xl);
  border: 1px solid rgba(26, 61, 43, 0.12);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.payment-mp-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.payment-mp-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 16px 18px;
  margin: 0;
  border-bottom: 1px solid rgba(26, 61, 43, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.payment-mp-row:last-child {
  border-bottom: none;
}
.payment-mp-row:hover:not(.payment-mp-row--muted) {
  background: rgba(26, 61, 43, 0.03);
}
.payment-mp-row:has(.payment-mp-input:checked) {
  background: rgba(200, 80, 58, 0.07);
  box-shadow: inset 4px 0 0 var(--terra);
}
.payment-mp-row--muted {
  cursor: not-allowed;
  opacity: 0.62;
}
.payment-mp-row--demo {
  background: rgba(200, 151, 58, 0.06);
}
.payment-mp-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.payment-mp-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  font-size: 1.35rem;
}
.payment-mp-icon--pp {
  background: linear-gradient(145deg, #0070ba, #003087);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
}
.payment-mp-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.payment-mp-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}
.payment-mp-hint {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.35;
}
.payment-mp-hint code {
  font-size: 0.78rem;
}
.payment-mp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.payment-mp-badges span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(26, 61, 43, 0.15);
  color: var(--text2);
}
.payment-mp-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(26, 61, 43, 0.22);
  flex-shrink: 0;
  position: relative;
}
.payment-mp-row:has(.payment-mp-input:checked) .payment-mp-check {
  border-color: var(--terra);
  background: var(--terra);
}
.payment-mp-row:has(.payment-mp-input:checked) .payment-mp-check::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--white);
}
.payment-mp-detail {
  padding: 22px 24px 26px;
  background: rgba(245, 237, 224, 0.45);
  border-top: 1px solid rgba(26, 61, 43, 0.1);
}
.payment-mp-panel-lead {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.payment-mp-cta {
  min-width: 200px;
}
.payment-mp-footnote {
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 600px) {
  .payment-mp-row {
    padding: 14px 14px;
    gap: 10px 12px;
  }
  .payment-mp-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

/* Page paiement — choix de mode */
.payment-lead-inline {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.checkout-list {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 520px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,61,43,0.1);
  background: var(--white);
  overflow: hidden;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(26,61,43,0.06);
}
.checkout-line:last-child { border-bottom: none; }

.payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.payment-choice-card {
  padding: 22px 22px 24px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-choice-card--demo {
  grid-column: 1 / -1;
  border-style: dashed;
}
.payment-choice-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin: 0;
}
.payment-choice-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text2);
  flex: 1;
}
.payment-choice-submit { align-self: flex-start; }
.payment-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text2);
}
.payment-note--warn {
  color: #7a3d18;
  background: rgba(200, 138, 58, 0.12);
  padding: 12px 14px;
  border-radius: var(--r-md);
}
.muted-small { opacity: 0.92; }

.payment-confirmed-panel {
  max-width: 560px;
  margin: 28px auto 0;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(26,61,43,0.12);
  box-shadow: var(--shadow);
}
.payment-confirmed-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--green);
  margin: 0 0 18px;
}
.payment-instructions p { margin: 0 0 12px; line-height: 1.6; }
.payment-ref-box {
  font-size: 1.15rem;
  padding: 14px 18px;
  background: rgba(26,61,43,0.06);
  border-radius: var(--r-md);
  text-align: center;
  margin: 16px 0 !important;
}
.payment-bank-dl {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 0.95rem;
}
.payment-bank-dl dt {
  font-weight: 700;
  color: var(--text2);
  margin: 0;
}
.payment-bank-dl dd { margin: 0; }
.payment-actions-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Flashes */
.flash-stack {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 48px 0;
}
.site-main--home .flash-stack {
  padding-top: 92px;
}
.flash {
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}
.flash-success {
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.28);
}
.flash-danger {
  background: rgba(192, 74, 58, 0.12);
  color: #8d2f24;
  border: 1px solid rgba(192, 74, 58, 0.28);
}
.flash-warning {
  background: rgba(200, 138, 58, 0.14);
  color: #6b4a1a;
  border: 1px solid rgba(200, 138, 58, 0.35);
}
.flash-info {
  background: rgba(26, 61, 43, 0.08);
  color: var(--green);
  border: 1px solid rgba(26, 61, 43, 0.15);
}

.nav-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  background: var(--terra);
  color: var(--white);
  vertical-align: middle;
}

@media (max-width: 900px) {
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stripe { display: none; }
  .scroll-hint { left: 24px; bottom: 32px; }

  .strip { padding: 20px 24px; }
  .section { padding: 70px 24px; }
  .apropos-grid { grid-template-columns: 1fr; }
  .aside-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .c-card.full { grid-column: 1; }
  .boutique-band { flex-direction: column; padding: 40px 32px; align-items: flex-start; }
  .site-footer { padding: 48px 24px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .flash-stack { padding: 12px 24px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .strip-ticker,
  .blob,
  #grain,
  .fc-main, .fc-cosm, .fc-stat,
  .scroll-dot,
  .fc-dot {
    animation: none !important;
  }
  .strip-ticker { transform: none; }
  .blob { opacity: 0.6; }
  .nav,
  .site-header,
  .header-shell { animation: none; transform: translateY(0); }
  .page-wrapper { animation: none; opacity: 1; transform: none; }
  /* Sans ces règles, le hero reste en opacity:0 si le navigateur désactive les animations. */
  .hero-eyebrow,
  .hero-title .word,
  .hero-desc,
  .hero-btns,
  .scroll-hint {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .float-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

