/* ===================================================================
   SALAYA — Snack & Soleil · Côte d'Azur
   Direction artistique : street-food jeune, violet électrique,
   corail, rose, jaune soleil. Typo expressive + stickers + gros prix.
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs marque */
  --violet: #7b2ff7;          /* violet électrique (couleur forte) */
  --violet-deep: #3b0d6e;     /* violet profond (texte fort) */
  --violet-soft: #c9a9ff;     /* lavande (fonds doux) */
  --violet-tint: #efe5ff;     /* lavande très clair */
  --coral: #ff6a3d;           /* corail (CTA) */
  --coral-dark: #e8511f;
  --pink: #ff4f9a;            /* rose accent */
  --sun: #ffd23f;             /* jaune soleil */
  --azur: #18b6c9;            /* touche bord de mer */

  --cream: #fff6ec;           /* fond crème chaud */
  --cream-2: #fdeedd;
  --white: #ffffff;
  --ink: #2a0f52;             /* texte (violet encre) */
  --ink-soft: #6b5b80;        /* texte secondaire */
  --muted: #9a8bb0;

  --star: #ffb22e;

  /* Ombres (dont colorées, plus "fun") */
  --shadow-sm: 0 3px 12px rgba(59, 13, 110, 0.08);
  --shadow-md: 0 14px 32px rgba(59, 13, 110, 0.14);
  --shadow-lg: 0 26px 60px rgba(59, 13, 110, 0.22);
  --shadow-violet: 0 16px 30px rgba(123, 47, 247, 0.35);
  --shadow-coral: 0 14px 26px rgba(255, 106, 61, 0.4);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;

  --font-display: "Anton", "Arial Narrow", sans-serif; /* impact / gros titres / prix */
  --font-fun: "Fredoka", "Poppins", sans-serif;         /* marque / badges / sous-titres */
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;

  --container: 1220px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-fun); font-weight: 700; line-height: 1.1; color: var(--ink); }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }

.section { padding-block: 84px; position: relative; }
.section--cream2 { background: var(--cream-2); }
.section--lav { background: var(--violet-tint); }
.section--violet { background: var(--violet); color: #f3e9ff; }
.section--violet-deep { background: var(--violet-deep); color: #e9dcff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  background: #ffe7dd;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--violet .eyebrow,
.section--violet-deep .eyebrow { color: var(--sun); background: rgba(255, 255, 255, 0.14); }

.section-head { text-align: left; max-width: 640px; margin-bottom: 46px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 14px;
}
.section--violet .section-title,
.section--violet-deep .section-title { color: var(--white); }
.section-title .accent { color: var(--coral); }
.section-title .accent-pink { color: var(--pink); }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }
.section--violet .section-sub,
.section--violet-deep .section-sub { color: #e3d4ff; }

.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.section-head--row .section-head__text { max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; max-width: 700px; }

.link-more {
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--violet);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-more:hover { gap: 12px; color: var(--coral); }

/* ===================================================================
   ÉLÉMENTS DE MARQUE
   =================================================================== */

/* Sticker rond (tampon) */
.sticker {
  display: inline-grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-fun);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  border: 3px dashed rgba(255, 255, 255, 0.7);
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
}
.sticker--sun { background: var(--sun); color: var(--violet-deep); border-color: rgba(59, 13, 110, 0.3); }
.sticker--violet { background: var(--violet); }
.sticker--pink { background: var(--pink); }

/* Badges produits */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--white);
  white-space: nowrap;
}
.badge--best { background: var(--coral); }
.badge--new { background: var(--sun); color: var(--violet-deep); }
.badge--gourmand { background: var(--pink); }
.badge--maison { background: var(--violet); }
.badge--veg { background: #34b06a; }

/* Surlignage marqueur */
.mark {
  background: linear-gradient(transparent 58%, var(--sun) 58%);
  padding: 0 4px;
}
.mark--pink { background: linear-gradient(transparent 58%, #ffc2db 58%); }

/* Étiquette prix (gros prix visible) */
.price {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  color: var(--violet);
}
.price small { font-size: 0.5em; }

/* Marquee défilant (bandeau punchlines) */
.marquee {
  background: var(--violet-deep);
  color: var(--sun);
  overflow: hidden;
  border-block: 3px solid var(--coral);
}
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-block: 14px;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}
.marquee__track span::after { content: "✦"; color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Blobs / formes de fond */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.5; z-index: 0; pointer-events: none; }

/* ===================================================================
   BOUTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.015em;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent; /* toutes les variantes : même hauteur de boîte */
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

/* Icône au trait dans un bouton */
.btn__ic { width: 18px; height: 18px; flex-shrink: 0; }

/* — Action n°1 (conversion) : CORAIL — */
.btn--primary { background: var(--coral); border-color: var(--coral); color: var(--white); box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-3px) rotate(-1deg); }

/* — Action n°2 : VIOLET — */
.btn--violet { background: var(--violet); border-color: var(--violet); color: var(--white); box-shadow: var(--shadow-violet); }
.btn--violet:hover { background: #6a23e0; border-color: #6a23e0; transform: translateY(-3px) rotate(1deg); }

/* — Utilitaire : GHOST (contour net) — */
.btn--ghost { background: var(--white); color: var(--violet-deep); border-color: var(--violet); }
.btn--ghost:hover { background: var(--violet); color: var(--white); }

/* — Sur fond foncé : action n°2 = blanc plein — */
.btn--light { background: var(--white); border-color: var(--white); color: var(--violet-deep); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--sun); border-color: var(--sun); transform: translateY(-3px); }

/* — Sur fond foncé : utilitaire = contour blanc net — */
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.85); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--white); }

