/* ==========================================================================
   SHOP & GO LONGWY — STYLESHEET
   Sommaire :
   1. Variables
   2. Reset
   3. Base
   4. Typographie
   5. Utilitaires
   6. Preloader
   7. Curseur (desktop)
   8. Header
   9. Menu mobile
   10. Hero
   11. Réassurance
   12. Introduction
   13. Carte (filtres + produits)
   14. Best of
   15. Envies
   16. Boissons exclusives
   17. Infos / Contact
   18. CTA final
   19. Réseaux sociaux
   20. Footer
   21. Bottom bar mobile
   22. Cookies
   23. Pages légales
   24. Animations
   25. Responsive
   26. Accessibilité
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
:root {
  --black: #0a0a0a;
  --black-deep: #060606;
  --anthracite: #161616;
  --anthracite-light: #1f1f1f;
  --anthracite-lighter: #2a2a2a;
  --off-white: #f5f2ec;
  --white: #ffffff;
  --grey: #9a9691;
  --grey-light: #c9c5bf;

  --orange: #ff6b1a;
  --orange-gold: #ffa332;
  --orange-deep: #e8580a;
  --yellow: #ffcc4d;
  --green: #7cbe1a;
  --green-light: #a3e04a;
  --green-deep: #5c9012;

  --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-gold) 100%);

  --font-display: "Baloo 2", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 220ms;
  --dur-base: 450ms;
  --dur-slow: 700ms;

  --header-h: 78px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* ==========================================================================
   2. RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   3. BASE
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
}

/* ==========================================================================
   4. TYPOGRAPHIE
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-gold);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gradient-orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(34px, 6vw, 64px);
  margin-top: 14px;
}

.section-subtitle {
  color: var(--grey-light);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 560px;
  margin-top: 16px;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0;
}

/* Dans une carte produit, le prix arrive juste après la carte elle-même */
.product-card .price,
.product-card .price-note {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms var(--ease-premium), transform 480ms var(--ease-premium);
}

.product-card.is-visible .price,
.product-card.is-visible .price-note {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 60ms + 240ms);
}

.price-note {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
}

/* ==========================================================================
   5. UTILITAIRES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-premium),
    box-shadow var(--dur-fast) var(--ease-premium),
    background var(--dur-fast) var(--ease-premium);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(255, 107, 26, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(245, 242, 236, 0.28);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-gold);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--off-white);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--orange);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius-s);
  font-weight: 700;
  transition: top var(--dur-fast) var(--ease-premium);
}

.skip-link:focus {
  top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-premium),
    transform var(--dur-slow) var(--ease-premium),
    filter var(--dur-slow) var(--ease-premium);
  filter: blur(4px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--dur-slow) var(--ease-premium),
    transform var(--dur-slow) var(--ease-premium);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 107, 26, 0.14);
  color: var(--orange-gold);
  border: 1px solid rgba(255, 163, 50, 0.35);
}

/* Les badges d'une carte produit apparaissent avec un léger scale */
.product-card .badge {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 380ms var(--ease-premium), transform 380ms var(--ease-premium);
}

.product-card.is-visible .badge {
  opacity: 1;
  transform: scale(1);
  transition-delay: calc(var(--i, 0) * 60ms + 320ms);
}

.badge-featured {
  background: rgba(255, 204, 77, 0.12);
  color: var(--yellow);
  border-color: rgba(255, 204, 77, 0.35);
}

