/*
 * Meraly Délice — système de design « la planche de jungle »
 * Direction : les planches menu du restaurant prennent vie — feuillage tropical
 * sombre, cadres orange arrondis, prix jaunes, titres condensés, script « Meraly ».
 * Typo : Anton (titres) · Barlow / Barlow Condensed (texte, étiquettes) · Lobster (script).
 */

:root {
  --container-max-width: 1360px;
  --container-padding: clamp(1.1rem, 3.2vw, 3.2rem);
  /* viewport-fit=cover : le header absorbe l'encoche du téléphone */
  --safe-top: env(safe-area-inset-top, 0px);
  --header-height: calc(86px + var(--safe-top));
}

html {
  scroll-padding-top: calc(var(--header-height) + 5rem);
  background-color: var(--mdl-ink);
  color-scheme: dark;
}

body {
  background: var(--mdl-ink);
  background-image:
    radial-gradient(circle at 8% 0%, rgba(255, 122, 0, 0.09), transparent 26rem),
    radial-gradient(circle at 95% 40%, rgba(47, 158, 91, 0.10), transparent 30rem);
  color: var(--mdl-cream);
  font-family: var(--font-family);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Grain : absolu (pas fixed) pour ne pas teinter la barre de statut iOS */
body::after {
  position: absolute;
  z-index: 9999;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

::selection { background: var(--mdl-orange); color: var(--mdl-ink); }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--mdl-yellow);
  outline-offset: 4px;
}

h1, h2, h3, h4 { letter-spacing: 0.01em; font-style: normal; }
h2 { color: var(--mdl-cream); }

.main { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.page-home .main { padding: 0; }

svg { flex: 0 0 auto; }
.mdl-btn svg, .mdl-menu__all svg, .mdl-card__cta svg, .mdl-info__map svg,
.mdl-sticky svg, .header svg, .order-mode-icon svg, .mdl-hero__board-link svg {
  width: 1.2em; height: 1.2em; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Étiquettes condensées (eyebrows, labels) */
.mdl-eyebrow,
.mdl-menu__eyebrow, .catalog-eyebrow, .page-eyebrow, .product-eyebrow, .order-mode-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--mdl-yellow);
  font-family: var(--font-family-condensed);
  font-size: 0.86rem; font-weight: 700; font-style: normal;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.mdl-eyebrow .mdl-script,
.mdl-menu__eyebrow .mdl-script { font-size: 1.55em; letter-spacing: 0; text-transform: none; line-height: 1; }

/* ---------------------------------------------------------------- Header */
.header {
  height: var(--header-height);
  padding-top: var(--safe-top);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: var(--mdl-ink);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--mdl-line);
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.page-home .header:not(.is-scrolled) { background: none; border-bottom-color: transparent; }
.page-home .header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 170%; z-index: -1;
  pointer-events: none; opacity: 0; transition: opacity 0.35s ease;
  background: linear-gradient(180deg, rgba(4, 12, 7, 0.86) 0%, rgba(4, 12, 7, 0.42) 30%, rgba(4, 12, 7, 0.14) 55%, rgba(4, 12, 7, 0) 95%);
}
.page-home .header:not(.is-scrolled)::before { opacity: 1; }
.header.is-scrolled { background: var(--mdl-ink); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.page-home .header-spacer { display: none; }

.page-home .status-bar {
  position: absolute; top: var(--header-height); left: 0; right: 0; z-index: 4;
  border-bottom: none; color: var(--mdl-cream); background: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
}
.status-bar {
  font-family: var(--font-family-condensed); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.78rem;
}

.header-inner { position: relative; gap: clamp(1rem, 2.4vw, 2.4rem); }

.header .nav-btn {
  width: auto; height: 46px; padding: 0 1rem; gap: 0.65rem;
  border: 1px solid var(--mdl-line); border-radius: 10px;
  background: rgba(255, 244, 224, 0.06); color: var(--mdl-cream);
  font-family: var(--font-family-condensed); font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.header .nav-btn svg { width: 18px; height: 18px; }
.header .nav-btn:hover { color: var(--mdl-ink); background: var(--mdl-yellow); border-color: var(--mdl-yellow); transform: none; }

.header-logo { display: flex; align-items: center; gap: 0.75rem; min-width: max-content; }
.header-logo:hover { color: inherit; }
.header-logo .header-logo-img {
  width: auto; height: 66px; object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}
.header-logo-text { display: none; }

.header-nav { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 2.5vw, 2.6rem); margin-left: auto; }
.header-nav a, .header-track {
  position: relative; color: rgba(255, 244, 224, 0.8);
  font-family: var(--font-family-condensed); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.header-nav a::after {
  content: ""; position: absolute; right: 0; bottom: -0.5rem; left: 0; height: 3px;
  border-radius: 3px; background: var(--mdl-orange);
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--mdl-ease);
}
.header-nav a:hover, .header-track:hover { color: var(--mdl-cream); }
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { gap: 0.6rem; }
.header .cart-btn { width: 46px; padding: 0; }
.header-order {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 1.3rem; border: 1px solid var(--mdl-orange); border-radius: 10px;
  background: var(--mdl-orange); color: var(--mdl-ink);
  font-family: var(--font-family-condensed); font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}
.header-order:hover { color: var(--mdl-ink); background: var(--mdl-yellow); border-color: var(--mdl-yellow); transform: translateY(-2px); }
.cart-count-badge { top: -3px; right: -4px; background: var(--mdl-yellow); color: var(--mdl-ink); border-color: var(--mdl-ink); box-shadow: none; }

/* ---------------------------------------------------------------- Drawer */
.nav-overlay { align-items: stretch; justify-content: flex-start; padding: 0; background: rgba(3, 9, 5, 0.7); }
.nav-drawer {
  width: min(500px, 100%); max-height: 100svh; height: 100%;
  padding-top: var(--safe-top); border: 0; border-right: 3px solid var(--mdl-orange); border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 11, 0.86), rgba(7, 18, 11, 0.97)),
    url("../../img/leaves-dark.jpg") center / cover no-repeat;
  box-shadow: 40px 0 100px rgba(0, 0, 0, 0.6);
  animation: drawerSlideSide 0.55s var(--mdl-ease);
}
@keyframes drawerSlideSide { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.nav-drawer__head { padding: 1.5rem clamp(1.4rem, 4vw, 2.5rem); border-color: var(--mdl-line); }
.nav-drawer__title img { height: 46px; width: auto; display: block; }
.nav-drawer__close { color: var(--mdl-cream); border-color: var(--mdl-line); border-radius: 10px; }
.nav-drawer__body { gap: 0; padding: 1rem clamp(1.4rem, 4vw, 2.5rem); }
.nav-drawer .nav-item {
  justify-content: flex-start; gap: 1.3rem; padding: 1.1rem 0;
  border: 0; border-bottom: 1px solid var(--mdl-line); border-radius: 0; background: transparent;
  color: var(--mdl-cream); font-family: var(--font-family-heading);
  font-size: clamp(1.4rem, 4.2vw, 2.1rem); font-style: normal; letter-spacing: 0.02em; text-transform: uppercase;
}
.nav-drawer .nav-item span { width: 2rem; color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-size: 0.8rem; letter-spacing: 0.08em; }
.nav-drawer .nav-item:hover { padding-left: 0.6rem; color: var(--mdl-orange); border-color: var(--mdl-orange); background: transparent; box-shadow: none; transform: none; }
.nav-drawer .nav-item--highlight { color: var(--mdl-orange); }
.nav-drawer__footer {
  margin-top: auto; padding: 1.4rem clamp(1.4rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--mdl-line); color: rgba(255, 244, 224, 0.62); font-size: 0.85rem;
}
.nav-drawer__footer p { margin: 0.2rem 0; }

/* ---------------------------------------------------------------- Boutons */
.btn {
  min-height: 48px; border-radius: 10px; box-shadow: none;
  font-family: var(--font-family-condensed); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.08em;
}
.btn-primary {
  min-height: 52px; border: 1px solid var(--mdl-orange); border-radius: 10px;
  background: var(--mdl-orange); color: var(--mdl-ink); box-shadow: none;
  font-family: var(--font-family-condensed); font-size: 1rem; font-style: normal; font-weight: 800;
}
.btn-primary:hover { color: var(--mdl-ink); background: var(--mdl-yellow); border-color: var(--mdl-yellow); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3); transform: translateY(-2px); }
.btn-secondary { border-color: var(--mdl-line); background: transparent; color: var(--mdl-cream); }
.btn-secondary:hover { border-color: var(--mdl-cream); background: var(--mdl-cream); color: var(--mdl-ink); box-shadow: none; }