.btn--xl { font-size: 1.14rem; padding: 15px 30px; }
.btn--xl .btn__ic { width: 20px; height: 20px; }

/* Bouton "Ajouter au panier" = action de conversion -> corail */
.btn--add { background: var(--coral); border-color: var(--coral); color: var(--white); padding: 10px 18px; font-size: 0.92rem; box-shadow: var(--shadow-coral); }
.btn--add:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); }
.btn--add .btn__ic { width: 17px; height: 17px; }

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 3px solid var(--violet-tint);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-fun); font-weight: 700; font-size: 1.5rem; color: var(--violet); letter-spacing: -0.01em; }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--coral);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-coral);
  transform: rotate(-8deg);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.22em; color: var(--ink-soft); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--violet-deep);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 3px; border-radius: 3px; background: var(--coral);
  transition: width 0.25s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--coral); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

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

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 27px; height: 3px; background: var(--violet-deep); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 79, 154, 0.35), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(255, 210, 63, 0.28), transparent 42%),
    linear-gradient(160deg, #8a3df9 0%, #6a1fd0 55%, #4c129c 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 2px, transparent 2px);
  background-size: 26px 26px;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 48px;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-fun); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--white);
  text-shadow: 0 6px 0 rgba(60, 13, 110, 0.25);
  margin-bottom: 18px;
}
.hero__title span { color: var(--sun); }
.hero__text { font-size: 1.18rem; max-width: 460px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.95); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media { position: relative; justify-self: center; }
.hero__media img {
  width: min(440px, 80vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}
.hero__sticker { position: absolute; width: 108px; height: 108px; font-size: 0.9rem; padding: 10px; z-index: 3; }
.hero__sticker--1 { top: -14px; left: -20px; }
.hero__sticker--2 { bottom: 8px; right: -16px; }
.hero__floattag {
  position: absolute; bottom: 36px; left: -28px; z-index: 3;
  background: var(--white); color: var(--violet-deep);
  font-family: var(--font-fun); font-weight: 700; font-size: 0.95rem;
  padding: 12px 18px; border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  transform: rotate(-5deg);
}
.hero__floattag .price { font-size: 1.7rem; }

.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
.hero__wave svg { width: 100%; height: 70px; display: block; }

/* ===================================================================
   FEATURES (atouts)
   =================================================================== */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}
