/* A-Emporter — Modern Design System */
:root {
  /* Couleurs */
  --primary: #C9A24A;
  --primary-dark: #8B6E22;
  --primary-light: #E8D08A;
  --primary-soft: #F8F0DA;
  --gold: #FFB800;
  --gold-mirror: linear-gradient(135deg, #F8E7A8 0%, #E8C972 18%, #C9A24A 38%, #8B6E22 50%, #C9A24A 62%, #E8C972 82%, #F8E7A8 100%);
  --gold-mirror-soft: linear-gradient(135deg, #FAEFC2 0%, #E8D08A 30%, #C9A24A 55%, #B5891E 80%, #C9A24A 100%);
  --silver-mirror: linear-gradient(135deg, #FFFFFF 0%, #D9D9D9 20%, #A8A8A8 40%, #7A7A7A 50%, #A8A8A8 60%, #D9D9D9 80%, #FFFFFF 100%);
  --bg: #0a0a14;
  --bg-alt: #F4F4F6;
  --card: #FFFFFF;
  --text: #0F0F11;
  --text-2: #5C5C66;
  --text-3: #9999A3;
  --border: #EEEEF1;
  --shadow-sm: 0 1px 2px rgba(15, 15, 17, 0.04), 0 2px 6px rgba(15, 15, 17, 0.04);
  --shadow: 0 4px 16px rgba(15, 15, 17, 0.06), 0 1px 3px rgba(15, 15, 17, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 15, 17, 0.08), 0 4px 12px rgba(15, 15, 17, 0.06);
  --radius: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

body {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

#main-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Icônes SVG */
.ic { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* ========== HEADER ========== */
.app-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 100%);
  padding: 16px 20px 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(232, 208, 138, 0.2);
  color: white;
}

.app-header .logo-text {
  color: white;
}

.app-header .logo-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.app-header .search-bar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header .search-bar input {
  color: white;
  background: transparent;
}

.app-header .search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.app-header .search-bar .search-icon {
  color: rgba(255, 255, 255, 0.55);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold-mirror);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 14px rgba(255, 107, 71, 0.25);
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-mark-img {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 48px;
  height: 48px;
}
.logo-mark-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer-logo .logo-mark-img {
  width: 80px;
  height: 80px;
}

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}

.header-action {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.header-action svg { width: 20px; height: 20px; }

.search-bar {
  position: relative;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 12px 14px 12px 42px;
}

.search-bar input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: var(--text);
  font-family: inherit;
}

.search-bar input::placeholder { color: var(--text-3); }

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

/* ========== MAIN ========== */
#main-content {
  padding: 0 0 30px;
  min-height: calc(100vh - 140px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ========== HOME PAGE — Landing marketing ========== */
.home-page {
  padding: 0 0 40px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.cities-section,
.themes-section,
.influencers-section,
.faq-section,
.how-it-works,
.big-cta,
.seo-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.city-block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* HERO LANDING */
.landing-hero {
  position: relative;
  margin: 0;
  padding: 28px 22px 24px;
  color: white;
  background: #0a0a14;
  overflow: hidden;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* MUR DE VIDÉOS DÉFILANTES */
.hero-video-wall {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 10px;
  padding: 0 8px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-4deg) scale(1.15);
  transform-origin: center;
}

.hero-video-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.col-up {
  animation: heroScrollUp 32s linear infinite;
}

.col-down {
  animation: heroScrollDown 28s linear infinite;
}

@keyframes heroScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes heroScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.hero-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vidéo dans une tuile du hero */
.hero-tile.lazy-video .card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-tile.lazy-video .card-video iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  pointer-events: none;
}

.hero-tile-letter {
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -2px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-tile-name {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Vidéo Vimeo en fond du hero (couvre le mur de vidéos une fois chargée) */
.hero-vimeo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
  background: #0a0a14;
}

.hero-vimeo-bg.loaded {
  opacity: 1;
}

.hero-vimeo-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 784 / 1168;
  border: 0;
  pointer-events: none;
}

/* ========== BANDEAU MULTILINGUE — Marquee 6 langues ========== */
.lang-marquee {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 20, 1) 0%,
      rgba(20, 16, 8, 1) 50%,
      rgba(10, 10, 20, 1) 100%);
  border-top: 1px solid rgba(255, 217, 120, 0.25);
  border-bottom: 1px solid rgba(255, 217, 120, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 217, 120, 0.08),
    inset 0 -1px 0 rgba(255, 217, 120, 0.08),
    0 4px 30px rgba(201, 162, 74, 0.08);
  overflow: hidden;
  padding: 16px 0;
}

/* Halo doré subtil derrière le bandeau */
.lang-marquee::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(201, 162, 74, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Fade-out gauche / droite pour un effet de profondeur */
.lang-marquee::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 20, 1) 0%,
      transparent 8%,
      transparent 92%,
      rgba(10, 10, 20, 1) 100%);
}

.lang-marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: langScroll 60s linear infinite;
  position: relative;
  z-index: 1;
  will-change: transform;
}

@keyframes langScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lang-marquee:hover .lang-marquee-track {
  animation-play-state: paused;
}