.mdl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  min-height: 54px; padding: 0 1.8rem;
  border: 2px solid var(--mdl-orange); border-radius: 12px;
  background: var(--mdl-orange); color: var(--mdl-ink);
  font-family: var(--font-family-condensed); font-size: 1.05rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.mdl-btn:hover { color: var(--mdl-ink); background: var(--mdl-yellow); border-color: var(--mdl-yellow); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35); }
.mdl-btn--lg { min-height: 60px; padding: 0 2.2rem; font-size: 1.1rem; }
.mdl-btn--ghost { border-color: rgba(255, 244, 224, 0.45); background: rgba(7, 18, 11, 0.35); color: var(--mdl-cream); backdrop-filter: blur(8px); }
.mdl-btn--ghost:hover { border-color: var(--mdl-cream); background: var(--mdl-cream); color: var(--mdl-ink); }
.mdl-btn--hero { min-height: 64px; padding: 0 2.5rem; font-size: 1.15rem; box-shadow: 0 14px 34px rgba(255, 122, 0, 0.4); animation: mdl-cta-pulse 2.8s ease-in-out infinite; }
.mdl-btn--hero:hover { animation: none; }
@keyframes mdl-cta-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(255, 122, 0, 0.4); }
  50% { box-shadow: 0 18px 48px rgba(255, 122, 0, 0.65); }
}

input:not([type="radio"]):not([type="checkbox"]), textarea, select {
  min-height: 54px; border: 1px solid rgba(255, 244, 224, 0.2); border-radius: 10px;
  background: rgba(255, 244, 224, 0.055); color: var(--mdl-cream);
}
input[type="radio"], input[type="checkbox"] { width: 20px; height: 20px; min-height: 0; padding: 0; accent-color: var(--mdl-orange); flex: 0 0 auto; }
input::placeholder, textarea::placeholder { color: rgba(255, 244, 224, 0.38); }
input:focus, textarea:focus, select:focus { border-color: var(--mdl-orange); background: rgba(255, 244, 224, 0.08); box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.18); }

/* ---------------------------------------------------------------- Héros */
.mdl-hero {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 5rem) var(--container-padding) 0;
  background: var(--mdl-ink);
}
.mdl-hero__media { position: absolute; inset: 0; z-index: 0; }
.mdl-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.mdl-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 7, 0.9) 0%, rgba(4, 12, 7, 0.62) 45%, rgba(4, 12, 7, 0.25) 80%, rgba(4, 12, 7, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 12, 7, 0.1) 30%, rgba(4, 12, 7, 0.94) 100%);
}
.mdl-hero__inner {
  position: relative; z-index: 3; display: flex; flex: 1; align-items: flex-end; justify-content: space-between;
  gap: 3rem; width: 100%; max-width: 1360px; margin: 0 auto 3rem;
}
.mdl-hero__copy { max-width: 900px; }
.mdl-hero__eyebrow { margin-bottom: 1rem; color: var(--mdl-cream); }
.mdl-hero__eyebrow .mdl-script { font-size: 1.9em; }
.mdl-hero__title {
  margin: 0; font-family: var(--font-family-heading); text-transform: uppercase;
  font-size: clamp(4rem, 10.4vw, 9.2rem); line-height: 0.86; letter-spacing: 0.005em;
  color: var(--mdl-cream); text-shadow: 0 12px 45px rgba(0, 0, 0, 0.45);
}
.mdl-hero__title .line { display: block; }
.mdl-hero__title .line--accent { color: var(--mdl-orange); }
.mdl-hero__title .line--out { color: transparent; -webkit-text-stroke: clamp(1.2px, 0.18vw, 2.6px) var(--mdl-cream); }
.mdl-hero__sub {
  max-width: 600px; margin: 1.5rem 0 2rem; color: rgba(255, 244, 224, 0.9);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem); font-weight: 500; line-height: 1.35;
}
.mdl-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Encart « planche » à droite du héros */
.mdl-hero__board {
  width: 300px; flex: 0 0 300px; margin-bottom: 0.5rem; padding: 0.9rem 0.9rem 1.1rem;
  background: rgba(7, 18, 11, 0.72); backdrop-filter: blur(12px);
  transform: rotate(-1.5deg); box-shadow: var(--mdl-shadow);
  text-decoration: none; color: var(--mdl-cream); display: block;
  transition: transform 0.35s var(--mdl-ease);
}
.mdl-hero__board:hover { transform: rotate(0deg) translateY(-4px); color: var(--mdl-cream); }
.mdl-hero__board img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 10px; }
.mdl-hero__board-kicker {
  margin: 0.9rem 0 0.2rem; font-family: var(--font-family-condensed); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mdl-orange);
}
.mdl-hero__board-title { margin: 0; font-family: var(--font-family-heading); font-size: 1.35rem; line-height: 1.05; text-transform: uppercase; }
.mdl-hero__board-price { display: grid; gap: 0.25rem; margin: 0.6rem 0 0; font-size: 0.8rem; line-height: 1.4; color: rgba(255, 244, 224, 0.7); }
.mdl-hero__board-price .mdl-price { font-size: 1.9rem; line-height: 1; white-space: nowrap; }
.mdl-hero__board-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.7rem;
  font-family: var(--font-family-condensed); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mdl-yellow);
}

.mdl-hero__assure {
  position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr);
  width: calc(100% + (2 * var(--container-padding))); margin: 0 calc(-1 * var(--container-padding));
  padding: 0 var(--container-padding); list-style: none;
  border-top: 3px solid var(--mdl-orange); background: rgba(7, 18, 11, 0.74); backdrop-filter: blur(14px);
}
.mdl-hero__assure li { min-height: 108px; padding: 1.5rem clamp(1rem, 3vw, 2.5rem); border-right: 1px solid var(--mdl-line); }
.mdl-hero__assure li:first-child { padding-left: 0; }
.mdl-hero__assure li:last-child { border-right: 0; }
.mdl-hero__assure strong, .mdl-hero__assure span { display: block; }
.mdl-hero__assure strong {
  margin-bottom: 0.3rem; color: var(--mdl-yellow); font-family: var(--font-family-condensed);
  font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.mdl-hero__assure span { color: rgba(255, 244, 224, 0.68); font-size: 0.82rem; font-weight: 500; }

/* ---------------------------------------------------------------- Bandeau défilant */
.mdl-ticker {
  position: relative; z-index: 4; overflow: hidden; white-space: nowrap;
  padding: 0.75rem 0; background: var(--mdl-orange); color: var(--mdl-ink);
  border-top: 3px solid var(--mdl-ink); border-bottom: 3px solid var(--mdl-ink);
}
.mdl-ticker__track { display: inline-flex; align-items: center; gap: 1.4rem; will-change: transform; }
.mdl-ticker__item { font-family: var(--font-family-heading); text-transform: uppercase; font-size: clamp(1rem, 1.9vw, 1.35rem); letter-spacing: 0.04em; }
.mdl-ticker__star { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--mdl-ink); }