.feature:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-md); border-color: var(--violet-tint); }
.feature__emoji {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px;
  background: var(--violet-tint);
  transform: rotate(-6deg);
}
.feature:nth-child(2) .feature__emoji { background: #ffe7dd; }
.feature:nth-child(3) .feature__emoji { background: #fff2c9; }
.feature h3 { font-family: var(--font-fun); font-size: 1.4rem; margin-bottom: 8px; color: var(--violet-deep); }
.feature p { color: var(--ink-soft); font-size: 0.97rem; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about__content .section-title { margin-bottom: 18px; }
.about__content p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.06rem; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__badge {
  position: absolute; bottom: -24px; left: -22px;
  background: var(--white); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}
.about__badge .stars { color: var(--star); letter-spacing: 2px; font-size: 0.95rem; }
.about__badge strong { display: block; font-family: var(--font-fun); font-size: 1.05rem; margin-top: 2px; color: var(--violet-deep); }
.about__badge span { font-size: 0.84rem; color: var(--ink-soft); }
.about__sticker { position: absolute; top: -26px; right: -10px; width: 96px; height: 96px; font-size: 0.82rem; padding: 8px; }

/* ===================================================================
   CATÉGORIES
   =================================================================== */
.cats__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 170px;
  box-shadow: var(--shadow-sm); isolation: isolate;
  border: 3px solid var(--white);
  transition: transform 0.25s ease;
}
.cat:hover { transform: translateY(-5px) rotate(-1.5deg); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; z-index: -2; }
.cat::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(59, 13, 110, 0.85), rgba(59, 13, 110, 0.05) 70%); }
.cat:hover img { transform: scale(1.09); }
.cat__label { position: absolute; left: 14px; bottom: 13px; }
.cat__label h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--white); font-size: 1.3rem; letter-spacing: 0.02em; }

/* ===================================================================
   FORMULES
   =================================================================== */
.formulas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.formula {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 3px solid transparent;
}
.formula:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.formula--featured { border-color: var(--coral); }
.formula__media { position: relative; height: 188px; background: var(--violet-tint); }
.formula__media img { width: 100%; height: 100%; object-fit: cover; }
.formula__flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: var(--white);
  font-family: var(--font-fun); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 999px; transform: rotate(-4deg);
}
.formula__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.formula__body h3 { font-family: var(--font-fun); font-size: 1.45rem; margin-bottom: 6px; color: var(--violet-deep); }
.formula__body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.formula__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.formula__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--violet); line-height: 1; letter-spacing: 0.03em; }
.formula__price small { display: block; margin-top: 4px; font-family: var(--font-body); font-size: 0.66rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; text-transform: none; }

/* ===================================================================
   BEST-SELLERS
   =================================================================== */
.sellers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dish {
  position: relative; background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; border: 3px solid transparent;
}
.dish:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: var(--shadow-md); border-color: var(--violet-tint); }
.dish__media { position: relative; height: 188px; }
.dish:nth-child(4n+1) .dish__media { background: var(--violet-tint); }
.dish:nth-child(4n+2) .dish__media { background: #ffe7dd; }
.dish:nth-child(4n+3) .dish__media { background: #ffe1ef; }
.dish:nth-child(4n) .dish__media { background: #fff2c9; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dish__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 2; }
.dish__pricetag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--violet); color: var(--white);
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  padding: 8px 12px 6px; border-radius: 14px; box-shadow: var(--shadow-violet);
  transform: rotate(4deg);
}
.dish__pricetag small { font-size: 0.55em; }
.dish__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.dish__body h3 { font-family: var(--font-fun); font-size: 1.3rem; margin-bottom: 6px; color: var(--violet-deep); }
.dish__desc { color: var(--ink-soft); font-size: 0.9rem; flex: 1; margin-bottom: 14px; }
.dish__foot { display: flex; }
.dish__foot .btn { width: 100%; justify-content: center; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { overflow: hidden; border-radius: var(--radius-lg); height: 300px; border: 4px solid var(--white); box-shadow: var(--shadow-sm); }
.gallery__item:nth-child(2) { transform: rotate(-1.5deg); }
.gallery__item:nth-child(3) { transform: rotate(1.5deg); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.08); }

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative;
}
.review::before {
  content: "“"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 4rem; color: var(--violet-tint);
}
.review__stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; }
.review__text { color: var(--ink); font-size: 1.02rem; margin-bottom: 18px; position: relative; z-index: 1; }
.review__author strong { font-family: var(--font-fun); font-weight: 600; font-size: 0.96rem; color: var(--violet-deep); }