.lang-item {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.lang-flag {
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  display: inline-block;
}

/* Séparateurs dorés pulsants */
.lang-sep {
  font-size: 14px;
  background: linear-gradient(135deg, #F8E7A8, #C9A24A, #F8E7A8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(201, 162, 74, 0.5));
  animation: sepPulse 3s ease-in-out infinite;
}

@keyframes sepPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* Variante dorée appliquée à 1 message sur 4 (FR + AR + JA pour casser le rythme) */
.lang-marquee .lang-item:nth-of-type(4n+2) {
  background: linear-gradient(135deg,
    #F8E7A8 0%,
    #E8C972 25%,
    #C9A24A 50%,
    #E8C972 75%,
    #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.lang-marquee .lang-item:nth-of-type(4n+2) .lang-flag {
  -webkit-text-fill-color: initial;
  background: none;
}

/* Polices natives par langue — utilise les fonts système qui couvrent
   chaque script Unicode automatiquement */
.lang-ar {
  font-family: 'Noto Sans Arabic', 'Geeza Pro', 'Tahoma', 'Amiri', system-ui, sans-serif;
  font-size: 18px;
}
.lang-zh {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', system-ui, sans-serif;
  font-size: 17px;
}
.lang-ja {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Noto Sans JP', 'Meiryo', system-ui, sans-serif;
  font-size: 17px;
}
.lang-he {
  font-family: 'Noto Sans Hebrew', 'David Libre', 'Tahoma', 'Arial Hebrew', system-ui, sans-serif;
  font-size: 18px;
}
.lang-ko {
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', system-ui, sans-serif;
  font-size: 17px;
}
.lang-th {
  font-family: 'Sarabun', 'Tahoma', 'Noto Sans Thai', system-ui, sans-serif;
  font-size: 17px;
}
.lang-hi {
  font-family: 'Noto Sans Devanagari', 'Mangal', system-ui, sans-serif;
  font-size: 17px;
}
/* Cyrillique + grec — Inter supporte ces scripts */
.lang-ru, .lang-el {
  font-family: inherit;
}

/* Polices distinctives pour chaque "Bon appétit" en alphabet latin */
.lang-fr {
  font-family: 'Italianno', 'Snell Roundhand', cursive;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.lang-en {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.lang-es {
  font-family: 'Cinzel', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.lang-it {
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.4px;
}
.lang-de {
  font-family: 'DM Serif Display', 'Bodoni 72', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
.lang-pt {
  font-family: 'Caveat', 'Marker Felt', cursive;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.3px;
}
.lang-nl {
  font-family: 'Marcellus', 'Trajan Pro', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1.5px;
}
.lang-tr {
  font-family: 'Yeseva One', 'Bodoni 72', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.lang-vi {
  font-family: 'Bodoni Moda', 'Bodoni 72', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
}

@media (prefers-reduced-motion: reduce) {
  .lang-marquee-track { animation-duration: 120s; }
  .lang-sep { animation: none; }
}

/* Overlay sombre par-dessus le mur de vidéos — assombri en haut/bas pour
   garantir la lisibilité du h1 et des CTAs, transparent au centre pour
   laisser voir la vidéo de fond */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 20, 0.55) 0%,
      rgba(10, 10, 20, 0.30) 18%,
      rgba(10, 10, 20, 0.05) 42%,
      rgba(10, 10, 20, 0.05) 58%,
      rgba(10, 10, 20, 0.35) 82%,
      rgba(10, 10, 20, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Contenu du hero — bloc compact (titre + CTAs + stats) centré verticalement
   mais légèrement remonté vers le haut pour laisser plus d'espace vidéo en bas */
.landing-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  justify-content: center;
  padding: 8px 0 14vh;
  text-align: center;
}

.landing-hero-content .landing-h1-flow {
  margin: 0 0 20vh;
}

.landing-hero-content .landing-cta-row {
  margin-top: 0;
}

.landing-hero-content .landing-stats {
  margin-top: 22px;
}

.landing-hero-content .landing-h1,
.landing-hero-content .landing-tagline,
.landing-hero-content .action-flow-rotating {
  text-align: center;
  justify-content: center;
}

.landing-hero-content .landing-cta-row,
.landing-hero-content .landing-stats {
  justify-content: center;
}

/* Stats centrées */
.landing-hero-content .land-stat {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hero-badge svg { width: 12px; height: 12px; color: #FFD978; }

.landing-h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  margin-bottom: 18px;
}

.landing-h1 span {
  background: linear-gradient(90deg, #F8E7A8 0%, #E8C972 25%, #C9A24A 50%, #E8C972 75%, #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Logo bi-couleur "See Eats" — argenté + doré effet miroir
   Utilisable PARTOUT : hero, header, drawer, splash, modals, footer, etc.
   letter-spacing: 0 + padding suffisant pour que l'italique ne soit pas coupé
   par le webkit-background-clip text. */
.brand-see,
.brand-eats {
  display: inline-block;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0 !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.12em 0.04em 0.04em;
  margin: 0 -0.04em;
}

/* "See" — argent miroir (silver) */
.brand-see {
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8E8E8 18%,
    #B8B8B8 38%,
    #707070 50%,
    #B8B8B8 62%,
    #E8E8E8 82%,
    #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* "Eats" — or miroir (gold) */
.brand-eats {
  background: linear-gradient(135deg,
    #F8E7A8 0%,
    #E8C972 18%,
    #C9A24A 38%,
    #8B6E22 50%,
    #C9A24A 62%,
    #E8C972 82%,
    #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Variante pour les gros titres (hero) — re-déclare les backgrounds avec une
   spécificité plus haute (0,2,0) pour battre `.landing-h1 span` (0,1,1)
   qui appliquait l'or à toutes les spans dont .brand-see. */
.landing-h1 .brand-see,
.landing-h1 .brand-eats,
.landing-h1-flow .brand-see,
.landing-h1-flow .brand-eats {
  padding: 0 0.14em 0.06em 0.06em;
  margin: 0 -0.04em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.landing-h1 .brand-see,
.landing-h1-flow .brand-see {
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8E8E8 18%,
    #B8B8B8 38%,
    #707070 50%,
    #B8B8B8 62%,
    #E8E8E8 82%,
    #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-h1 .brand-eats,
.landing-h1-flow .brand-eats {
  background: linear-gradient(135deg,
    #F8E7A8 0%,
    #E8C972 18%,
    #C9A24A 38%,
    #8B6E22 50%,
    #C9A24A 62%,
    #E8C972 82%,
    #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero h1 sous forme de flux rotatif (Découvrez les top : [cuisine] de [ville] avec See Eats) */
.landing-h1-flow {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 22px;
  gap: 6px 8px;
}
.landing-h1-flow .action-prefix,
.landing-h1-flow .action-suffix {
  font-size: 28px;
  font-weight: 800;
  color: white;
}
.landing-h1-flow .rotating-cuisines-flow {
  font-size: 32px;
  font-weight: 900;
}
@media (max-width: 480px) {
  .landing-h1-flow { font-size: 24px; }
  .landing-h1-flow .action-prefix,
  .landing-h1-flow .action-suffix { font-size: 22px; }
  .landing-h1-flow .rotating-cuisines-flow { font-size: 26px; }
}

.landing-h1 .rotating-word {
  display: inline-block;
  height: 1.05em;
  overflow: hidden;
  vertical-align: bottom;
  background: none;
  -webkit-text-fill-color: initial;
}

.landing-h1 .rotating-list {
  display: inline-flex;
  flex-direction: column;
  animation: rotateWords 8s infinite;
  background: none;
  -webkit-text-fill-color: initial;
}

.landing-h1 .rotating-list > span {
  display: block;
  height: 1.05em;
  line-height: 1.05;
  background: linear-gradient(90deg, #F8E7A8 0%, #E8C972 25%, #C9A24A 50%, #E8C972 75%, #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rotateWords {
  0%, 20%   { transform: translateY(0); }
  25%, 45%  { transform: translateY(-1.05em); }
  50%, 70%  { transform: translateY(-2.10em); }
  75%, 95%  { transform: translateY(-3.15em); }
  100%      { transform: translateY(0); }
}

.landing-h1 .rotating-cuisines .rotating-list {
  animation: rotateCuisines 16s infinite;
}

.action-flow-rotating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 6px 0 22px;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.action-prefix,
.action-suffix {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 16px;
}

.action-suffix {
  white-space: nowrap;
}

.rotating-cuisines-flow {
  display: inline-block;
  height: 1.3em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 0;
  width: auto;
  white-space: nowrap;
}

.rotating-cuisines-flow .rotating-list {
  display: inline-flex;
  flex-direction: column;
  animation: rotateCuisinesFlow 20s infinite;
}

.rotating-cuisines-flow .rotating-list > span {
  display: block;
  height: 1.3em;
  line-height: 1.3;
  background: linear-gradient(90deg, #F8E7A8 0%, #E8C972 25%, #C9A24A 50%, #E8C972 75%, #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 10 cuisines × 2s chacune = cycle 20s. Chaque mot reste visible 8% du temps,
   transition de 2% entre chaque. */
@keyframes rotateCuisinesFlow {
  0%,    8%    { transform: translateY(0); }
  10%,   18%   { transform: translateY(-1.3em); }
  20%,   28%   { transform: translateY(-2.6em); }
  30%,   38%   { transform: translateY(-3.9em); }
  40%,   48%   { transform: translateY(-5.2em); }
  50%,   58%   { transform: translateY(-6.5em); }
  60%,   68%   { transform: translateY(-7.8em); }
  70%,   78%   { transform: translateY(-9.1em); }
  80%,   88%   { transform: translateY(-10.4em); }
  90%,   98%   { transform: translateY(-11.7em); }
  100%         { transform: translateY(-13em); }
}

@keyframes rotateCuisines {
  0%,    9%   { transform: translateY(0); }
  12.5%, 21.5%{ transform: translateY(-1.05em); }
  25%,   34%  { transform: translateY(-2.10em); }
  37.5%, 46.5%{ transform: translateY(-3.15em); }
  50%,   59%  { transform: translateY(-4.20em); }
  62.5%, 71.5%{ transform: translateY(-5.25em); }
  75%,   84%  { transform: translateY(-6.30em); }
  87.5%, 96.5%{ transform: translateY(-7.35em); }
  100%        { transform: translateY(-8.40em); }
}

.landing-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 26px;
}

.action-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 10px;
  margin: 6px 0 22px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.action-step {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  transition: color 0.4s, background 0.4s, border-color 0.4s, transform 0.4s;
  animation: actionPulse 6s infinite;
}

.action-step[data-step="1"] { animation-delay: 0s; }
.action-step[data-step="2"] { animation-delay: 1.5s; }
.action-step[data-step="3"] { animation-delay: 3s; }
.action-step[data-step="4"] { animation-delay: 4.5s; }

.action-arrow {
  color: rgba(255, 217, 120, 0.7);
  font-weight: 900;
}

@keyframes actionPulse {
  0%, 20%, 100% {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1);
  }
  4%, 16% {
    color: #1a1a1a;
    background: linear-gradient(90deg, #F8E7A8 0%, #E8C972 25%, #C9A24A 50%, #E8C972 75%, #F8E7A8 100%);
    border-color: #FFD978;
    transform: scale(1.06);
  }
}

.landing-tagline strong {
  color: white;
  font-weight: 800;
}

.landing-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s;
}

.cta-primary:active { transform: scale(0.97); }

.cta-primary svg { width: 18px; height: 18px; }

.cta-large {
  padding: 18px 30px;
  font-size: 16px;
}

.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}

.cta-secondary:active { transform: scale(0.97); }

.cta-secondary svg { width: 16px; height: 16px; }

/* Bouton principal du hero — fond glass sombre (un peu plus foncé que cta-secondary) */
.landing-hero-content .cta-primary {
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 217, 120, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: #F8E7A8;
}

.landing-hero-content .cta-primary svg {
  color: #F8E7A8;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

/* Texte des boutons du hero — gradient doré identique aux badges/stats */
.landing-hero-content .cta-primary .cta-label,
.landing-hero-content .cta-secondary .cta-label {
  font-weight: 900;
  letter-spacing: -0.2px;
  background: linear-gradient(135deg,
    #F8E7A8 0%,
    #E8C972 25%,
    #C9A24A 50%,
    #E8C972 75%,
    #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

.landing-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.land-stat {
  background: rgba(10, 10, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 217, 120, 0.35);
  border-radius: 12px;
  padding: 11px 4px;
  text-align: center;
}

.land-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 2px;
  letter-spacing: -0.4px;
  background: linear-gradient(135deg,
    #F8E7A8 0%,
    #E8C972 25%,
    #C9A24A 50%,
    #E8C972 75%,
    #F8E7A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.land-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* ========== SECTIONS AVEC PHOTOS PARALLAX ========== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.55) saturate(1.15);
  image-rendering: -webkit-optimize-contrast;
}

/* Fallback mobile : pas de fixed attachment */
@supports (-webkit-touch-callout: none) {
  .parallax-section::before {
    background-attachment: scroll;
    inset: 0;
  }
}

@media (hover: none) {
  .parallax-section::before {
    background-attachment: scroll;
    inset: 0;
  }
}

.parallax-section > * {
  position: relative;
  z-index: 1;
}

/* Photos par section */
.parallax-food-1::before {
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1800&q=90&auto=format&fit=crop');
}

/* Override : section "Uniquement des restaurants filmés"
   → fond noir sobre uniforme + grain subtil (option minimaliste) */
.how-it-works.parallax-section {
  background: #0a0a14;
  overflow: hidden;
  position: relative;
}

.how-it-works.parallax-section::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>") !important;
  background-size: 240px 240px !important;
  background-repeat: repeat !important;
  background-attachment: scroll !important;
  filter: none !important;
  animation: none !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  opacity: 1;
  mix-blend-mode: screen;
}

.how-it-works.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.4), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: none;
  mix-blend-mode: normal;
}

.parallax-food-2::before {
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&q=90&auto=format&fit=crop');
}

.parallax-food-3::before {
  background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1800&q=90&auto=format&fit=crop');
}

/* Section "Voir les restaurants en vidéo par ville" — illustration affichée
   ENTIÈREMENT (contain) sur fond noir, avec effet parallax sur desktop */
.cities-section.parallax-section {
  background-color: #0a0a0e !important;
}

.cities-section.parallax-section::before {
  background-color: #0a0a0e !important;
  background-image: url('/assets/cities-bg.jpg') !important;
  background-size: contain !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  filter: brightness(0.9) saturate(1.1) !important;
}

/* Mobile / appareils tactiles : fixed mal supporté → scroll classique
   en gardant contain pour voir l'illustration complète */
@media (max-width: 768px), (hover: none) {
  .cities-section.parallax-section::before {
    background-attachment: scroll !important;
    background-size: contain !important;
    background-position: center top !important;
  }
}

.cities-section.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 15, 17, 0.4) 0%,
    rgba(15, 15, 17, 0.6) 60%,
    rgba(15, 15, 17, 0.85) 100%);
  z-index: 0;
  pointer-events: none;
  width: auto;
  height: auto;
  transform: none;
  border-radius: 0;
}

.cities-section.parallax-section > * {
  position: relative;
  z-index: 1;
}

.parallax-food-4::before {
  background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1800&q=90&auto=format&fit=crop');
}

.parallax-food-5::before {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1800&q=90&auto=format&fit=crop');
}

/* Section "Ne croyez que ce que vous voyez" (vs-section / big-cta)
   — background avec l'illustration créateur food */
.vs-section {
  position: relative;
  overflow: hidden;
}

/* Section "Ne croyez que ce que vous voyez" — fond noir uni */
.big-cta.vs-section::before {
  display: none !important;
}

.vs-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 60%, #1a0f0a 100%) !important;
}

/* Voile sombre pour lisibilité du texte par-dessus l'illustration */
.vs-section > .big-cta-content {
  position: relative;
  z-index: 2;
}

.vs-section::after {
  display: none !important;
}

.parallax-food-6::before {
  background-image: url('https://images.unsplash.com/photo-1473093295043-cdd812d0e601?w=1800&q=90&auto=format&fit=crop');
}

/* Section "Questions fréquentes" — fond noir uni */
.faq-section.parallax-section::before {
  background: #0a0a0e !important;
  background-image: none !important;
  filter: none !important;
  inset: 0 !important;
}

.faq-section.parallax-section::after {
  display: none !important;
}

/* HOW IT WORKS — avec photo parallax */
.how-it-works {
  padding: 28px 0 32px;
  margin-bottom: 0;
  color: white;
}

.how-it-works .section-head h2,
.how-it-works .section-head .section-sub {
  color: white;
}

.how-it-works .section-head .section-sub {
  opacity: 0.8;
}

.how-it-works .step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.how-it-works .step-card h3 {
  color: white;
}

.how-it-works .step-card p {
  color: rgba(255, 255, 255, 0.8);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.step-card {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 22px 20px 70px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  background: var(--gold-mirror);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(255, 107, 71, 0.3);
}

.step-icon {
  display: none;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
  font-weight: 500;
}

/* CITIES SECTION — avec photo parallax */
.cities-section {
  padding: 28px 16px 32px;
  margin-bottom: 0;
  color: white;
}

.cities-section .section-head h2,
.cities-section .section-head .section-sub {
  color: white;
}

.cities-section .section-head .section-sub {
  opacity: 0.8;
}

.cities-section .city-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.12);
}

.cities-section .city-button-info h3 {
  color: white;
}

.cities-section .city-button-info p {
  color: rgba(255, 255, 255, 0.7);
}

.cities-section .city-button-arrow {
  color: rgba(255, 255, 255, 0.5);
}

.cities-section .city-button:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.city-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.city-button:active {
  transform: scale(0.98);
  background: var(--primary-soft);
  border-color: var(--primary);
}

.city-button-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-mirror);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(255, 107, 71, 0.3);
}

.city-button-icon svg { width: 22px; height: 22px; }

.city-button-info {
  flex: 1;
  min-width: 0;
}

.city-button-info h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-button-info p {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

.city-button-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
}

.city-button:active .city-button-arrow {
  color: var(--primary);
}

/* THEMES SECTION — avec photo parallax */
.themes-section {
  padding: 28px 16px 32px;
  margin-bottom: 0;
  color: white;
}

.themes-section .section-head h2,
.themes-section .section-head .section-sub {
  color: white;
}

.themes-section .section-head .section-sub {
  opacity: 0.8;
}

.themes-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.theme-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 22px 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
  box-shadow: var(--shadow);
}

.theme-button:active { transform: scale(0.98); }

.theme-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.theme-couple-bg { background: linear-gradient(135deg, #FF6B47, #C0392B); }
.theme-friends-bg { background: linear-gradient(135deg, #FFB800, #FF8C00); }
.theme-insolite-bg { background: linear-gradient(135deg, #8E44AD, #5B2C6F); }

.theme-button-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.theme-button-icon svg { width: 28px; height: 28px; color: white; }

.theme-button-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.theme-button-text h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.theme-button-text p {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 6px;
}

.theme-button-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 11px;
  border-radius: 100px;
}

/* Ancien bloc cities (compat) */
.cities-section-old {
  padding: 0 0 28px;
}

.city-block {
  margin-bottom: 30px;
}

.city-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px 14px;
}

.city-block-head h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.city-block-head h3 span {
  color: var(--primary);
}

.city-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 0;
}

.city-block-cta svg { width: 14px; height: 14px; }

/* Horizontal cards rows for city + theme — UNE carte à la fois */
.city-cards-row,
.theme-cards-row {
  display: flex;
  gap: 0;
  padding: 4px 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.city-cards-row::-webkit-scrollbar,
.theme-cards-row::-webkit-scrollbar { display: none; }

.city-cards-row .resto-card,
.theme-cards-row .resto-card {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: calc(100% - 32px);
  width: calc(100% - 32px);
  max-width: 100%;
  margin: 0 16px 0 16px;
  scroll-snap-align: center;
  box-sizing: border-box;
}

/* THEMES SECTION */
.themes-section {
  padding: 0 0 28px;
  background: var(--bg-alt);
  margin-bottom: 24px;
  padding-top: 16px;
  padding-bottom: 28px;
}

.theme-block {
  margin-bottom: 24px;
}

.theme-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px 14px;
}

.theme-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-icon svg { width: 24px; height: 24px; color: white; }

.theme-couple { background: linear-gradient(135deg, #FF6B47, #E5512D); }
.theme-friends { background: linear-gradient(135deg, #FFB800, #FF8C00); }
.theme-insolite { background: linear-gradient(135deg, #8E44AD, #5B2C6F); }

.theme-head h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}

.theme-head p {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

/* INFLUENCERS — avec photo parallax */
.influencers-section {
  padding: 28px 0 32px;
  margin-bottom: 0;
  color: white;
}

.influencers-section .section-head h2,
.influencers-section .section-head .section-sub {
  color: white;
}

.influencers-section .section-head .section-sub {
  opacity: 0.8;
}

.influencers-section .influencer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.influencers-section .influencer-info h4 {
  color: white;
}

.influencers-section .influencer-info p {
  color: rgba(255, 255, 255, 0.7);
}

.influencers-section .influencer-rank {
  color: rgba(255, 255, 255, 0.5);
}

.influencers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 4px 16px 0;
}

.influencer-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.influencer-rank {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: 0.3px;
}

.influencer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-mirror);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.influencer-info {
  min-width: 0;
  flex: 1;
}

.influencer-info h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.influencer-info p {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}

/* BIG CTA */
.big-cta {
  margin: 0 16px 28px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 100%);
  border-radius: 24px;
  padding: 34px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 71, 0.4), transparent 60%);
  pointer-events: none;
}

.big-cta-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.big-cta h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.big-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 320px;
}

.big-cta .cta-primary {
  background: var(--gold-mirror);
  color: #2A1F00;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  width: 100%;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}

.big-cta .cta-primary svg {
  color: #2A1F00;
}

/* =====================================================
   VS SECTION — Photo retouchée vs Vidéo réelle
   ===================================================== */
.vs-section {
  margin: 0 0 28px !important;
  border-radius: 0 !important;
  padding: 40px 24px 38px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 60%, #1a0f0a 100%);
}

/* Note : ancienne règle radial-gradient retirée — remplacée par la photo background plus haut dans le fichier */

.vs-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(232, 208, 138, 0.12);
  border: 1px solid rgba(232, 208, 138, 0.3);
  color: #E8D08A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vs-title {
  font-size: 28px !important;
  margin-bottom: 26px !important;
  line-height: 1.05 !important;
}

.vs-title em {
  font-style: italic;
  font-weight: 900;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 0.08em 0.05em;
  margin: 0 -0.04em;
}

.vs-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 22px;
  width: 100%;
  max-width: 320px;
  padding: 6px 4px;
  box-sizing: border-box;
}

.vs-card {
  flex: 1;
  position: relative;
  aspect-ratio: 9 / 13;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  transition: transform 0.4s var(--premium-ease);
}

.vs-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* CARD FAKE — désaturée + filtre rouge + tilt */
.vs-card-fake {
  transform: rotate(-3deg);
  border: 2px solid rgba(255, 80, 80, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 80, 80, 0.2);
}

.vs-card-fake .vs-card-img {
  filter: saturate(1.6) brightness(1.1) contrast(1.1);
}

.vs-card-fake::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 80, 80, 0.18) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* CARD REAL — gold border + shine + tilt opposé */
.vs-card-real {
  transform: rotate(3deg);
  border: 2px solid #C9A24A;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.4), 0 0 0 1px rgba(232, 208, 138, 0.5), 0 0 30px rgba(201, 162, 74, 0.25);
}

.vs-card-real::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

/* Reflet brillant qui balaie la card real */
.vs-card-real::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  animation: vsCardShine 3.5s 1s infinite;
  z-index: 2;
}

@keyframes vsCardShine {
  0%, 60% { left: -100%; }
  100%    { left: 200%; }
}

/* Tampon "RETOUCHÉ" / "VRAI" en haut */
.vs-card-stamp {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: rgba(255, 80, 80, 0.95);
  color: white;
  border: 2px solid white;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vs-stamp-real {
  background: var(--gold-mirror);
  color: #2A1F00;
  border-color: #FFF;
  transform: translateX(-50%) rotate(5deg);
}

/* Icône au centre (X ou Play) */
.vs-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.vs-card-fake .vs-card-icon {
  background: rgba(255, 80, 80, 0.95);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 80, 80, 0.5);
}

.vs-card-real .vs-card-icon {
  background: var(--gold-mirror);
  color: #2A1F00;
  box-shadow: 0 6px 20px rgba(201, 162, 74, 0.6);
}

.vs-card-icon svg {
  width: 24px;
  height: 24px;
}

.vs-card-real .vs-card-icon svg {
  margin-left: 0;
}

/* Label en bas (Photo / Vidéo) */
.vs-card-label {
  position: relative;
  z-index: 3;
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* VS au milieu */
.vs-versus {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-mirror);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A1F00;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(201, 162, 74, 0.5);
  z-index: 4;
  animation: vsPulse 2.5s ease-in-out infinite;
}

@keyframes vsPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

/* Tagline */
.vs-tagline {
  margin: 0 0 22px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.vs-tagline strong {
  color: #FFF;
  font-weight: 900;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   STEPS CAROUSEL — défilement manuel au doigt + auto-play
   ===================================================== */
.steps-marquee {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.steps-marquee::-webkit-scrollbar { display: none; }

.steps-track {
  display: flex;
  gap: 14px;
  padding: 0 8vw;
}

.steps-track .step-card {
  flex: 0 0 84vw;
  max-width: 360px;
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.steps-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

.steps-dots .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.steps-dots .step-dot.active {
  background: var(--gold-mirror);
  width: 24px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(232, 208, 138, 0.5);
}

/* =====================================================
   INFLUENCERS MARQUEE — carousel infini avec photos
   ===================================================== */
.influencers-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 8px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.influencers-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: influencersScroll 36s linear infinite;
  padding: 8px 12px 16px;
}

.influencers-marquee:hover .influencers-track {
  animation-play-state: paused;
}

@keyframes influencersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}

/* Card influenceur premium */
.influencer-card-pro {
  flex: 0 0 220px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 208, 138, 0.2);
  border-radius: 22px;
  padding: 16px 14px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--premium-ease), border-color 0.4s, box-shadow 0.4s;
}

.influencer-card-pro:active {
  transform: scale(0.98);
}

.influencer-card-pro:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 208, 138, 0.6);
  box-shadow: 0 20px 50px rgba(201, 162, 74, 0.35);
}

.inf-rank {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 14px;
  background: var(--gold-mirror);
  color: #2A1F00;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.4);
}

.inf-photo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
}

.inf-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #C9A24A;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4);
  display: block;
  background: #1a1a2e;
}

/* Fallback : initiale dans un cercle, masqué dès que l'image charge */
.inf-photo-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
  color: #E8D08A;
  font-size: 38px;
  font-weight: 900;
  border: 3px solid #C9A24A;
}

.inf-photo-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gold-mirror);
  filter: blur(14px);
  opacity: 0.35;
  z-index: 1;
  animation: infGlowPulse 3s ease-in-out infinite;
}

@keyframes infGlowPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%      { opacity: 0.5;  transform: scale(1.05); }
}

.inf-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-mirror);
  color: #2A1F00;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0F0F11;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.5);
}

