/* ==========================================================================
   Chalet de Montvoie — Carte en ligne
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

@font-face {
  font-family: 'Monik';
  src: url('font/Monik.otf') format('opentype'),
       url('font/Monik.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2b1e14;
  --ink-soft: #4a372a;
  --accent: #5c371d;
  --accent-dark: #D4AF37;
  /* --paper-tint: rgba(255, 248, 235, 0.55); */
  --paper-tint: rgba(255, 255, 255, 0.7);
  --rule: rgba(43, 30, 20, 0.35);
  --rule-soft: rgba(43, 30, 20, 0.15);
  --max-width: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background-color: #fbfcfc;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Léger voile pour adoucir le fond sous le texte */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--paper-tint);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  color: #2b1e14;
  overflow: hidden;
  height: calc(100vh - 58px);
  /* padding: 3rem 1.25rem 5rem; */
  background: white;
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1.2s ease-out both;
  padding: 1.5rem 2rem;
  /* background: radial-gradient(ellipse at center, rgba(250, 240, 218, 0.78) 0%, rgba(250, 240, 218, 0.55) 55%, rgba(250, 240, 218, 0) 90%); */
  border-radius: 50%;
}

.hero-logo {
  width: min(360px, 72vw);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.35));
}

.hero-address {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  opacity: 0.92;
}

.hero-reserve {
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 14px 0 0 14px;
  border: 1px solid rgb(58 31 15 / 12%);
  border-right: none;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: clamp(1.24rem, 1.7vw, 2.1rem);
  line-height: 1;
  white-space: nowrap;
  color: rgb(71 39 23 / 44%);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 -1px 0 rgba(0, 0, 0, 0.42),
    0 0 2px rgba(0, 0, 0, 0.28);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(0, 0, 0, 0.26) 100%),
    url('img/wood_texture.jpg');
  background-size: auto;
  background-position: left;
  box-shadow:
    0 10px 24px rgba(25, 13, 7, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 8px rgba(0, 0, 0, 0.26);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    filter 280ms ease;
}

.hero-reserve:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow:
    0 14px 28px rgba(25, 13, 7, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 10px rgba(0, 0, 0, 0.3);
  filter: saturate(1.06);
}

.hero-reserve:active {
  transform: translateY(calc(-50% + 1px));
}

/* Switcher langue */
.lang-switcher {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.15rem;
  /* background: rgba(43, 30, 20, 0.55); */
  background: rgb(0 0 0 / 63%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.25rem;
  z-index: 10;
}

.lang-btn {
  background: transparent;
  color: #fbf3e0;
  border: none;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 250ms ease;
}

.lang-btn:hover { background: rgba(255, 255, 255, 0.15); }

.lang-btn.active {
  background: #f3f3f3;
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  /* Compensation exacte du letter-spacing pour un centrage visuel parfait */
  padding-left: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: bob 2.4s ease-in-out infinite;
  z-index: 3;
  line-height: 1;
}

.hero-scroll .arrow { font-size: 1.3rem; }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
*/

/* ==========================================================================
   NAV STICKY
   ========================================================================== */

.menu-nav {
  position: sticky;
  top: 10px;
  z-index: 20;
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: rgb(244 232 210 / 43%); */
  background: rgb(243 243 243 / 63%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
  box-shadow: 0 2px 12px rgb(0 0 0 / 19%);
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  border-radius: 40px;
}

.menu-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start;
}
.menu-nav ul::-webkit-scrollbar { display: none; }

.menu-nav a {
  text-decoration: none;
  color: #66645f;
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px; /* 1.05rem; */
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms ease;
}

.menu-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}

.menu-nav a:hover { color: black; }
.menu-nav a:hover::after { transform: scaleX(1); }

.menu-nav a.is-active {
  color: #9c8129;
}

.menu-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-nav a:active {
  color: #9c8129;
}

/* ==========================================================================
   SECTIONS DE MENU
   ========================================================================== */

main { padding: 0 1.25rem; position: relative; background: #fbfcfc; }

/* Sticky background element: stays at viewport bottom while inside <main>,
   then scrolls away when <main> ends (so it won't overlap the footer) */
.main-bg {
  left: 0;
  width: 100%;
  height: 46vh;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  z-index: 0;
}

/* Default: pinned to viewport bottom so it behaves like previous body background */
.main-bg.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* When footer is visible, make the background part of <main> so it scrolls away */
.main-bg.absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Ensure page content sits above the sticky background */
main > * {
  position: relative;
  z-index: 1;
}

.menu-section {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 3rem 0 2rem; */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
  background: #ffffffcc;
  padding: 20px;
}

.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem 0 6rem;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
  max-width: 180px;
}