/* ---------------------------------------------------------------- Vedettes */
.mdl-menu {
  padding: clamp(6rem, 10vw, 9.5rem) var(--container-padding);
  background: radial-gradient(circle at 90% 15%, rgba(255, 122, 0, 0.1), transparent 28rem), var(--mdl-ink);
}
.mdl-menu__head {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem;
  max-width: 1360px; margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.mdl-menu__title, .mdl-section-title {
  margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading); text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: 0.92; letter-spacing: 0.005em;
}
.mdl-menu__title span, .mdl-section-title span { color: var(--mdl-orange); }
.mdl-menu__title .out, .mdl-section-title .out { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 244, 224, 0.7); }
.mdl-menu__all, .mdl-info__map {
  display: inline-flex; align-items: center; gap: 0.7rem; padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--mdl-orange); color: var(--mdl-cream); text-decoration: none;
  font-family: var(--font-family-condensed); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.mdl-menu__all:hover, .mdl-info__map:hover { color: var(--mdl-yellow); }

.mdl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.1vw, 2rem); max-width: 1360px; margin: 0 auto; }
.mdl-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border: 3px solid rgba(255, 122, 0, 0.55); border-radius: var(--radius-lg);
  background: var(--mdl-ink-2); color: var(--mdl-cream); text-decoration: none;
  transition: transform 0.35s var(--mdl-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.mdl-card:hover { color: var(--mdl-cream); border-color: var(--mdl-orange); transform: translateY(-8px); box-shadow: var(--mdl-shadow); }
.mdl-card__media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.mdl-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--mdl-ease); }
.mdl-card:hover .mdl-card__media img { transform: scale(1.05); }
.mdl-card__index {
  position: absolute; z-index: 1; top: 0.9rem; left: 0.9rem; min-width: 40px; height: 40px;
  display: grid; place-items: center; border: 2px solid var(--mdl-orange); border-radius: 10px;
  background: rgba(7, 18, 11, 0.6); color: var(--mdl-cream); backdrop-filter: blur(6px);
  font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 800;
}
.mdl-card__badge {
  position: absolute; z-index: 1; top: 0.9rem; right: 0.9rem; padding: 0.4rem 0.7rem; border-radius: 8px;
  background: var(--mdl-yellow); color: var(--mdl-ink);
  font-family: var(--font-family-condensed); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.mdl-card__body { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; padding: 1.3rem 1.4rem 1.5rem; }
.mdl-card__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.mdl-card__body h3 { max-width: 72%; margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: 0.01em; line-height: 1; }
.mdl-card__price { font-size: 1.45rem; line-height: 1; white-space: nowrap; }
.mdl-card__price small { font-family: var(--font-family-condensed); font-weight: 600; font-size: 0.6em; color: rgba(255, 244, 224, 0.6); margin-right: 0.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.mdl-card__body p { flex: 1; max-width: 52ch; margin: 0; color: rgba(255, 244, 224, 0.66); font-size: 0.9rem; line-height: 1.6; }
.mdl-card__cta {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.4rem; color: var(--mdl-yellow);
  font-family: var(--font-family-condensed); font-size: 0.92rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------------------------------------------------------------- Manifeste (fond crème) */
.mdl-manifesto {
  position: relative; display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem); overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) var(--container-padding);
  background: var(--mdl-paper); color: var(--mdl-ink);
}
.mdl-manifesto__word {
  position: absolute; right: -2vw; bottom: -0.12em; color: transparent; pointer-events: none;
  font-family: var(--font-family-heading); font-size: clamp(9rem, 24vw, 24rem); line-height: 0.8;
  -webkit-text-stroke: 1px rgba(7, 18, 11, 0.09); text-transform: uppercase;
}
.mdl-manifesto__intro { position: relative; z-index: 1; max-width: 540px; }
.mdl-manifesto .mdl-eyebrow { color: #b85400; }
.mdl-manifesto__intro h2 {
  margin: 0 0 1.8rem; color: var(--mdl-ink); font-family: var(--font-family-heading); text-transform: uppercase;
  font-size: clamp(2.6rem, 5.6vw, 5.2rem); line-height: 0.92; letter-spacing: 0.005em;
}
.mdl-manifesto__intro h2 em { color: var(--mdl-orange); font-family: var(--font-family-accent); font-size: 1.05em; font-style: normal; font-weight: 400; text-transform: none; }
.mdl-manifesto__intro > p:last-child { max-width: 44ch; color: rgba(7, 18, 11, 0.7); font-size: 1.02rem; font-weight: 500; line-height: 1.65; }
.mdl-features__inner { position: relative; z-index: 1; display: flex; flex-direction: column; }
.mdl-feature {
  display: grid; grid-template-columns: 58px 1fr; gap: 1.2rem; padding: 1.6rem 0;
  border-top: 1px solid var(--mdl-line-dark);
}
.mdl-feature:last-child { border-bottom: 1px solid var(--mdl-line-dark); }
.mdl-feature__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px;
  background: var(--mdl-orange); color: var(--mdl-ink);
  font-family: var(--font-family-condensed); font-size: 0.95rem; font-weight: 800;
}
.mdl-feature__title { margin: 0.2rem 0 0.5rem; color: var(--mdl-ink); font-family: var(--font-family-heading); font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: 0.01em; text-transform: uppercase; }
.mdl-feature__text { max-width: 56ch; margin: 0; color: rgba(7, 18, 11, 0.66); font-size: 0.92rem; line-height: 1.65; }

/* ---------------------------------------------------------------- Infos pratiques */
.mdl-info {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr 0.8fr; gap: 0;
  padding: 0 var(--container-padding); color: var(--mdl-cream);
  background:
    linear-gradient(180deg, rgba(7, 18, 11, 0.9), rgba(7, 18, 11, 0.94)),
    url("../../img/leaves-dark.jpg") center / cover no-repeat;
}
.mdl-info > div { padding: clamp(4.5rem, 8vw, 7rem) clamp(1.7rem, 4.2vw, 4.2rem); border-right: 1px solid var(--mdl-line); }
.mdl-info > div:first-child { padding-left: 0; }
.mdl-info > div:last-child { padding-right: 0; border-right: 0; }
.mdl-info__intro { display: flex; flex-direction: column; align-items: flex-start; }
.mdl-info__title { margin: 0 0 1.4rem; color: var(--mdl-cream); font-family: var(--font-family-heading); text-transform: uppercase; font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: 0.92; }
.mdl-info__title span { color: var(--mdl-orange); }
.mdl-info__intro > p:not(.mdl-eyebrow) { max-width: 44ch; color: rgba(255, 244, 224, 0.68); font-size: 0.95rem; line-height: 1.65; }
.mdl-info__map { margin-top: auto; padding-top: 2rem; }
.mdl-info__label { margin-bottom: 1.8rem; color: var(--mdl-orange); font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.mdl-hours { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--mdl-line); }
.mdl-hours li { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--mdl-line); font-size: 0.9rem; }
.mdl-hours li span:first-child { color: rgba(255, 244, 224, 0.62); font-weight: 600; }
.mdl-hours li span:last-child { color: var(--mdl-cream); font-family: var(--font-family-condensed); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.mdl-hours li.is-today span { color: var(--mdl-yellow); }
.mdl-info__addr { margin: 0 0 0.8rem; color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.15; text-transform: uppercase; }
.mdl-info__phone { display: inline-block; margin: 0 0 1.8rem; color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-size: 1.35rem; font-weight: 800; text-decoration: none; letter-spacing: 0.04em; }
.mdl-info__phone:hover { color: var(--mdl-orange); }
.mdl-info__note { margin: 0 0 1.5rem; color: rgba(255, 244, 224, 0.62); font-size: 0.85rem; line-height: 1.6; }
.mdl-info__btn { width: 100%; }

/* ---------------------------------------------------------------- CTA final */
.mdl-cta {
  position: relative; overflow: hidden; padding: clamp(6rem, 11vw, 10rem) var(--container-padding);
  background: linear-gradient(120deg, var(--mdl-red) 0%, var(--mdl-orange) 70%, #ffa726 100%);
  color: var(--mdl-ink);
}
.mdl-cta::before { content: ""; position: absolute; inset: 1.3rem; border: 3px solid rgba(7, 18, 11, 0.5); border-radius: var(--radius-xl); pointer-events: none; }
.mdl-cta__logo {
  position: absolute; top: 50%; right: clamp(-6rem, -3vw, -1rem); width: clamp(24rem, 46vw, 50rem);
  opacity: 0.16; transform: translateY(-50%) rotate(-6deg); filter: grayscale(1) brightness(0.2);
  pointer-events: none;
}
.mdl-cta__inner { position: relative; z-index: 1; max-width: 1000px; margin: auto; text-align: center; }
.mdl-cta__eyebrow { margin: 0 0 0.4rem; color: var(--mdl-ink); font-family: var(--font-family-accent); font-size: clamp(1.5rem, 2.8vw, 2.3rem); }
.mdl-cta__title { margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading); text-transform: uppercase; font-size: clamp(3.6rem, 9.5vw, 9rem); line-height: 0.88; text-shadow: 0 6px 0 rgba(7, 18, 11, 0.35); }
.mdl-cta__text { max-width: 540px; margin: 1.5rem auto 2rem; color: rgba(7, 18, 11, 0.82); font-weight: 500; font-size: 1.05rem; line-height: 1.6; }
.mdl-cta .mdl-btn { border-color: var(--mdl-ink); background: var(--mdl-ink); color: var(--mdl-cream); }
.mdl-cta .mdl-btn:hover { background: var(--mdl-cream); border-color: var(--mdl-cream); color: var(--mdl-ink); }

/* Pastille flottante « Commander » (mobile) */
.mdl-sticky {
  position: fixed; left: 50%; right: auto; bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px)); z-index: 50;
  transform: translateX(-50%); width: max-content; max-width: calc(100vw - 2rem);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  min-height: 54px; padding: 0 1.9rem; border-radius: 14px; text-decoration: none;
  background: var(--mdl-orange); color: var(--mdl-ink);
  font-family: var(--font-family-condensed); font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 4px 14px rgba(255, 122, 0, 0.35);
}
@media (min-width: 900px) { .mdl-sticky { display: none; } }