.inf-verified svg {
  width: 16px;
  height: 16px;
}

.inf-name {
  font-size: 15px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.inf-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 12px;
}

.inf-stat strong {
  color: #E8D08A;
  font-weight: 900;
  font-size: 13px;
}

.inf-dot {
  color: rgba(255, 255, 255, 0.4);
}

.inf-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(232, 208, 138, 0.12);
  border: 1px solid rgba(232, 208, 138, 0.3);
  border-radius: 999px;
  color: #E8D08A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =====================================================
   DRAWER — Items "Rejoindre See Eats"
   ===================================================== */
.drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 208, 138, 0.3) 50%, transparent);
  margin: 14px 12px 8px;
}

.drawer-section-title {
  padding: 4px 16px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Cards-badges premium dans le drawer — compactes, à fleur du texte */
.drawer-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: calc(100% - 24px);
  margin: 5px 12px;
  padding: 7px 12px 7px 8px;
  background: linear-gradient(135deg, #2e2e42 0%, #1f1f2c 100%);
  border: 1px solid rgba(232, 208, 138, 0.4);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.2s var(--premium-ease), box-shadow 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.drawer-badge-card:hover {
  transform: translateY(-2px);
  border-color: #C9A24A;
  box-shadow: 0 8px 22px rgba(201, 162, 74, 0.5);
  background: linear-gradient(135deg, #353550 0%, #25253a 100%);
}

.drawer-badge-card:active {
  transform: translateY(0);
}

/* Effet shine qui balaye au survol */
.drawer-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.drawer-badge-card:hover::before {
  left: 200%;
}

.drawer-badge-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-mirror);
  color: #2A1F00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(201, 162, 74, 0.4);
}

.drawer-badge-icon svg {
  width: 13px;
  height: 13px;
}

.drawer-badge-title {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.1px;
  line-height: 1.2;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-badge-arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: #C9A24A;
}

/* =====================================================
   CATEGORIES PAGE — carousels par catégorie
   ===================================================== */
.categories-page {
  padding-bottom: 24px;
}

.cat-section {
  margin: 18px 0 24px;
}

.cat-section-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 16px 10px;
}