.divider img {
  width: 100px;
  height: 100px;
  margin: 0 4rem;
  opacity: 0.85;
}

.divider.light img {
  filter: invert(0.92) brightness(1.1);
  opacity: 0.7;
}

.section-title {
  font-family: 'Monik', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 4vw, 2rem);
  font-weight: normal;
  text-align: center;
  color: var(--accent-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.01em;
}

.section-title:first-of-type { margin-top: 0.5rem; }

.section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin: -0.5rem 0 1.5rem;
  opacity: 0.8;
}

.section-footer {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* En-têtes colonnes de prix */
.col-headers {
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--rule-soft);
  text-align: right;
}
.col-headers.one   { grid-template-columns: 70px; justify-content: end; }
.col-headers.two   { grid-template-columns: 70px 70px; justify-content: end; }
.col-headers.three { grid-template-columns: 70px 70px 70px; justify-content: end; }
.col-headers span { text-align: center; }

/* Table des produits/prix */
.menu-table {
  --price-cols: 1;
  --price-col-width: 74px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0 0 2rem;
}

.menu-table.cols-2 { --price-cols: 2; }
.menu-table.cols-3 { --price-cols: 3; }
.menu-table.cols-4 { --price-cols: 4; }

.menu-table.options-split-table {
  --option-col-width: 108px;
}

.menu-table.options-split-table th:first-child {
  width: calc(100% - var(--option-col-width) - var(--price-col-width));
}

.menu-table.options-split-table th:nth-child(2),
.menu-table.options-split-table td.option-cell {
  width: var(--option-col-width);
  text-align: left;
}

.menu-table.options-split-table th:nth-child(3),
.menu-table.options-split-table td.price-cell {
  width: var(--price-col-width);
}

.menu-table thead th {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  /* text-transform: uppercase; */
  color: var(--ink-soft);
  padding: 0 0 0.35rem;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: normal;
}

.menu-table th {
  vertical-align: bottom;
}

.menu-table th .section-title {
  vertical-align: bottom;
  text-align: left;
  margin-bottom: 0;
  line-height: 1.2;
  text-transform: none;
}

.menu-table th:first-child {
  width: calc(100% - (var(--price-col-width) * var(--price-cols)));
  text-align: left;
}

.menu-table th.price-heading,
.menu-table td.price-cell {
  width: var(--price-col-width);
  text-align: center;
}

.menu-table tbody td {
  vertical-align: top;
  padding: 0.65rem 0;
}

.menu-table tbody tr {
  border-bottom: 1px solid var(--rule-soft);
}

.menu-table tbody tr:last-child {
  border-bottom: none;
}

.menu-table .product-cell {
  padding-right: 0.4rem;
}

.menu-table .product-cell .name,
.menu-table .product-cell .name-block {
  display: block;
}

/* Liste d'items */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0;
  transition: transform 280ms ease;
}

.item:hover { transform: translateX(4px); }

.name,
.name-block {
  flex: 1;
  min-width: 0;
}

.name-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.name {
  font-size: 1.1rem;
  color: var(--ink);
  font-family: 'Monik', Georgia, 'Times New Roman', serif;
}

.desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
  font-family: 'Monik', Georgia, 'Times New Roman', serif;
}

.desc-italic {
  font-size: 0.88rem;
  color: var(--accent);
  font-style: italic;
  opacity: 0.85;
}

.sub-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-right: 0.25rem;
}

/* Prix */
.prices {
  font-family: 'Monik', Georgia, 'Times New Roman', serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  color: var(--ink);
}

.menu-list .prices {
  display: grid;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-list .prices.single { grid-template-columns: 80px; }
.menu-list .prices.two    { grid-template-columns: 80px 80px; }
.menu-list .prices.three  { grid-template-columns: 70px 70px 70px; }
.menu-list .prices span { text-align: center; }

.option-list,
.option-prices {
  display: grid;
  gap: 0.2rem;
  justify-content: center;
  justify-items: center;
}

.option-list {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.option-prices {
  text-align: left;
}

.options-split-table .price-cell {
  text-align: right;
}

.option-prices span {
  display: block;
  text-align: right;
  min-width: 3.3ch;
}

/* Pour les items sans sous-description, le nom s'aligne au-dessus de la ligne */
.item:has(> .name:only-of-type) {
  align-items: baseline;
}

/* ==========================================================================
   ENCART STORY — La Vacherie Linz
   ========================================================================== */

.story {
  margin: 3.5rem auto 1rem;
  max-width: 620px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/cerf.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 260px;
  opacity: 0.07;
  pointer-events: none;
}

.story-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--accent-dark);
  margin: 0 0 1rem;
  font-weight: normal;
}