/* ---------------------------------------------------------------- Intros de page */
.page-intro { max-width: 880px; margin-bottom: clamp(3rem, 7vw, 5rem); }
.page-intro h1 { margin: 0 0 1rem; color: var(--mdl-cream); font-family: var(--font-family-heading); text-transform: uppercase; font-size: clamp(3rem, 7.5vw, 6.5rem); line-height: 0.9; letter-spacing: 0.005em; }
.page-intro h1 span { color: var(--mdl-orange); }
.page-intro > p:last-child { max-width: 52ch; color: rgba(255, 244, 224, 0.62); }

/* ---------------------------------------------------------------- Catalogue */
body.page-catalog .main { padding-top: clamp(4.5rem, 8vw, 7rem); }
body.page-catalog .catalog-page { max-width: 1360px; }
body.page-catalog .catalog-header { margin: 0 0 clamp(2.5rem, 6vw, 4.5rem); text-align: left; padding: 0; gap: 0; }
body.page-catalog .catalog-header::after { display: none; }
body.page-catalog .catalog-header .header-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 1.4rem; }
body.page-catalog .catalog-header h1 {
  max-width: 980px; margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading);
  font-size: clamp(3.2rem, 8.6vw, 8rem); font-style: normal; line-height: 0.86; letter-spacing: 0.005em; text-align: left; text-shadow: none;
}
body.page-catalog .catalog-header h1 span { display: block; color: var(--mdl-orange); }
body.page-catalog .catalog-lead { max-width: 650px; margin: 0; color: rgba(255, 244, 224, 0.66); font-size: clamp(0.95rem, 1.5vw, 1.08rem); line-height: 1.7; }

body.page-catalog .order-mode-badge {
  min-width: max-content; margin-bottom: 0.6rem; padding: 0.75rem 0.9rem; gap: 0.6rem;
  border: 2px solid var(--mdl-orange); border-radius: 12px; background: rgba(255, 122, 0, 0.08); color: var(--mdl-cream); box-shadow: none;
}
body.page-catalog .order-mode-badge .badge-icon img { height: 1.7em; width: auto; display: block; }
body.page-catalog .order-mode-badge .badge-text { font-family: var(--font-family-condensed); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
body.page-catalog .order-mode-badge .badge-action { color: var(--mdl-yellow); font-size: 0.8rem; text-decoration: none; font-family: var(--font-family-condensed); }

body.page-catalog .sticky-nav {
  position: sticky; z-index: 50; top: var(--header-height);
  width: calc(100% + (2 * var(--container-padding))); margin: 0 calc(-1 * var(--container-padding)) clamp(2.5rem, 5vw, 4rem);
  padding: 0.7rem var(--container-padding); border: solid var(--mdl-line); border-width: 1px 0;
  background: rgba(7, 18, 11, 0.92); box-shadow: none; backdrop-filter: blur(18px);
}
body.page-catalog .categories-list { display: flex; gap: 0.5rem; }
body.page-catalog .category-link {
  display: block; padding: 0.7rem 1.1rem; border: 1px solid var(--mdl-line); border-radius: 10px; background: transparent;
  color: rgba(255, 244, 224, 0.75); font-family: var(--font-family-condensed); font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; box-shadow: none;
}
body.page-catalog .category-link.active, body.page-catalog .category-link:hover { border-color: var(--mdl-orange); background: var(--mdl-orange); color: var(--mdl-ink); box-shadow: none; }

body.page-catalog .category-accordion { margin: 0 0 1.5rem; border: 0; border-radius: 0; background: transparent; }
body.page-catalog .category-summary {
  min-height: 0; padding: 1.4rem 0; border: 0; border-bottom: 3px solid var(--mdl-orange); border-radius: 0; background: transparent;
}
body.page-catalog .category-summary:hover { background: transparent; border-color: var(--mdl-yellow); }
body.page-catalog .category-summary-content { gap: 1rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
body.page-catalog .category-summary-title {
  margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading); font-style: normal;
  font-size: clamp(2rem, 4.6vw, 4.2rem); letter-spacing: 0.01em; text-shadow: none;
}
body.page-catalog .category-icon-img { height: 1.35em; width: auto; display: block; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45)); }
body.page-catalog .category-summary-meta { color: rgba(255, 244, 224, 0.55); font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
body.page-catalog .category-product-count { color: var(--mdl-yellow); font-size: 0.85rem; }
body.page-catalog .category-chevron { color: var(--mdl-orange); }
body.page-catalog .category-panel { padding: 1.4rem 0 clamp(3rem, 7vw, 5.5rem); }
body.page-catalog .category-note { margin: 0 0 1.2rem; color: rgba(255, 244, 224, 0.6); font-size: 0.9rem; }

body.page-catalog .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(0.8rem, 1.6vw, 1.1rem); }
body.page-catalog .product-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 1rem 1.1rem;
  border: 1px solid var(--mdl-line); border-radius: var(--radius-lg); background: var(--mdl-ink-2); box-shadow: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