.cat-section-head h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  flex-shrink: 0;
}

.cat-count {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(232, 208, 138, 0.15);
  color: #8B6E22;
  font-size: 11px;
  font-weight: 800;
}

.cat-see-all {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.cat-see-all:hover {
  background: rgba(201, 162, 74, 0.12);
}

.cat-carousel-wrap {
  position: relative;
}

.cat-carousel {
  display: flex;
  gap: 12px;
  padding: 4px 16px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cat-carousel::-webkit-scrollbar { display: none; }
.cat-carousel { scrollbar-width: none; }

/* Card individuelle dans le carousel */
.cat-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s var(--premium-ease), box-shadow 0.3s;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat-card-cover {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-card-letter {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -2px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cat-card-vid {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-mirror);
  color: #2A1F00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cat-card-rating {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFD978;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
}

.cat-card-info {
  padding: 10px 12px 12px;
}

.cat-card-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-card-meta {
  font-size: 10px;
  color: var(--text-2);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Catégories sensibles (Casher / Halal) — léger badge confessionnel */
.cat-section[data-cat="casher"] .cat-section-head h2,
.cat-section[data-cat="halal"] .cat-section-head h2 {
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   SPECIALTIES — carousel vertical de cards spécialités
   ===================================================== */
.specialties-section {
  padding: 8px 16px 32px;
}

.specialties-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 4px;
}

.specialties-sub {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  margin: 0 0 16px;
}

.specialties-carousel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.specialty-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s var(--premium-ease), box-shadow 0.4s;
}

.specialty-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 36px rgba(201, 162, 74, 0.35);
}

.specialty-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.2);
  transition: transform 0.6s var(--premium-ease);
}

.specialty-card:hover .specialty-card-bg {
  transform: scale(1.08);
}

.specialty-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.specialty-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 16px;
  color: white;
}

.specialty-card-count {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--gold-mirror);
  color: #2A1F00;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(201, 162, 74, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
}

.specialty-card-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.specialty-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.specialty-card-cta svg {
  width: 11px;
  height: 11px;
}

/* Cards confessionnelles avec accent doré */
.specialty-card[onclick*="casher"] .specialty-card-name,
.specialty-card[onclick*="halal"] .specialty-card-name {
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   FORM MODAL — Inscrire mon établissement / Devenir influenceur
   ===================================================== */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

/* CRITIQUE : honorer l'attribut HTML hidden (sinon la modal reste visible
   au chargement car display: flex écrase display: none) */
.form-modal[hidden] {
  display: none !important;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #1a1a2e 0%, #0F0F11 100%);
  border-radius: 24px 24px 0 0;
  padding: 28px 22px 32px;
  color: white;
  border: 1px solid rgba(232, 208, 138, 0.25);
  border-bottom: none;
  animation: modalSlideUp 0.35s var(--premium-ease);
}

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

@media (min-width: 600px) {
  .form-modal { align-items: center; }
  .form-modal-card { border-radius: 24px; border-bottom: 1px solid rgba(232, 208, 138, 0.25); }
}

.form-modal-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 16px));
  right: 16px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 208, 138, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.form-modal-close:hover {
  background: rgba(255, 80, 80, 0.85);
  transform: scale(1.05);
}