.story-body p {
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 0.9rem;
  font-size: 1rem;
  position: relative;
}

.story-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  margin-top: 4rem;
  padding: 6rem 1.25rem 6rem;
  /* background: linear-gradient(to bottom, rgba(43, 30, 20, 0.92), rgba(20, 12, 6, 0.96)); */
  color: #3d382c;
  text-align: center;
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.footer-col h3 {
  font-size: 1.3rem;
  color: black;
  font-weight: normal;
  margin: 0 0 0.75rem;
  letter-spacing: 0.08em;
}

.footer-col address {
  font-style: normal;
  line-height: 1.65;
}

.footer-col a {
  color: black;
  text-decoration: none;
  border-bottom: 1px dotted rgba(243, 227, 189, 0.4);
  transition: border-color 200ms ease, color 200ms ease;
}

.footer-col a:hover {
  color: rgb(51, 51, 51);
  border-bottom-color: rgb(51, 51, 51);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px dotted rgba(243, 227, 189, 0.2);
  font-size: 0.98rem;
}
.hours li:last-child { border-bottom: none; }

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(92, 55, 29, 0.28);
  border-radius: 50%;
  color: #9a7830;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 6px 18px rgba(43, 30, 20, 0.08);
  transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
  text-decoration: none;
}

.socials a:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #2b1e14;
  box-shadow: 0 10px 22px rgba(43, 30, 20, 0.14);
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.65;
  margin: 1.5rem 0 0;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   TRANSITION LANG-SWITCH
   ========================================================================== */

[data-i18n] {
  transition: opacity 150ms ease;
}

.lang-switching [data-i18n] {
  opacity: 0;
}

/* ==========================================================================
   RESPONSIVE — DESKTOP
   ========================================================================== */

@media (min-width: 768px) {
  body { font-size: 19px; }

  .main-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 1470 / 618;
  }

  .main-bg.fixed {
    width: 100%;
    left: 0;
  }

  .main-bg.absolute {
    width: 100%;
    left: 0;
    transform: none;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /* padding: 5rem 1.25rem 3rem; */
    gap: 2rem;
  }

  .hero-image {
    position: static;
    width: 100%;
    height: auto;
    /* max-height: 55vh; */
    order: 2;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-inner {
    order: 1;
    padding: 0;
  }

  .hero-reserve { padding: 0.85rem; }

  .hero-logo { width: 420px; }

  .hero-scroll {
    /* position: static; */
    order: 3;
    margin-top: 1.5rem;
    width: fit-content;
    margin-inline: auto;
  }

  .menu-nav ul {
    gap: 2rem;
    padding: 0.9rem 2rem;
    justify-content: center;
  }
  .menu-nav a { font-size: 1.1rem; }

  .item { padding: 0.75rem 0; }
  .name { font-size: 1.15rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }

  .footer-col:nth-child(2) { text-align: center; }
  .footer-col:nth-child(3) { text-align: right; }
  .footer-col:nth-child(3) .socials { justify-content: flex-end; }
  .hours { margin-inline: auto; }
}

/* ==========================================================================
   MOBILE — ajustements fins
   ========================================================================== */