body.page-catalog .product-card:hover { border-color: var(--mdl-orange); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35); transform: translateY(-3px); }
body.page-catalog .product-index { display: none; }
body.page-catalog .product-card-body { display: flex; flex-direction: row; gap: 1rem; padding: 0; }
body.page-catalog .product-media { flex: 0 0 112px; width: 112px; height: 112px; aspect-ratio: 1; border-radius: 12px; background: var(--mdl-ink-3); border: 1px solid var(--mdl-line); }
body.page-catalog .product-img { transition: transform 0.6s var(--mdl-ease); }
body.page-catalog .product-card:hover .product-img { transform: scale(1.05); }
body.page-catalog .product-info { display: flex; flex-direction: column; flex: 1; min-width: 0; padding: 0; }
body.page-catalog .product-title { margin: 0 0 0.35rem; color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: 1.15rem; font-style: normal; letter-spacing: 0.02em; text-shadow: none; }
body.page-catalog .product-desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 0.6rem; color: rgba(255, 244, 224, 0.58); font-size: 0.82rem; line-height: 1.5; }
body.page-catalog .product-price { margin: auto 0 0; color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 1.25rem; text-shadow: none; }
body.page-catalog .product-price small { font-size: 0.65em; font-weight: 600; color: rgba(255, 244, 224, 0.6); margin-right: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase; }
body.page-catalog .product-actions { display: flex; justify-content: flex-end; margin-top: auto; padding: 0.85rem 0 0; }
body.page-catalog .product-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: auto; min-height: 44px; padding: 0.5rem 1.2rem; border-radius: 10px; font-size: 0.95rem; }
body.page-catalog .product-actions .btn-outline { border: 2px solid var(--mdl-orange); background: transparent; color: var(--mdl-cream); }
body.page-catalog .product-actions .btn-outline:hover { background: var(--mdl-orange); color: var(--mdl-ink); box-shadow: none; }
body.page-catalog .btn-action .action-icon { display: grid; width: 22px; height: 22px; place-items: center; border: 2px solid currentColor; border-radius: 6px; margin: 0; }

/* ---------------------------------------------------------------- Modale mode de commande */
body.page-catalog .order-mode-modal { z-index: 1000; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 3vw, 2rem); }
body.page-catalog .order-mode-backdrop { background: rgba(3, 9, 5, 0.84); backdrop-filter: blur(18px); }
body.page-catalog .order-mode-card {
  position: relative; width: min(920px, 100%); max-width: 920px; overflow: hidden;
  border: 3px solid var(--mdl-orange); border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(7, 18, 11, 0.88), rgba(7, 18, 11, 0.96)),
    url("../../img/leaves-dark.jpg") center / cover no-repeat;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}
body.page-catalog .order-mode-card::before {
  content: "MERALY"; position: absolute; right: -0.04em; bottom: -0.12em; color: transparent; pointer-events: none;
  font-family: var(--font-family-heading); font-size: clamp(8rem, 24vw, 16rem); line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 244, 224, 0.06);
}
body.page-catalog .order-mode-header { padding: clamp(2rem, 5vw, 3.5rem) clamp(1.4rem, 5vw, 3.5rem) 1.5rem; border: 0; background: transparent; text-align: left; }
body.page-catalog .order-mode-title {
  margin: 0 0 0.8rem; color: var(--mdl-cream); font-family: var(--font-family-heading);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem); font-style: normal; line-height: 0.9; letter-spacing: 0.005em; text-shadow: none;
}
body.page-catalog .order-mode-title span { color: var(--mdl-orange); }
body.page-catalog .order-mode-subtitle { max-width: 520px; color: rgba(255, 244, 224, 0.66); font-size: 0.92rem; }
body.page-catalog .order-mode-options { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0 clamp(1.4rem, 5vw, 3.5rem); }
body.page-catalog .order-mode-option {
  min-height: 128px; padding: 1.2rem; gap: 1rem; border: 2px solid var(--mdl-line); border-radius: var(--radius-lg);
  background: rgba(255, 244, 224, 0.05); color: var(--mdl-cream); text-align: left;
}
body.page-catalog .order-mode-option:hover { border-color: var(--mdl-orange); background: rgba(255, 122, 0, 0.1); transform: translateY(-3px); }
body.page-catalog .order-mode-option.is-active { border-color: var(--mdl-orange); background: var(--mdl-orange); color: var(--mdl-ink); box-shadow: none; }
body.page-catalog .order-mode-icon { width: 90px; height: 70px; display: grid; flex: 0 0 90px; place-items: center; border: none; border-radius: 0; }
body.page-catalog .order-mode-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.4)); }
body.page-catalog .order-mode-name { font-family: var(--font-family-heading); font-size: 1.25rem; letter-spacing: 0.02em; }
body.page-catalog .order-mode-desc { color: currentColor; font-size: 0.8rem; opacity: 0.7; }
body.page-catalog .order-mode-check { display: grid; width: 28px; height: 28px; place-items: center; border: 2px solid currentColor; border-radius: 8px; background: transparent; color: currentColor; }
body.page-catalog .delivery-address-container { position: relative; z-index: 2; padding: 1.5rem clamp(1.4rem, 5vw, 3.5rem) 0; }
body.page-catalog .delivery-label { color: var(--mdl-yellow); }
body.page-catalog .delivery-input { min-height: 58px; border-color: var(--mdl-line); border-radius: 10px; background: rgba(255, 244, 224, 0.06); }
body.page-catalog .order-mode-actions { position: relative; z-index: 1; padding: 1.5rem clamp(1.4rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3.5rem); }
body.page-catalog .order-mode-submit { width: 100%; }
body.page-catalog .address-suggestions { border-radius: 0 0 10px 10px; background: var(--mdl-cream); color: var(--mdl-ink); }
body.page-catalog .address-suggestions .suggestion-text { color: var(--mdl-ink); }
body.page-catalog .address-suggestions .suggestion-context { color: rgba(7, 18, 11, 0.6); }
body.page-catalog .info-box { border-radius: 10px; }

