/* Bakies — feuille de style partagée (Direction C « Y2K raffiné »).
   Valeurs reprises au pixel du prototype Claude Design. */

:root {
  --cream: #FFFDF9;
  --pink: #ff3d92;
  --pink-deep: #e01e78;
  --pink-grad-1: #ff5fa2;
  --pink-grad-2: #e01e78;
  --pink-shadow: #a8195a;
  --ink: #3a1226;
  --muted: #9a7286;
  --muted-2: #8a4a6a;
  --line: #ffd0e3;
  --line-soft: #ffe0ee;
  --line-cta: #ffc6dd;
  --dark: #2a1620;
  --star: #ffd23f;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
::selection { background: #ffb3d6; color: #3a1226; }
a { color: inherit; }
img { max-width: 100%; display: block; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; }
.fred { font-family: 'Fredoka', sans-serif; }

/* ── NAV ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,249,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #f6e6ee;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; gap: 14px;
}
.brand {
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 26px;
  color: var(--pink); text-shadow: 1.5px 1.5px 0 var(--dark);
  letter-spacing: .02em; text-decoration: none;
}
.nav-links { display: flex; gap: 26px; font-size: 14px; color: #5a4450; font-weight: 500; align-items: center; }
.nav-links a { text-decoration: none; color: inherit; }
.nav-links a.active { color: var(--pink-deep); font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang {
  display: flex; align-items: center; background: #fff;
  border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden;
  font-size: 12.5px; font-weight: 600;
}
.lang span { padding: 7px 14px; cursor: pointer; color: #b06a8a; }
.lang span.on { background: var(--pink-deep); color: #fff; }

.btn { text-decoration: none; border-radius: 999px; font-weight: 600; display: inline-block; }
.btn-primary {
  background: linear-gradient(180deg, var(--pink-grad-1), var(--pink-grad-2));
  color: #fff; box-shadow: 0 3px 0 var(--pink-shadow);
  padding: 10px 22px; font-size: 13.5px;
}
.btn-primary-lg { padding: 16px 32px; font-size: 15px; box-shadow: 0 4px 0 var(--pink-shadow); }
.btn-ghost {
  background: #fff; color: var(--pink-deep); border: 1.5px solid var(--line-cta);
  padding: 16px 32px; font-size: 15px;
}
.btn-ghost-sm { padding: 13px 28px; font-size: 14.5px; }

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, #FFE3F0 0%, #FFF6FB 68%, var(--cream) 100%);
  padding: 84px 28px 76px;
}
.hero .star { position: absolute; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.badge {
  display: inline-block; background: #fff; color: var(--pink-deep);
  border-radius: 999px; padding: 8px 18px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; box-shadow: 0 2px 0 #f3c6db; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 88px; line-height: .96;
  margin: 0 0 16px; color: var(--pink); text-shadow: 3px 3px 0 var(--dark); letter-spacing: .01em;
}
.hero p { margin: 0 auto 32px; color: var(--muted-2); font-size: 17px; max-width: 460px; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEADER (menu, galerie, avis) ─────────────────────────────── */
.page-head { text-align: center; padding: 54px 28px 40px; background: linear-gradient(180deg, #FFE3F0, var(--cream)); }
.page-head h1 {
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 46px;
  color: var(--pink); text-shadow: 2px 2px 0 var(--dark); margin: 0 0 8px;
}
.page-head p { color: var(--muted-2); margin: 0; font-size: 15.5px; }

/* ── CATEGORIES ────────────────────────────────────────────────────── */
.cats {
  max-width: var(--maxw); margin: 0 auto; padding: 48px 28px 8px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat {
  background: #fff; border: 1.5px solid var(--line); border-radius: 18px;
  padding: 22px; text-align: center; text-decoration: none;
}
.cat .emoji { font-size: 30px; margin-bottom: 6px; }
.cat .label { font-weight: 600; color: #d6196f; font-size: 15px; }

/* ── FEATURED ──────────────────────────────────────────────────────── */
.section { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 20px; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.section-title h2 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 34px; color: var(--ink); margin: 0; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin: 0 0 28px; font-size: 15px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tile {
  height: 320px; border-radius: 22px; overflow: hidden; background-size: cover; background-position: center;
  border: 3px solid #fff; box-shadow: 0 10px 24px -10px rgba(180,40,110,.45);
}
.center { text-align: center; }
.mt24 { margin-top: 24px; }

/* ── ORDER BAND ────────────────────────────────────────────────────── */
.band-wrap { max-width: var(--maxw); margin: 56px auto 0; padding: 0 28px; }
.band {
  border-radius: 26px; background: linear-gradient(135deg, #ff4f9e, var(--pink-deep));
  padding: 52px 40px; text-align: center;
}
.band h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 34px; color: #fff; margin: 0 0 10px; text-shadow: 2px 2px 0 var(--pink-shadow); }
.band p { margin: 0 auto 24px; color: #ffdcec; font-size: 15.5px; max-width: 440px; }
.band .btn { background: #fff; color: var(--pink-deep); padding: 15px 34px; font-size: 15px; font-weight: 700; box-shadow: 0 4px 0 #c4126a; }

/* ── MENU ──────────────────────────────────────────────────────────── */
.menu-grid { max-width: 860px; margin: 0 auto; padding: 40px 28px; display: grid; gap: 14px; }
.menu-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1.5px solid var(--line-soft); border-radius: 18px; padding: 18px 20px; }
.menu-ico { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(160deg, #ffd9e8, #ffc1dc); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.menu-item .name { font-weight: 600; font-size: 16px; color: var(--ink); }
.menu-item .desc { color: var(--muted); font-size: 13.5px; }
.menu-item .price { margin-left: auto; font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--pink-deep); font-size: 18px; white-space: nowrap; }

/* ── GALLERY ───────────────────────────────────────────────────────── */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 40px 28px 24px; width: 100%; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery-grid .tile { height: 100%; }
.gallery-grid .span2 { grid-row: span 2; }

/* ── REVIEWS ───────────────────────────────────────────────────────── */
.reviews { max-width: 980px; margin: 0 auto; padding: 40px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review { background: #fff; border: 1.5px solid var(--line-soft); border-radius: 20px; padding: 24px; }
.review .stars { color: var(--star); font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review .text { color: #5a4450; font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
.review .who { display: flex; align-items: center; gap: 10px; }
.review .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(160deg, #ffd9e8, #ff8ec2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
.review .name { font-weight: 600; font-size: 14px; color: var(--ink); }

/* ── CONTACT BAND (avis page) ──────────────────────────────────────── */
.contact-band { max-width: var(--maxw); margin: 16px auto 0; padding: 0 28px; }
.contact-inner { border-radius: 26px; background: linear-gradient(135deg, #ff4f9e, var(--pink-deep)); padding: 52px 40px; text-align: center; }
.contact-inner h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 34px; color: #fff; margin: 0 0 10px; text-shadow: 2px 2px 0 var(--pink-shadow); }
.contact-inner p { color: #ffdcec; margin: 0 auto 26px; font-size: 15.5px; max-width: 440px; }
.contact-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contact-links a { border-radius: 999px; padding: 14px 28px; font-size: 14.5px; font-weight: 600; text-decoration: none; }
.contact-links .ig { background: #fff; color: var(--pink-deep); }
.contact-links .tt { background: var(--dark); color: #fff; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer { margin-top: 56px; background: var(--dark); padding: 30px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer .brand-f { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; color: var(--pink-grad-1); text-shadow: 1.5px 1.5px 0 #000; }
.footer .socials { display: flex; gap: 12px; }
.footer .socials a { border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 600; text-decoration: none; }
.footer .socials .ig { background: #fff; color: var(--pink-deep); }
.footer .socials .tt { background: #3a2430; color: #fff; }
.footer .copy { color: #8a6478; font-size: 12.5px; }

/* ── COMMANDER (formulaire 5 étapes) ──────────────────────────────── */
.order-wrap { background: linear-gradient(180deg, #FFF6FB, #FFE9F2); padding: 54px 28px; }
.order-inner { max-width: 720px; margin: 0 auto; }
.order-head { text-align: center; margin-bottom: 30px; }
.order-head h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 40px; color: var(--ink); margin: 0 0 8px; }
.order-head p { color: var(--muted); margin: 0; font-size: 15.5px; }
.dots { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; cursor: pointer; flex-shrink: 0; transition: all .15s; background: #fff; color: #c79ab0; border: 1.5px solid var(--line); }
.dot.done { background: #ffb3d6; color: #fff; border-color: transparent; }
.dot.cur { background: var(--pink-deep); color: #fff; border-color: transparent; box-shadow: 0 4px 10px -3px rgba(224,30,120,.6); }
.card { background: #fff; border-radius: 24px; box-shadow: 0 24px 50px -28px rgba(180,40,110,.5); padding: 36px 34px; min-height: 360px; display: flex; flex-direction: column; }
.step { flex: 1; }
.step-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.step-sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 14px; border-radius: 16px; cursor: pointer; transition: all .15s; text-align: center; color: var(--ink); border: 2px solid var(--line-soft); background: #fff; }
.opt-card .e { font-size: 28px; }
.opt-card .l { font-weight: 600; font-size: 15.5px; }
.opt-card.on { border: 2px solid var(--pink-deep); background: #fff0f7; box-shadow: 0 6px 16px -8px rgba(224,30,120,.5); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 12px 20px; border-radius: 999px; cursor: pointer; font-size: 14.5px; font-weight: 500; transition: all .15s; border: 2px solid var(--line); background: #fff; color: #7a5566; }
.chip.on { border: 2px solid var(--pink-deep); background: var(--pink-deep); color: #fff; }
.servings-box { background: #fff6fb; border: 1.5px solid var(--line-soft); border-radius: 16px; padding: 20px 22px; margin-top: 28px; }
.servings-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.servings-row .lab { font-weight: 600; color: var(--ink); font-size: 15px; }
.servings-row .val { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--pink-deep); font-size: 20px; }
.servings-box input[type=range] { width: 100%; accent-color: var(--pink-deep); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: #7a5566; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--ink); outline: none; font-family: inherit; }
.field textarea { height: 108px; resize: none; }
.notes-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.recap { flex: 1; text-align: center; }
.recap .heart { font-size: 42px; margin-bottom: 6px; }
.recap h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 26px; color: var(--ink); margin: 0 0 6px; }
.recap .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.recap-box { text-align: left; background: #fff6fb; border: 1.5px solid var(--line-soft); border-radius: 16px; padding: 20px 22px; margin-bottom: 18px; }
.recap-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid #ffe9f2; }
.recap-row .k { color: var(--muted); font-size: 14px; }
.recap-row .v { color: var(--ink); font-size: 14px; font-weight: 600; text-align: right; }
.recap-total { display: flex; justify-content: space-between; gap: 16px; padding-top: 14px; align-items: baseline; }
.recap-total .k { color: var(--ink); font-size: 15px; font-weight: 600; }
.recap-total .v { font-family: 'Fredoka', sans-serif; color: var(--pink-deep); font-size: 24px; font-weight: 700; }
.recap-send { display: inline-block; background: linear-gradient(180deg, var(--pink-grad-1), var(--pink-grad-2)); color: #fff; border-radius: 999px; padding: 16px 34px; font-size: 15px; font-weight: 700; box-shadow: 0 4px 0 var(--pink-shadow); text-decoration: none; cursor: pointer; border: none; }
.recap-restart { color: #b06a8a; font-size: 13.5px; text-decoration: underline; cursor: pointer; }
.nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 22px; border-top: 1px solid #ffe9f2; }
.nav-row .prev { font-size: 14px; font-weight: 600; cursor: pointer; color: #b06a8a; }
.nav-row .prev.off { color: #e8cdd9; pointer-events: none; }
.nav-row .counter { color: #c79ab0; font-size: 13px; }
.nav-row .next { background: linear-gradient(180deg, var(--pink-grad-1), var(--pink-grad-2)); color: #fff; border-radius: 999px; padding: 13px 26px; font-size: 14.5px; font-weight: 600; cursor: pointer; box-shadow: 0 3px 0 var(--pink-shadow); border: none; }
.nav-row .next.off { background: #f3c6db; cursor: not-allowed; box-shadow: none; }
.hidden { display: none !important; }
.order-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }

/* ── IMAGE SLOT ────────────────────────────────────────────────────── */
image-slot { display: block; }

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 60px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}
@media (max-width: 560px) {
  .hero { padding: 60px 20px 56px; }
  .hero h1 { font-size: 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .fields, .notes-grid { grid-template-columns: 1fr; }
  .menu-item .price { margin-left: auto; }
  .nav-inner { padding: 12px 18px; }
  .card { padding: 26px 20px; }
}