.form-modal-close:active { transform: scale(0.95); }
.form-modal-close svg { width: 18px; height: 18px; }

.form-modal-header {
  margin-bottom: 22px;
  text-align: center;
}

.form-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  background: rgba(232, 208, 138, 0.12);
  border: 1px solid rgba(232, 208, 138, 0.3);
  color: #E8D08A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
}

.form-modal-header h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.form-modal-header h2 em {
  font-style: italic;
  font-weight: 900;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 0.08em 0.05em;
  margin: 0 -0.04em;
}

.form-modal-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-weight: 500;
}

/* Formulaire */
.see-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 420px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.req {
  color: #FF6B47;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9A24A;
  background: rgba(232, 208, 138, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D08A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-group select option {
  background: #1a1a2e;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
}

.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #C9A24A;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
  background: var(--gold-mirror) !important;
  color: #2A1F00 !important;
  width: 100%;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.45) !important;
}

.form-submit svg {
  color: #2A1F00 !important;
}

.form-success {
  margin-top: 14px;
  padding: 16px;
  background: rgba(40, 200, 100, 0.12);
  border: 1px solid rgba(40, 200, 100, 0.4);
  border-radius: 12px;
  text-align: center;
  color: #5fe8a3;
}

.form-success strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Effet miroir : balayage de lumière qui passe sur les boutons CTA */
.cta-primary,
.big-cta .cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::before,
.big-cta .cta-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 4.5s infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0%, 60% { left: -75%; }
  100%    { left: 175%; }
}

/* FAQ — avec photo parallax */
.faq-section {
  padding: 28px 16px 32px;
  margin-bottom: 0;
  color: white;
}

.faq-section .section-head h2,
.faq-section .section-head .section-sub {
  color: white;
}

.faq-section .section-head .section-sub {
  opacity: 0.8;
}

.faq-section .faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.faq-section .faq-item summary {
  color: white;
}

.faq-section .faq-item summary::after {
  color: var(--primary-light);
}

.faq-section .faq-item p {
  color: rgba(255, 255, 255, 0.8);
}

.faq-item {
  background: var(--card);
  border-radius: 14px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 44px;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 500;
}

/* SEO FOOTER */
.seo-footer {
  padding: 24px 20px 20px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.seo-footer h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.city-link {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
}

.city-link:active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.seo-footer-text {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  font-weight: 500;
}

/* Hero ville */
.city-hero {
  position: relative;
  margin: 0 0 18px;
  padding: 24px 22px 22px;
  color: white;
  background: linear-gradient(160deg, #FF6B47 0%, #C0392B 60%, #1a1a2e 130%);
  overflow: hidden;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 184, 0, 0.18), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 107, 71, 0.4), transparent 60%);
  pointer-events: none;
}

.city-hero-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.city-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 8px 7px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.2px;
}

.city-hero-tag svg { width: 14px; height: 14px; }

.city-change-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  margin-left: 4px;
  font-family: inherit;
}

.city-hero-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.9px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.city-hero-title span {
  background: linear-gradient(90deg, #FFD978, #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.city-hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.45;
  max-width: 300px;
}

.city-hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.stat-mini {
  flex: 1;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}

.stat-mini strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: white;
  margin-bottom: 2px;
  letter-spacing: -0.4px;
}

.stat-mini span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Strip cuisines horizontal */
.cuisines-strip {
  margin-bottom: 20px;
  padding-top: 4px;
}

.cuisine-scroller {
  display: flex;
  gap: 8px;
  padding: 6px 16px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.cuisine-pill {
  flex-shrink: 0;
  padding: 9px 16px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s;
}

.cuisine-pill:active {
  transform: scale(0.96);
}

.cuisine-pill.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

/* Sections accueil */
.home-section {
  padding: 0 0 8px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 20px 14px;
}

.section-head h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
}

.section-sub {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

/* Vieux hero (gardé pour compat mais pas utilisé) */
.hero-banner {
  display: none;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 107, 71, 0.4), transparent 70%);
  border-radius: 50%;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.2), transparent 70%);
  border-radius: 50%;
}

.hero-text {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(90deg, #FF6B61, #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-pill strong {
  font-size: 14px;
  font-weight: 800;
  color: white;
}

.stat-pill span { color: rgba(255, 255, 255, 0.7); }

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 14px;
}

.section-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.region-select-mini {
  background: var(--bg-alt);
  border: none;
  padding: 8px 30px 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%235C5C66' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ========== RESTAURANT CARDS ========== */
.resto-card {
  background: var(--card);
  border-radius: var(--radius);
  margin: 0 16px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}

.resto-card:active { transform: scale(0.99); }

.resto-card-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--card);
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.resto-card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
  transition: color 0.2s, transform 0.15s;
}

.resto-card-fav.active { color: var(--primary); }
.resto-card-fav:active { transform: scale(0.9); }
.resto-card-fav .ic { width: 18px; height: 18px; }

.card-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.card-placeholder .ic { width: 48px; height: 48px; }

.resto-card-body {
  padding: 16px 18px 12px;
}

.resto-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.resto-card-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--text);
  flex: 1;
}

.resto-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  background: #FFF8E5;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.resto-card-rating .ic {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.resto-card-rating strong {
  font-weight: 800;
  color: var(--text);
}

.resto-card-rating span {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 500;
}

.resto-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--text-2);
  letter-spacing: 0.2px;
}

.tag-cuisine {
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
}

.resto-card-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}

.resto-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resto-card-meta .ic {
  width: 13px;
  height: 13px;
  color: var(--text-3);
}

.resto-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 32px);
  margin: 4px 16px 16px;
  padding: 14px;
  background: var(--text);
  color: white;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: background 0.2s, transform 0.1s;
}

.resto-card-cta:active {
  background: var(--primary);
  transform: scale(0.98);
}

.resto-card-cta .ic { width: 16px; height: 16px; }
.resto-card-cta .ic:last-child { margin-left: auto; }

/* ========== CARD COVER (statique, gradient + lettre) ========== */
.resto-card-cover {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.cover-letter {
  font-size: 86px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -3px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1;
  font-family: 'Inter', sans-serif;
}

.cover-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  animation: cover-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cover-shine {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}

.cover-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 5px 11px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  z-index: 5;
}

.cover-rating .ic {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.cover-watch-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  z-index: 5;
  transition: transform 0.15s, background 0.2s;
  white-space: nowrap;
}

.cover-watch-btn:active {
  transform: translateX(-50%) scale(0.96);
  background: var(--primary);
}

.cover-watch-btn .ic { width: 12px; height: 12px; color: var(--primary); }
.cover-watch-btn:active .ic { color: white; }

/* ========== VIDEO WRAPPER (utilisé uniquement dans Découvrir et page resto) ========== */
.card-video-wrapper {
  width: 100%;
  position: relative;
  background: #0f0f11;
  overflow: hidden;
  height: 280px;
}

/* Sur le feed plein écran TikTok, on utilise la zone du slide entière */
.card-video-wrapper.feed-wrapper {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  width: 100% !important;
}

.card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-video iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  border: none !important;
}

/* ========== VIDEO LOADING ========== */
.video-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}

.video-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.video-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.video-loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

/* ========== FEED PAGE — TIKTOK FULLSCREEN ========== */
.tt-feed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: #000;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.tt-feed::-webkit-scrollbar { display: none; }
.tt-feed { scrollbar-width: none; }

.tt-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
  overflow: hidden;
}

/* Zone vidéo plein écran */
.tt-video-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.tt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* L'iframe direct du player TikTok remplit toute la zone */
.tt-video iframe,
.tiktok-iframe-direct {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: #000 !important;
  display: block;
}

/* Force le fond noir partout */
.tt-slide,
.tt-video-area,
.tt-video {
  background-color: #000;
}

/* Overlay bas — compact pour ne pas couvrir les contrôles vidéo */
.tt-bottom-overlay {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 12px;
  pointer-events: none;
}

.tt-info {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 12px 12px 0 0;
  pointer-events: auto;
}

.tt-resto-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.tt-resto-name {
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 3px 9px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.tt-rating .ic { width: 11px; height: 11px; color: var(--gold); }

.tt-resto-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-commander-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 0 14px 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 107, 71, 0.4);
  transition: transform 0.15s, background 0.2s;
  pointer-events: auto;
}

.tt-commander-btn:active {
  transform: scale(0.98);
  background: var(--primary-dark);
}

.tt-commander-btn .ic { width: 16px; height: 16px; }
.tt-commander-btn .ic:last-child { margin-left: auto; }

.tt-counter {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 30;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 14px;
}

/* ========== CITY BADGE (sur le feed) ========== */
.tt-cat-badge {
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 30;
  background: var(--gold-mirror);
  color: #2A1F00;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 162, 74, 0.5);
  margin-top: 44px; /* sous le tt-city-badge */
}

.tt-cat-badge svg {
  width: 14px;
  height: 14px;
}

.tt-city-badge {
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tt-city-badge svg { width: 14px; height: 14px; }

/* ========== HOME LOADER ========== */
.home-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 100%);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.home-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.home-loader-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.home-loader-mark {
  width: 78px;
  height: 78px;
  background: var(--gold-mirror);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: white;
  box-shadow: 0 18px 50px rgba(255, 107, 71, 0.4);
  animation: bounce 1.5s infinite;
}

.home-loader-mark svg { width: 40px; height: 40px; }

.home-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin: 0 auto 18px;
}