/* ---------------------------------------------------------------- Fiche produit */
body.page-product .main { padding-top: clamp(2.5rem, 5vw, 5rem); }
body.page-product .product-page { max-width: 1360px; }
body.page-product .product-nav { padding: 0 0 2rem; }
body.page-product .back-link {
  display: inline-flex; align-items: center; gap: 0.6rem; margin: 0; color: rgba(255, 244, 224, 0.66);
  font-family: var(--font-family-condensed); font-size: 0.92rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
body.page-product .back-link:hover { color: var(--mdl-yellow); }
body.page-product .product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
body.page-product .product-detail > .product-media {
  position: sticky; top: calc(var(--header-height) + 2rem); overflow: hidden;
  border: 3px solid var(--mdl-orange); border-radius: var(--radius-xl); background: var(--mdl-ink-2);
}
body.page-product .product-detail > .product-media figure { margin: 0; }
body.page-product .product-detail-image { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
body.page-product .product-content { padding-top: clamp(0.5rem, 3vw, 2rem); }
body.page-product .product-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 1.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--mdl-line); }
body.page-product .product-eyebrow { order: -1; }
body.page-product .product-header .product-title {
  margin: 0; color: var(--mdl-cream); font-family: var(--font-family-heading); font-style: normal;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem); line-height: 0.9; letter-spacing: 0.005em;
}
body.page-product .product-header .price.large { margin-top: 1rem; color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 2rem; text-shadow: none; }
body.page-product .description { margin-bottom: 2rem; }
body.page-product .description p { max-width: 56ch; color: rgba(255, 244, 224, 0.66); font-size: 0.98rem; line-height: 1.7; }
body.page-product .product-form { gap: 0; }
body.page-product .step-fieldset { margin: 0 0 2.2rem; padding: 0; background: transparent; }
body.page-product .step-legend { display: flex; align-items: center; flex-wrap: wrap; gap: 0.7rem; margin: 0 0 1rem; padding: 0 0 0.9rem; border-bottom: 1px solid var(--mdl-line); }
body.page-product .step-number { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--mdl-orange); color: var(--mdl-ink); font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 800; }
body.page-product .step-name { color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: 1.3rem; letter-spacing: 0.02em; }
body.page-product .badge { padding: 0.3rem 0.55rem; border-radius: 6px; font-family: var(--font-family-condensed); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
body.page-product .badge-required { background: var(--mdl-yellow); color: var(--mdl-ink); }
body.page-product .badge-optional { border: 1px solid var(--mdl-line); color: rgba(255, 244, 224, 0.62); }
body.page-product .step-instruction { width: 100%; color: rgba(255, 244, 224, 0.55); font-size: 0.78rem; }
body.page-product .step-note { color: rgba(255, 244, 224, 0.6); font-size: 0.82rem; margin: -0.3rem 0 0.9rem; }
body.page-product .choices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
body.page-product .choice-card {
  min-height: 76px; overflow: hidden; border: 1px solid var(--mdl-line); border-radius: 12px;
  background: rgba(255, 244, 224, 0.04); color: var(--mdl-cream);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
body.page-product .choice-card:hover { border-color: rgba(255, 122, 0, 0.7); transform: translateY(-2px); }
body.page-product .choice-card:has(:checked), body.page-product .choice-card.is-selected { border-color: var(--mdl-orange); background: rgba(255, 122, 0, 0.14); box-shadow: inset 0 0 0 1px var(--mdl-orange); }
body.page-product .choice-content-wrapper { display: flex; align-items: center; min-height: 76px; gap: 0.8rem; padding: 0.8rem; background: transparent; }
body.page-product .choice-details { flex: 1; min-width: 0; }
body.page-product .choice-card:not(.qty-card) .choice-content-wrapper { padding-right: 2.6rem; }
body.page-product .choice-media { flex: 0 0 54px; width: 54px; height: 54px; overflow: hidden; border-radius: 10px; border: 1px solid var(--mdl-line); }
body.page-product .choice-image { width: 100%; height: 100%; object-fit: cover; }
body.page-product .choice-name { color: var(--mdl-cream); font-size: 0.86rem; font-weight: 700; }
body.page-product .choice-price { color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 0.88rem; }
body.page-product .choice-indicator { width: 25px; height: 25px; border: 2px solid rgba(255, 244, 224, 0.3); border-radius: 8px; background: transparent; }
body.page-product .choice-input:checked + .choice-content-wrapper .choice-indicator { border-color: var(--mdl-orange); background: var(--mdl-orange); color: var(--mdl-ink); }
body.page-product .product-note textarea { border-radius: 12px; }
body.page-product .wiz-progress-bar { background: rgba(255, 244, 224, 0.1); border-radius: 4px; }
body.page-product .wiz-progress-bar span { background: var(--mdl-orange); border-radius: 4px; }
body.page-product .wiz-progress-label { font-family: var(--font-family-condensed); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mdl-yellow); }
body.page-product .wiz-error { color: var(--mdl-yellow); font-weight: 600; }
body.page-product .quantity-section { padding: 1.2rem 0; border: solid var(--mdl-line); border-width: 1px 0; background: transparent; }
body.page-product .quantity-label { color: var(--mdl-cream); font-size: 0.8rem; }
body.page-product .quantity-control { border-color: var(--mdl-line); border-radius: 10px; background: rgba(255, 244, 224, 0.05); }
body.page-product .btn-quantity { color: var(--mdl-cream); }
body.page-product .quantity-input { min-height: 44px; background: transparent; color: var(--mdl-cream); }
body.page-product .product-actions { padding: 1.4rem 0 0; }
body.page-product .product-actions .btn { min-height: 60px; }
body.page-product .btn-price-display { color: var(--mdl-ink); opacity: 0.85; margin-left: 0.5rem; }

/* ---------------------------------------------------------------- Panier */
body.page-cart .cart-page { max-width: 1360px; }
body.page-cart .cart-content { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr); align-items: start; gap: clamp(2rem, 5vw, 5rem); }
body.page-cart .cart-items { border-top: 1px solid var(--mdl-line); }
body.page-cart .cart-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; margin: 0; padding: 1.8rem 0; border: 0; border-bottom: 1px solid var(--mdl-line); border-radius: 0; background: transparent; box-shadow: none; }
body.page-cart .cart-item:hover { border-color: var(--mdl-line); box-shadow: none; transform: none; }
body.page-cart .item-info h3 { margin: 0 0 0.6rem; color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: clamp(1.2rem, 2.4vw, 1.6rem); letter-spacing: 0.02em; }
body.page-cart .item-selections { margin: 0 0 0.8rem; color: rgba(255, 244, 224, 0.58); font-size: 0.82rem; }
body.page-cart .item-selections .sel-price { color: var(--mdl-yellow); }
body.page-cart .item-note { margin: 0 0 0.8rem; padding: 0.45rem 0.7rem; border-left: 3px solid var(--mdl-orange); border-radius: 0 8px 8px 0; background: rgba(255, 255, 255, 0.05); color: rgba(255, 244, 224, 0.82); font-size: 0.84rem; line-height: 1.4; }
body.page-cart .item-price { margin: 0; color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 1.2rem; }
body.page-cart .item-actions { align-items: flex-end; gap: 0.6rem; }
body.page-cart .quantity-form { overflow: hidden; border: 1px solid var(--mdl-line); border-radius: 10px; background: rgba(255, 244, 224, 0.04); }
body.page-cart .qty-btn { width: 42px; height: 42px; color: var(--mdl-cream); border: 0; background: transparent; }
body.page-cart .qty-btn:hover { background: var(--mdl-orange); color: var(--mdl-ink); }
body.page-cart .quantity { color: var(--mdl-cream); }
body.page-cart .btn-remove { color: rgba(255, 244, 224, 0.5); font-family: var(--font-family-condensed); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
body.page-cart .btn-remove:hover { color: var(--mdl-red); }
body.page-cart .cart-summary { position: sticky; top: calc(var(--header-height) + 2rem); padding: clamp(1.5rem, 3vw, 2.2rem); border: 3px solid var(--mdl-orange); border-radius: var(--radius-lg); background: var(--mdl-ink-2); box-shadow: var(--mdl-shadow); }
body.page-cart .summary-row { color: rgba(255, 244, 224, 0.68); border-color: var(--mdl-line); }
body.page-cart .summary-row.total { color: var(--mdl-cream); }
body.page-cart .summary-row.total span:last-child { color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 1.7rem; }
body.page-cart .cart-summary .btn { width: 100%; }
body.page-cart .empty-cart { max-width: 960px; margin: 0 auto; padding: clamp(3rem, 8vw, 7rem); border: 3px solid var(--mdl-orange); border-radius: var(--radius-xl); background: var(--mdl-ink-2); text-align: center; }
body.page-cart .empty-cart p { color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; }

/* ---------------------------------------------------------------- Checkout */
body.page-checkout .checkout-page { max-width: 1120px; }
body.page-checkout .checkout-content { max-width: none; margin: 0; }
body.page-checkout .checkout-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 1.2rem; }
body.page-checkout .form-section { margin: 0; padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--mdl-line); border-radius: var(--radius-lg); background: var(--mdl-ink-2); }
body.page-checkout .form-section h2 { margin: 0 0 1.8rem; padding: 0 0 1rem; border-bottom: 3px solid var(--mdl-orange); color: var(--mdl-cream); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-style: normal; letter-spacing: 0.02em; }
body.page-checkout .form-group { margin-bottom: 1.2rem; }
body.page-checkout label { color: rgba(255, 244, 224, 0.6); font-family: var(--font-family-condensed); font-size: 0.85rem; letter-spacing: 0.1em; }
body.page-checkout .choice-label { border: 1px solid var(--mdl-line); border-radius: 12px; background: rgba(255, 244, 224, 0.04); }
body.page-checkout .choice-label:has(input:checked) { border-color: var(--mdl-orange); background: rgba(255, 122, 0, 0.12); }
body.page-checkout .delivery-quote-box { border: 1px solid rgba(47, 158, 91, 0.5); border-radius: 12px; background: rgba(47, 158, 91, 0.1); }
body.page-checkout .order-summary { color: rgba(255, 244, 224, 0.7); }
body.page-checkout .summary-item, body.page-checkout .summary-row { border-color: var(--mdl-line); }
body.page-checkout .summary-row.total { color: var(--mdl-cream); }
body.page-checkout .summary-row.total span:last-child { color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-weight: 800; font-size: 1.6rem; }
body.page-checkout #payButton { grid-column: 1 / -1; min-height: 64px; }