/* ==========================================================================
   6. PRELOADER — séquence cinématique (orbe > logo > mots > fondu continu)
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black-deep);
  opacity: 1;
  filter: blur(0);
  transition: opacity 900ms var(--ease-premium), filter 900ms var(--ease-premium);
}

#preloader.is-hidden {
  opacity: 0;
  filter: blur(22px);
  pointer-events: none;
}

.preloader-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: transform 900ms var(--ease-premium);
}

#preloader.is-hidden .preloader-content {
  transform: scale(1.06);
}

.preloader-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: preloaderOrb 900ms var(--ease-premium) forwards;
}

@keyframes preloaderOrb {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(26);
  }
}

.preloader-logo {
  position: relative;
  width: clamp(120px, 26vw, 180px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: blur(14px) drop-shadow(0 0 24px rgba(255, 107, 26, 0.35));
  transform: scale(0.85);
  animation: preloaderLogoIn 620ms var(--ease-premium) 260ms forwards;
}

@keyframes preloaderLogoIn {
  0% {
    opacity: 0;
    filter: blur(14px) drop-shadow(0 0 0 rgba(255, 107, 26, 0));
    transform: scale(0.85);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 26px rgba(255, 107, 26, 0.4));
    transform: scale(1);
  }
}

.preloader-words {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
}

.preloader-words span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-light);
  opacity: 0;
  transform: translateY(8px);
  animation: preloaderWordIn 380ms var(--ease-premium) forwards;
}

.preloader-words span:nth-child(1) { animation-delay: 700ms; color: var(--orange-gold); }
.preloader-words span:nth-child(2) { animation-delay: 850ms; }
.preloader-words span:nth-child(3) { animation-delay: 1000ms; color: var(--green-light); }

.preloader-words span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.25);
}

@keyframes preloaderWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: preloaderFadeIn 400ms var(--ease-premium) 500ms forwards;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-orange);
  border-radius: 100px;
  transition: width 120ms linear;
}

.preloader-percent {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--grey);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: opacity 200ms linear;
    filter: none !important;
  }

  .preloader-content,
  .preloader-orb,
  .preloader-logo,
  .preloader-words span,
  .preloader-progress {
    animation: none !important;
    transition: opacity 200ms linear !important;
  }

  .preloader-orb {
    display: none;
  }

  .preloader-logo {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .preloader-words span {
    opacity: 1;
    transform: none;
  }

  .preloader-progress {
    opacity: 1;
  }

  #preloader.is-hidden {
    opacity: 0;
  }

  #preloader.is-hidden .preloader-content {
    transform: none;
  }
}

/* ==========================================================================
   6B. TRANSITION SITE — apparition douce sous le preloader
   La classe "site-loading" n'est ajoutée qu'en JS (voir script.js) : sans
   JavaScript, ces règles ne s'appliquent jamais et le site reste visible.
   ========================================================================== */
.site-header,
main,
.site-footer,
.mobile-bottom-bar {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition: opacity 900ms var(--ease-premium), filter 900ms var(--ease-premium),
    transform 900ms var(--ease-premium);
}

body.site-loading .site-header,
body.site-loading main,
body.site-loading .site-footer,
body.site-loading .mobile-bottom-bar {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px) scale(0.99);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  main,
  .site-footer,
  .mobile-bottom-bar {
    filter: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   7. CURSEUR DESKTOP
   ========================================================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-premium), height var(--dur-fast) var(--ease-premium),
    background var(--dur-fast) var(--ease-premium), opacity var(--dur-fast) var(--ease-premium);
  will-change: transform;
}

.cursor-dot.is-hover {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 26, 0.18);
  border: 1.5px solid var(--orange);
}