.home-loader-text {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* ========== ONBOARDING ========== */
.onboarding-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.onboarding-overlay.visible { opacity: 1; }

.onboarding-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: onboardingIn 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes onboardingIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.onboarding-step[hidden] { display: none; }

.onboarding-icon {
  width: 76px;
  height: 76px;
  background: var(--gold-mirror);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: white;
  box-shadow: 0 16px 40px rgba(255, 107, 71, 0.35);
}

.onboarding-icon svg { width: 38px; height: 38px; }

.onboarding-card h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.onboarding-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
  margin-bottom: 22px;
  font-weight: 500;
}

.onboarding-geo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.onboarding-geo-btn:active {
  background: var(--primary);
  transform: scale(0.98);
}

.onboarding-geo-btn svg { width: 18px; height: 18px; }

.onboarding-geo-btn.loading svg {
  animation: spin 1s linear infinite;
}

.onboarding-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.onboarding-divider::before,
.onboarding-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.onboarding-divider span { padding: 0 14px; }

.onboarding-search {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0 14px;
  transition: border-color 0.2s;
}

.onboarding-search:focus-within { border-color: var(--primary); }

.onboarding-search > svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
}

.onboarding-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.onboarding-search input::placeholder {
  color: var(--text-3);
  font-weight: 500;
}

.onboarding-clear {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.onboarding-clear svg { width: 12px; height: 12px; }

.onboarding-suggestions {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  margin-top: 0;
}

.onboarding-suggestions.visible {
  max-height: 320px;
  margin-top: 8px;
  overflow-y: auto;
  border-radius: 14px;
  background: var(--bg-alt);
  padding: 6px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.suggestion-item svg {
  width: 14px;
  height: 14px;
  color: var(--text-3);
  flex-shrink: 0;
}

.suggestion-item:hover,
.suggestion-item:active {
  background: white;
  color: var(--text);
}

.suggestion-item strong {
  color: var(--primary);
  font-weight: 800;
}

.suggestion-empty {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.onboarding-status {
  font-size: 12px !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  margin: 12px 0 0 !important;
  min-height: 16px;
}

.onboarding-next,
.onboarding-finish {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.2px;
  transition: transform 0.15s, opacity 0.2s;
  box-shadow: 0 12px 30px rgba(255, 107, 71, 0.35);
}

.onboarding-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.onboarding-next:active:not(:disabled),
.onboarding-finish:active {
  transform: scale(0.98);
}

.onboarding-toggle {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.toggle-option {
  flex: 1;
  padding: 16px 12px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.toggle-option svg { width: 22px; height: 22px; }

.toggle-option.active {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}

/* ========== AUDIO UNLOCK OVERLAY ========== */
.audio-unlock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.4s;
  cursor: pointer;
}

.audio-unlock.hide {
  opacity: 0;
  pointer-events: none;
}

.audio-unlock-card {
  text-align: center;
  color: white;
  max-width: 280px;
  animation: audioUnlockIn 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes audioUnlockIn {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.audio-unlock-icon {
  width: 86px;
  height: 86px;
  background: var(--gold-mirror);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: white;
  box-shadow: 0 20px 50px rgba(255, 107, 71, 0.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.audio-unlock-icon svg {
  width: 42px;
  height: 42px;
}

.audio-unlock-card h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.audio-unlock-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 500;
}

.audio-unlock-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 44px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 107, 71, 0.5);
  font-family: inherit;
  transition: transform 0.15s;
}

.audio-unlock-btn:active {
  transform: scale(0.96);
}

/* ========== SEARCH PAGE ========== */
.search-page { padding: 0 0 30px; }

.search-header {
  padding: 22px 20px 14px;
}

.search-page-bar {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px 14px 46px;
  margin: 0 16px 18px;
  transition: border-color 0.2s;
}

.search-page-bar:focus-within { border-color: var(--primary); }

.search-page-bar input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  font-family: inherit;
}

.search-page-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

.search-filters {
  margin-bottom: 8px;
}

.search-results-header {
  padding: 14px 20px 12px;
}

.search-results-header h2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-2);
}

.search-empty {
  text-align: center;
  padding: 60px 30px;
  color: var(--text-3);
}

.search-empty svg {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  opacity: 0.4;
}

.search-empty h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.search-empty p {
  font-size: 13px;
  font-weight: 500;
}

/* Ancien layout de search non utilisé */
.search-page-old { padding: 22px 20px; }

.page-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.page-sub {
  font-size: 13px;
  color: var(--text-3);
  margin: 4px 0 22px;
  font-weight: 500;
}

.search-page-bar {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  padding: 14px 16px 14px 46px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.search-page-bar input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  font-family: inherit;
}

.search-page-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

.cuisine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 22px;
}

.cuisine-chip {
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s;
}

.cuisine-chip:active { transform: scale(0.95); }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--card);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s;
}

.search-result-item:active { transform: scale(0.98); }

.search-result-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.search-result-info { flex: 1; min-width: 0; }

.search-result-info h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.search-result-info p {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-result-item .ic { color: var(--text-3); }

.no-results {
  text-align: center;
  color: var(--text-3);
  padding: 30px;
  font-size: 14px;
}

/* ========== FAVORITES PAGE ========== */
.favorites-page { padding: 22px 20px; }

.empty-favorites {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
}

.empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.empty-hint {
  font-size: 13px;
  margin-top: 8px;
}

/* ========== RESTAURANT PAGE ========== */
.restaurant-page { padding-bottom: 60px; }

.resto-hero {
  position: relative;
  padding: 60px 22px 26px;
  color: white;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Hero avec mur animé de tuiles (même effet que la home) */
.resto-hero-wall {
  min-height: 380px;
  overflow: hidden;
  background: #0a0a14;
}

/* Mur de tuiles défilantes */
.rh-wall {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 8px;
  padding: 0 6px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-5deg) scale(1.2);
  transform-origin: center;
}

.rh-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  will-change: transform;
}

.rh-col-up {
  animation: heroScrollUp 26s linear infinite;
}

.rh-col-down {
  animation: heroScrollDown 22s linear infinite;
}

.rh-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rh-tile-letter {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -2px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Vidéo dans une tuile */
.rh-tile.lazy-video .card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rh-tile.lazy-video .card-video iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  pointer-events: none;
}

/* Overlay gradient par-dessus le mur */
.rh-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.resto-hero-wall .back-btn,
.resto-hero-wall .fav-btn-hero {
  z-index: 5;
}

.resto-hero-wall .resto-hero-content {
  z-index: 5;
}

.resto-hero-influencer {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.resto-hero-influencer strong {
  color: white;
  margin-left: 4px;
}

.back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 5;
}

.back-btn .ic { width: 22px; height: 22px; }

.fav-btn-hero {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 5;
}

.fav-btn-hero.active { background: white; color: var(--primary); }
.fav-btn-hero .ic { width: 20px; height: 20px; }

.resto-hero-content { position: relative; z-index: 1; }

.resto-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.resto-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.resto-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.resto-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 5px 10px;
  border-radius: 20px;
}

.resto-rating-pill .ic { width: 13px; height: 13px; color: var(--gold); }
.resto-rating-pill strong { font-weight: 800; }
.resto-rating-pill span { color: var(--text-3); font-size: 11px; }
.resto-hero-dot { opacity: 0.5; }

.resto-info-bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.info-item .ic { color: var(--text-3); width: 18px; height: 18px; flex-shrink: 0; }

.info-item small {
  font-size: 10px;
  color: var(--text-3);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  margin-bottom: 1px;
}

.info-item strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.resto-description {
  padding: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.resto-section {
  padding: 0 20px 26px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Restaurant Videos */
.resto-videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resto-video-card {
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.resto-video-info {
  padding: 14px 16px;
}

.resto-video-info h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.video-influencer {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

/* ========== MENU ========== */
.menu-category { margin-bottom: 22px; }

.menu-cat-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  margin-bottom: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 14px;
  gap: 10px;
}

.menu-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #FFE8E6;
  border-radius: 50%;
  color: var(--primary);
}

.popular-badge .ic { width: 11px; height: 11px; }

.menu-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text);
  border-radius: 12px;
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.add-to-cart-btn .ic { width: 16px; height: 16px; }

.add-to-cart-btn:active, .add-to-cart-btn.added {
  background: var(--text);
  color: white;
}

/* Cart Summary */
.cart-summary {
  background: linear-gradient(135deg, #FFF8E5, #FFE8E6);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.cart-summary h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-remove {
  background: rgba(15, 15, 17, 0.08);
  color: var(--text);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-total-line {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(15, 15, 17, 0.1);
  font-size: 15px;
  font-weight: 800;
}

/* Booking form (page restaurant) */
.booking-intro {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 500;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-row {
  display: flex;
  gap: 10px;
}

.booking-row .order-input {
  flex: 1;
  margin-bottom: 0;
}

.booking-success {
  text-align: center;
  padding: 30px 10px;
}

.booking-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-mirror);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 10px 28px rgba(255, 107, 71, 0.3);
}

.booking-success .success-icon .ic { width: 30px; height: 30px; }

.booking-success h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.booking-success p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  font-weight: 500;
}

/* ========== SHOWCASE (vidéo + infos fusionnées) ========== */
.resto-showcase {
  margin: 0 16px 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0F0F11;
}

.showcase-video {
  position: relative;
}

.showcase-video .card-video-wrapper {
  height: 320px;
  border-radius: 0;
}

.showcase-video-caption {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-video-caption p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.showcase-video-caption strong {
  color: white;
}

.showcase-card {
  padding: 20px;
  color: white;
}

.showcase-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.showcase-letter {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.showcase-name h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}

.showcase-name p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.showcase-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.showcase-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.showcase-info-row .ic {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.showcase-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: transform 0.15s;
}

.showcase-btn:active { transform: scale(0.98); }
.showcase-btn .ic { width: 16px; height: 16px; }

.showcase-btn-video {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.showcase-btn-video .ic { color: var(--primary); }

/* Bouton "Réserver une table" — accent doré premium */
.showcase-btn-book {
  background: var(--gold-mirror);
  color: #2A1F00;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 22px rgba(201, 162, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.showcase-btn-book svg {
  width: 18px;
  height: 18px;
  color: #2A1F00;
}

/* Effet shine au survol */
.showcase-btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.showcase-btn-book:hover::before { left: 200%; }
.showcase-btn-book:active { transform: scale(0.98); }

/* Highlight quand on scroll vers la section réservation */
.booking-section {
  scroll-margin-top: 80px;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  border-radius: 16px;
}

.booking-section.booking-highlight {
  box-shadow: 0 0 0 2px #C9A24A, 0 12px 40px rgba(201, 162, 74, 0.3);
  background: rgba(232, 208, 138, 0.06);
}

/* Encart frais de réservation (1€/personne) */
.booking-fee-info {
  margin: 8px 0 6px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(232, 208, 138, 0.12), rgba(232, 208, 138, 0.04));
  border: 1px solid rgba(232, 208, 138, 0.4);
  border-radius: 14px;
}

.booking-fee-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
  padding: 4px 0;
}

.booking-fee-line strong {
  color: var(--text);
  font-weight: 800;
}

.booking-fee-total {
  border-top: 1px dashed rgba(201, 162, 74, 0.4);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 15px;
}

.booking-fee-total strong {
  font-size: 18px;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-fee-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
  font-weight: 500;
}

/* Bouton "Payer et confirmer" */
.booking-pay-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-mirror) !important;
  color: #2A1F00 !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  font-weight: 900 !important;
}