/* ---------------------------------------------------------------- Suivi & confirmation */
body.page-track .track-form-container { max-width: 680px; margin: 0 auto; padding: 0 var(--container-padding); font-family: var(--font-family); }
body.page-track .track-card {
  padding: clamp(1.7rem, 5vw, 3.5rem); border: 3px solid var(--mdl-orange); border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(7, 18, 11, 0.9), rgba(7, 18, 11, 0.96)), url("../../img/leaves-dark.jpg") center / cover no-repeat;
  box-shadow: var(--mdl-shadow);
}
body.page-track .track-card-head { text-align: left; }
body.page-track .track-card-title { margin: 0 0 1rem; color: var(--mdl-cream); font-family: var(--font-family-heading); font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 0.9; letter-spacing: 0.005em; }
body.page-track .track-card-desc { color: rgba(255, 244, 224, 0.62); }
body.page-track .form-group label { color: rgba(255, 244, 224, 0.62); }
body.page-track .input-icon { filter: grayscale(1); }
body.page-track .form-control { min-height: 56px; border: 1px solid var(--mdl-line); border-radius: 10px; background: rgba(255, 244, 224, 0.05); color: var(--mdl-cream); }
body.page-track .form-control:focus { border-color: var(--mdl-orange); background: rgba(255, 244, 224, 0.08); box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.16); }
body.page-track .form-group small { color: rgba(255, 244, 224, 0.42); }
body.page-track .btn-submit { min-height: 58px; border-radius: 12px; background: var(--mdl-orange); color: var(--mdl-ink); font-family: var(--font-family-condensed); font-size: 1rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
body.page-success .success-page { max-width: 760px; margin: 0 auto; padding: clamp(3rem, 8vw, 7rem); border: 3px solid var(--mdl-leaf); border-radius: var(--radius-xl); background: var(--mdl-ink-2); box-shadow: var(--mdl-shadow); }
body.page-success .success-icon { width: 74px; height: 74px; margin: 0 auto 2rem; display: grid; place-items: center; border: 2px solid var(--mdl-leaf); border-radius: 50%; background: transparent; color: var(--mdl-leaf); }
body.page-success .success-page h1 { margin-bottom: 1.5rem; color: var(--mdl-cream); font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.005em; }

/* ---------------------------------------------------------------- Footer */
.footer { padding: clamp(4rem, 8vw, 7rem) 0 calc(2rem + env(safe-area-inset-bottom, 0px)); border-top: 3px solid var(--mdl-orange); background: #050d08; text-align: left; }
.footer::before, .footer::after { display: none; }
.footer-grid { display: grid; grid-template-columns: minmax(320px, 1.5fr) minmax(160px, 0.65fr) minmax(200px, 0.85fr); gap: clamp(2.5rem, 7vw, 8rem); }
.footer-brand { display: flex; align-items: center; gap: 1.4rem; }
.footer-logo { width: 180px; filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45)); }
.footer-brand strong { display: none; }
.footer-brand p { max-width: 36ch; margin: 0; color: rgba(255, 244, 224, 0.55); font-size: 0.85rem; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; color: rgba(255, 244, 224, 0.6); font-size: 0.82rem; }
.footer-label { margin: 0 0 0.8rem; color: var(--mdl-orange); font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.footer .footer-link { color: rgba(255, 244, 224, 0.66); font-size: 0.82rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.footer .footer-link:hover, .footer-phone:hover { color: var(--mdl-yellow); text-shadow: none; transform: none; }
.footer-phone { color: var(--mdl-cream); font-family: var(--font-family-condensed); font-weight: 800; font-size: 1.05rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: clamp(3rem, 7vw, 6rem); padding-top: 1.5rem; border-top: 1px solid var(--mdl-line); }
.footer-bottom p { margin: 0; color: rgba(255, 244, 224, 0.4); font-size: 0.72rem; }
.footer-signature { font-family: var(--font-family-accent) !important; font-size: 1.25rem !important; color: var(--mdl-orange) !important; }

.flash { max-width: min(420px, calc(100vw - 2rem)); border-radius: 12px; }

/* ---------------------------------------------------------------- Motion */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--mdl-ease), transform 0.75s var(--mdl-ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .mdl-ticker__track { animation: mdl-marquee 30s linear infinite; }
  @keyframes mdl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .mdl-hero__eyebrow, .mdl-hero__title .line, .mdl-hero__sub, .mdl-hero__actions, .mdl-hero__board, .mdl-hero__assure {
    opacity: 0; transform: translateY(22px); animation: mdl-rise 0.7s var(--mdl-ease) forwards;
  }
  .mdl-hero__eyebrow { animation-delay: 0.05s; }
  .mdl-hero__title .line:nth-child(1) { animation-delay: 0.15s; }
  .mdl-hero__title .line:nth-child(2) { animation-delay: 0.27s; }
  .mdl-hero__title .line:nth-child(3) { animation-delay: 0.39s; }
  .mdl-hero__sub { animation-delay: 0.5s; }
  .mdl-hero__actions { animation-delay: 0.6s; }
  .mdl-hero__board { animation-delay: 0.55s; animation-name: mdl-rise-board; }
  .mdl-hero__assure { animation-delay: 0.7s; }
  @keyframes mdl-rise { to { opacity: 1; transform: none; } }
  @keyframes mdl-rise-board { to { opacity: 1; transform: rotate(-1.5deg); } }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 1180px) {
  .header-track { display: none; }
  .header-nav { gap: 1.4rem; }
  .mdl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mdl-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 640px; width: 100%; justify-self: center; }
  .mdl-info { grid-template-columns: 1fr 1fr; }
  .mdl-info__intro { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--mdl-line); }
  .mdl-hero__board { width: 250px; flex-basis: 250px; }
}

@media (max-width: 900px) {
  :root { --header-height: calc(74px + var(--safe-top)); }
  .header-nav, .header-order { display: none; }
  .header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .header-logo .header-logo-img { height: 56px; }
  .header-actions { margin-left: auto; }
  .mdl-hero { min-height: max(720px, 100svh); padding-top: calc(var(--header-height) + 4rem); }
  .mdl-hero__veil {
    background:
      linear-gradient(90deg, rgba(4, 12, 7, 0.86) 0%, rgba(4, 12, 7, 0.5) 100%),
      linear-gradient(180deg, rgba(4, 12, 7, 0.2) 20%, rgba(4, 12, 7, 0.95) 88%);
  }
  .mdl-hero__board { display: none; }
  .mdl-hero__title { font-size: clamp(3.6rem, 14vw, 7rem); }
  .mdl-menu__head { grid-template-columns: 1fr; }
  .mdl-manifesto { grid-template-columns: 1fr; }
  body.page-product .product-detail { grid-template-columns: 1fr; }
  body.page-product .product-detail > .product-media { position: static; }
  body.page-cart .cart-content { grid-template-columns: 1fr; }
  body.page-cart .cart-summary { position: static; }
  body.page-checkout .checkout-form { grid-template-columns: 1fr; }
  body.page-checkout #payButton { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.8rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .page-home .footer { padding-bottom: calc(3rem + 58px + env(safe-area-inset-bottom)); }
}

@media (min-width: 681px) and (max-width: 900px) {
  body.page-product .product-detail-image { aspect-ratio: 16 / 10; }
}