/* ==========================================================================
   8. HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding-top: var(--safe-top);
  background: transparent;
  transition: background var(--dur-base) var(--ease-premium),
    backdrop-filter var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

/* Fin liseré dégradé sous le header : discret au repos, il s'affirme
   légèrement une fois la page défilée. */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 163, 50, 0.28) 18%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 163, 50, 0.28) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.55;
  transition: opacity var(--dur-base) var(--ease-premium);
  pointer-events: none;
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-premium);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-orange);
  transition: width var(--dur-fast) var(--ease-premium);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-premium), opacity var(--dur-fast) var(--ease-premium);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   9. MENU MOBILE
   ========================================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(6, 6, 6, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(24px + var(--safe-top)) 32px calc(32px + var(--safe-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-premium), visibility var(--dur-base),
    transform var(--dur-base) var(--ease-premium);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-close {
  position: absolute;
  top: calc(20px + var(--safe-top));
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: clamp(30px, 9vw, 44px);
  text-transform: uppercase;
  color: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus-visible {
  color: var(--orange-gold);
}

.mobile-nav-footer {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   10. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--safe-top) + clamp(24px, 4vw, 48px));
  padding-bottom: clamp(40px, 6vw, 72px);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(90% 70% at 82% 20%, rgba(255, 107, 26, 0.14) 0%, rgba(255, 107, 26, 0) 60%),
    radial-gradient(120% 100% at 50% 0%, #1c1c1c 0%, var(--black) 70%);
}

.hero-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 620px;
  display: flex;
  flex-direction: column;
}

.hero-new-badge {
  align-self: flex-start;
  margin-bottom: 18px;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-size: clamp(40px, 8vw, 108px);
  line-height: 1.02;
  margin-top: clamp(20px, 4vw, 34px);
}

.hero-title span {
  display: block;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title span:first-child {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(16px, 2.4vw, 21px);
  font-weight: 700;
  color: var(--white);
}

.hero-desc {
  margin-top: 12px;
  max-width: 560px;
  color: var(--grey-light);
  font-size: 15px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-meta strong {
  color: var(--off-white);
}

/* La photo est fondue par MASQUE (et non par un aplat noir posé dessus) :
   le fond réel du hero — dégradé gris + halo orange — reste visible à
   travers, ce qui évite toute ligne de démarcation visible.
   Masque vertical sur le conteneur + masque horizontal sur l'image :
   les deux se combinent naturellement par imbrication. */
.hero-photo-wrap {
  position: absolute;
  top: calc(var(--header-h) + var(--safe-top) + clamp(24px, 4vw, 48px));
  right: 0;
  bottom: 0;
  left: 48%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.92);
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.02) 10%,
    rgba(0, 0, 0, 0.07) 20%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.26) 40%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.83) 80%,
    rgba(0, 0, 0, 0.93) 90%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.02) 10%,
    rgba(0, 0, 0, 0.07) 20%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.26) 40%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.83) 80%,
    rgba(0, 0, 0, 0.93) 90%,
    rgba(0, 0, 0, 1) 100%
  );
}


/* ==========================================================================
   11. RÉASSURANCE
   ========================================================================== */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--anthracite);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 34px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange-gold);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.trust-item:hover svg {
  transform: translateY(-3px);
}

.trust-item[data-accent="green"] svg {
  stroke: var(--green-light);
}

.trust-item span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
}

/* ==========================================================================
   12. INTRODUCTION
   ========================================================================== */
.intro {
  padding: 120px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.intro-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--anthracite);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-premium);
}

.intro-media:hover img {
  transform: scale(1.04);
}

.intro-text p {
  margin-top: 22px;
  color: var(--grey-light);
  font-size: 16px;
  max-width: 480px;
}

.intro-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-tags span {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.intro-tags span:hover {
  border-color: var(--orange);
  color: var(--orange-gold);
}

/* ==========================================================================
   13. CARTE
   ========================================================================== */
.menu-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--black) 0%, var(--anthracite) 100%);
}

.menu-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-head .section-subtitle {
  max-width: 640px;
}

.menu-filters {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* La rangée de filtres passe à la ligne : 8 catégories tiennent sur
   2 lignes centrées, sans jamais déborder horizontalement. */
.menu-filters-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1040px;
  margin-inline: auto;
}

.filter-btn {
  padding: 11px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
  background: var(--anthracite-light);
  max-width: 100%;
  transition: background var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium),
    border-color var(--dur-fast) var(--ease-premium), transform var(--dur-fast) var(--ease-premium);
}

.filter-btn:hover {
  border-color: rgba(255, 163, 50, 0.4);
  color: var(--white);
}

.filter-btn.is-active {
  background: var(--gradient-orange);
  color: var(--black);
  border-color: transparent;
}

.menu-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Les cartes se révèlent au scroll (classe .reveal pilotée par
   IntersectionObserver), en cascade grâce à la variable --i. */