/* ===================================================================
   RÉASSURANCE
   =================================================================== */
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__item .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.1); color: var(--sun); transform: rotate(-6deg); }
.trust__item .ic svg { width: 24px; height: 24px; }
.trust__item strong { display: block; font-family: var(--font-fun); font-weight: 600; font-size: 1rem; color: var(--white); }
.trust__item span { font-size: 0.85rem; color: #d9c4ff; }

/* ===================================================================
   RÉSEAUX SOCIAUX
   =================================================================== */
.social { position: relative; overflow: hidden; }
.social__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.social__content .section-title { color: var(--white); }
.social__content p { color: #ecdfff; font-size: 1.1rem; margin-bottom: 14px; }
.social__handles { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-fun); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em;
  padding: 13px 22px; border-radius: 999px; color: var(--white);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.social-btn:hover { transform: translateY(-3px) rotate(-1deg); filter: brightness(1.08); }
.social-btn__ic { width: 21px; height: 21px; flex-shrink: 0; }
.social-btn--ig { background: linear-gradient(45deg, #f9a826, #ff5fa2 45%, #c026d3); }
.social-btn--fb { background: #2d7bf6; }
.social-btn--tt { background: #111; }

/* Mockup Instagram (image WebP) */
.social__mockup { justify-self: center; position: relative; }
.social__mockup img {
  width: min(430px, 92vw);
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(20, 6, 50, 0.45));
  animation: mockupFloat 5s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .social__mockup img { animation: none; }
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact__panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px; }
.contact__panel .section-title { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 8px; }
.contact__panel .section-sub { margin-bottom: 26px; }
.contact__list { display: grid; gap: 18px; margin-bottom: 28px; }
.contact__row { display: flex; gap: 14px; align-items: flex-start; }
.contact__row .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: var(--violet-tint); font-size: 1.15rem; transform: rotate(-5deg); }
.contact__row p { font-size: 0.96rem; color: var(--ink-soft); }
.contact__row p strong { color: var(--violet-deep); font-family: var(--font-fun); }
.contact__row a:hover { color: var(--coral); }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 430px; border: 4px solid var(--white); }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===================================================================
   PAGE INFOS
   =================================================================== */
.info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.info__cards { display: grid; gap: 18px; }
.info-card { display: flex; gap: 18px; background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease; }
.info-card:hover { transform: translateY(-4px); }
.info-card__icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: var(--violet-tint); font-size: 1.3rem; transform: rotate(-6deg); }
.info-card h3 { font-family: var(--font-fun); font-size: 1.2rem; margin-bottom: 6px; color: var(--violet-deep); }
.info-card p { color: var(--ink-soft); font-size: 0.95rem; }
.info-card a:hover { color: var(--coral); }
.info__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; border: 4px solid var(--white); }
.info__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 2px dashed var(--violet-tint); font-size: 0.95rem; color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-family: var(--font-fun); font-weight: 600; color: var(--violet-deep); }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .is-today td, .hours-table .is-today td:last-child { color: var(--coral); }

/* Atout avec icône carrée (services) */
.feature__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px; background: var(--violet-tint); transform: rotate(-6deg); }

/* ===================================================================
   CTA (bandeau)
   =================================================================== */