@media (max-width: 680px) {
  :root { --container-padding: 1rem; }
  .header .nav-btn { width: 44px; padding: 0; }
  .nav-btn__label { display: none; }
  .header-logo .header-logo-img { height: 50px; }
  .mdl-hero { min-height: max(560px, 100svh); padding-top: calc(var(--header-height) + 3rem); }
  .mdl-hero__inner { margin-bottom: 1.6rem; }
  .mdl-hero__eyebrow { max-width: 80vw; line-height: 1.3; }
  .mdl-hero__title { font-size: clamp(2.9rem, 15vw, 4.9rem); }
  .mdl-hero__sub { max-width: 340px; font-size: 1.08rem; }
  .mdl-hero__actions { gap: 0.6rem; }
  .mdl-hero__actions .mdl-btn { min-height: 52px; padding: 0 1.3rem; font-size: 1rem; }
  .mdl-hero__assure { grid-template-columns: 1fr 1fr; padding-bottom: 58px; }
  .mdl-hero__assure li { min-height: 86px; padding: 1.1rem 0.8rem; }
  .mdl-hero__assure li:nth-child(2) { border-right: 0; }
  .mdl-hero__assure li:nth-child(3) { display: none; }
  .mdl-grid { grid-template-columns: 1fr; }
  .mdl-card:last-child:nth-child(odd) { max-width: none; }
  .mdl-info { grid-template-columns: 1fr; }
  .mdl-info > div, .mdl-info > div:first-child, .mdl-info > div:last-child { grid-column: 1; padding: 3.2rem 0; border-right: 0; border-bottom: 1px solid var(--mdl-line); }
  .mdl-info > div:last-child { border-bottom: 0; }
  .mdl-cta::before { inset: 0.7rem; }
  .mdl-cta__title { font-size: clamp(3.2rem, 18vw, 5.6rem); }
  body.page-catalog .catalog-header .header-top { display: block; }
  body.page-catalog .catalog-header h1 { font-size: clamp(2.8rem, 16vw, 5.4rem); }
  body.page-catalog .order-mode-badge { margin-top: 1.4rem; }
  body.page-catalog .products-grid { grid-template-columns: 1fr; }
  body.page-catalog .product-media { flex-basis: 96px; width: 96px; height: 96px; }
  body.page-catalog .product-card { padding: 0.85rem 0.95rem; }
  body.page-catalog .category-summary-title { font-size: clamp(1.7rem, 9vw, 2.6rem); }
  body.page-catalog .category-product-count { display: none; }
  body.page-catalog .order-mode-modal { align-items: flex-end; padding: 0; }
  body.page-catalog .order-mode-card { width: 100%; max-height: 94svh; overflow-y: auto; border-width: 3px 0 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  body.page-catalog .order-mode-header { padding-top: 1.8rem; }
  body.page-catalog .order-mode-title { font-size: clamp(2.3rem, 12vw, 3.8rem); }
  body.page-catalog .order-mode-options { grid-template-columns: 1fr; }
  body.page-catalog .order-mode-option { min-height: 96px; }
  body.page-catalog .order-mode-icon { width: 72px; height: 54px; flex-basis: 72px; }
  body.page-catalog .order-mode-actions { padding-bottom: calc(clamp(2rem, 5vw, 4rem) + env(safe-area-inset-bottom, 0px)); }
  body.page-product .choices-grid { grid-template-columns: 1fr; }
  body.page-product .product-header .product-title { font-size: clamp(2.5rem, 14vw, 4.4rem); }
  body.page-cart .cart-item { grid-template-columns: 1fr; gap: 1rem; }
  body.page-cart .item-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-logo { width: 150px; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .mdl-hero__eyebrow, .mdl-hero__title .line, .mdl-hero__sub, .mdl-hero__actions, .mdl-hero__board, .mdl-hero__assure { opacity: 1; }
}

/* ================================================================ Landing v2 (allégée) */
/* Mosaïque photos */
.mdl-gallery { padding: clamp(5rem, 9vw, 8rem) var(--container-padding); background: var(--mdl-ink); }
.mdl-gallery__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 1rem 2rem; max-width: 1360px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); }
.mdl-gallery__head .mdl-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.mdl-gallery__grid {
  display: grid; gap: clamp(0.7rem, 1.4vw, 1.2rem); max-width: 1360px; margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(180px, 22vw);
  grid-template-areas: "a a b c" "a a d e" "f f d e";
}
.mdl-tile { position: relative; display: block; overflow: hidden; border: 3px solid rgba(255, 122, 0, 0.5); border-radius: var(--radius-lg); background: var(--mdl-ink-2); transition: border-color 0.3s ease, transform 0.35s var(--mdl-ease), box-shadow 0.3s ease; }
.mdl-tile:hover { border-color: var(--mdl-orange); transform: translateY(-6px); box-shadow: var(--mdl-shadow); }
.mdl-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--mdl-ease); }
.mdl-tile:hover img { transform: scale(1.05); }
.mdl-tile__label {
  position: absolute; left: 0.9rem; bottom: 0.9rem; padding: 0.45rem 0.75rem; border-radius: 8px;
  background: rgba(7, 18, 11, 0.78); color: var(--mdl-cream); backdrop-filter: blur(6px);
  font-family: var(--font-family-condensed); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.mdl-tile--1 { grid-area: a; } .mdl-tile--2 { grid-area: b; } .mdl-tile--3 { grid-area: c; }
.mdl-tile--4 { grid-area: d; } .mdl-tile--5 { grid-area: e; } .mdl-tile--6 { grid-area: f; }
.mdl-tile--1 .mdl-tile__label { font-size: 1.1rem; padding: 0.6rem 0.95rem; }

/* Bande « maison » compacte (fond crème) */
.mdl-band { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(2rem, 6vw, 6rem); padding: clamp(4rem, 7vw, 6rem) var(--container-padding); background: var(--mdl-paper); color: var(--mdl-ink); }
.mdl-band__intro .mdl-eyebrow { color: #b85400; }
.mdl-band__intro h2 { margin: 0; color: var(--mdl-ink); font-family: var(--font-family-heading); text-transform: uppercase; font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 0.95; }
.mdl-band__intro h2 em { color: var(--mdl-orange); font-family: var(--font-family-accent); font-style: normal; font-weight: 400; text-transform: none; font-size: 1.05em; }
.mdl-band__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.mdl-band__list li { display: grid; gap: 0.5rem; padding-top: 1rem; border-top: 3px solid var(--mdl-orange); }
.mdl-band__num { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--mdl-ink); color: var(--mdl-yellow); font-family: var(--font-family-condensed); font-size: 0.85rem; font-weight: 800; }
.mdl-band__list strong { font-family: var(--font-family-heading); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.01em; }
.mdl-band__list li > span:last-child { color: rgba(7, 18, 11, 0.68); font-size: 0.9rem; line-height: 1.55; }

/* Infos : version 2 colonnes */
.mdl-info--two { grid-template-columns: 1.1fr 0.9fr; }
.mdl-info--two .mdl-info__title { margin-bottom: 2rem; }
.mdl-info--two .mdl-info__col--contact { display: flex; flex-direction: column; align-items: flex-start; }
.mdl-info--two .mdl-info__map { margin: 0 0 1.6rem; padding-top: 0; }
.mdl-info--two .mdl-info__btn { width: auto; min-width: 280px; }

@media (max-width: 1180px) {
  .mdl-info--two { grid-template-columns: 1fr 1fr; }
  .mdl-info--two .mdl-info__intro { grid-column: auto; border-right: 1px solid var(--mdl-line); border-bottom: 0; }
}
@media (max-width: 900px) {
  .mdl-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(160px, 30vw); grid-template-areas: "a a" "b c" "d e" "f f"; }
  .mdl-band { grid-template-columns: 1fr; }
  .mdl-band__list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .mdl-gallery__head { grid-template-columns: 1fr; }
  .mdl-gallery__grid { gap: 0.6rem; grid-auto-rows: minmax(140px, 38vw); }
  .mdl-info--two { grid-template-columns: 1fr; }
  .mdl-info--two .mdl-info__btn { width: 100%; }
}

/* Indicateur de tarif (étape à paliers, ex. « Tarif 2 viandes · +2,00 € ») */
body.page-product .step-tier-hint {
  display: inline-flex; align-items: center; gap: 0.5rem; margin: -0.4rem 0 1rem; padding: 0.4rem 0.75rem;
  border: 2px solid var(--mdl-orange); border-radius: 8px; background: rgba(255, 122, 0, 0.12); color: var(--mdl-yellow);
  font-family: var(--font-family-condensed); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
}
body.page-product .step-tier-hint[hidden] { display: none; }