.product-card {
  position: relative;
  background: var(--anthracite-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(26px) scale(0.985);
  transition: opacity 620ms var(--ease-premium), transform 620ms var(--ease-premium),
    filter 620ms var(--ease-premium), border-color var(--dur-base) var(--ease-premium),
    box-shadow var(--dur-base) var(--ease-premium);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.product-card.is-visible {
  transform: translateY(0) scale(1);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 26, 0.35);
  box-shadow: 0 22px 44px -26px rgba(255, 107, 26, 0.35);
  transition-delay: 0ms;
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--anthracite);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0) 55%);
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-premium);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
  background: radial-gradient(120% 100% at 50% 0%, #232323 0%, #141414 100%);
}

.img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5px 5px;
}

.img-fallback svg {
  width: 34px;
  height: 34px;
  stroke: var(--orange-gold);
  position: relative;
}

.img-fallback span {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.product-badges {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
}

.product-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey-light);
  flex: 1;
}

.product-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-options {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-options span {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey-light);
}

.menu-empty {
  display: none;
  text-align: center;
  padding: 70px 20px;
  color: var(--grey);
}

.menu-empty.is-visible {
  display: block;
}

/* Mot de fin sous la carte */
.menu-outro {
  margin-top: 56px;
  text-align: center;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--grey-light);
}

.menu-outro::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 auto 26px;
  border-radius: 2px;
  background: var(--gradient-orange);
}

/* Intitulé de section dans la vue "Tout" : structure la carte en
   chapitres lisibles plutôt qu'en une grille interminable. */
.product-group-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 34px 0 4px;
}

.menu-grid > .product-group-heading:first-child {
  margin-top: 8px;
}

.product-group-heading span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 27px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.product-group-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 163, 50, 0.35) 0%, rgba(255, 255, 255, 0.06) 100%);
}

/* Note affichée sous un titre de section (ex. choix du pain) */
.product-group-note {
  grid-column: 1 / -1;
  margin: -6px 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--grey-light);
}

.product-group-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ==========================================================================
   13C. FORMULES
   ========================================================================== */
.formules {
  padding: clamp(40px, 6vw, 80px) 0 120px;
}

.formules-note {
  margin-top: 14px;
  color: var(--grey);
  font-size: 13.5px;
}

.formules-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cartes volontairement typographiques (sans photo) : la page reste
   légère et l'accent va sur le prix. */
.formule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(150deg, rgba(255, 107, 26, 0.07) 0%, var(--anthracite) 55%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-l);
  padding: 34px 32px;
  overflow: hidden;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease-premium), transform 620ms var(--ease-premium),
    filter 620ms var(--ease-premium), border-color var(--dur-base) var(--ease-premium);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.formule-card.is-visible {
  transform: translateY(0);
}

.formule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 44px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--gradient-orange);
}

.formule-card:hover {
  border-color: rgba(255, 107, 26, 0.4);
  transform: translateY(-4px);
  transition-delay: 0ms;
}

.formule-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.formule-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.formule-head .price {
  font-size: 26px;
  white-space: nowrap;
}

.formule-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grey-light);
  max-width: 46ch;
}

/* ==========================================================================
   14. BEST OF
   ========================================================================== */
.bestof {
  padding: 110px 0;
}

/* 4 favoris : grille pleine largeur sur desktop, défilement
   horizontal fluide sur petits écrans. */
.bestof-scroller {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .bestof-scroller {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
}

.bestof-scroller::-webkit-scrollbar {
  display: none;
}

.bestof-card {
  scroll-snap-align: start;
  background: var(--anthracite-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium);
}

.bestof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.35);
}

.bestof-media {
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--anthracite);
}

.bestof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestof-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bestof-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}

/* ==========================================================================
   15. ENVIES
   ========================================================================== */
.cravings {
  padding: 90px 0 110px;
}

.cravings-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-radius: var(--radius-l);
  overflow: hidden;
}

.craving-item {
  position: relative;
  padding: 46px 20px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background: var(--anthracite-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}

/* Photo de fond : volontairement assombrie pour que le titre reste
   parfaitement lisible ; elle s'éclaire et zoome légèrement au survol. */
.craving-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.02);
  transition: opacity var(--dur-base) var(--ease-premium), transform var(--dur-slow) var(--ease-premium);
}

.craving-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.55) 45%, rgba(6, 6, 6, 0.25) 100%);
  pointer-events: none;
}