.booking-pay-btn svg {
  width: 18px;
  height: 18px;
}

.booking-pay-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.booking-pay-btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(42, 31, 0, 0.3);
  border-top-color: #2A1F00;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  margin-left: 8px;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.showcase-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
}

.showcase-branding svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.showcase-branding span {
  font-size: 11px;
  font-weight: 600;
}

/* ========== RESTAURANT FOOTER FOOD (ancien, gardé compat) ========== */
.resto-footer {
  background: #0F0F11;
  color: white;
  border-radius: 28px 28px 0 0;
  margin-top: 24px;
  padding: 28px 22px 30px;
  position: relative;
  overflow: hidden;
}

.resto-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(255, 107, 71, 0.15), transparent 50%);
  pointer-events: none;
}

.resto-footer-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.resto-footer-letter {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.resto-footer-name h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.resto-footer-name p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.resto-footer-infos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.resto-footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.resto-footer-info-row svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.resto-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.resto-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: transform 0.15s;
}

.resto-footer-btn:active { transform: scale(0.98); }

.resto-footer-btn svg { width: 18px; height: 18px; }

.resto-footer-reserve {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 28px rgba(255, 107, 71, 0.4);
}

.resto-footer-video {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.resto-footer-video svg { color: var(--primary); }

.resto-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.resto-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.resto-footer-logo svg {
  width: 18px;
  height: 18px;
}

.resto-footer-logo span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.resto-footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* ========== ORDER FOOTER ========== */
.order-footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 448px;
  background: var(--text);
  color: white;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 30px rgba(15, 15, 17, 0.25);
  z-index: 50;
}

.order-footer-info {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.order-footer-info strong {
  font-size: 16px;
  color: white;
  font-weight: 800;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.order-btn .ic { width: 16px; height: 16px; }

/* ========== ORDER MODAL ========== */
.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 17, 0.6);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.order-overlay.visible { opacity: 1; }

.order-modal {
  background: white;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 26px 22px 36px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.order-modal-header {
  margin-bottom: 22px;
}

.order-modal-header h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.order-modal-header p {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.order-items { margin-bottom: 16px; }

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.order-item strong {
  color: var(--primary);
  margin-right: 4px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 800;
  border-top: 2px solid var(--text);
  margin-top: 4px;
}

.order-total-price { color: var(--primary); }

.order-form { margin: 20px 0; }

.order-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
  font-family: inherit;
  font-weight: 500;
  transition: border-color 0.2s;
}

.order-input:focus { border-color: var(--primary); }

.order-textarea {
  min-height: 70px;
  resize: vertical;
}

.confirm-order-btn {
  width: 100%;
  padding: 17px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: background 0.2s;
}

.confirm-order-btn:active { background: var(--primary); }

/* Order Success */
.order-success {
  text-align: center;
  padding: 30px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-mirror);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(255, 107, 71, 0.3);
}

.success-icon .ic { width: 36px; height: 36px; }

.order-success h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.order-success p {
  color: var(--text-2);
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}

.success-detail {
  color: var(--primary) !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
}

.success-btn {
  margin-top: 24px;
  padding: 14px 50px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

/* ========== FLOATING MENU BUTTON ========== */
.menu-fab {
  position: fixed;
  top: 10px;
  right: max(10px, calc(50vw - 230px));
  width: 62px;
  height: 62px;
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s, background 0.2s;
}

.menu-fab:active {
  transform: scale(0.93);
  background: var(--primary);
}

.menu-fab svg {
  width: 30px;
  height: 30px;
}

/* Sur les pages claires (sauf Découvrir), on rend le bouton plus discret */
body:not(.feed-active) .menu-fab {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

body:not(.feed-active) .menu-fab:active {
  background: var(--primary);
  color: white;
}

/* ========== SIDE DRAWER ========== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 17, 0.55);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 80%;
  max-width: 320px;
  background: white;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(232, 208, 138, 0.25);
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 100%);
  color: white;
  flex-shrink: 0;
}

.drawer-header .logo-text {
  color: white;
}

.drawer-header .logo-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.drawer-header .drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

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

.drawer-logo > div:last-child {
  display: flex;
  flex-direction: column;
}

.drawer-close {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.drawer-close svg { width: 18px; height: 18px; }

.drawer-nav {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

/* Zone search bar — prolonge le header noir */
.drawer-search-zone {
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, #0F0F11 0%, #1a1a2e 100%);
  flex-shrink: 0;
}

.drawer-search-zone .drawer-search {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-search-zone .drawer-search svg {
  color: rgba(255, 255, 255, 0.55);
}

.drawer-search-zone .drawer-search input {
  color: white;
  background: transparent;
}

.drawer-search-zone .drawer-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.drawer-nav-main {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
  overflow: hidden;
  min-height: 0;
}

.drawer-footer {
  margin-top: auto;
  padding: 10px 14px 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0F0F11 100%);
  border-top: 1px solid rgba(232, 208, 138, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.drawer-footer .drawer-section-title {
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 4px 8px;
}

/* Barre de recherche en haut du drawer */
.drawer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.drawer-search svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
}

.drawer-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  color: var(--text);
}

.drawer-search input::placeholder {
  color: var(--text-3);
}

/* Labels de section dans le drawer */
.drawer-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
  padding: 10px 16px 4px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 16px;
  background: none;
  border: none;
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
}

.drawer-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  flex-shrink: 0;
  color: var(--text-3);
  transition: color 0.2s;
}

.drawer-item:active,
.drawer-item:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.drawer-item.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.drawer-item.active svg {
  color: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 481px) {
  body {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(15, 15, 17, 0.06);
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.resto-card, .feed-video-item, .search-result-item {
  animation: fadeIn 0.4s ease;
}

/* ========== SPLASH ========== */
.splash-screen {
  position: fixed;
  inset: 0;
  background-color: #0F0F11;
  background-image:
    linear-gradient(180deg,
      rgba(15, 15, 17, 0.25) 0%,
      rgba(15, 15, 17, 0.55) 70%,
      rgba(15, 15, 17, 0.85) 100%),
    url('/assets/splash-bg.jpg');
  background-size: cover, contain;
  background-position: center, center center;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s;
  color: white;
}

.splash-screen.hide { opacity: 0; pointer-events: none; }

.splash-content { text-align: center; }

.splash-logo {
  width: 84px;
  height: 84px;
  background: var(--gold-mirror);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: white;
  box-shadow: 0 20px 60px rgba(255, 107, 71, 0.4);
  animation: bounce 1.5s infinite;
}

.splash-logo svg { width: 44px; height: 44px; }

.splash-logo-img {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 240px;
  height: 240px;
}
.splash-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.splash-text {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.splash-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 500;
}

/* =====================================================
   PREMIUM POLISH — Mirror Gold Edition
   ===================================================== */

/* Tokens premium */
:root {
  --premium-glow: 0 0 0 1px rgba(232, 208, 138, 0.18), 0 8px 32px rgba(201, 162, 74, 0.18);
  --premium-glow-strong: 0 0 0 1px rgba(232, 208, 138, 0.4), 0 16px 50px rgba(201, 162, 74, 0.35);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-dark: rgba(15, 15, 20, 0.55);
  --gold-line: linear-gradient(90deg, transparent, #C9A24A 50%, transparent);
  --premium-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. SCROLL REVEAL — toutes les sections apparaissent en fondu+slide */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--premium-ease), transform 0.7s var(--premium-ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-visible { transition-delay: 0.08s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.16s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.24s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.32s; }

/* 2. SECTION TITLES — séparateur doré au-dessus du h2 */
.section-head h2,
.parallax-section .section-head h2 {
  position: relative;
  padding-top: 18px;
}
.section-head h2::before,
.parallax-section .section-head h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--gold-line);
  border-radius: 2px;
}
.section-head {
  text-align: center;
}

/* 3. CARDS PREMIUM — step-card, theme-card, city-card, influencer-card, faq-item */
.step-card,
.theme-card,
.influencer-card,
.faq-item,
.cuisine-card {
  transition:
    transform 0.5s var(--premium-ease),
    box-shadow 0.5s var(--premium-ease),
    border-color 0.5s var(--premium-ease) !important;
  position: relative;
  overflow: hidden;
}

.step-card::after,
.theme-card::after,
.influencer-card::after,
.faq-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(232, 208, 138, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s var(--premium-ease);
  pointer-events: none;
  z-index: 0;
}

.step-card:hover::after,
.theme-card:hover::after,
.influencer-card:hover::after,
.faq-item:hover::after { opacity: 1; }

.step-card:hover,
.theme-card:hover,
.influencer-card:hover,
.cuisine-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--premium-glow-strong);
  border-color: rgba(232, 208, 138, 0.35) !important;
}

/* Élève le contenu au-dessus du ::after halo, sans toucher au positionnement
   (n'écrase PAS le position: absolute des badges/numéros) */
.step-card > *,
.theme-card > *,
.influencer-card > *,
.faq-item > * { z-index: 1; }
.step-card > *:not([class*="absolute"]):not(.step-number),
.theme-card > *:not([class*="absolute"]),
.influencer-card > *:not([class*="absolute"]),
.faq-item > *:not([class*="absolute"]) { position: relative; }

/* 4. STATS — ombre dorée au survol + transition */
.land-stat {
  transition: transform 0.4s var(--premium-ease);
}
.land-stat:hover { transform: translateY(-4px); }
.land-stat strong {
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 74, 0.4));
}