.cta { background: var(--coral); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta .section-title { color: var(--white); margin-inline: auto; }
.cta .eyebrow { background: rgba(255, 255, 255, 0.2); color: #fff; }
.cta p { max-width: 560px; margin: 0 auto 26px; font-size: 1.06rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ===================================================================
   PANIER (header)
   =================================================================== */
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; background: var(--violet-tint); color: var(--violet-deep); transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease; }
.cart-link:hover { background: var(--violet); color: var(--white); transform: translateY(-2px); }
.cart-link__ic { width: 22px; height: 22px; }
.cart-link__count { position: absolute; top: -6px; right: -6px; min-width: 21px; height: 21px; padding: 0 5px; border-radius: 999px; background: var(--coral); color: var(--white); font-family: var(--font-fun); font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; line-height: 1; box-shadow: var(--shadow-sm); }
.cart-link__count.is-empty { display: none; }

/* ===================================================================
   PAGE HERO (carte / infos / panier)
   =================================================================== */
.page-hero {
  position: relative; padding-block: 150px 76px; text-align: center; color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 210, 63, 0.3), transparent 45%),
    linear-gradient(150deg, #8a3df9, #5417ad);
  overflow: hidden;
}
.page-hero__dots { position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(rgba(255, 255, 255, 0.16) 2px, transparent 2px); background-size: 26px 26px; }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: 0.01em; margin-bottom: 12px; text-shadow: 0 5px 0 rgba(60, 13, 110, 0.25); }
.page-hero p { max-width: 580px; margin-inline: auto; color: #efe3ff; font-size: 1.05rem; }
.page-hero__crumb { font-family: var(--font-fun); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; color: var(--sun); }

/* ---------- Menu nav (carte) ---------- */
.menu-nav { position: sticky; top: var(--header-h); z-index: 40; background: var(--white); box-shadow: var(--shadow-sm); }
.menu-nav__inner { display: flex; gap: 8px; overflow-x: auto; padding-block: 14px; scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a { flex-shrink: 0; font-family: var(--font-fun); font-weight: 600; font-size: 0.92rem; padding: 9px 18px; border-radius: 999px; color: var(--violet-deep); background: var(--violet-tint); transition: background 0.2s ease, color 0.2s ease; }
.menu-nav a:hover, .menu-nav a.active { background: var(--coral); color: var(--white); }

.menu-cat { margin-bottom: 56px; scroll-margin-top: 150px; }
.menu-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.menu-cat__chip { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; background: var(--violet-tint); transform: rotate(-6deg); flex-shrink: 0; }
.menu-cat__head h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--violet-deep); font-size: 2rem; white-space: nowrap; letter-spacing: 0.01em; }
.menu-cat__head .line { flex: 1; height: 3px; border-radius: 3px; background: repeating-linear-gradient(to right, var(--violet-tint) 0 14px, transparent 14px 24px); }

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.menu-item { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease; }
.menu-item:hover { transform: translateY(-3px); }
.menu-item__info { flex: 1; min-width: 0; }
.menu-item__name { font-family: var(--font-fun); font-weight: 600; font-size: 1.05rem; color: var(--violet-deep); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item__desc { font-size: 0.86rem; color: var(--ink-soft); margin-top: 2px; }
.menu-item__price { font-family: var(--font-display); font-size: 1.55rem; color: var(--violet); line-height: 1; white-space: nowrap; }
.menu-item__add { flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; border: 0; background: var(--violet); color: var(--white); font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background 0.2s ease, transform 0.2s ease; }
.menu-item__add:hover { background: var(--coral); transform: scale(1.1) rotate(6deg); }
.menu-item__badge { font-family: var(--font-fun); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: var(--coral); color: var(--white); }

/* ===================================================================
   FORMULAIRES
   =================================================================== */
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-fun); font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--violet-deep); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: var(--white); border: 2px solid var(--violet-tint); border-radius: 14px; padding: 12px 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(123, 47, 247, 0.14); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.segmented { display: flex; gap: 10px; flex-wrap: wrap; }
.segmented label { flex: 1; min-width: 110px; margin: 0; cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label span { display: block; text-align: center; padding: 12px 10px; border: 2px solid var(--violet-tint); border-radius: 14px; font-family: var(--font-fun); font-weight: 600; font-size: 0.92rem; transition: all 0.2s ease; }
.segmented input:checked + span { border-color: var(--coral); background: #ffe7dd; color: var(--coral-dark); }

/* ===================================================================
   PAGE PANIER
   =================================================================== */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.cart-card, .summary-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 30px; }
.cart-card h2, .summary-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--violet-deep); }
.summary-card { position: sticky; top: 100px; }
.cart-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 2px dashed var(--violet-tint); }
.cart-row:first-of-type { padding-top: 0; }
.cart-row__info { flex: 1; }
.cart-row__info h4 { font-family: var(--font-fun); font-weight: 600; font-size: 1.02rem; color: var(--violet-deep); }
.cart-row__info span { font-size: 0.85rem; color: var(--muted); }
.cart-row__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--violet); white-space: nowrap; min-width: 70px; text-align: right; }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--violet-tint); border-radius: 999px; overflow: hidden; }
.qty button { width: 34px; height: 34px; border: 0; background: var(--white); color: var(--violet-deep); font-size: 1.15rem; cursor: pointer; transition: background 0.15s ease; }
.qty button:hover { background: var(--violet-tint); }
.qty span { min-width: 30px; text-align: center; font-family: var(--font-fun); font-weight: 600; font-size: 0.94rem; }
.cart-row__remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.1rem; transition: color 0.2s ease; }
.cart-row__remove:hover { color: var(--coral); }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; color: var(--ink-soft); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 8px; border-top: 3px solid var(--violet-tint); }
.summary-total strong { font-family: var(--font-fun); font-size: 1.05rem; color: var(--violet-deep); }
.summary-total .amount { font-family: var(--font-display); font-size: 2rem; color: var(--violet); }
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty .ic { font-size: 3.4rem; display: block; margin-bottom: 14px; }
.cart-empty h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; margin-bottom: 10px; color: var(--violet-deep); }
.cart-empty p { color: var(--ink-soft); margin-bottom: 24px; }