.craving-item::before {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.craving-item span {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  position: relative;
  z-index: 2;
  transition: color var(--dur-fast) var(--ease-premium);
}

.craving-item:hover img {
  opacity: 0.6;
  transform: scale(1.07);
}

.craving-item:hover span {
  color: var(--orange-gold);
}

/* ==========================================================================
   16. BOISSONS EXCLUSIVES
   ========================================================================== */
.exclusive {
  padding: 0 0 120px;
}

.exclusive-panel {
  border-radius: var(--radius-l);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--anthracite);
}

.exclusive-bg {
  position: absolute;
  inset: 0;
}

.exclusive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 6, 6, 0.94) 10%, rgba(6, 6, 6, 0.35) 65%, rgba(6, 6, 6, 0.15) 100%);
}

.exclusive-content {
  position: relative;
  z-index: 1;
  padding: 56px;
  max-width: 640px;
}

.exclusive-content p {
  margin-top: 18px;
  color: var(--grey-light);
  font-size: 16px;
}

.exclusive-content .btn {
  margin-top: 30px;
}

/* ==========================================================================
   17. INFOS / CONTACT
   ========================================================================== */
.infos {
  padding: 110px 0;
}

.infos-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.infos-card {
  background: var(--anthracite);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-l);
  padding: 40px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(124, 190, 26, 0.12);
  color: var(--green-light);
  border: 1px solid rgba(124, 190, 26, 0.35);
  transition: background var(--dur-base) var(--ease-premium), color var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}

.status-pill.is-soon {
  background: rgba(255, 204, 77, 0.1);
  color: var(--yellow);
  border-color: rgba(255, 204, 77, 0.35);
}

.status-pill.is-closed {
  background: rgba(255, 90, 90, 0.1);
  color: #ff7a7a;
  border-color: rgba(255, 122, 122, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.infos-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.infos-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.infos-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.infos-row h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
}

.infos-row p,
.infos-row a {
  font-size: 15px;
  color: var(--off-white);
  margin-top: 4px;
}

.infos-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-card {
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.map-visual {
  flex: 1;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #232323, #101010 70%);
  min-height: 280px;
}

.map-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.map-card .btn {
  border-radius: 0;
}

/* ==========================================================================
   18. CTA FINAL
   ========================================================================== */
.cta-final {
  padding: 110px 0;
  background: var(--gradient-orange);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 10, 10, 0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final h2 {
  color: var(--black);
  font-size: clamp(38px, 7vw, 74px);
}

.cta-final p {
  margin-top: 16px;
  color: rgba(10, 10, 10, 0.75);
  font-size: 17px;
  font-weight: 600;
}

.cta-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-final .btn-primary {
  background: var(--black);
  color: var(--white);
}

.cta-final .btn-outline {
  border-color: rgba(10, 10, 10, 0.4);
  color: var(--black);
}

/* ==========================================================================
   19. RÉSEAUX SOCIAUX
   ========================================================================== */
.social-section {
  padding: 100px 0;
  text-align: center;
}

.social-section .section-subtitle {
  margin-inline: auto;
}

.social-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 560px;
  margin-inline: auto;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 38px 20px;
  border-radius: var(--radius-l);
  background: var(--anthracite);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium);
}

.social-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.4);
}

.social-btn svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange-gold);
}