/* 5. MOCKUP DEVICE FRAME — encadrement smartphone */
.device-mockup {
  position: relative;
  display: inline-block;
  padding: 12px 8px 16px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1c1c22, #0a0a0e);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 3px #0a0a0e,
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(232, 208, 138, 0.25),
    0 0 40px rgba(201, 162, 74, 0.15);
}
.device-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.device-mockup .device-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}

/* 6. PARALLAX SECTIONS — overlay doré subtil + glassmorphism sur le contenu */
.parallax-section {
  position: relative;
}
.parallax-section .section-head h2 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* 7. CTA SECONDARY — finition premium */
.cta-secondary {
  border: 1px solid rgba(232, 208, 138, 0.35) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06) !important;
  transition: all 0.4s var(--premium-ease) !important;
}
.cta-secondary:hover {
  background: rgba(232, 208, 138, 0.12) !important;
  border-color: rgba(232, 208, 138, 0.6) !important;
  box-shadow: 0 0 20px rgba(232, 208, 138, 0.3) !important;
}

/* 8. SCROLLBAR DORÉE pour les rangées scrollables (visible au focus uniquement) */
.city-cards-row,
.theme-cards-row { scroll-behavior: smooth; }

/* 9. SECTION SEPARATORS — fine ligne dorée entre sections (via ::after pour ne pas écraser le ::before des photos) */
.parallax-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold-line);
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

/* 10. FAQ — accordéon premium */
.faq-item summary::after {
  background: var(--gold-mirror) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  transition: transform 0.3s var(--premium-ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

/* 11. BADGE PREMIUM (ribbon doré) — utilisable sur featured cards */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-mirror);
  color: #2A1F00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.4);
}

/* 12. SCROLL SMOOTH global */
html { scroll-behavior: smooth; }

/* 13. SECTION TITLES H2 — accent italique élégant pour les mots highlightés */
.section-head h2 em {
  font-style: italic;
  font-weight: 900;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 14. NUMBER COUNTER (stats animés) — état initial */
.land-stat strong[data-counter] {
  display: inline-block;
  min-width: 1ch;
}

/* =====================================================
   THEME SHOWCASE — Mockup smartphone + ambiances
   ===================================================== */
.theme-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 12px 16px 20px;
  position: relative;
  z-index: 2;
}

.theme-device {
  width: 220px;
  height: 440px;
  padding: 10px 8px 14px;
  border-radius: 38px;
  animation: deviceFloat 5s ease-in-out infinite;
  cursor: pointer;
  transition: filter 0.3s var(--premium-ease);
  will-change: transform;
  contain: layout paint;
}

.theme-device:hover {
  filter: brightness(1.1) drop-shadow(0 0 30px rgba(232, 208, 138, 0.5));
}

.theme-device:active {
  transform: scale(0.97);
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-8px) rotate(1.5deg); }
}

.theme-device .device-screen {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 28px;
}

/* Mur de tuiles défilantes dans l'écran du mockup */
.theme-device-wall {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
  transform: rotate(-3deg) scale(1.18);
  transform-origin: center;
}

.theme-device-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  will-change: transform;
}

.theme-device-col.col-up   { animation: themeWallUp   24s linear infinite; }
.theme-device-col.col-down { animation: themeWallDown 22s linear infinite; }

@keyframes themeWallUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes themeWallDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Tuiles vidéo dans le mockup : redimensionnées + taille de nom réduite */
.theme-device-wall .hero-tile {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.theme-device-wall .hero-tile-name {
  font-size: 9px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  padding: 0;
}

/* =====================================================
   POSTERS DE FALLBACK — photos food affichées tant que
   l'iframe TikTok n'a pas chargé. Garantit qu'on voit
   TOUJOURS du contenu visuel dans chaque tuile.
   ===================================================== */
.hero-tile-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.88) saturate(1.1);
  pointer-events: none;
  display: block;
}

/* L'iframe (quand elle charge) recouvre le poster */
.hero-tile.lazy-video .card-video {
  z-index: 1;
}

.hero-tile-name {
  z-index: 2;
}

/* Voile dégradé sombre pour faire ressortir le logo */
.theme-device-overlay {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(10, 10, 20, 0.6) 50%,
    rgba(10, 10, 20, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Logo centré sur l'écran */
.theme-device-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(232, 208, 138, 0.5))
          drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  animation: themeLogoPulse 3.5s ease-in-out infinite;
}

.theme-device-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes themeLogoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.04); }
}

/* Anciennes slides ambiance — gardées au cas où mais désactivées */
.ambiance-slides {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: none;
}

.ambiance-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: ambianceCycle 12s infinite;
  will-change: opacity, transform;
}

.ambiance-slide:nth-child(1) { animation-delay: 0s; }
.ambiance-slide:nth-child(2) { animation-delay: 4s; }
.ambiance-slide:nth-child(3) { animation-delay: 8s; }

@keyframes ambianceCycle {
  0%, 28%   { opacity: 1; transform: scale(1); }
  33%, 95%  { opacity: 0; transform: scale(1.05); }
  100%      { opacity: 0; transform: scale(1); }
}

.ambiance-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(1.1);
}

.slide-couple .ambiance-bg {
  background-image:
    linear-gradient(135deg, rgba(220, 50, 90, 0.4), rgba(80, 20, 40, 0.85)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=600&q=70');
}

.slide-friends .ambiance-bg {
  background-image:
    linear-gradient(135deg, rgba(255, 165, 80, 0.4), rgba(120, 60, 20, 0.85)),
    url('https://images.unsplash.com/photo-1529543544282-ea669407fca3?w=600&q=70');
}

.slide-insolite .ambiance-bg {
  background-image:
    linear-gradient(135deg, rgba(120, 80, 200, 0.5), rgba(40, 20, 80, 0.9)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=600&q=70');
}

.ambiance-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: ambianceTextPop 4s ease-out infinite;
}

@keyframes ambianceTextPop {
  0%   { opacity: 0; transform: translateY(20px) scale(0.9); }
  15%  { opacity: 1; transform: translateY(0) scale(1); }
  85%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(1.05); }
}

.ambiance-emoji {
  font-size: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.ambiance-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.ambiance-desc {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}

/* Reflet brillance sur l'écran (style Apple) */
.device-shine {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    rgba(255, 255, 255, 0) 62%);
  opacity: 0.6;
  z-index: 3;
  mix-blend-mode: overlay;
  animation: deviceShine 6s ease-in-out infinite;
}

@keyframes deviceShine {
  0%, 100% { background-position: -200% 0; }
  50%      { background-position: 200% 0; }
}

/* Texte rotatif sous le mockup */
.theme-rotating-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.theme-rotating-prefix,
.theme-rotating-suffix {
  color: rgba(255, 255, 255, 0.95);
}

.rotating-ambiance {
  display: inline-block;
  height: 1.3em;
  overflow: hidden;
  vertical-align: bottom;
  width: auto;
  white-space: nowrap;
}

.rotating-ambiance .rotating-list {
  display: inline-flex;
  flex-direction: column;
  animation: rotateAmbiance 12s infinite;
}

.rotating-ambiance .rotating-list > span {
  display: block;
  height: 1.3em;
  line-height: 1.3;
  background: var(--gold-mirror);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rotateAmbiance {
  0%,    28%  { transform: translateY(0); }
  33%,   61%  { transform: translateY(-1.3em); }
  66%,   95%  { transform: translateY(-2.6em); }
  100%        { transform: translateY(-3.9em); }
}

.theme-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 16px 24px;
  position: relative;
  z-index: 2;
}

.theme-cta {
  width: 100%;
  max-width: 360px;
  background: var(--gold-mirror) !important;
  color: #2A1F00 !important;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.theme-cta svg { color: #2A1F00 !important; }