@media (max-width: 767px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /* padding: 4.5rem 1rem 2.5rem; */
    gap: 1.5rem;
    overflow: visible;
    height: 100vh;
  }

  .hero-image {
    position: static;
    width: 100%;
    height: auto;
    max-height: 45vh;
    order: 3;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-inner {
    order: 1;
    padding: 0.5rem 0.5rem;
    background: none;
    border-radius: 0;
  }

  .hero-logo { width: min(300px, 80vw); margin-bottom: 1rem; }

  .hero-reserve {
    position: absolute;
    top: 42%;
    right: 0;
    transform: translateY(-50%);
    order: 2;
    padding: 0.72rem;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(1.14rem, 5.4vw, 1.42rem);
  }

  .hero-reserve:hover { transform: translateY(calc(-50% - 2px)); }
  .hero-reserve:active { transform: translateY(calc(-50% + 1px)); }

  .hero-address {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .hero-scroll {
    /* position: static; */
    order: 3;
    margin-top: 1rem;
    width: fit-content;
    margin-inline: auto;
  }

  .lang-switcher {
    top: 0.85rem;
    right: 0.85rem;
  }
  .lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.88rem;
  }

  main { padding: 0 1rem; }

  /* Mobile: horizontal parallax for the background video */
  .main-bg {
    /* keep the video wide enough for horizontal motion */
    object-fit: cover;
    /* horizontal position controlled by --bg-x (set by JS) */
    object-position: var(--bg-x, 0%) bottom;
    height: 40vh;
  }

  .item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--rule-soft);
  }
  .item:last-child { border-bottom: none; }

  .menu-list .prices {
    justify-self: end;
    gap: 1rem;
    font-size: 1rem;
  }
  .menu-list .prices.single { grid-template-columns: auto; }
  .menu-list .prices.two,
  .menu-list .prices.three {
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 0.9rem;
  }
  .menu-list .prices span { min-width: 45px; }

  .col-headers {
    justify-content: end;
  }

  .section-title {
    margin: 2rem 0 0.8rem;
    font-family: 'Monik', Georgia, 'Times New Roman', serif;
    font-size: 24px;
  }

  .name {
    font-family: 'Monik', Georgia, 'Times New Roman', serif;
    font-size: 16px;
  }

  .prices {
    font-family: 'Monik', Georgia, 'Times New Roman', serif;
    font-size: 13px;
  }

  .desc {
    font-family: Arial;
    font-size: 13px;
    font-style: normal;
    line-height: 1.4;
    display: block;
  }

  .menu-table {
    --price-col-width: 40px;
  }

  .menu-table.options-split-table {
    --option-col-width: 82px;
  }

  .option-list {
    font-size: 0.82rem;
  }

  .menu-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding-bottom: 0.25rem;
  }

  .menu-table tbody td {
    padding: 0.55rem 0;
  }

  .menu-table .product-cell {
    padding-right: 0.2rem;
  }

  .divider img { width: 100px; height: 100px; }
  .divider::before, .divider::after { max-width: 100px; }

  .story {
    padding: 1.5rem 1rem;
    margin: 2.5rem auto 0.5rem;
  }
}

/* ==========================================================================
   ACCESSIBILITÉ
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *:not(.hero-reserve) {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .menu-section {
    opacity: 1;
    transform: none;
  }

  .hero-scroll { animation: none; }
  .hero-inner { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ======================================================================
   BOUTON RETOUR EN HAUT
   ====================================================================== */

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2c173, #c39a47);
  box-shadow: 0 8px 20px rgba(43, 30, 20, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 35;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease, box-shadow 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 12px 24px rgba(43, 30, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.back-to-top-chevron {
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 5px;
}

.floating-lang-switcher {
  position: fixed;
  right: 1.2rem;
  bottom: calc(1.2rem + 56px + 0.8rem);
  z-index: 35;
  width: 58px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform-origin: right center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: width 220ms ease, opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.floating-lang-switcher.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-lang-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 42px;
  border: none;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: #fbf3e0;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity 170ms ease;
}

.floating-lang-options {
  position: absolute;
  left: 0.25rem;
  bottom: 0;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0 0.1rem;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
}

.floating-lang-switcher.is-open {
  width: 174px;
}

.floating-lang-switcher.is-open .floating-lang-options {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.floating-lang-switcher.is-open .floating-lang-trigger {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .floating-lang-switcher {
    right: 0.9rem;
    bottom: calc(0.9rem + 52px + 0.7rem);
    width: 54px;
    height: 40px;
  }

  .floating-lang-trigger {
    height: 40px;
    width: 54px;
    font-size: 0.86rem;
  }

  .floating-lang-options {
    height: 40px;
  }

  .floating-lang-switcher.is-open {
    width: 162px;
  }

  .back-to-top {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   Product Name Styling - Menu Item Details
   ========================================================================== */

.prodNameS1 {
    font-size: 1rem;
}

.prodNameS2 {
    font-size: 0.85rem;
}

.item_desc {
    font-size: 0.8em;
}
.item_desc2 {
    font-size: 0.8em;
    background: #e1e1e1;
    display: inline;
    padding-left: 5px;
    padding-right: 5px;
}