.social-btn strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.social-handle {
  margin-top: 30px;
  font-size: 14px;
  color: var(--grey);
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--anthracite);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 calc(30px + var(--safe-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-sig {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange-gold);
  font-weight: 700;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: var(--grey-light);
  transition: color var(--dur-fast) var(--ease-premium);
}

.footer-col a:hover {
  color: var(--orange-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--grey);
}

.footer-bottom a {
  color: var(--grey-light);
}

.footer-bottom a:hover {
  color: var(--orange-gold);
}

.footer-credit a {
  color: var(--orange-gold);
  font-weight: 700;
}

/* ==========================================================================
   21. BOTTOM BAR MOBILE
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
}

/* ==========================================================================
   22. COOKIES
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 560px;
  margin-inline: auto;
  background: var(--anthracite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-l);
  padding: 24px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-premium), opacity var(--dur-slow) var(--ease-premium);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  font-size: 13.5px;
  color: var(--grey-light);
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--orange-gold);
  text-decoration: underline;
}

.cookie-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 12px 20px;
  font-size: 12px;
}

/* ==========================================================================
   23. PAGES LÉGALES
   ========================================================================== */
.legal-page {
  padding: calc(var(--header-h) + 60px) 0 100px;
  max-width: 820px;
  margin-inline: auto;
}

.legal-page h1 {
  font-size: clamp(32px, 6vw, 48px);
}

.legal-page .updated {
  margin-top: 12px;
  font-size: 13px;
  color: var(--grey);
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 18px;
  text-transform: none;
  color: var(--white);
  margin-top: 44px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.legal-page p,
.legal-page li {
  color: var(--grey-light);
  font-size: 15px;
  line-height: 1.75;
}

.legal-page ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-page a {
  color: var(--orange-gold);
  text-decoration: underline;
}

.placeholder {
  color: var(--orange-gold);
  font-weight: 700;
  background: rgba(255, 163, 50, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-back:hover {
  color: var(--orange-gold);
}

/* ==========================================================================
   24. ANIMATIONS GLOBALES
   ========================================================================== */
@media (hover: hover) {
  .hover-lift:hover {
    transform: translateY(-3px);
  }
}

/* ==========================================================================
   25. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    aspect-ratio: 16 / 9;
  }

  .infos-grid {
    grid-template-columns: 1fr;
  }

  .cravings-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }


  .hero-photo-wrap {
    left: 58%;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  /* Sur mobile la photo devient une bannière : le fondu passe en
     vertical (le conteneur ne masque plus rien, l'image fait tout). */
  .hero-photo-wrap {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    height: 46vh;
    min-height: 230px;
    margin-bottom: 24px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-photo-img {
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.95) 30%,
      rgba(0, 0, 0, 0.82) 45%,
      rgba(0, 0, 0, 0.62) 58%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.2) 82%,
      rgba(0, 0, 0, 0.06) 92%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.95) 30%,
      rgba(0, 0, 0, 0.82) 45%,
      rgba(0, 0, 0, 0.62) 58%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.2) 82%,
      rgba(0, 0, 0, 0.06) 92%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .hero-inner {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    align-items: center;
    margin-inline: auto;
  }

  .hero-new-badge {
    align-self: center;
  }

  .hero-desc {
    max-width: 480px;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .header-call span {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item {
    padding: 26px 10px;
  }

  body {
    padding-bottom: 70px;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    gap: 10px;
    padding: 12px 16px calc(12px + var(--safe-bottom));
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-bottom-bar .btn {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
  }

  .cookie-banner {
    bottom: calc(78px + var(--safe-bottom));
  }
}

@media (max-width: 780px) {
  .exclusive-content {
    padding: 34px 24px;
  }

  .cravings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formules-grid {
    grid-template-columns: 1fr;
  }
}

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

  .formule-card {
    padding: 28px 24px;
  }

  .bestof-scroller {
    grid-auto-columns: 72%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .cursor-dot {
    display: none;
  }

  .hero {
    align-items: flex-end;
  }


  .product-group-heading {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  /* iPhone SE & co : sans cela, "Voir la carte" (nowrap) déborde
     de la barre fixe et provoque un scroll horizontal. */
  .mobile-bottom-bar .btn {
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 13px 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }

  /* Pastilles de filtre compactées : le libellé le plus long
     ("Viennoiseries & Petits déjeuners") tient sur une ligne dès 320 px. */
  .filter-btn {
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 9px 14px;
  }

  .menu-filters {
    margin-top: 32px;
    gap: 8px;
  }

  .menu-filters-scroll {
    gap: 8px;
  }

  .cravings-grid {
    grid-template-columns: 1fr;
  }

  .exclusive-panel {
    min-height: 400px;
  }

}

/* ==========================================================================
   26. ACCESSIBILITÉ
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-photo-img,
  .hero-text {
    transform: none !important;
  }

  .cursor-dot {
    display: none !important;
  }
}

@media (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}