/* ===================================================================
   CONFIRMATION
   =================================================================== */
.confirm { text-align: center; max-width: 640px; margin-inline: auto; }
.confirm__icon { width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%; background: #34b06a; color: var(--white); display: grid; place-items: center; font-size: 2.6rem; box-shadow: var(--shadow-md); transform: rotate(-6deg); }
.confirm h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 12px; color: var(--violet-deep); }
.confirm > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; }
.confirm__box { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 30px; text-align: left; margin-bottom: 28px; }
.confirm__box h3 { font-family: var(--font-fun); font-size: 1.2rem; margin-bottom: 16px; color: var(--violet-deep); }
.confirm__meta { display: grid; gap: 6px; margin-bottom: 18px; font-size: 0.95rem; color: var(--ink-soft); }
.confirm__meta strong { color: var(--violet-deep); font-family: var(--font-fun); }

/* ===================================================================
   PROSE
   =================================================================== */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-family: var(--font-fun); font-size: 1.4rem; margin: 32px 0 12px; color: var(--violet-deep); }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }

/* ===================================================================
   TOAST
   =================================================================== */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 140%); z-index: 200; background: var(--violet-deep); color: var(--white); padding: 14px 24px; border-radius: 999px; font-family: var(--font-fun); font-size: 0.94rem; font-weight: 600; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.3); }
.toast.is-visible { transform: translate(-50%, 0); }
.toast .ic { color: var(--sun); font-size: 1.15rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--violet-deep); color: #cdb8ec; padding-block: 60px 0; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; position: relative; z-index: 2; }
.footer .brand { color: var(--white); margin-bottom: 16px; }
.footer__about { font-size: 0.92rem; max-width: 300px; }
.footer h4 { color: var(--sun); font-family: var(--font-fun); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a, .footer__links span { font-size: 0.92rem; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--coral); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.12); color: #fff; transition: background 0.2s ease, transform 0.2s ease; }
.footer__social a:hover { background: var(--coral); transform: translateY(-3px) rotate(-6deg); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-block: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; position: relative; z-index: 2; }

/* ===================================================================
   REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ===================================================================
   ICÔNES DÉCORATIVES (depuis le sprite)
   =================================================================== */
.feature__emoji svg, .feature__icon svg { width: 30px; height: 30px; color: var(--violet); }
.info-card__icon svg { width: 24px; height: 24px; color: var(--violet); }
.contact__row .ic svg { width: 20px; height: 20px; }
.menu-cat__chip svg { width: 26px; height: 26px; color: var(--violet); }
.menu-nav__ic { width: 17px; height: 17px; margin-right: 7px; vertical-align: -3px; }
.formula__flag svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 4px; }
.hero__pill svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 5px; color: var(--sun); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1020px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
  .sellers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; min-height: auto; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; margin-top: 10px; }
  .about__grid { grid-template-columns: 1fr; gap: 54px; }
  .about__media img { height: 360px; }
  .formulas__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .social__grid { grid-template-columns: 1fr; gap: 48px; }
  .social__mockup { order: -1; }
  .contact__grid, .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding-block: 58px; }
  .nav__links { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 0; background: var(--cream); transform: translateX(100%); transition: transform 0.35s ease; }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav__links { display: flex; }
  .nav__links { flex-direction: column; align-items: center; gap: 26px; margin-bottom: 30px; }
  .nav__links a { font-size: 1.6rem; }
  .features__grid, .reviews__grid { grid-template-columns: 1fr; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { height: 240px; }
  .menu-items { grid-template-columns: 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .sellers__grid { grid-template-columns: 1fr; }
  .formulas__grid, .trust__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .contact__panel { padding: 30px 24px; }
  .hero__floattag { left: 0; }
}
